com.tencentcloudapi.yunjing.v20180228.models.WeeklyReportMalware Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.yunjing.v20180228.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class WeeklyReportMalware extends AbstractModel{
/**
* Server IP.
*/
@SerializedName("MachineIp")
@Expose
private String MachineIp;
/**
* Trojan file path.
*/
@SerializedName("FilePath")
@Expose
private String FilePath;
/**
* Trojan file MD5 value.
*/
@SerializedName("Md5")
@Expose
private String Md5;
/**
* Trojan discovery time.
*/
@SerializedName("FindTime")
@Expose
private String FindTime;
/**
* Current trojan status.
UN_OPERATED: not processed
SEGREGATED: isolated
TRUSTED: trusted
SEPARATING: isolating
RECOVERING: recovering
*/
@SerializedName("Status")
@Expose
private String Status;
/**
* Get Server IP.
* @return MachineIp Server IP.
*/
public String getMachineIp() {
return this.MachineIp;
}
/**
* Set Server IP.
* @param MachineIp Server IP.
*/
public void setMachineIp(String MachineIp) {
this.MachineIp = MachineIp;
}
/**
* Get Trojan file path.
* @return FilePath Trojan file path.
*/
public String getFilePath() {
return this.FilePath;
}
/**
* Set Trojan file path.
* @param FilePath Trojan file path.
*/
public void setFilePath(String FilePath) {
this.FilePath = FilePath;
}
/**
* Get Trojan file MD5 value.
* @return Md5 Trojan file MD5 value.
*/
public String getMd5() {
return this.Md5;
}
/**
* Set Trojan file MD5 value.
* @param Md5 Trojan file MD5 value.
*/
public void setMd5(String Md5) {
this.Md5 = Md5;
}
/**
* Get Trojan discovery time.
* @return FindTime Trojan discovery time.
*/
public String getFindTime() {
return this.FindTime;
}
/**
* Set Trojan discovery time.
* @param FindTime Trojan discovery time.
*/
public void setFindTime(String FindTime) {
this.FindTime = FindTime;
}
/**
* Get Current trojan status.
UN_OPERATED: not processed
SEGREGATED: isolated
TRUSTED: trusted
SEPARATING: isolating
RECOVERING: recovering
* @return Status Current trojan status.
UN_OPERATED: not processed
SEGREGATED: isolated
TRUSTED: trusted
SEPARATING: isolating
RECOVERING: recovering
*/
public String getStatus() {
return this.Status;
}
/**
* Set Current trojan status.
UN_OPERATED: not processed
SEGREGATED: isolated
TRUSTED: trusted
SEPARATING: isolating
RECOVERING: recovering
* @param Status Current trojan status.
UN_OPERATED: not processed
SEGREGATED: isolated
TRUSTED: trusted
SEPARATING: isolating
RECOVERING: recovering
*/
public void setStatus(String Status) {
this.Status = Status;
}
public WeeklyReportMalware() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public WeeklyReportMalware(WeeklyReportMalware source) {
if (source.MachineIp != null) {
this.MachineIp = new String(source.MachineIp);
}
if (source.FilePath != null) {
this.FilePath = new String(source.FilePath);
}
if (source.Md5 != null) {
this.Md5 = new String(source.Md5);
}
if (source.FindTime != null) {
this.FindTime = new String(source.FindTime);
}
if (source.Status != null) {
this.Status = new String(source.Status);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "MachineIp", this.MachineIp);
this.setParamSimple(map, prefix + "FilePath", this.FilePath);
this.setParamSimple(map, prefix + "Md5", this.Md5);
this.setParamSimple(map, prefix + "FindTime", this.FindTime);
this.setParamSimple(map, prefix + "Status", this.Status);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy