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

com.tencentcloudapi.yunjing.v20180228.models.Malware Maven / Gradle / Ivy

There is a newer version: 3.0.1076
Show newest version
/*
 * 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.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class Malware extends AbstractModel {

    /**
    * Event ID.
    */
    @SerializedName("Id")
    @Expose
    private Long Id;

    /**
    * Server IP.
    */
    @SerializedName("MachineIp")
    @Expose
    private String MachineIp;

    /**
    * Current trojan status.
  • UN_OPERATED: not processed
  • SEGREGATED: isolated
  • TRUSTED: trusted
  • SEPARATING: isolating
  • RECOVERING: recovering
  • */ @SerializedName("Status") @Expose private String Status; /** * Trojan path. */ @SerializedName("FilePath") @Expose private String FilePath; /** * Trojan description. */ @SerializedName("Description") @Expose private String Description; /** * Server name. */ @SerializedName("MachineName") @Expose private String MachineName; /** * Trojan file creation time. */ @SerializedName("FileCreateTime") @Expose private String FileCreateTime; /** * Trojan file modification time. */ @SerializedName("ModifyTime") @Expose private String ModifyTime; /** * CWP agent `UUID`. */ @SerializedName("Uuid") @Expose private String Uuid; /** * Get Event ID. * @return Id Event ID. */ public Long getId() { return this.Id; } /** * Set Event ID. * @param Id Event ID. */ public void setId(Long Id) { this.Id = Id; } /** * 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 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; } /** * Get Trojan path. * @return FilePath Trojan path. */ public String getFilePath() { return this.FilePath; } /** * Set Trojan path. * @param FilePath Trojan path. */ public void setFilePath(String FilePath) { this.FilePath = FilePath; } /** * Get Trojan description. * @return Description Trojan description. */ public String getDescription() { return this.Description; } /** * Set Trojan description. * @param Description Trojan description. */ public void setDescription(String Description) { this.Description = Description; } /** * Get Server name. * @return MachineName Server name. */ public String getMachineName() { return this.MachineName; } /** * Set Server name. * @param MachineName Server name. */ public void setMachineName(String MachineName) { this.MachineName = MachineName; } /** * Get Trojan file creation time. * @return FileCreateTime Trojan file creation time. */ public String getFileCreateTime() { return this.FileCreateTime; } /** * Set Trojan file creation time. * @param FileCreateTime Trojan file creation time. */ public void setFileCreateTime(String FileCreateTime) { this.FileCreateTime = FileCreateTime; } /** * Get Trojan file modification time. * @return ModifyTime Trojan file modification time. */ public String getModifyTime() { return this.ModifyTime; } /** * Set Trojan file modification time. * @param ModifyTime Trojan file modification time. */ public void setModifyTime(String ModifyTime) { this.ModifyTime = ModifyTime; } /** * Get CWP agent `UUID`. * @return Uuid CWP agent `UUID`. */ public String getUuid() { return this.Uuid; } /** * Set CWP agent `UUID`. * @param Uuid CWP agent `UUID`. */ public void setUuid(String Uuid) { this.Uuid = Uuid; } public Malware() { } /** * 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 Malware(Malware source) { if (source.Id != null) { this.Id = new Long(source.Id); } if (source.MachineIp != null) { this.MachineIp = new String(source.MachineIp); } if (source.Status != null) { this.Status = new String(source.Status); } if (source.FilePath != null) { this.FilePath = new String(source.FilePath); } if (source.Description != null) { this.Description = new String(source.Description); } if (source.MachineName != null) { this.MachineName = new String(source.MachineName); } if (source.FileCreateTime != null) { this.FileCreateTime = new String(source.FileCreateTime); } if (source.ModifyTime != null) { this.ModifyTime = new String(source.ModifyTime); } if (source.Uuid != null) { this.Uuid = new String(source.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