
com.tencentcloudapi.tcss.v20201101.models.VulDefenceHost 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.tcss.v20201101.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class VulDefenceHost extends AbstractModel{
/**
* 主机名称
*/
@SerializedName("HostName")
@Expose
private String HostName;
/**
* 主机ip即内网ip
*/
@SerializedName("HostIP")
@Expose
private String HostIP;
/**
* 主机QUUID
*/
@SerializedName("HostID")
@Expose
private String HostID;
/**
* 插件状态,正常:SUCCESS,异常:FAIL, NO_DEFENDED:未防御
*/
@SerializedName("Status")
@Expose
private String Status;
/**
* 外网ip
*/
@SerializedName("PublicIP")
@Expose
private String PublicIP;
/**
* 首次开启时间
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* 更新时间
*/
@SerializedName("ModifyTime")
@Expose
private String ModifyTime;
/**
* Get 主机名称
* @return HostName 主机名称
*/
public String getHostName() {
return this.HostName;
}
/**
* Set 主机名称
* @param HostName 主机名称
*/
public void setHostName(String HostName) {
this.HostName = HostName;
}
/**
* Get 主机ip即内网ip
* @return HostIP 主机ip即内网ip
*/
public String getHostIP() {
return this.HostIP;
}
/**
* Set 主机ip即内网ip
* @param HostIP 主机ip即内网ip
*/
public void setHostIP(String HostIP) {
this.HostIP = HostIP;
}
/**
* Get 主机QUUID
* @return HostID 主机QUUID
*/
public String getHostID() {
return this.HostID;
}
/**
* Set 主机QUUID
* @param HostID 主机QUUID
*/
public void setHostID(String HostID) {
this.HostID = HostID;
}
/**
* Get 插件状态,正常:SUCCESS,异常:FAIL, NO_DEFENDED:未防御
* @return Status 插件状态,正常:SUCCESS,异常:FAIL, NO_DEFENDED:未防御
*/
public String getStatus() {
return this.Status;
}
/**
* Set 插件状态,正常:SUCCESS,异常:FAIL, NO_DEFENDED:未防御
* @param Status 插件状态,正常:SUCCESS,异常:FAIL, NO_DEFENDED:未防御
*/
public void setStatus(String Status) {
this.Status = Status;
}
/**
* Get 外网ip
* @return PublicIP 外网ip
*/
public String getPublicIP() {
return this.PublicIP;
}
/**
* Set 外网ip
* @param PublicIP 外网ip
*/
public void setPublicIP(String PublicIP) {
this.PublicIP = PublicIP;
}
/**
* Get 首次开启时间
* @return CreateTime 首次开启时间
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set 首次开启时间
* @param CreateTime 首次开启时间
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Get 更新时间
* @return ModifyTime 更新时间
*/
public String getModifyTime() {
return this.ModifyTime;
}
/**
* Set 更新时间
* @param ModifyTime 更新时间
*/
public void setModifyTime(String ModifyTime) {
this.ModifyTime = ModifyTime;
}
public VulDefenceHost() {
}
/**
* 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 VulDefenceHost(VulDefenceHost source) {
if (source.HostName != null) {
this.HostName = new String(source.HostName);
}
if (source.HostIP != null) {
this.HostIP = new String(source.HostIP);
}
if (source.HostID != null) {
this.HostID = new String(source.HostID);
}
if (source.Status != null) {
this.Status = new String(source.Status);
}
if (source.PublicIP != null) {
this.PublicIP = new String(source.PublicIP);
}
if (source.CreateTime != null) {
this.CreateTime = new String(source.CreateTime);
}
if (source.ModifyTime != null) {
this.ModifyTime = new String(source.ModifyTime);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "HostName", this.HostName);
this.setParamSimple(map, prefix + "HostIP", this.HostIP);
this.setParamSimple(map, prefix + "HostID", this.HostID);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "PublicIP", this.PublicIP);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
this.setParamSimple(map, prefix + "ModifyTime", this.ModifyTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy