com.tencentcloudapi.thpc.v20220401.models.AddNodesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-thpc Show documentation
Show all versions of tencentcloud-sdk-java-thpc 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.thpc.v20220401.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 AddNodesRequest extends AbstractModel {
/**
* 集群中实例所在的位置。
*/
@SerializedName("Placement")
@Expose
private Placement Placement;
/**
* 集群ID。
*/
@SerializedName("ClusterId")
@Expose
private String ClusterId;
/**
* 私有网络相关信息配置。
*/
@SerializedName("VirtualPrivateCloud")
@Expose
private VirtualPrivateCloud VirtualPrivateCloud;
/**
* 添加节点数量。
*/
@SerializedName("Count")
@Expose
private Long Count;
/**
* 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
*/
@SerializedName("ImageId")
@Expose
private String ImageId;
/**
* 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。
PREPAID:预付费,即包年包月
POSTPAID_BY_HOUR:按小时后付费
SPOTPAID:竞价付费
默认值:POSTPAID_BY_HOUR。
*/
@SerializedName("InstanceChargeType")
@Expose
private String InstanceChargeType;
/**
* 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
*/
@SerializedName("InstanceChargePrepaid")
@Expose
private InstanceChargePrepaid InstanceChargePrepaid;
/**
* 节点机型。不同实例机型指定了不同的资源规格。
具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
*/
@SerializedName("InstanceType")
@Expose
private String InstanceType;
/**
* 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
*/
@SerializedName("SystemDisk")
@Expose
private SystemDisk [] SystemDisk;
/**
* 节点数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。
*/
@SerializedName("DataDisks")
@Expose
private DataDisk [] DataDisks;
/**
* 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
*/
@SerializedName("InternetAccessible")
@Expose
private InternetAccessible InternetAccessible;
/**
* 节点显示名称。
不指定节点显示名称则默认显示‘未命名’。
最多支持60个字符。
*/
@SerializedName("InstanceName")
@Expose
private String InstanceName;
/**
* 集群登录设置。
*/
@SerializedName("LoginSettings")
@Expose
private LoginSettings LoginSettings;
/**
* 集群中实例所属安全组。该参数可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。
*/
@SerializedName("SecurityGroupIds")
@Expose
private String [] SecurityGroupIds;
/**
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
*/
@SerializedName("ClientToken")
@Expose
private String ClientToken;
/**
* 队列名称。不指定则为默认队列。 SLURM默认队列为:compute。 SGE默认队列为:all.q。
*/
@SerializedName("QueueName")
@Expose
private String QueueName;
/**
* 添加节点角色。默认值:Compute
Compute:计算节点。
Login:登录节点。
*/
@SerializedName("NodeRole")
@Expose
private String NodeRole;
/**
* 是否只预检此次请求。
true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
如果检查不通过,则返回对应错误码;
如果检查通过,则返回RequestId.
false(默认):发送正常请求,通过检查后直接创建实例
*/
@SerializedName("DryRun")
@Expose
private Boolean DryRun;
/**
* 添加节点类型。默认取值:STATIC。 STATIC:静态节点,不会参与弹性伸缩流程。 DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
*/
@SerializedName("NodeType")
@Expose
private String NodeType;
/**
* Get 集群中实例所在的位置。
* @return Placement 集群中实例所在的位置。
*/
public Placement getPlacement() {
return this.Placement;
}
/**
* Set 集群中实例所在的位置。
* @param Placement 集群中实例所在的位置。
*/
public void setPlacement(Placement Placement) {
this.Placement = Placement;
}
/**
* Get 集群ID。
* @return ClusterId 集群ID。
*/
public String getClusterId() {
return this.ClusterId;
}
/**
* Set 集群ID。
* @param ClusterId 集群ID。
*/
public void setClusterId(String ClusterId) {
this.ClusterId = ClusterId;
}
/**
* Get 私有网络相关信息配置。
* @return VirtualPrivateCloud 私有网络相关信息配置。
*/
public VirtualPrivateCloud getVirtualPrivateCloud() {
return this.VirtualPrivateCloud;
}
/**
* Set 私有网络相关信息配置。
* @param VirtualPrivateCloud 私有网络相关信息配置。
*/
public void setVirtualPrivateCloud(VirtualPrivateCloud VirtualPrivateCloud) {
this.VirtualPrivateCloud = VirtualPrivateCloud;
}
/**
* Get 添加节点数量。
* @return Count 添加节点数量。
*/
public Long getCount() {
return this.Count;
}
/**
* Set 添加节点数量。
* @param Count 添加节点数量。
*/
public void setCount(Long Count) {
this.Count = Count;
}
/**
* Get 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
* @return ImageId 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
*/
public String getImageId() {
return this.ImageId;
}
/**
* Set 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
* @param ImageId 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
*/
public void setImageId(String ImageId) {
this.ImageId = ImageId;
}
/**
* Get 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。
PREPAID:预付费,即包年包月
POSTPAID_BY_HOUR:按小时后付费
SPOTPAID:竞价付费
默认值:POSTPAID_BY_HOUR。
* @return InstanceChargeType 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。
PREPAID:预付费,即包年包月
POSTPAID_BY_HOUR:按小时后付费
SPOTPAID:竞价付费
默认值:POSTPAID_BY_HOUR。
*/
public String getInstanceChargeType() {
return this.InstanceChargeType;
}
/**
* Set 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。
PREPAID:预付费,即包年包月
POSTPAID_BY_HOUR:按小时后付费
SPOTPAID:竞价付费
默认值:POSTPAID_BY_HOUR。
* @param InstanceChargeType 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。
PREPAID:预付费,即包年包月
POSTPAID_BY_HOUR:按小时后付费
SPOTPAID:竞价付费
默认值:POSTPAID_BY_HOUR。
*/
public void setInstanceChargeType(String InstanceChargeType) {
this.InstanceChargeType = InstanceChargeType;
}
/**
* Get 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
* @return InstanceChargePrepaid 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
*/
public InstanceChargePrepaid getInstanceChargePrepaid() {
return this.InstanceChargePrepaid;
}
/**
* Set 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
* @param InstanceChargePrepaid 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
*/
public void setInstanceChargePrepaid(InstanceChargePrepaid InstanceChargePrepaid) {
this.InstanceChargePrepaid = InstanceChargePrepaid;
}
/**
* Get 节点机型。不同实例机型指定了不同的资源规格。
具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
* @return InstanceType 节点机型。不同实例机型指定了不同的资源规格。
具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
*/
public String getInstanceType() {
return this.InstanceType;
}
/**
* Set 节点机型。不同实例机型指定了不同的资源规格。
具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
* @param InstanceType 节点机型。不同实例机型指定了不同的资源规格。
具体取值可通过调用接口[DescribeInstanceTypeConfigs](https://cloud.tencent.com/document/api/213/15749)来获得最新的规格表或参见[实例规格](https://cloud.tencent.com/document/product/213/11518)描述。
*/
public void setInstanceType(String InstanceType) {
this.InstanceType = InstanceType;
}
/**
* Get 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
* @return SystemDisk 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
*/
public SystemDisk [] getSystemDisk() {
return this.SystemDisk;
}
/**
* Set 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
* @param SystemDisk 节点系统盘配置信息。若不指定该参数,则按照系统默认值进行分配。
*/
public void setSystemDisk(SystemDisk [] SystemDisk) {
this.SystemDisk = SystemDisk;
}
/**
* Get 节点数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。
* @return DataDisks 节点数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。
*/
public DataDisk [] getDataDisks() {
return this.DataDisks;
}
/**
* Set 节点数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。
* @param DataDisks 节点数据盘配置信息。若不指定该参数,则默认不购买数据盘。支持购买的时候指定21块数据盘,其中最多包含1块LOCAL_BASIC数据盘或者LOCAL_SSD数据盘,最多包含20块CLOUD_BASIC数据盘、CLOUD_PREMIUM数据盘或者CLOUD_SSD数据盘。
*/
public void setDataDisks(DataDisk [] DataDisks) {
this.DataDisks = DataDisks;
}
/**
* Get 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
* @return InternetAccessible 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
*/
public InternetAccessible getInternetAccessible() {
return this.InternetAccessible;
}
/**
* Set 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
* @param InternetAccessible 公网带宽相关信息设置。若不指定该参数,则默认公网带宽为0Mbps。
*/
public void setInternetAccessible(InternetAccessible InternetAccessible) {
this.InternetAccessible = InternetAccessible;
}
/**
* Get 节点显示名称。
不指定节点显示名称则默认显示‘未命名’。
最多支持60个字符。
* @return InstanceName 节点显示名称。
不指定节点显示名称则默认显示‘未命名’。
最多支持60个字符。
*/
public String getInstanceName() {
return this.InstanceName;
}
/**
* Set 节点显示名称。
不指定节点显示名称则默认显示‘未命名’。
最多支持60个字符。
* @param InstanceName 节点显示名称。
不指定节点显示名称则默认显示‘未命名’。
最多支持60个字符。
*/
public void setInstanceName(String InstanceName) {
this.InstanceName = InstanceName;
}
/**
* Get 集群登录设置。
* @return LoginSettings 集群登录设置。
*/
public LoginSettings getLoginSettings() {
return this.LoginSettings;
}
/**
* Set 集群登录设置。
* @param LoginSettings 集群登录设置。
*/
public void setLoginSettings(LoginSettings LoginSettings) {
this.LoginSettings = LoginSettings;
}
/**
* Get 集群中实例所属安全组。该参数可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。
* @return SecurityGroupIds 集群中实例所属安全组。该参数可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。
*/
public String [] getSecurityGroupIds() {
return this.SecurityGroupIds;
}
/**
* Set 集群中实例所属安全组。该参数可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。
* @param SecurityGroupIds 集群中实例所属安全组。该参数可以通过调用 [DescribeSecurityGroups](https://cloud.tencent.com/document/api/215/15808) 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。
*/
public void setSecurityGroupIds(String [] SecurityGroupIds) {
this.SecurityGroupIds = SecurityGroupIds;
}
/**
* Get 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
* @return ClientToken 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
*/
public String getClientToken() {
return this.ClientToken;
}
/**
* Set 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
* @param ClientToken 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
*/
public void setClientToken(String ClientToken) {
this.ClientToken = ClientToken;
}
/**
* Get 队列名称。不指定则为默认队列。 SLURM默认队列为:compute。 SGE默认队列为:all.q。
* @return QueueName 队列名称。不指定则为默认队列。 SLURM默认队列为:compute。 SGE默认队列为:all.q。
*/
public String getQueueName() {
return this.QueueName;
}
/**
* Set 队列名称。不指定则为默认队列。 SLURM默认队列为:compute。 SGE默认队列为:all.q。
* @param QueueName 队列名称。不指定则为默认队列。 SLURM默认队列为:compute。 SGE默认队列为:all.q。
*/
public void setQueueName(String QueueName) {
this.QueueName = QueueName;
}
/**
* Get 添加节点角色。默认值:Compute
Compute:计算节点。
Login:登录节点。
* @return NodeRole 添加节点角色。默认值:Compute
Compute:计算节点。
Login:登录节点。
*/
public String getNodeRole() {
return this.NodeRole;
}
/**
* Set 添加节点角色。默认值:Compute
Compute:计算节点。
Login:登录节点。
* @param NodeRole 添加节点角色。默认值:Compute
Compute:计算节点。
Login:登录节点。
*/
public void setNodeRole(String NodeRole) {
this.NodeRole = NodeRole;
}
/**
* Get 是否只预检此次请求。
true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
如果检查不通过,则返回对应错误码;
如果检查通过,则返回RequestId.
false(默认):发送正常请求,通过检查后直接创建实例
* @return DryRun 是否只预检此次请求。
true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
如果检查不通过,则返回对应错误码;
如果检查通过,则返回RequestId.
false(默认):发送正常请求,通过检查后直接创建实例
*/
public Boolean getDryRun() {
return this.DryRun;
}
/**
* Set 是否只预检此次请求。
true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
如果检查不通过,则返回对应错误码;
如果检查通过,则返回RequestId.
false(默认):发送正常请求,通过检查后直接创建实例
* @param DryRun 是否只预检此次请求。
true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
如果检查不通过,则返回对应错误码;
如果检查通过,则返回RequestId.
false(默认):发送正常请求,通过检查后直接创建实例
*/
public void setDryRun(Boolean DryRun) {
this.DryRun = DryRun;
}
/**
* Get 添加节点类型。默认取值:STATIC。 STATIC:静态节点,不会参与弹性伸缩流程。 DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
* @return NodeType 添加节点类型。默认取值:STATIC。 STATIC:静态节点,不会参与弹性伸缩流程。 DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
*/
public String getNodeType() {
return this.NodeType;
}
/**
* Set 添加节点类型。默认取值:STATIC。 STATIC:静态节点,不会参与弹性伸缩流程。 DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
* @param NodeType 添加节点类型。默认取值:STATIC。 STATIC:静态节点,不会参与弹性伸缩流程。 DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
*/
public void setNodeType(String NodeType) {
this.NodeType = NodeType;
}
public AddNodesRequest() {
}
/**
* 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 AddNodesRequest(AddNodesRequest source) {
if (source.Placement != null) {
this.Placement = new Placement(source.Placement);
}
if (source.ClusterId != null) {
this.ClusterId = new String(source.ClusterId);
}
if (source.VirtualPrivateCloud != null) {
this.VirtualPrivateCloud = new VirtualPrivateCloud(source.VirtualPrivateCloud);
}
if (source.Count != null) {
this.Count = new Long(source.Count);
}
if (source.ImageId != null) {
this.ImageId = new String(source.ImageId);
}
if (source.InstanceChargeType != null) {
this.InstanceChargeType = new String(source.InstanceChargeType);
}
if (source.InstanceChargePrepaid != null) {
this.InstanceChargePrepaid = new InstanceChargePrepaid(source.InstanceChargePrepaid);
}
if (source.InstanceType != null) {
this.InstanceType = new String(source.InstanceType);
}
if (source.SystemDisk != null) {
this.SystemDisk = new SystemDisk[source.SystemDisk.length];
for (int i = 0; i < source.SystemDisk.length; i++) {
this.SystemDisk[i] = new SystemDisk(source.SystemDisk[i]);
}
}
if (source.DataDisks != null) {
this.DataDisks = new DataDisk[source.DataDisks.length];
for (int i = 0; i < source.DataDisks.length; i++) {
this.DataDisks[i] = new DataDisk(source.DataDisks[i]);
}
}
if (source.InternetAccessible != null) {
this.InternetAccessible = new InternetAccessible(source.InternetAccessible);
}
if (source.InstanceName != null) {
this.InstanceName = new String(source.InstanceName);
}
if (source.LoginSettings != null) {
this.LoginSettings = new LoginSettings(source.LoginSettings);
}
if (source.SecurityGroupIds != null) {
this.SecurityGroupIds = new String[source.SecurityGroupIds.length];
for (int i = 0; i < source.SecurityGroupIds.length; i++) {
this.SecurityGroupIds[i] = new String(source.SecurityGroupIds[i]);
}
}
if (source.ClientToken != null) {
this.ClientToken = new String(source.ClientToken);
}
if (source.QueueName != null) {
this.QueueName = new String(source.QueueName);
}
if (source.NodeRole != null) {
this.NodeRole = new String(source.NodeRole);
}
if (source.DryRun != null) {
this.DryRun = new Boolean(source.DryRun);
}
if (source.NodeType != null) {
this.NodeType = new String(source.NodeType);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamObj(map, prefix + "Placement.", this.Placement);
this.setParamSimple(map, prefix + "ClusterId", this.ClusterId);
this.setParamObj(map, prefix + "VirtualPrivateCloud.", this.VirtualPrivateCloud);
this.setParamSimple(map, prefix + "Count", this.Count);
this.setParamSimple(map, prefix + "ImageId", this.ImageId);
this.setParamSimple(map, prefix + "InstanceChargeType", this.InstanceChargeType);
this.setParamObj(map, prefix + "InstanceChargePrepaid.", this.InstanceChargePrepaid);
this.setParamSimple(map, prefix + "InstanceType", this.InstanceType);
this.setParamArrayObj(map, prefix + "SystemDisk.", this.SystemDisk);
this.setParamArrayObj(map, prefix + "DataDisks.", this.DataDisks);
this.setParamObj(map, prefix + "InternetAccessible.", this.InternetAccessible);
this.setParamSimple(map, prefix + "InstanceName", this.InstanceName);
this.setParamObj(map, prefix + "LoginSettings.", this.LoginSettings);
this.setParamArraySimple(map, prefix + "SecurityGroupIds.", this.SecurityGroupIds);
this.setParamSimple(map, prefix + "ClientToken", this.ClientToken);
this.setParamSimple(map, prefix + "QueueName", this.QueueName);
this.setParamSimple(map, prefix + "NodeRole", this.NodeRole);
this.setParamSimple(map, prefix + "DryRun", this.DryRun);
this.setParamSimple(map, prefix + "NodeType", this.NodeType);
}
}