tencentcloud-sdk-python 3.0.1202__py2.py3-none-any.whl → 3.0.1203__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/models.py +13 -13
- tencentcloud/cbs/v20170312/models.py +1 -1
- tencentcloud/cdb/v20170320/models.py +63 -7
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +506 -0
- tencentcloud/cdwdoris/v20211228/models.py +5850 -1805
- tencentcloud/cfs/v20190719/cfs_client.py +2 -2
- tencentcloud/cfs/v20190719/errorcodes.py +9 -0
- tencentcloud/cfs/v20190719/models.py +28 -4
- tencentcloud/csip/v20221121/models.py +24 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/models.py +24 -0
- tencentcloud/ess/v20201111/ess_client.py +23 -5
- tencentcloud/ess/v20201111/models.py +3 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +13 -1
- tencentcloud/essbasic/v20210526/models.py +3 -1
- tencentcloud/hunyuan/v20230901/models.py +17 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +15 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +298 -0
- tencentcloud/lcic/v20220817/models.py +24 -0
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +27 -0
- tencentcloud/organization/v20210331/models.py +304 -0
- tencentcloud/organization/v20210331/organization_client.py +23 -0
- tencentcloud/rce/v20201103/models.py +2905 -435
- tencentcloud/rce/v20201103/rce_client.py +207 -0
- tencentcloud/redis/v20180412/models.py +560 -0
- tencentcloud/redis/v20180412/redis_client.py +46 -0
- tencentcloud/teo/v20220901/errorcodes.py +12 -0
- tencentcloud/tmt/v20180321/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +13 -0
- tencentcloud/tse/v20201207/models.py +13 -0
- tencentcloud/tsi/v20210325/models.py +24 -4
- tencentcloud/tsi/v20210325/tsi_client.py +12 -1
- {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1203.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1203.dist-info}/RECORD +40 -40
- {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1203.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1203.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1203.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -1120,14 +1120,14 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1120
1120
|
:param _ProductUrl: 商品原图 Url。
|
1121
1121
|
图片限制:单边分辨率小于4000,长宽比在2:5 ~ 5:2之间,转成 Base64 字符串后小于 6MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。
|
1122
1122
|
:type ProductUrl: str
|
1123
|
+
:param _Prompt: 对新背景的文本描述。
|
1124
|
+
最多支持256个 utf-8 字符,支持中、英文。
|
1125
|
+
:type Prompt: str
|
1123
1126
|
:param _MaskUrl: 商品 Mask 图 Url,要求背景透明,保留商品主体。
|
1124
1127
|
如果不传,将自动使用内置的商品分割算法得到 Mask。
|
1125
1128
|
支持自定义上传 Mask,如果该参数不为空,则以实际上传的数据为准。
|
1126
1129
|
图片限制:Mask 图必须和商品原图分辨率一致,转成 Base64 字符串后小于 6MB,格式仅支持 png。
|
1127
1130
|
:type MaskUrl: str
|
1128
|
-
:param _Prompt: 对新背景的文本描述。
|
1129
|
-
最多支持256个 utf-8 字符,支持中、英文。
|
1130
|
-
:type Prompt: str
|
1131
1131
|
:param _Resolution: 替换背景后生成的商品图分辨率。
|
1132
1132
|
支持生成单边分辨率大于500且小于4000、长宽比在2:5 ~ 5:2之间的图片,不传默认生成1280:1280。
|
1133
1133
|
建议图片比例为1:1、9:16、16:9,生成效果更佳,使用其他比例的生成效果可能不如建议比例。
|
@@ -1146,8 +1146,8 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1146
1146
|
:type RspImgType: str
|
1147
1147
|
"""
|
1148
1148
|
self._ProductUrl = None
|
1149
|
-
self._MaskUrl = None
|
1150
1149
|
self._Prompt = None
|
1150
|
+
self._MaskUrl = None
|
1151
1151
|
self._Resolution = None
|
1152
1152
|
self._LogoAdd = None
|
1153
1153
|
self._LogoParam = None
|
@@ -1161,14 +1161,6 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1161
1161
|
def ProductUrl(self, ProductUrl):
|
1162
1162
|
self._ProductUrl = ProductUrl
|
1163
1163
|
|
1164
|
-
@property
|
1165
|
-
def MaskUrl(self):
|
1166
|
-
return self._MaskUrl
|
1167
|
-
|
1168
|
-
@MaskUrl.setter
|
1169
|
-
def MaskUrl(self, MaskUrl):
|
1170
|
-
self._MaskUrl = MaskUrl
|
1171
|
-
|
1172
1164
|
@property
|
1173
1165
|
def Prompt(self):
|
1174
1166
|
return self._Prompt
|
@@ -1177,6 +1169,14 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1177
1169
|
def Prompt(self, Prompt):
|
1178
1170
|
self._Prompt = Prompt
|
1179
1171
|
|
1172
|
+
@property
|
1173
|
+
def MaskUrl(self):
|
1174
|
+
return self._MaskUrl
|
1175
|
+
|
1176
|
+
@MaskUrl.setter
|
1177
|
+
def MaskUrl(self, MaskUrl):
|
1178
|
+
self._MaskUrl = MaskUrl
|
1179
|
+
|
1180
1180
|
@property
|
1181
1181
|
def Resolution(self):
|
1182
1182
|
return self._Resolution
|
@@ -1212,8 +1212,8 @@ class ReplaceBackgroundRequest(AbstractModel):
|
|
1212
1212
|
|
1213
1213
|
def _deserialize(self, params):
|
1214
1214
|
self._ProductUrl = params.get("ProductUrl")
|
1215
|
-
self._MaskUrl = params.get("MaskUrl")
|
1216
1215
|
self._Prompt = params.get("Prompt")
|
1216
|
+
self._MaskUrl = params.get("MaskUrl")
|
1217
1217
|
self._Resolution = params.get("Resolution")
|
1218
1218
|
self._LogoAdd = params.get("LogoAdd")
|
1219
1219
|
if params.get("LogoParam") is not None:
|
@@ -5191,7 +5191,7 @@ class ModifyDiskAttributesRequest(AbstractModel):
|
|
5191
5191
|
:type ProjectId: int
|
5192
5192
|
:param _DeleteWithInstance: 成功挂载到云主机后该云硬盘是否随云主机销毁,TRUE表示随云主机销毁,FALSE表示不随云主机销毁。仅支持按量计费云硬盘数据盘。
|
5193
5193
|
:type DeleteWithInstance: bool
|
5194
|
-
:param _DiskType: 变更云盘类型时,可传入该参数,表示变更的目标类型,取值范围:<br><li>CLOUD_PREMIUM
|
5194
|
+
:param _DiskType: 变更云盘类型时,可传入该参数,表示变更的目标类型,取值范围:<br><li>CLOUD_PREMIUM:表示高性能云硬盘</li><li>CLOUD_SSD:表示SSD云硬盘。</li>当前不支持批量变更类型,即传入DiskType时,DiskIds仅支持传入一块云盘;<br>变更云盘类型时不支持同时变更其他属性。
|
5195
5195
|
:type DiskType: str
|
5196
5196
|
:param _BurstPerformanceOperation: 开启/关闭云盘性能突发功能
|
5197
5197
|
:type BurstPerformanceOperation: str
|
@@ -6082,9 +6082,11 @@ class CreateCloneInstanceRequest(AbstractModel):
|
|
6082
6082
|
r"""
|
6083
6083
|
:param _InstanceId: 克隆源实例Id。
|
6084
6084
|
:type InstanceId: str
|
6085
|
-
:param _SpecifiedRollbackTime: 如果需要克隆实例回档到指定时间,则指定该值。时间格式为:
|
6085
|
+
:param _SpecifiedRollbackTime: 如果需要克隆实例回档到指定时间,则指定该值。时间格式为:yyyy-mm-dd hh:mm:ss。
|
6086
|
+
说明:此参数和 SpecifiedBackupId 参数需要2选1进行设置。
|
6086
6087
|
:type SpecifiedRollbackTime: str
|
6087
|
-
:param _SpecifiedBackupId:
|
6088
|
+
:param _SpecifiedBackupId: 如果需要克隆实例回档到指定备份集,则指定该值为备份文件的 Id。请使用 [查询数据备份文件列表](/document/api/236/15842)。
|
6089
|
+
说明:如果是克隆双节点、三节点实例,备份文件为物理备份,如果是克隆单节点、集群版实例,备份文件为快照备份。
|
6088
6090
|
:type SpecifiedBackupId: int
|
6089
6091
|
:param _UniqVpcId: 私有网络 ID,如果不传则默认选择基础网络,请使用 [查询私有网络列表](/document/api/215/15778) 。
|
6090
6092
|
:type UniqVpcId: str
|
@@ -6569,12 +6571,13 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6569
6571
|
:type Memory: int
|
6570
6572
|
:param _Volume: 实例硬盘大小,单位:GB,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的硬盘范围。
|
6571
6573
|
:type Volume: int
|
6572
|
-
:param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7
|
6573
|
-
|
6574
|
+
:param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
|
6575
|
+
说明:创建非集群版实例时,请根据需要指定实例版本(推荐5.7或8.0),若此参数不填,则默认值为5.6;若创建的是集群版实例,则此参数仅能指定为5.7或8.0。
|
6574
6576
|
:type EngineVersion: str
|
6575
6577
|
:param _UniqVpcId: 私有网络 ID,如果不传则默认选择基础网络,请使用 [查询私有网络列表](/document/api/215/15778) 。
|
6578
|
+
说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
|
6576
6579
|
:type UniqVpcId: str
|
6577
|
-
:param _UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用[查询子网列表](/document/api/215/15784)。
|
6580
|
+
:param _UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
|
6578
6581
|
:type UniqSubnetId: str
|
6579
6582
|
:param _ProjectId: 项目 ID,不填为默认项目。
|
6580
6583
|
:type ProjectId: int
|
@@ -6615,6 +6618,7 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6615
6618
|
:param _ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间在48小时内唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
6616
6619
|
:type ClientToken: str
|
6617
6620
|
:param _DeviceType: 实例隔离类型。支持值包括:"UNIVERSAL" - 通用型实例,"EXCLUSIVE" - 独享型实例,"BASIC_V2" - ONTKE 单节点实例,"CLOUD_NATIVE_CLUSTER" - 集群版标准型,"CLOUD_NATIVE_CLUSTER_EXCLUSIVE" - 集群版加强型。不指定则默认为通用型实例。
|
6621
|
+
说明:如果创建的是集群版实例,此参数为必填。
|
6618
6622
|
:type DeviceType: str
|
6619
6623
|
:param _ParamTemplateId: 参数模板 id。
|
6620
6624
|
备注:如您使用自定义参数模板 id,可传入自定义参数模板 id;如您计划使用默认参数模板,该参数模板 id 传入 id 无效,需设置 ParamTemplateType。
|
@@ -6640,8 +6644,13 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6640
6644
|
:type EngineType: str
|
6641
6645
|
:param _Vips: 指定实例的IP列表。仅支持主实例指定,按实例顺序,不足则按未指定处理。
|
6642
6646
|
:type Vips: list of str
|
6647
|
+
:param _DataProtectVolume: 集群版实例的数据保护空间大小,单位 GB,设置范围1 - 10。
|
6648
|
+
:type DataProtectVolume: int
|
6643
6649
|
:param _ClusterTopology: 集群版节点拓扑配置。
|
6650
|
+
说明:若购买的是集群版实例,此参数为必填,需设置集群版实例的 RW 和 RO 节点拓扑,RO 节点范围是1 - 5个,请至少设置1个 RO 节点。
|
6644
6651
|
:type ClusterTopology: :class:`tencentcloud.cdb.v20170320.models.ClusterTopology`
|
6652
|
+
:param _DiskType: 磁盘类型,基础版或者集群版实例可以指定此参数。CLOUD_SSD 表示 SSD 云硬盘,CLOUD_HSSD 表示增强型 SSD 云硬盘。
|
6653
|
+
:type DiskType: str
|
6645
6654
|
"""
|
6646
6655
|
self._GoodsNum = None
|
6647
6656
|
self._Memory = None
|
@@ -6680,7 +6689,9 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6680
6689
|
self._DryRun = None
|
6681
6690
|
self._EngineType = None
|
6682
6691
|
self._Vips = None
|
6692
|
+
self._DataProtectVolume = None
|
6683
6693
|
self._ClusterTopology = None
|
6694
|
+
self._DiskType = None
|
6684
6695
|
|
6685
6696
|
@property
|
6686
6697
|
def GoodsNum(self):
|
@@ -6978,6 +6989,14 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6978
6989
|
def Vips(self, Vips):
|
6979
6990
|
self._Vips = Vips
|
6980
6991
|
|
6992
|
+
@property
|
6993
|
+
def DataProtectVolume(self):
|
6994
|
+
return self._DataProtectVolume
|
6995
|
+
|
6996
|
+
@DataProtectVolume.setter
|
6997
|
+
def DataProtectVolume(self, DataProtectVolume):
|
6998
|
+
self._DataProtectVolume = DataProtectVolume
|
6999
|
+
|
6981
7000
|
@property
|
6982
7001
|
def ClusterTopology(self):
|
6983
7002
|
return self._ClusterTopology
|
@@ -6986,6 +7005,14 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
6986
7005
|
def ClusterTopology(self, ClusterTopology):
|
6987
7006
|
self._ClusterTopology = ClusterTopology
|
6988
7007
|
|
7008
|
+
@property
|
7009
|
+
def DiskType(self):
|
7010
|
+
return self._DiskType
|
7011
|
+
|
7012
|
+
@DiskType.setter
|
7013
|
+
def DiskType(self, DiskType):
|
7014
|
+
self._DiskType = DiskType
|
7015
|
+
|
6989
7016
|
|
6990
7017
|
def _deserialize(self, params):
|
6991
7018
|
self._GoodsNum = params.get("GoodsNum")
|
@@ -7037,9 +7064,11 @@ class CreateDBInstanceHourRequest(AbstractModel):
|
|
7037
7064
|
self._DryRun = params.get("DryRun")
|
7038
7065
|
self._EngineType = params.get("EngineType")
|
7039
7066
|
self._Vips = params.get("Vips")
|
7067
|
+
self._DataProtectVolume = params.get("DataProtectVolume")
|
7040
7068
|
if params.get("ClusterTopology") is not None:
|
7041
7069
|
self._ClusterTopology = ClusterTopology()
|
7042
7070
|
self._ClusterTopology._deserialize(params.get("ClusterTopology"))
|
7071
|
+
self._DiskType = params.get("DiskType")
|
7043
7072
|
memeber_set = set(params.keys())
|
7044
7073
|
for name, value in vars(self).items():
|
7045
7074
|
property_name = name[1:]
|
@@ -7116,7 +7145,8 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7116
7145
|
:type GoodsNum: int
|
7117
7146
|
:param _Zone: 可用区信息,该参数缺省时,系统会自动选择一个可用区,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的可用区。
|
7118
7147
|
:type Zone: str
|
7119
|
-
:param _UniqVpcId: 私有网络 ID,如果不传则默认选择基础网络,请使用 [查询私有网络列表](/document/api/215/15778)
|
7148
|
+
:param _UniqVpcId: 私有网络 ID,如果不传则默认选择基础网络,请使用 [查询私有网络列表](/document/api/215/15778)。
|
7149
|
+
说明:如果创建的是集群版实例,此参数为必填且为私有网络类型。
|
7120
7150
|
:type UniqVpcId: str
|
7121
7151
|
:param _UniqSubnetId: 私有网络下的子网 ID,如果设置了 UniqVpcId,则 UniqSubnetId 必填,请使用 [查询子网列表](/document/api/215/15784)。
|
7122
7152
|
:type UniqSubnetId: str
|
@@ -7129,7 +7159,7 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7129
7159
|
:param _MasterInstanceId: 实例 ID,购买只读实例时必填,该字段表示只读实例的主实例ID,请使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询云数据库实例 ID。
|
7130
7160
|
:type MasterInstanceId: str
|
7131
7161
|
:param _EngineVersion: MySQL 版本,值包括:5.5、5.6、5.7和8.0,请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口获取可创建的实例版本。
|
7132
|
-
|
7162
|
+
说明:创建非集群版实例时,请根据需要指定实例版本(推荐5.7或8.0),若此参数不填,则默认值为5.6;若创建的是集群版实例,则此参数仅能指定为5.7或8.0。
|
7133
7163
|
:type EngineVersion: str
|
7134
7164
|
:param _Password: 设置 root 账号密码,密码规则:8 - 64 个字符,至少包含字母、数字、字符(支持的字符:_+-&=!@#$%^*())中的两种,购买主实例时可指定该参数,购买只读实例或者灾备实例时指定该参数无意义。
|
7135
7165
|
:type Password: str
|
@@ -7160,6 +7190,7 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7160
7190
|
:param _ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间在48小时内唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
7161
7191
|
:type ClientToken: str
|
7162
7192
|
:param _DeviceType: 实例隔离类型。支持值包括:"UNIVERSAL" - 通用型实例,"EXCLUSIVE" - 独享型实例,"BASIC_V2" - ONTKE 单节点实例,"CLOUD_NATIVE_CLUSTER" - 集群版标准型,"CLOUD_NATIVE_CLUSTER_EXCLUSIVE" - 集群版加强型。不指定则默认为通用型实例。
|
7193
|
+
说明:如果创建的是集群版实例,此参数为必填。
|
7163
7194
|
:type DeviceType: str
|
7164
7195
|
:param _ParamTemplateId: 参数模板 id。
|
7165
7196
|
备注:如您使用自定义参数模板 id,可传入自定义参数模板 id;如您计划使用默认参数模板,该参数模板 id 传入 id 无效,需设置 ParamTemplateType。
|
@@ -7186,8 +7217,13 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7186
7217
|
:type EngineType: str
|
7187
7218
|
:param _Vips: 指定实例的IP列表。仅支持主实例指定,按实例顺序,不足则按未指定处理。
|
7188
7219
|
:type Vips: list of str
|
7220
|
+
:param _DataProtectVolume: 集群版实例的数据保护空间大小,单位 GB,设置范围1 - 10。
|
7221
|
+
:type DataProtectVolume: int
|
7189
7222
|
:param _ClusterTopology: 集群版节点拓扑配置。
|
7223
|
+
说明:若购买的是集群版实例,此参数为必填,需设置集群版实例的 RW 和 RO 节点拓扑,RO 节点范围是1 - 5个,请至少设置1个 RO 节点。
|
7190
7224
|
:type ClusterTopology: :class:`tencentcloud.cdb.v20170320.models.ClusterTopology`
|
7225
|
+
:param _DiskType: 磁盘类型,基础版或者集群版实例可以指定此参数。CLOUD_SSD 表示 SSD 云硬盘,CLOUD_HSSD 表示增强型 SSD 云硬盘。
|
7226
|
+
:type DiskType: str
|
7191
7227
|
"""
|
7192
7228
|
self._Memory = None
|
7193
7229
|
self._Volume = None
|
@@ -7227,7 +7263,9 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7227
7263
|
self._DryRun = None
|
7228
7264
|
self._EngineType = None
|
7229
7265
|
self._Vips = None
|
7266
|
+
self._DataProtectVolume = None
|
7230
7267
|
self._ClusterTopology = None
|
7268
|
+
self._DiskType = None
|
7231
7269
|
|
7232
7270
|
@property
|
7233
7271
|
def Memory(self):
|
@@ -7533,6 +7571,14 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7533
7571
|
def Vips(self, Vips):
|
7534
7572
|
self._Vips = Vips
|
7535
7573
|
|
7574
|
+
@property
|
7575
|
+
def DataProtectVolume(self):
|
7576
|
+
return self._DataProtectVolume
|
7577
|
+
|
7578
|
+
@DataProtectVolume.setter
|
7579
|
+
def DataProtectVolume(self, DataProtectVolume):
|
7580
|
+
self._DataProtectVolume = DataProtectVolume
|
7581
|
+
|
7536
7582
|
@property
|
7537
7583
|
def ClusterTopology(self):
|
7538
7584
|
return self._ClusterTopology
|
@@ -7541,6 +7587,14 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7541
7587
|
def ClusterTopology(self, ClusterTopology):
|
7542
7588
|
self._ClusterTopology = ClusterTopology
|
7543
7589
|
|
7590
|
+
@property
|
7591
|
+
def DiskType(self):
|
7592
|
+
return self._DiskType
|
7593
|
+
|
7594
|
+
@DiskType.setter
|
7595
|
+
def DiskType(self, DiskType):
|
7596
|
+
self._DiskType = DiskType
|
7597
|
+
|
7544
7598
|
|
7545
7599
|
def _deserialize(self, params):
|
7546
7600
|
self._Memory = params.get("Memory")
|
@@ -7593,9 +7647,11 @@ class CreateDBInstanceRequest(AbstractModel):
|
|
7593
7647
|
self._DryRun = params.get("DryRun")
|
7594
7648
|
self._EngineType = params.get("EngineType")
|
7595
7649
|
self._Vips = params.get("Vips")
|
7650
|
+
self._DataProtectVolume = params.get("DataProtectVolume")
|
7596
7651
|
if params.get("ClusterTopology") is not None:
|
7597
7652
|
self._ClusterTopology = ClusterTopology()
|
7598
7653
|
self._ClusterTopology._deserialize(params.get("ClusterTopology"))
|
7654
|
+
self._DiskType = params.get("DiskType")
|
7599
7655
|
memeber_set = set(params.keys())
|
7600
7656
|
for name, value in vars(self).items():
|
7601
7657
|
property_name = name[1:]
|