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

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

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

public class DescribeClusterInfoResponse extends AbstractModel {

    /**
    * 实例名称。
    */
    @SerializedName("ClusterName")
    @Expose
    private String ClusterName;

    /**
    * 集群读写地址信息。
    */
    @SerializedName("ReadWriteAddress")
    @Expose
    private AddressInfo ReadWriteAddress;

    /**
    * 集群只读地址信息。
    */
    @SerializedName("ReadOnlyAddress")
    @Expose
    private AddressInfo [] ReadOnlyAddress;

    /**
    * 集群节点列表信息。
    */
    @SerializedName("NodeList")
    @Expose
    private ClusterNodeInfo [] NodeList;

    /**
    * 只读空间保护阈值,单位GB
    */
    @SerializedName("ReadonlyLimit")
    @Expose
    private Long ReadonlyLimit;

    /**
    * 实例节点数。
    */
    @SerializedName("NodeCount")
    @Expose
    private Long NodeCount;

    /**
    * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
    */
    @SerializedName("RequestId")
    @Expose
    private String RequestId;

    /**
     * Get 实例名称。 
     * @return ClusterName 实例名称。
     */
    public String getClusterName() {
        return this.ClusterName;
    }

    /**
     * Set 实例名称。
     * @param ClusterName 实例名称。
     */
    public void setClusterName(String ClusterName) {
        this.ClusterName = ClusterName;
    }

    /**
     * Get 集群读写地址信息。 
     * @return ReadWriteAddress 集群读写地址信息。
     */
    public AddressInfo getReadWriteAddress() {
        return this.ReadWriteAddress;
    }

    /**
     * Set 集群读写地址信息。
     * @param ReadWriteAddress 集群读写地址信息。
     */
    public void setReadWriteAddress(AddressInfo ReadWriteAddress) {
        this.ReadWriteAddress = ReadWriteAddress;
    }

    /**
     * Get 集群只读地址信息。 
     * @return ReadOnlyAddress 集群只读地址信息。
     */
    public AddressInfo [] getReadOnlyAddress() {
        return this.ReadOnlyAddress;
    }

    /**
     * Set 集群只读地址信息。
     * @param ReadOnlyAddress 集群只读地址信息。
     */
    public void setReadOnlyAddress(AddressInfo [] ReadOnlyAddress) {
        this.ReadOnlyAddress = ReadOnlyAddress;
    }

    /**
     * Get 集群节点列表信息。 
     * @return NodeList 集群节点列表信息。
     */
    public ClusterNodeInfo [] getNodeList() {
        return this.NodeList;
    }

    /**
     * Set 集群节点列表信息。
     * @param NodeList 集群节点列表信息。
     */
    public void setNodeList(ClusterNodeInfo [] NodeList) {
        this.NodeList = NodeList;
    }

    /**
     * Get 只读空间保护阈值,单位GB 
     * @return ReadonlyLimit 只读空间保护阈值,单位GB
     */
    public Long getReadonlyLimit() {
        return this.ReadonlyLimit;
    }

    /**
     * Set 只读空间保护阈值,单位GB
     * @param ReadonlyLimit 只读空间保护阈值,单位GB
     */
    public void setReadonlyLimit(Long ReadonlyLimit) {
        this.ReadonlyLimit = ReadonlyLimit;
    }

    /**
     * Get 实例节点数。 
     * @return NodeCount 实例节点数。
     */
    public Long getNodeCount() {
        return this.NodeCount;
    }

    /**
     * Set 实例节点数。
     * @param NodeCount 实例节点数。
     */
    public void setNodeCount(Long NodeCount) {
        this.NodeCount = NodeCount;
    }

    /**
     * Get 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。 
     * @return RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
     */
    public String getRequestId() {
        return this.RequestId;
    }

    /**
     * Set 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
     * @param RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
     */
    public void setRequestId(String RequestId) {
        this.RequestId = RequestId;
    }

    public DescribeClusterInfoResponse() {
    }

    /**
     * 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 DescribeClusterInfoResponse(DescribeClusterInfoResponse source) {
        if (source.ClusterName != null) {
            this.ClusterName = new String(source.ClusterName);
        }
        if (source.ReadWriteAddress != null) {
            this.ReadWriteAddress = new AddressInfo(source.ReadWriteAddress);
        }
        if (source.ReadOnlyAddress != null) {
            this.ReadOnlyAddress = new AddressInfo[source.ReadOnlyAddress.length];
            for (int i = 0; i < source.ReadOnlyAddress.length; i++) {
                this.ReadOnlyAddress[i] = new AddressInfo(source.ReadOnlyAddress[i]);
            }
        }
        if (source.NodeList != null) {
            this.NodeList = new ClusterNodeInfo[source.NodeList.length];
            for (int i = 0; i < source.NodeList.length; i++) {
                this.NodeList[i] = new ClusterNodeInfo(source.NodeList[i]);
            }
        }
        if (source.ReadonlyLimit != null) {
            this.ReadonlyLimit = new Long(source.ReadonlyLimit);
        }
        if (source.NodeCount != null) {
            this.NodeCount = new Long(source.NodeCount);
        }
        if (source.RequestId != null) {
            this.RequestId = new String(source.RequestId);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "ClusterName", this.ClusterName);
        this.setParamObj(map, prefix + "ReadWriteAddress.", this.ReadWriteAddress);
        this.setParamArrayObj(map, prefix + "ReadOnlyAddress.", this.ReadOnlyAddress);
        this.setParamArrayObj(map, prefix + "NodeList.", this.NodeList);
        this.setParamSimple(map, prefix + "ReadonlyLimit", this.ReadonlyLimit);
        this.setParamSimple(map, prefix + "NodeCount", this.NodeCount);
        this.setParamSimple(map, prefix + "RequestId", this.RequestId);

    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy