com.tencentcloudapi.tiems.v20190416.models.CreateRsgAsGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-tiems Show documentation
Show all versions of tencentcloud-sdk-java-tiems Show documentation
Tencent Cloud Open API SDK for Java
/*
* 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.tiems.v20190416.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateRsgAsGroupRequest extends AbstractModel{
/**
* 资源组 ID
*/
@SerializedName("RsgId")
@Expose
private String RsgId;
/**
* 伸缩组允许的最大节点数
*/
@SerializedName("MaxSize")
@Expose
private Long MaxSize;
/**
* 伸缩组允许的最小节点数
*/
@SerializedName("MinSize")
@Expose
private Long MinSize;
/**
* 伸缩组的节点规格
*/
@SerializedName("InstanceType")
@Expose
private String InstanceType;
/**
* 资源组所在的集群名
*/
@SerializedName("Cluster")
@Expose
private String Cluster;
/**
* 伸缩组名称
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 伸缩组期望的节点数
*/
@SerializedName("DesiredSize")
@Expose
private Long DesiredSize;
/**
* Get 资源组 ID
* @return RsgId 资源组 ID
*/
public String getRsgId() {
return this.RsgId;
}
/**
* Set 资源组 ID
* @param RsgId 资源组 ID
*/
public void setRsgId(String RsgId) {
this.RsgId = RsgId;
}
/**
* Get 伸缩组允许的最大节点数
* @return MaxSize 伸缩组允许的最大节点数
*/
public Long getMaxSize() {
return this.MaxSize;
}
/**
* Set 伸缩组允许的最大节点数
* @param MaxSize 伸缩组允许的最大节点数
*/
public void setMaxSize(Long MaxSize) {
this.MaxSize = MaxSize;
}
/**
* Get 伸缩组允许的最小节点数
* @return MinSize 伸缩组允许的最小节点数
*/
public Long getMinSize() {
return this.MinSize;
}
/**
* Set 伸缩组允许的最小节点数
* @param MinSize 伸缩组允许的最小节点数
*/
public void setMinSize(Long MinSize) {
this.MinSize = MinSize;
}
/**
* Get 伸缩组的节点规格
* @return InstanceType 伸缩组的节点规格
*/
public String getInstanceType() {
return this.InstanceType;
}
/**
* Set 伸缩组的节点规格
* @param InstanceType 伸缩组的节点规格
*/
public void setInstanceType(String InstanceType) {
this.InstanceType = InstanceType;
}
/**
* Get 资源组所在的集群名
* @return Cluster 资源组所在的集群名
*/
public String getCluster() {
return this.Cluster;
}
/**
* Set 资源组所在的集群名
* @param Cluster 资源组所在的集群名
*/
public void setCluster(String Cluster) {
this.Cluster = Cluster;
}
/**
* Get 伸缩组名称
* @return Name 伸缩组名称
*/
public String getName() {
return this.Name;
}
/**
* Set 伸缩组名称
* @param Name 伸缩组名称
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 伸缩组期望的节点数
* @return DesiredSize 伸缩组期望的节点数
*/
public Long getDesiredSize() {
return this.DesiredSize;
}
/**
* Set 伸缩组期望的节点数
* @param DesiredSize 伸缩组期望的节点数
*/
public void setDesiredSize(Long DesiredSize) {
this.DesiredSize = DesiredSize;
}
public CreateRsgAsGroupRequest() {
}
/**
* 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 CreateRsgAsGroupRequest(CreateRsgAsGroupRequest source) {
if (source.RsgId != null) {
this.RsgId = new String(source.RsgId);
}
if (source.MaxSize != null) {
this.MaxSize = new Long(source.MaxSize);
}
if (source.MinSize != null) {
this.MinSize = new Long(source.MinSize);
}
if (source.InstanceType != null) {
this.InstanceType = new String(source.InstanceType);
}
if (source.Cluster != null) {
this.Cluster = new String(source.Cluster);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.DesiredSize != null) {
this.DesiredSize = new Long(source.DesiredSize);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "RsgId", this.RsgId);
this.setParamSimple(map, prefix + "MaxSize", this.MaxSize);
this.setParamSimple(map, prefix + "MinSize", this.MinSize);
this.setParamSimple(map, prefix + "InstanceType", this.InstanceType);
this.setParamSimple(map, prefix + "Cluster", this.Cluster);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "DesiredSize", this.DesiredSize);
}
}