com.tencentcloudapi.dcdb.v20180411.models.CreateHourDCDBInstanceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-dcdb Show documentation
Show all versions of tencentcloud-sdk-java-dcdb 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.dcdb.v20180411.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateHourDCDBInstanceRequest extends AbstractModel{
/**
* 分片内存大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
@SerializedName("ShardMemory")
@Expose
private Long ShardMemory;
/**
* 分片存储空间大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
@SerializedName("ShardStorage")
@Expose
private Long ShardStorage;
/**
* 单个分片节点个数,可以通过 DescribeShardSpec
查询实例规格获得。
*/
@SerializedName("ShardNodeCount")
@Expose
private Long ShardNodeCount;
/**
* 实例分片个数,可选范围2-8,可以通过升级实例进行新增分片到最多64个分片。
*/
@SerializedName("ShardCount")
@Expose
private Long ShardCount;
/**
* 欲购买实例的数量
*/
@SerializedName("Count")
@Expose
private Long Count;
/**
* 项目 ID,可以通过查看项目列表获取,不传则关联到默认项目
*/
@SerializedName("ProjectId")
@Expose
private Long ProjectId;
/**
* 虚拟私有网络 ID,不传或传空表示创建为基础网络
*/
@SerializedName("VpcId")
@Expose
private String VpcId;
/**
* 虚拟私有网络子网 ID,VpcId不为空时必填
*/
@SerializedName("SubnetId")
@Expose
private String SubnetId;
/**
* 分片cpu大小,单位:核,可以通过 DescribeShardSpec
查询实例规格获得。
*/
@SerializedName("ShardCpu")
@Expose
private Long ShardCpu;
/**
* 数据库引擎版本,当前可选:8.0,5.7,10.1,10.0。
*/
@SerializedName("DbVersionId")
@Expose
private String DbVersionId;
/**
* 分片节点可用区分布,可填写多个可用区。
*/
@SerializedName("Zones")
@Expose
private String [] Zones;
/**
* 安全组id
*/
@SerializedName("SecurityGroupId")
@Expose
private String SecurityGroupId;
/**
* 实例名称, 可以通过该字段自主的设置实例的名字
*/
@SerializedName("InstanceName")
@Expose
private String InstanceName;
/**
* 是否支持IPv6,0:不支持,1:支持
*/
@SerializedName("Ipv6Flag")
@Expose
private Long Ipv6Flag;
/**
* 标签键值对数组
*/
@SerializedName("ResourceTags")
@Expose
private ResourceTag [] ResourceTags;
/**
* DCN源地域
*/
@SerializedName("DcnRegion")
@Expose
private String DcnRegion;
/**
* DCN源实例ID
*/
@SerializedName("DcnInstanceId")
@Expose
private String DcnInstanceId;
/**
* 参数列表。本接口的可选值为:character_set_server(字符集,必传),lower_case_table_names(表名大小写敏感,必传,0 - 敏感;1-不敏感),innodb_page_size(innodb数据页,默认16K),sync_mode(同步模式:0 - 异步; 1 - 强同步;2 - 强同步可退化。默认为强同步可退化)。
*/
@SerializedName("InitParams")
@Expose
private DBParamValue [] InitParams;
/**
* 需要回档的源实例ID
*/
@SerializedName("RollbackInstanceId")
@Expose
private String RollbackInstanceId;
/**
* 回档时间,例如“2021-11-22 00:00:00”
*/
@SerializedName("RollbackTime")
@Expose
private String RollbackTime;
/**
* 安全组ids,安全组可以传数组形式,兼容之前SecurityGroupId参数
*/
@SerializedName("SecurityGroupIds")
@Expose
private String [] SecurityGroupIds;
/**
* DCN同步模式,0:普通DCN同步,1:一致性同步
*/
@SerializedName("DcnSyncMode")
@Expose
private Long DcnSyncMode;
/**
* Get 分片内存大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
* @return ShardMemory 分片内存大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public Long getShardMemory() {
return this.ShardMemory;
}
/**
* Set 分片内存大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
* @param ShardMemory 分片内存大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public void setShardMemory(Long ShardMemory) {
this.ShardMemory = ShardMemory;
}
/**
* Get 分片存储空间大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
* @return ShardStorage 分片存储空间大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public Long getShardStorage() {
return this.ShardStorage;
}
/**
* Set 分片存储空间大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
* @param ShardStorage 分片存储空间大小,单位:GB,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public void setShardStorage(Long ShardStorage) {
this.ShardStorage = ShardStorage;
}
/**
* Get 单个分片节点个数,可以通过 DescribeShardSpec
查询实例规格获得。
* @return ShardNodeCount 单个分片节点个数,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public Long getShardNodeCount() {
return this.ShardNodeCount;
}
/**
* Set 单个分片节点个数,可以通过 DescribeShardSpec
查询实例规格获得。
* @param ShardNodeCount 单个分片节点个数,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public void setShardNodeCount(Long ShardNodeCount) {
this.ShardNodeCount = ShardNodeCount;
}
/**
* Get 实例分片个数,可选范围2-8,可以通过升级实例进行新增分片到最多64个分片。
* @return ShardCount 实例分片个数,可选范围2-8,可以通过升级实例进行新增分片到最多64个分片。
*/
public Long getShardCount() {
return this.ShardCount;
}
/**
* Set 实例分片个数,可选范围2-8,可以通过升级实例进行新增分片到最多64个分片。
* @param ShardCount 实例分片个数,可选范围2-8,可以通过升级实例进行新增分片到最多64个分片。
*/
public void setShardCount(Long ShardCount) {
this.ShardCount = ShardCount;
}
/**
* Get 欲购买实例的数量
* @return Count 欲购买实例的数量
*/
public Long getCount() {
return this.Count;
}
/**
* Set 欲购买实例的数量
* @param Count 欲购买实例的数量
*/
public void setCount(Long Count) {
this.Count = Count;
}
/**
* 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 虚拟私有网络 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,VpcId不为空时必填
* @return SubnetId 虚拟私有网络子网 ID,VpcId不为空时必填
*/
public String getSubnetId() {
return this.SubnetId;
}
/**
* Set 虚拟私有网络子网 ID,VpcId不为空时必填
* @param SubnetId 虚拟私有网络子网 ID,VpcId不为空时必填
*/
public void setSubnetId(String SubnetId) {
this.SubnetId = SubnetId;
}
/**
* Get 分片cpu大小,单位:核,可以通过 DescribeShardSpec
查询实例规格获得。
* @return ShardCpu 分片cpu大小,单位:核,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public Long getShardCpu() {
return this.ShardCpu;
}
/**
* Set 分片cpu大小,单位:核,可以通过 DescribeShardSpec
查询实例规格获得。
* @param ShardCpu 分片cpu大小,单位:核,可以通过 DescribeShardSpec
查询实例规格获得。
*/
public void setShardCpu(Long ShardCpu) {
this.ShardCpu = ShardCpu;
}
/**
* Get 数据库引擎版本,当前可选:8.0,5.7,10.1,10.0。
* @return DbVersionId 数据库引擎版本,当前可选:8.0,5.7,10.1,10.0。
*/
public String getDbVersionId() {
return this.DbVersionId;
}
/**
* Set 数据库引擎版本,当前可选:8.0,5.7,10.1,10.0。
* @param DbVersionId 数据库引擎版本,当前可选:8.0,5.7,10.1,10.0。
*/
public void setDbVersionId(String DbVersionId) {
this.DbVersionId = DbVersionId;
}
/**
* Get 分片节点可用区分布,可填写多个可用区。
* @return Zones 分片节点可用区分布,可填写多个可用区。
*/
public String [] getZones() {
return this.Zones;
}
/**
* Set 分片节点可用区分布,可填写多个可用区。
* @param Zones 分片节点可用区分布,可填写多个可用区。
*/
public void setZones(String [] Zones) {
this.Zones = Zones;
}
/**
* Get 安全组id
* @return SecurityGroupId 安全组id
*/
public String getSecurityGroupId() {
return this.SecurityGroupId;
}
/**
* Set 安全组id
* @param SecurityGroupId 安全组id
*/
public void setSecurityGroupId(String SecurityGroupId) {
this.SecurityGroupId = SecurityGroupId;
}
/**
* Get 实例名称, 可以通过该字段自主的设置实例的名字
* @return InstanceName 实例名称, 可以通过该字段自主的设置实例的名字
*/
public String getInstanceName() {
return this.InstanceName;
}
/**
* Set 实例名称, 可以通过该字段自主的设置实例的名字
* @param InstanceName 实例名称, 可以通过该字段自主的设置实例的名字
*/
public void setInstanceName(String InstanceName) {
this.InstanceName = InstanceName;
}
/**
* Get 是否支持IPv6,0:不支持,1:支持
* @return Ipv6Flag 是否支持IPv6,0:不支持,1:支持
*/
public Long getIpv6Flag() {
return this.Ipv6Flag;
}
/**
* Set 是否支持IPv6,0:不支持,1:支持
* @param Ipv6Flag 是否支持IPv6,0:不支持,1:支持
*/
public void setIpv6Flag(Long Ipv6Flag) {
this.Ipv6Flag = Ipv6Flag;
}
/**
* Get 标签键值对数组
* @return ResourceTags 标签键值对数组
*/
public ResourceTag [] getResourceTags() {
return this.ResourceTags;
}
/**
* Set 标签键值对数组
* @param ResourceTags 标签键值对数组
*/
public void setResourceTags(ResourceTag [] ResourceTags) {
this.ResourceTags = ResourceTags;
}
/**
* Get DCN源地域
* @return DcnRegion DCN源地域
*/
public String getDcnRegion() {
return this.DcnRegion;
}
/**
* Set DCN源地域
* @param DcnRegion DCN源地域
*/
public void setDcnRegion(String DcnRegion) {
this.DcnRegion = DcnRegion;
}
/**
* Get DCN源实例ID
* @return DcnInstanceId DCN源实例ID
*/
public String getDcnInstanceId() {
return this.DcnInstanceId;
}
/**
* Set DCN源实例ID
* @param DcnInstanceId DCN源实例ID
*/
public void setDcnInstanceId(String DcnInstanceId) {
this.DcnInstanceId = DcnInstanceId;
}
/**
* Get 参数列表。本接口的可选值为:character_set_server(字符集,必传),lower_case_table_names(表名大小写敏感,必传,0 - 敏感;1-不敏感),innodb_page_size(innodb数据页,默认16K),sync_mode(同步模式:0 - 异步; 1 - 强同步;2 - 强同步可退化。默认为强同步可退化)。
* @return InitParams 参数列表。本接口的可选值为:character_set_server(字符集,必传),lower_case_table_names(表名大小写敏感,必传,0 - 敏感;1-不敏感),innodb_page_size(innodb数据页,默认16K),sync_mode(同步模式:0 - 异步; 1 - 强同步;2 - 强同步可退化。默认为强同步可退化)。
*/
public DBParamValue [] getInitParams() {
return this.InitParams;
}
/**
* Set 参数列表。本接口的可选值为:character_set_server(字符集,必传),lower_case_table_names(表名大小写敏感,必传,0 - 敏感;1-不敏感),innodb_page_size(innodb数据页,默认16K),sync_mode(同步模式:0 - 异步; 1 - 强同步;2 - 强同步可退化。默认为强同步可退化)。
* @param InitParams 参数列表。本接口的可选值为:character_set_server(字符集,必传),lower_case_table_names(表名大小写敏感,必传,0 - 敏感;1-不敏感),innodb_page_size(innodb数据页,默认16K),sync_mode(同步模式:0 - 异步; 1 - 强同步;2 - 强同步可退化。默认为强同步可退化)。
*/
public void setInitParams(DBParamValue [] InitParams) {
this.InitParams = InitParams;
}
/**
* Get 需要回档的源实例ID
* @return RollbackInstanceId 需要回档的源实例ID
*/
public String getRollbackInstanceId() {
return this.RollbackInstanceId;
}
/**
* Set 需要回档的源实例ID
* @param RollbackInstanceId 需要回档的源实例ID
*/
public void setRollbackInstanceId(String RollbackInstanceId) {
this.RollbackInstanceId = RollbackInstanceId;
}
/**
* Get 回档时间,例如“2021-11-22 00:00:00”
* @return RollbackTime 回档时间,例如“2021-11-22 00:00:00”
*/
public String getRollbackTime() {
return this.RollbackTime;
}
/**
* Set 回档时间,例如“2021-11-22 00:00:00”
* @param RollbackTime 回档时间,例如“2021-11-22 00:00:00”
*/
public void setRollbackTime(String RollbackTime) {
this.RollbackTime = RollbackTime;
}
/**
* Get 安全组ids,安全组可以传数组形式,兼容之前SecurityGroupId参数
* @return SecurityGroupIds 安全组ids,安全组可以传数组形式,兼容之前SecurityGroupId参数
*/
public String [] getSecurityGroupIds() {
return this.SecurityGroupIds;
}
/**
* Set 安全组ids,安全组可以传数组形式,兼容之前SecurityGroupId参数
* @param SecurityGroupIds 安全组ids,安全组可以传数组形式,兼容之前SecurityGroupId参数
*/
public void setSecurityGroupIds(String [] SecurityGroupIds) {
this.SecurityGroupIds = SecurityGroupIds;
}
/**
* Get DCN同步模式,0:普通DCN同步,1:一致性同步
* @return DcnSyncMode DCN同步模式,0:普通DCN同步,1:一致性同步
*/
public Long getDcnSyncMode() {
return this.DcnSyncMode;
}
/**
* Set DCN同步模式,0:普通DCN同步,1:一致性同步
* @param DcnSyncMode DCN同步模式,0:普通DCN同步,1:一致性同步
*/
public void setDcnSyncMode(Long DcnSyncMode) {
this.DcnSyncMode = DcnSyncMode;
}
public CreateHourDCDBInstanceRequest() {
}
/**
* 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 CreateHourDCDBInstanceRequest(CreateHourDCDBInstanceRequest source) {
if (source.ShardMemory != null) {
this.ShardMemory = new Long(source.ShardMemory);
}
if (source.ShardStorage != null) {
this.ShardStorage = new Long(source.ShardStorage);
}
if (source.ShardNodeCount != null) {
this.ShardNodeCount = new Long(source.ShardNodeCount);
}
if (source.ShardCount != null) {
this.ShardCount = new Long(source.ShardCount);
}
if (source.Count != null) {
this.Count = new Long(source.Count);
}
if (source.ProjectId != null) {
this.ProjectId = new Long(source.ProjectId);
}
if (source.VpcId != null) {
this.VpcId = new String(source.VpcId);
}
if (source.SubnetId != null) {
this.SubnetId = new String(source.SubnetId);
}
if (source.ShardCpu != null) {
this.ShardCpu = new Long(source.ShardCpu);
}
if (source.DbVersionId != null) {
this.DbVersionId = new String(source.DbVersionId);
}
if (source.Zones != null) {
this.Zones = new String[source.Zones.length];
for (int i = 0; i < source.Zones.length; i++) {
this.Zones[i] = new String(source.Zones[i]);
}
}
if (source.SecurityGroupId != null) {
this.SecurityGroupId = new String(source.SecurityGroupId);
}
if (source.InstanceName != null) {
this.InstanceName = new String(source.InstanceName);
}
if (source.Ipv6Flag != null) {
this.Ipv6Flag = new Long(source.Ipv6Flag);
}
if (source.ResourceTags != null) {
this.ResourceTags = new ResourceTag[source.ResourceTags.length];
for (int i = 0; i < source.ResourceTags.length; i++) {
this.ResourceTags[i] = new ResourceTag(source.ResourceTags[i]);
}
}
if (source.DcnRegion != null) {
this.DcnRegion = new String(source.DcnRegion);
}
if (source.DcnInstanceId != null) {
this.DcnInstanceId = new String(source.DcnInstanceId);
}
if (source.InitParams != null) {
this.InitParams = new DBParamValue[source.InitParams.length];
for (int i = 0; i < source.InitParams.length; i++) {
this.InitParams[i] = new DBParamValue(source.InitParams[i]);
}
}
if (source.RollbackInstanceId != null) {
this.RollbackInstanceId = new String(source.RollbackInstanceId);
}
if (source.RollbackTime != null) {
this.RollbackTime = new String(source.RollbackTime);
}
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.DcnSyncMode != null) {
this.DcnSyncMode = new Long(source.DcnSyncMode);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ShardMemory", this.ShardMemory);
this.setParamSimple(map, prefix + "ShardStorage", this.ShardStorage);
this.setParamSimple(map, prefix + "ShardNodeCount", this.ShardNodeCount);
this.setParamSimple(map, prefix + "ShardCount", this.ShardCount);
this.setParamSimple(map, prefix + "Count", this.Count);
this.setParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.setParamSimple(map, prefix + "VpcId", this.VpcId);
this.setParamSimple(map, prefix + "SubnetId", this.SubnetId);
this.setParamSimple(map, prefix + "ShardCpu", this.ShardCpu);
this.setParamSimple(map, prefix + "DbVersionId", this.DbVersionId);
this.setParamArraySimple(map, prefix + "Zones.", this.Zones);
this.setParamSimple(map, prefix + "SecurityGroupId", this.SecurityGroupId);
this.setParamSimple(map, prefix + "InstanceName", this.InstanceName);
this.setParamSimple(map, prefix + "Ipv6Flag", this.Ipv6Flag);
this.setParamArrayObj(map, prefix + "ResourceTags.", this.ResourceTags);
this.setParamSimple(map, prefix + "DcnRegion", this.DcnRegion);
this.setParamSimple(map, prefix + "DcnInstanceId", this.DcnInstanceId);
this.setParamArrayObj(map, prefix + "InitParams.", this.InitParams);
this.setParamSimple(map, prefix + "RollbackInstanceId", this.RollbackInstanceId);
this.setParamSimple(map, prefix + "RollbackTime", this.RollbackTime);
this.setParamArraySimple(map, prefix + "SecurityGroupIds.", this.SecurityGroupIds);
this.setParamSimple(map, prefix + "DcnSyncMode", this.DcnSyncMode);
}
}