com.tencentcloudapi.cvm.v20170312.models.CreateDisasterRecoverGroupResponse 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.cvm.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateDisasterRecoverGroupResponse extends AbstractModel{
/**
* 分散置放群组ID列表。
*/
@SerializedName("DisasterRecoverGroupId")
@Expose
private String DisasterRecoverGroupId;
/**
* 分散置放群组类型,取值范围:
HOST:物理机
SW:交换机
RACK:机架
*/
@SerializedName("Type")
@Expose
private String Type;
/**
* 分散置放群组名称,长度1-60个字符,支持中、英文。
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 置放群组内可容纳的云服务器数量。
*/
@SerializedName("CvmQuotaTotal")
@Expose
private Long CvmQuotaTotal;
/**
* 置放群组内已有的云服务器数量。
*/
@SerializedName("CurrentNum")
@Expose
private Long CurrentNum;
/**
* 置放群组创建时间。
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get 分散置放群组ID列表。
* @return DisasterRecoverGroupId 分散置放群组ID列表。
*/
public String getDisasterRecoverGroupId() {
return this.DisasterRecoverGroupId;
}
/**
* Set 分散置放群组ID列表。
* @param DisasterRecoverGroupId 分散置放群组ID列表。
*/
public void setDisasterRecoverGroupId(String DisasterRecoverGroupId) {
this.DisasterRecoverGroupId = DisasterRecoverGroupId;
}
/**
* Get 分散置放群组类型,取值范围:
HOST:物理机
SW:交换机
RACK:机架
* @return Type 分散置放群组类型,取值范围:
HOST:物理机
SW:交换机
RACK:机架
*/
public String getType() {
return this.Type;
}
/**
* Set 分散置放群组类型,取值范围:
HOST:物理机
SW:交换机
RACK:机架
* @param Type 分散置放群组类型,取值范围:
HOST:物理机
SW:交换机
RACK:机架
*/
public void setType(String Type) {
this.Type = Type;
}
/**
* Get 分散置放群组名称,长度1-60个字符,支持中、英文。
* @return Name 分散置放群组名称,长度1-60个字符,支持中、英文。
*/
public String getName() {
return this.Name;
}
/**
* Set 分散置放群组名称,长度1-60个字符,支持中、英文。
* @param Name 分散置放群组名称,长度1-60个字符,支持中、英文。
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 置放群组内可容纳的云服务器数量。
* @return CvmQuotaTotal 置放群组内可容纳的云服务器数量。
*/
public Long getCvmQuotaTotal() {
return this.CvmQuotaTotal;
}
/**
* Set 置放群组内可容纳的云服务器数量。
* @param CvmQuotaTotal 置放群组内可容纳的云服务器数量。
*/
public void setCvmQuotaTotal(Long CvmQuotaTotal) {
this.CvmQuotaTotal = CvmQuotaTotal;
}
/**
* Get 置放群组内已有的云服务器数量。
* @return CurrentNum 置放群组内已有的云服务器数量。
*/
public Long getCurrentNum() {
return this.CurrentNum;
}
/**
* Set 置放群组内已有的云服务器数量。
* @param CurrentNum 置放群组内已有的云服务器数量。
*/
public void setCurrentNum(Long CurrentNum) {
this.CurrentNum = CurrentNum;
}
/**
* Get 置放群组创建时间。
* @return CreateTime 置放群组创建时间。
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set 置放群组创建时间。
* @param CreateTime 置放群组创建时间。
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public CreateDisasterRecoverGroupResponse() {
}
/**
* 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 CreateDisasterRecoverGroupResponse(CreateDisasterRecoverGroupResponse source) {
if (source.DisasterRecoverGroupId != null) {
this.DisasterRecoverGroupId = new String(source.DisasterRecoverGroupId);
}
if (source.Type != null) {
this.Type = new String(source.Type);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.CvmQuotaTotal != null) {
this.CvmQuotaTotal = new Long(source.CvmQuotaTotal);
}
if (source.CurrentNum != null) {
this.CurrentNum = new Long(source.CurrentNum);
}
if (source.CreateTime != null) {
this.CreateTime = new String(source.CreateTime);
}
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 + "DisasterRecoverGroupId", this.DisasterRecoverGroupId);
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "CvmQuotaTotal", this.CvmQuotaTotal);
this.setParamSimple(map, prefix + "CurrentNum", this.CurrentNum);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy