
com.tencentcloudapi.postgres.v20170312.models.CreateInstancesRequest 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.postgres.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 CreateInstancesRequest extends AbstractModel{
/**
* 售卖规格ID。该参数可以通过调用DescribeProductConfig的返回值中的SpecCode字段来获取。
*/
@SerializedName("SpecCode")
@Expose
private String SpecCode;
/**
* 实例容量大小,单位:GB。
*/
@SerializedName("Storage")
@Expose
private Long Storage;
/**
* 一次性购买的实例数量。取值1-10。
*/
@SerializedName("InstanceCount")
@Expose
private Long InstanceCount;
/**
* 购买时长,单位:月。目前只支持1,2,3,4,5,6,7,8,9,10,11,12,24,36这些值,按量计费模式下该参数传1。
*/
@SerializedName("Period")
@Expose
private Long Period;
/**
* 可用区ID。该参数可以通过调用 DescribeZones 接口的返回值中的Zone字段来获取。
*/
@SerializedName("Zone")
@Expose
private String Zone;
/**
* 实例字符集,目前只支持:UTF8、LATIN1。
*/
@SerializedName("Charset")
@Expose
private String Charset;
/**
* 实例根账号用户名。
*/
@SerializedName("AdminName")
@Expose
private String AdminName;
/**
* 实例根账号用户名对应的密码。
*/
@SerializedName("AdminPassword")
@Expose
private String AdminPassword;
/**
* 项目ID。
*/
@SerializedName("ProjectId")
@Expose
private Long ProjectId;
/**
* PostgreSQL版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
*/
@SerializedName("DBVersion")
@Expose
private String DBVersion;
/**
* 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。
*/
@SerializedName("InstanceChargeType")
@Expose
private String InstanceChargeType;
/**
* 是否自动使用代金券。1(是),0(否),默认不使用。
*/
@SerializedName("AutoVoucher")
@Expose
private Long AutoVoucher;
/**
* 代金券ID列表,目前仅支持指定一张代金券。
*/
@SerializedName("VoucherIds")
@Expose
private String [] VoucherIds;
/**
* 私有网络ID。
*/
@SerializedName("VpcId")
@Expose
private String VpcId;
/**
* 已配置的私有网络中的子网ID。
*/
@SerializedName("SubnetId")
@Expose
private String SubnetId;
/**
* 续费标记:0-正常续费(默认);1-自动续费。
*/
@SerializedName("AutoRenewFlag")
@Expose
private Long AutoRenewFlag;
/**
* 活动ID。
*/
@SerializedName("ActivityId")
@Expose
private Long ActivityId;
/**
* 实例名。
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 是否需要支持Ipv6,1:是,0:否(默认)。
*/
@SerializedName("NeedSupportIpv6")
@Expose
private Long NeedSupportIpv6;
/**
* 实例需要绑定的Tag信息,默认为空。
*/
@SerializedName("TagList")
@Expose
private Tag [] TagList;
/**
* 安全组ID。
*/
@SerializedName("SecurityGroupIds")
@Expose
private String [] SecurityGroupIds;
/**
* PostgreSQL主要版本。目前支持10,11,12,13这几个版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
*/
@SerializedName("DBMajorVersion")
@Expose
private String DBMajorVersion;
/**
* PostgreSQL内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
*/
@SerializedName("DBKernelVersion")
@Expose
private String DBKernelVersion;
/**
* 实例节点信息,购买跨可用区实例时填写。
*/
@SerializedName("DBNodeSet")
@Expose
private DBNode [] DBNodeSet;
/**
* 是否需要支持数据透明加密,1:是,0:否(默认)。
*/
@SerializedName("NeedSupportTDE")
@Expose
private Long NeedSupportTDE;
/**
* 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyId,keyId是CMK的唯一标识。
*/
@SerializedName("KMSKeyId")
@Expose
private String KMSKeyId;
/**
* 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
*/
@SerializedName("KMSRegion")
@Expose
private String KMSRegion;
/**
* Get 售卖规格ID。该参数可以通过调用DescribeProductConfig的返回值中的SpecCode字段来获取。
* @return SpecCode 售卖规格ID。该参数可以通过调用DescribeProductConfig的返回值中的SpecCode字段来获取。
*/
public String getSpecCode() {
return this.SpecCode;
}
/**
* Set 售卖规格ID。该参数可以通过调用DescribeProductConfig的返回值中的SpecCode字段来获取。
* @param SpecCode 售卖规格ID。该参数可以通过调用DescribeProductConfig的返回值中的SpecCode字段来获取。
*/
public void setSpecCode(String SpecCode) {
this.SpecCode = SpecCode;
}
/**
* Get 实例容量大小,单位:GB。
* @return Storage 实例容量大小,单位:GB。
*/
public Long getStorage() {
return this.Storage;
}
/**
* Set 实例容量大小,单位:GB。
* @param Storage 实例容量大小,单位:GB。
*/
public void setStorage(Long Storage) {
this.Storage = Storage;
}
/**
* Get 一次性购买的实例数量。取值1-10。
* @return InstanceCount 一次性购买的实例数量。取值1-10。
*/
public Long getInstanceCount() {
return this.InstanceCount;
}
/**
* Set 一次性购买的实例数量。取值1-10。
* @param InstanceCount 一次性购买的实例数量。取值1-10。
*/
public void setInstanceCount(Long InstanceCount) {
this.InstanceCount = InstanceCount;
}
/**
* Get 购买时长,单位:月。目前只支持1,2,3,4,5,6,7,8,9,10,11,12,24,36这些值,按量计费模式下该参数传1。
* @return Period 购买时长,单位:月。目前只支持1,2,3,4,5,6,7,8,9,10,11,12,24,36这些值,按量计费模式下该参数传1。
*/
public Long getPeriod() {
return this.Period;
}
/**
* Set 购买时长,单位:月。目前只支持1,2,3,4,5,6,7,8,9,10,11,12,24,36这些值,按量计费模式下该参数传1。
* @param Period 购买时长,单位:月。目前只支持1,2,3,4,5,6,7,8,9,10,11,12,24,36这些值,按量计费模式下该参数传1。
*/
public void setPeriod(Long Period) {
this.Period = Period;
}
/**
* Get 可用区ID。该参数可以通过调用 DescribeZones 接口的返回值中的Zone字段来获取。
* @return Zone 可用区ID。该参数可以通过调用 DescribeZones 接口的返回值中的Zone字段来获取。
*/
public String getZone() {
return this.Zone;
}
/**
* Set 可用区ID。该参数可以通过调用 DescribeZones 接口的返回值中的Zone字段来获取。
* @param Zone 可用区ID。该参数可以通过调用 DescribeZones 接口的返回值中的Zone字段来获取。
*/
public void setZone(String Zone) {
this.Zone = Zone;
}
/**
* Get 实例字符集,目前只支持:UTF8、LATIN1。
* @return Charset 实例字符集,目前只支持:UTF8、LATIN1。
*/
public String getCharset() {
return this.Charset;
}
/**
* Set 实例字符集,目前只支持:UTF8、LATIN1。
* @param Charset 实例字符集,目前只支持:UTF8、LATIN1。
*/
public void setCharset(String Charset) {
this.Charset = Charset;
}
/**
* Get 实例根账号用户名。
* @return AdminName 实例根账号用户名。
*/
public String getAdminName() {
return this.AdminName;
}
/**
* Set 实例根账号用户名。
* @param AdminName 实例根账号用户名。
*/
public void setAdminName(String AdminName) {
this.AdminName = AdminName;
}
/**
* Get 实例根账号用户名对应的密码。
* @return AdminPassword 实例根账号用户名对应的密码。
*/
public String getAdminPassword() {
return this.AdminPassword;
}
/**
* Set 实例根账号用户名对应的密码。
* @param AdminPassword 实例根账号用户名对应的密码。
*/
public void setAdminPassword(String AdminPassword) {
this.AdminPassword = AdminPassword;
}
/**
* Get 项目ID。
* @return ProjectId 项目ID。
*/
public Long getProjectId() {
return this.ProjectId;
}
/**
* Set 项目ID。
* @param ProjectId 项目ID。
*/
public void setProjectId(Long ProjectId) {
this.ProjectId = ProjectId;
}
/**
* Get PostgreSQL版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
* @return DBVersion PostgreSQL版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
*/
public String getDBVersion() {
return this.DBVersion;
}
/**
* Set PostgreSQL版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
* @param DBVersion PostgreSQL版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBMajorVersion、DBKernelVersion至少需要传递一个。
*/
public void setDBVersion(String DBVersion) {
this.DBVersion = DBVersion;
}
/**
* Get 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。
* @return InstanceChargeType 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。
*/
public String getInstanceChargeType() {
return this.InstanceChargeType;
}
/**
* Set 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。
* @param InstanceChargeType 实例计费类型。目前支持:PREPAID(预付费,即包年包月),POSTPAID_BY_HOUR(后付费,即按量计费)。
*/
public void setInstanceChargeType(String InstanceChargeType) {
this.InstanceChargeType = InstanceChargeType;
}
/**
* Get 是否自动使用代金券。1(是),0(否),默认不使用。
* @return AutoVoucher 是否自动使用代金券。1(是),0(否),默认不使用。
*/
public Long getAutoVoucher() {
return this.AutoVoucher;
}
/**
* Set 是否自动使用代金券。1(是),0(否),默认不使用。
* @param AutoVoucher 是否自动使用代金券。1(是),0(否),默认不使用。
*/
public void setAutoVoucher(Long AutoVoucher) {
this.AutoVoucher = AutoVoucher;
}
/**
* Get 代金券ID列表,目前仅支持指定一张代金券。
* @return VoucherIds 代金券ID列表,目前仅支持指定一张代金券。
*/
public String [] getVoucherIds() {
return this.VoucherIds;
}
/**
* Set 代金券ID列表,目前仅支持指定一张代金券。
* @param VoucherIds 代金券ID列表,目前仅支持指定一张代金券。
*/
public void setVoucherIds(String [] VoucherIds) {
this.VoucherIds = VoucherIds;
}
/**
* Get 私有网络ID。
* @return VpcId 私有网络ID。
*/
public String getVpcId() {
return this.VpcId;
}
/**
* Set 私有网络ID。
* @param VpcId 私有网络ID。
*/
public void setVpcId(String VpcId) {
this.VpcId = VpcId;
}
/**
* Get 已配置的私有网络中的子网ID。
* @return SubnetId 已配置的私有网络中的子网ID。
*/
public String getSubnetId() {
return this.SubnetId;
}
/**
* Set 已配置的私有网络中的子网ID。
* @param SubnetId 已配置的私有网络中的子网ID。
*/
public void setSubnetId(String SubnetId) {
this.SubnetId = SubnetId;
}
/**
* Get 续费标记:0-正常续费(默认);1-自动续费。
* @return AutoRenewFlag 续费标记:0-正常续费(默认);1-自动续费。
*/
public Long getAutoRenewFlag() {
return this.AutoRenewFlag;
}
/**
* Set 续费标记:0-正常续费(默认);1-自动续费。
* @param AutoRenewFlag 续费标记:0-正常续费(默认);1-自动续费。
*/
public void setAutoRenewFlag(Long AutoRenewFlag) {
this.AutoRenewFlag = AutoRenewFlag;
}
/**
* Get 活动ID。
* @return ActivityId 活动ID。
*/
public Long getActivityId() {
return this.ActivityId;
}
/**
* Set 活动ID。
* @param ActivityId 活动ID。
*/
public void setActivityId(Long ActivityId) {
this.ActivityId = ActivityId;
}
/**
* Get 实例名。
* @return Name 实例名。
*/
public String getName() {
return this.Name;
}
/**
* Set 实例名。
* @param Name 实例名。
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 是否需要支持Ipv6,1:是,0:否(默认)。
* @return NeedSupportIpv6 是否需要支持Ipv6,1:是,0:否(默认)。
*/
public Long getNeedSupportIpv6() {
return this.NeedSupportIpv6;
}
/**
* Set 是否需要支持Ipv6,1:是,0:否(默认)。
* @param NeedSupportIpv6 是否需要支持Ipv6,1:是,0:否(默认)。
*/
public void setNeedSupportIpv6(Long NeedSupportIpv6) {
this.NeedSupportIpv6 = NeedSupportIpv6;
}
/**
* Get 实例需要绑定的Tag信息,默认为空。
* @return TagList 实例需要绑定的Tag信息,默认为空。
*/
public Tag [] getTagList() {
return this.TagList;
}
/**
* Set 实例需要绑定的Tag信息,默认为空。
* @param TagList 实例需要绑定的Tag信息,默认为空。
*/
public void setTagList(Tag [] TagList) {
this.TagList = TagList;
}
/**
* Get 安全组ID。
* @return SecurityGroupIds 安全组ID。
*/
public String [] getSecurityGroupIds() {
return this.SecurityGroupIds;
}
/**
* Set 安全组ID。
* @param SecurityGroupIds 安全组ID。
*/
public void setSecurityGroupIds(String [] SecurityGroupIds) {
this.SecurityGroupIds = SecurityGroupIds;
}
/**
* Get PostgreSQL主要版本。目前支持10,11,12,13这几个版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
* @return DBMajorVersion PostgreSQL主要版本。目前支持10,11,12,13这几个版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
*/
public String getDBMajorVersion() {
return this.DBMajorVersion;
}
/**
* Set PostgreSQL主要版本。目前支持10,11,12,13这几个版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
* @param DBMajorVersion PostgreSQL主要版本。目前支持10,11,12,13这几个版本。当输入该参数时,会基于此版本创建对应的最新内核版本号实例。该参数和DBVersion、DBKernelVersion至少需要传递一个。
*/
public void setDBMajorVersion(String DBMajorVersion) {
this.DBMajorVersion = DBMajorVersion;
}
/**
* Get PostgreSQL内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
* @return DBKernelVersion PostgreSQL内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
*/
public String getDBKernelVersion() {
return this.DBKernelVersion;
}
/**
* Set PostgreSQL内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
* @param DBKernelVersion PostgreSQL内核版本。当输入该参数时,会创建该内核版本号实例。该参数和DBVersion、DBMajorVersion至少需要传递一个。
*/
public void setDBKernelVersion(String DBKernelVersion) {
this.DBKernelVersion = DBKernelVersion;
}
/**
* Get 实例节点信息,购买跨可用区实例时填写。
* @return DBNodeSet 实例节点信息,购买跨可用区实例时填写。
*/
public DBNode [] getDBNodeSet() {
return this.DBNodeSet;
}
/**
* Set 实例节点信息,购买跨可用区实例时填写。
* @param DBNodeSet 实例节点信息,购买跨可用区实例时填写。
*/
public void setDBNodeSet(DBNode [] DBNodeSet) {
this.DBNodeSet = DBNodeSet;
}
/**
* Get 是否需要支持数据透明加密,1:是,0:否(默认)。
* @return NeedSupportTDE 是否需要支持数据透明加密,1:是,0:否(默认)。
*/
public Long getNeedSupportTDE() {
return this.NeedSupportTDE;
}
/**
* Set 是否需要支持数据透明加密,1:是,0:否(默认)。
* @param NeedSupportTDE 是否需要支持数据透明加密,1:是,0:否(默认)。
*/
public void setNeedSupportTDE(Long NeedSupportTDE) {
this.NeedSupportTDE = NeedSupportTDE;
}
/**
* Get 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyId,keyId是CMK的唯一标识。
* @return KMSKeyId 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyId,keyId是CMK的唯一标识。
*/
public String getKMSKeyId() {
return this.KMSKeyId;
}
/**
* Set 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyId,keyId是CMK的唯一标识。
* @param KMSKeyId 自定义密钥的keyId,若选择自定义密匙加密,则需要传入自定义密匙的keyId,keyId是CMK的唯一标识。
*/
public void setKMSKeyId(String KMSKeyId) {
this.KMSKeyId = KMSKeyId;
}
/**
* Get 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
* @return KMSRegion 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
*/
public String getKMSRegion() {
return this.KMSRegion;
}
/**
* Set 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
* @param KMSRegion 使用KMS服务的地域,KMSRegion为空默认使用本地域的kms,本地域不支持的情况下需自选其他KMS支持的地域。
*/
public void setKMSRegion(String KMSRegion) {
this.KMSRegion = KMSRegion;
}
public CreateInstancesRequest() {
}
/**
* 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 CreateInstancesRequest(CreateInstancesRequest source) {
if (source.SpecCode != null) {
this.SpecCode = new String(source.SpecCode);
}
if (source.Storage != null) {
this.Storage = new Long(source.Storage);
}
if (source.InstanceCount != null) {
this.InstanceCount = new Long(source.InstanceCount);
}
if (source.Period != null) {
this.Period = new Long(source.Period);
}
if (source.Zone != null) {
this.Zone = new String(source.Zone);
}
if (source.Charset != null) {
this.Charset = new String(source.Charset);
}
if (source.AdminName != null) {
this.AdminName = new String(source.AdminName);
}
if (source.AdminPassword != null) {
this.AdminPassword = new String(source.AdminPassword);
}
if (source.ProjectId != null) {
this.ProjectId = new Long(source.ProjectId);
}
if (source.DBVersion != null) {
this.DBVersion = new String(source.DBVersion);
}
if (source.InstanceChargeType != null) {
this.InstanceChargeType = new String(source.InstanceChargeType);
}
if (source.AutoVoucher != null) {
this.AutoVoucher = new Long(source.AutoVoucher);
}
if (source.VoucherIds != null) {
this.VoucherIds = new String[source.VoucherIds.length];
for (int i = 0; i < source.VoucherIds.length; i++) {
this.VoucherIds[i] = new String(source.VoucherIds[i]);
}
}
if (source.VpcId != null) {
this.VpcId = new String(source.VpcId);
}
if (source.SubnetId != null) {
this.SubnetId = new String(source.SubnetId);
}
if (source.AutoRenewFlag != null) {
this.AutoRenewFlag = new Long(source.AutoRenewFlag);
}
if (source.ActivityId != null) {
this.ActivityId = new Long(source.ActivityId);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.NeedSupportIpv6 != null) {
this.NeedSupportIpv6 = new Long(source.NeedSupportIpv6);
}
if (source.TagList != null) {
this.TagList = new Tag[source.TagList.length];
for (int i = 0; i < source.TagList.length; i++) {
this.TagList[i] = new Tag(source.TagList[i]);
}
}
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.DBMajorVersion != null) {
this.DBMajorVersion = new String(source.DBMajorVersion);
}
if (source.DBKernelVersion != null) {
this.DBKernelVersion = new String(source.DBKernelVersion);
}
if (source.DBNodeSet != null) {
this.DBNodeSet = new DBNode[source.DBNodeSet.length];
for (int i = 0; i < source.DBNodeSet.length; i++) {
this.DBNodeSet[i] = new DBNode(source.DBNodeSet[i]);
}
}
if (source.NeedSupportTDE != null) {
this.NeedSupportTDE = new Long(source.NeedSupportTDE);
}
if (source.KMSKeyId != null) {
this.KMSKeyId = new String(source.KMSKeyId);
}
if (source.KMSRegion != null) {
this.KMSRegion = new String(source.KMSRegion);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "SpecCode", this.SpecCode);
this.setParamSimple(map, prefix + "Storage", this.Storage);
this.setParamSimple(map, prefix + "InstanceCount", this.InstanceCount);
this.setParamSimple(map, prefix + "Period", this.Period);
this.setParamSimple(map, prefix + "Zone", this.Zone);
this.setParamSimple(map, prefix + "Charset", this.Charset);
this.setParamSimple(map, prefix + "AdminName", this.AdminName);
this.setParamSimple(map, prefix + "AdminPassword", this.AdminPassword);
this.setParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.setParamSimple(map, prefix + "DBVersion", this.DBVersion);
this.setParamSimple(map, prefix + "InstanceChargeType", this.InstanceChargeType);
this.setParamSimple(map, prefix + "AutoVoucher", this.AutoVoucher);
this.setParamArraySimple(map, prefix + "VoucherIds.", this.VoucherIds);
this.setParamSimple(map, prefix + "VpcId", this.VpcId);
this.setParamSimple(map, prefix + "SubnetId", this.SubnetId);
this.setParamSimple(map, prefix + "AutoRenewFlag", this.AutoRenewFlag);
this.setParamSimple(map, prefix + "ActivityId", this.ActivityId);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "NeedSupportIpv6", this.NeedSupportIpv6);
this.setParamArrayObj(map, prefix + "TagList.", this.TagList);
this.setParamArraySimple(map, prefix + "SecurityGroupIds.", this.SecurityGroupIds);
this.setParamSimple(map, prefix + "DBMajorVersion", this.DBMajorVersion);
this.setParamSimple(map, prefix + "DBKernelVersion", this.DBKernelVersion);
this.setParamArrayObj(map, prefix + "DBNodeSet.", this.DBNodeSet);
this.setParamSimple(map, prefix + "NeedSupportTDE", this.NeedSupportTDE);
this.setParamSimple(map, prefix + "KMSKeyId", this.KMSKeyId);
this.setParamSimple(map, prefix + "KMSRegion", this.KMSRegion);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy