
com.tencentcloudapi.cfw.v20190904.models.StaticInfo 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.cfw.v20190904.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 StaticInfo extends AbstractModel {
/**
* 地址
*/
@SerializedName("Address")
@Expose
private String Address;
/**
* 资产id
*/
@SerializedName("InsID")
@Expose
private String InsID;
/**
* 资产名称
*/
@SerializedName("InsName")
@Expose
private String InsName;
/**
* ip信息
*/
@SerializedName("Ip")
@Expose
private String Ip;
/**
* 数
*/
@SerializedName("Num")
@Expose
private Long Num;
/**
* 端口
*/
@SerializedName("Port")
@Expose
private String Port;
/**
* Get 地址
* @return Address 地址
*/
public String getAddress() {
return this.Address;
}
/**
* Set 地址
* @param Address 地址
*/
public void setAddress(String Address) {
this.Address = Address;
}
/**
* Get 资产id
* @return InsID 资产id
*/
public String getInsID() {
return this.InsID;
}
/**
* Set 资产id
* @param InsID 资产id
*/
public void setInsID(String InsID) {
this.InsID = InsID;
}
/**
* Get 资产名称
* @return InsName 资产名称
*/
public String getInsName() {
return this.InsName;
}
/**
* Set 资产名称
* @param InsName 资产名称
*/
public void setInsName(String InsName) {
this.InsName = InsName;
}
/**
* Get ip信息
* @return Ip ip信息
*/
public String getIp() {
return this.Ip;
}
/**
* Set ip信息
* @param Ip ip信息
*/
public void setIp(String Ip) {
this.Ip = Ip;
}
/**
* Get 数
* @return Num 数
*/
public Long getNum() {
return this.Num;
}
/**
* Set 数
* @param Num 数
*/
public void setNum(Long Num) {
this.Num = Num;
}
/**
* Get 端口
* @return Port 端口
*/
public String getPort() {
return this.Port;
}
/**
* Set 端口
* @param Port 端口
*/
public void setPort(String Port) {
this.Port = Port;
}
public StaticInfo() {
}
/**
* 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 StaticInfo(StaticInfo source) {
if (source.Address != null) {
this.Address = new String(source.Address);
}
if (source.InsID != null) {
this.InsID = new String(source.InsID);
}
if (source.InsName != null) {
this.InsName = new String(source.InsName);
}
if (source.Ip != null) {
this.Ip = new String(source.Ip);
}
if (source.Num != null) {
this.Num = new Long(source.Num);
}
if (source.Port != null) {
this.Port = new String(source.Port);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Address", this.Address);
this.setParamSimple(map, prefix + "InsID", this.InsID);
this.setParamSimple(map, prefix + "InsName", this.InsName);
this.setParamSimple(map, prefix + "Ip", this.Ip);
this.setParamSimple(map, prefix + "Num", this.Num);
this.setParamSimple(map, prefix + "Port", this.Port);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy