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

com.tencentcloudapi.cdb.v20170320.models.Address Maven / Gradle / Ivy

There is a newer version: 3.1.1107
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.cdb.v20170320.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class Address extends AbstractModel{

    /**
    * 地址
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Vip")
    @Expose
    private String Vip;

    /**
    * 端口
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("VPort")
    @Expose
    private Long VPort;

    /**
    * 私有网络ID
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("UniqVpcId")
    @Expose
    private String UniqVpcId;

    /**
    * 私有网络子网ID
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("UniqSubnet")
    @Expose
    private String UniqSubnet;

    /**
    * 描述
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Desc")
    @Expose
    private String Desc;

    /**
     * Get 地址
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Vip 地址
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getVip() {
        return this.Vip;
    }

    /**
     * Set 地址
注意:此字段可能返回 null,表示取不到有效值。
     * @param Vip 地址
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setVip(String Vip) {
        this.Vip = Vip;
    }

    /**
     * Get 端口
注意:此字段可能返回 null,表示取不到有效值。 
     * @return VPort 端口
注意:此字段可能返回 null,表示取不到有效值。
     */
    public Long getVPort() {
        return this.VPort;
    }

    /**
     * Set 端口
注意:此字段可能返回 null,表示取不到有效值。
     * @param VPort 端口
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setVPort(Long VPort) {
        this.VPort = VPort;
    }

    /**
     * Get 私有网络ID
注意:此字段可能返回 null,表示取不到有效值。 
     * @return UniqVpcId 私有网络ID
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getUniqVpcId() {
        return this.UniqVpcId;
    }

    /**
     * Set 私有网络ID
注意:此字段可能返回 null,表示取不到有效值。
     * @param UniqVpcId 私有网络ID
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setUniqVpcId(String UniqVpcId) {
        this.UniqVpcId = UniqVpcId;
    }

    /**
     * Get 私有网络子网ID
注意:此字段可能返回 null,表示取不到有效值。 
     * @return UniqSubnet 私有网络子网ID
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getUniqSubnet() {
        return this.UniqSubnet;
    }

    /**
     * Set 私有网络子网ID
注意:此字段可能返回 null,表示取不到有效值。
     * @param UniqSubnet 私有网络子网ID
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setUniqSubnet(String UniqSubnet) {
        this.UniqSubnet = UniqSubnet;
    }

    /**
     * Get 描述
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Desc 描述
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getDesc() {
        return this.Desc;
    }

    /**
     * Set 描述
注意:此字段可能返回 null,表示取不到有效值。
     * @param Desc 描述
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setDesc(String Desc) {
        this.Desc = Desc;
    }

    public Address() {
    }

    /**
     * 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 Address(Address source) {
        if (source.Vip != null) {
            this.Vip = new String(source.Vip);
        }
        if (source.VPort != null) {
            this.VPort = new Long(source.VPort);
        }
        if (source.UniqVpcId != null) {
            this.UniqVpcId = new String(source.UniqVpcId);
        }
        if (source.UniqSubnet != null) {
            this.UniqSubnet = new String(source.UniqSubnet);
        }
        if (source.Desc != null) {
            this.Desc = new String(source.Desc);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "Vip", this.Vip);
        this.setParamSimple(map, prefix + "VPort", this.VPort);
        this.setParamSimple(map, prefix + "UniqVpcId", this.UniqVpcId);
        this.setParamSimple(map, prefix + "UniqSubnet", this.UniqSubnet);
        this.setParamSimple(map, prefix + "Desc", this.Desc);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy