All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.yunjing.v20180228.models.Malware 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 Malware extends AbstractModel{

    /**
    * 事件ID。
    */
    @SerializedName("Id")
    @Expose
    private Long Id;

    /**
    * 主机IP。
    */
    @SerializedName("MachineIp")
    @Expose
    private String MachineIp;

    /**
    * 当前木马状态。
  • UN_OPERATED:未处理
  • SEGREGATED:已隔离
  • TRUSTED:已信任
  • SEPARATING:隔离中
  • RECOVERING:恢复中
  • */ @SerializedName("Status") @Expose private String Status; /** * 木马所在的路径。 */ @SerializedName("FilePath") @Expose private String FilePath; /** * 木马描述。 */ @SerializedName("Description") @Expose private String Description; /** * 主机名称。 */ @SerializedName("MachineName") @Expose private String MachineName; /** * 木马文件创建时间。 */ @SerializedName("FileCreateTime") @Expose private String FileCreateTime; /** * 木马文件修改时间。 */ @SerializedName("ModifyTime") @Expose private String ModifyTime; /** * 云镜客户端唯一标识UUID。 */ @SerializedName("Uuid") @Expose private String Uuid; /** * Get 事件ID。 * @return Id 事件ID。 */ public Long getId() { return this.Id; } /** * Set 事件ID。 * @param Id 事件ID。 */ public void setId(Long Id) { this.Id = Id; } /** * Get 主机IP。 * @return MachineIp 主机IP。 */ public String getMachineIp() { return this.MachineIp; } /** * Set 主机IP。 * @param MachineIp 主机IP。 */ public void setMachineIp(String MachineIp) { this.MachineIp = MachineIp; } /** * Get 当前木马状态。
  • UN_OPERATED:未处理
  • SEGREGATED:已隔离
  • TRUSTED:已信任
  • SEPARATING:隔离中
  • RECOVERING:恢复中
  • * @return Status 当前木马状态。
  • UN_OPERATED:未处理
  • SEGREGATED:已隔离
  • TRUSTED:已信任
  • SEPARATING:隔离中
  • RECOVERING:恢复中
  • */ public String getStatus() { return this.Status; } /** * Set 当前木马状态。
  • UN_OPERATED:未处理
  • SEGREGATED:已隔离
  • TRUSTED:已信任
  • SEPARATING:隔离中
  • RECOVERING:恢复中
  • * @param Status 当前木马状态。
  • UN_OPERATED:未处理
  • SEGREGATED:已隔离
  • TRUSTED:已信任
  • SEPARATING:隔离中
  • RECOVERING:恢复中
  • */ public void setStatus(String Status) { this.Status = Status; } /** * Get 木马所在的路径。 * @return FilePath 木马所在的路径。 */ public String getFilePath() { return this.FilePath; } /** * Set 木马所在的路径。 * @param FilePath 木马所在的路径。 */ public void setFilePath(String FilePath) { this.FilePath = FilePath; } /** * Get 木马描述。 * @return Description 木马描述。 */ public String getDescription() { return this.Description; } /** * Set 木马描述。 * @param Description 木马描述。 */ public void setDescription(String Description) { this.Description = Description; } /** * Get 主机名称。 * @return MachineName 主机名称。 */ public String getMachineName() { return this.MachineName; } /** * Set 主机名称。 * @param MachineName 主机名称。 */ public void setMachineName(String MachineName) { this.MachineName = MachineName; } /** * Get 木马文件创建时间。 * @return FileCreateTime 木马文件创建时间。 */ public String getFileCreateTime() { return this.FileCreateTime; } /** * Set 木马文件创建时间。 * @param FileCreateTime 木马文件创建时间。 */ public void setFileCreateTime(String FileCreateTime) { this.FileCreateTime = FileCreateTime; } /** * Get 木马文件修改时间。 * @return ModifyTime 木马文件修改时间。 */ public String getModifyTime() { return this.ModifyTime; } /** * Set 木马文件修改时间。 * @param ModifyTime 木马文件修改时间。 */ public void setModifyTime(String ModifyTime) { this.ModifyTime = ModifyTime; } /** * Get 云镜客户端唯一标识UUID。 * @return Uuid 云镜客户端唯一标识UUID。 */ public String getUuid() { return this.Uuid; } /** * Set 云镜客户端唯一标识UUID。 * @param Uuid 云镜客户端唯一标识UUID。 */ public void setUuid(String Uuid) { this.Uuid = Uuid; } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "Id", this.Id); this.setParamSimple(map, prefix + "MachineIp", this.MachineIp); this.setParamSimple(map, prefix + "Status", this.Status); this.setParamSimple(map, prefix + "FilePath", this.FilePath); this.setParamSimple(map, prefix + "Description", this.Description); this.setParamSimple(map, prefix + "MachineName", this.MachineName); this.setParamSimple(map, prefix + "FileCreateTime", this.FileCreateTime); this.setParamSimple(map, prefix + "ModifyTime", this.ModifyTime); this.setParamSimple(map, prefix + "Uuid", this.Uuid); } }




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy