tencentcloud-sdk-python 3.0.1303__py2.py3-none-any.whl → 3.0.1307__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/apm/v20210622/apm_client.py +3 -3
- tencentcloud/apm/v20210622/models.py +586 -538
- tencentcloud/autoscaling/v20180419/models.py +141 -0
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +1 -1
- tencentcloud/cdwdoris/v20211228/models.py +120 -262
- tencentcloud/cfs/v20190719/cfs_client.py +23 -0
- tencentcloud/cfs/v20190719/models.py +79 -0
- tencentcloud/clb/v20180317/models.py +146 -20
- tencentcloud/cvm/v20170312/cvm_client.py +24 -0
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/cvm/v20170312/models.py +196 -12
- tencentcloud/dc/v20180410/models.py +30 -2
- tencentcloud/dlc/v20210125/models.py +89 -0
- tencentcloud/emr/v20190103/models.py +50 -116
- tencentcloud/ess/v20201111/models.py +30 -22
- tencentcloud/essbasic/v20210526/models.py +52 -40
- tencentcloud/faceid/v20180301/models.py +14 -14
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +3 -1
- tencentcloud/hunyuan/v20230901/models.py +54 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +422 -0
- tencentcloud/lcic/v20220817/lcic_client.py +1 -1
- tencentcloud/lcic/v20220817/models.py +6 -8
- tencentcloud/lighthouse/v20200324/models.py +30 -0
- tencentcloud/lke/v20231130/models.py +23 -14
- tencentcloud/lkeap/v20240522/models.py +8 -4
- tencentcloud/mna/v20210119/models.py +0 -30
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +4 -10
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/postgres/v20170312/errorcodes.py +6 -0
- tencentcloud/postgres/v20170312/models.py +72 -30
- tencentcloud/rum/v20210622/models.py +0 -2
- tencentcloud/scf/v20180416/models.py +4 -4
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tchd/v20230306/models.py +0 -2
- tencentcloud/teo/v20220901/models.py +2 -6
- tencentcloud/tiw/v20190919/models.py +6 -0
- tencentcloud/trtc/v20190722/models.py +15 -0
- tencentcloud/tse/v20201207/models.py +138 -0
- tencentcloud/tse/v20201207/tse_client.py +23 -0
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +504 -12
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +767 -2
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/RECORD +52 -52
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1303.dist-info → tencentcloud_sdk_python-3.0.1307.dist-info}/top_level.txt +0 -0
@@ -2211,12 +2211,15 @@ class CreateHpcClusterRequest(AbstractModel):
|
|
2211
2211
|
:type HpcClusterType: str
|
2212
2212
|
:param _HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
|
2213
2213
|
:type HpcClusterBusinessId: str
|
2214
|
+
:param _TagSpecification: 标签描述列表。通过指定该参数可以同时绑定标签到相应的HPC高性能集群。
|
2215
|
+
:type TagSpecification: list of TagSpecification
|
2214
2216
|
"""
|
2215
2217
|
self._Zone = None
|
2216
2218
|
self._Name = None
|
2217
2219
|
self._Remark = None
|
2218
2220
|
self._HpcClusterType = None
|
2219
2221
|
self._HpcClusterBusinessId = None
|
2222
|
+
self._TagSpecification = None
|
2220
2223
|
|
2221
2224
|
@property
|
2222
2225
|
def Zone(self):
|
@@ -2273,6 +2276,17 @@ class CreateHpcClusterRequest(AbstractModel):
|
|
2273
2276
|
def HpcClusterBusinessId(self, HpcClusterBusinessId):
|
2274
2277
|
self._HpcClusterBusinessId = HpcClusterBusinessId
|
2275
2278
|
|
2279
|
+
@property
|
2280
|
+
def TagSpecification(self):
|
2281
|
+
"""标签描述列表。通过指定该参数可以同时绑定标签到相应的HPC高性能集群。
|
2282
|
+
:rtype: list of TagSpecification
|
2283
|
+
"""
|
2284
|
+
return self._TagSpecification
|
2285
|
+
|
2286
|
+
@TagSpecification.setter
|
2287
|
+
def TagSpecification(self, TagSpecification):
|
2288
|
+
self._TagSpecification = TagSpecification
|
2289
|
+
|
2276
2290
|
|
2277
2291
|
def _deserialize(self, params):
|
2278
2292
|
self._Zone = params.get("Zone")
|
@@ -2280,6 +2294,12 @@ class CreateHpcClusterRequest(AbstractModel):
|
|
2280
2294
|
self._Remark = params.get("Remark")
|
2281
2295
|
self._HpcClusterType = params.get("HpcClusterType")
|
2282
2296
|
self._HpcClusterBusinessId = params.get("HpcClusterBusinessId")
|
2297
|
+
if params.get("TagSpecification") is not None:
|
2298
|
+
self._TagSpecification = []
|
2299
|
+
for item in params.get("TagSpecification"):
|
2300
|
+
obj = TagSpecification()
|
2301
|
+
obj._deserialize(item)
|
2302
|
+
self._TagSpecification.append(obj)
|
2283
2303
|
memeber_set = set(params.keys())
|
2284
2304
|
for name, value in vars(self).items():
|
2285
2305
|
property_name = name[1:]
|
@@ -2719,7 +2739,7 @@ class CreateLaunchTemplateRequest(AbstractModel):
|
|
2719
2739
|
:type InternetAccessible: :class:`tencentcloud.cvm.v20170312.models.InternetAccessible`
|
2720
2740
|
:param _InstanceCount: 购买实例数量。包年包月实例取值范围:[1,300],按量计费实例取值范围:[1,100]。默认取值:1。指定购买实例的数量不能超过用户所能购买的剩余配额数量,具体配额相关限制详见[CVM实例购买限制](https://cloud.tencent.com/document/product/213/2664)。
|
2721
2741
|
:type InstanceCount: int
|
2722
|
-
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
2742
|
+
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
2723
2743
|
:type InstanceName: str
|
2724
2744
|
:param _LoginSettings: 实例登录设置。通过该参数可以设置实例的登录方式为密钥或保持镜像的原始登录设置。
|
2725
2745
|
:type LoginSettings: :class:`tencentcloud.cvm.v20170312.models.LoginSettings`
|
@@ -2899,7 +2919,7 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
2899
2919
|
|
2900
2920
|
@property
|
2901
2921
|
def InstanceName(self):
|
2902
|
-
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
2922
|
+
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
2903
2923
|
:rtype: str
|
2904
2924
|
"""
|
2905
2925
|
return self._InstanceName
|
@@ -3228,7 +3248,7 @@ class CreateLaunchTemplateVersionRequest(AbstractModel):
|
|
3228
3248
|
:type InternetAccessible: :class:`tencentcloud.cvm.v20170312.models.InternetAccessible`
|
3229
3249
|
:param _InstanceCount: 购买实例数量。包年包月实例取值范围:[1,300],按量计费实例取值范围:[1,100]。默认取值:1。指定购买实例的数量不能超过用户所能购买的剩余配额数量,具体配额相关限制详见[CVM实例购买限制](https://cloud.tencent.com/document/product/213/2664)。
|
3230
3250
|
:type InstanceCount: int
|
3231
|
-
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
3251
|
+
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
3232
3252
|
:type InstanceName: str
|
3233
3253
|
:param _LoginSettings: 实例登录设置。通过该参数可以设置实例的登录方式为密钥或保持镜像的原始登录设置。
|
3234
3254
|
:type LoginSettings: :class:`tencentcloud.cvm.v20170312.models.LoginSettings`
|
@@ -3420,7 +3440,7 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
3420
3440
|
|
3421
3441
|
@property
|
3422
3442
|
def InstanceName(self):
|
3423
|
-
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
3443
|
+
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
3424
3444
|
:rtype: str
|
3425
3445
|
"""
|
3426
3446
|
return self._InstanceName
|
@@ -3965,14 +3985,14 @@ class DeleteDisasterRecoverGroupsRequest(AbstractModel):
|
|
3965
3985
|
|
3966
3986
|
def __init__(self):
|
3967
3987
|
r"""
|
3968
|
-
:param _DisasterRecoverGroupIds: 分散置放群组ID列表,可通过[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取。每次请求允许操作的分散置放群组数量上限是
|
3988
|
+
:param _DisasterRecoverGroupIds: 分散置放群组ID列表,可通过[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取。每次请求允许操作的分散置放群组数量上限是10。
|
3969
3989
|
:type DisasterRecoverGroupIds: list of str
|
3970
3990
|
"""
|
3971
3991
|
self._DisasterRecoverGroupIds = None
|
3972
3992
|
|
3973
3993
|
@property
|
3974
3994
|
def DisasterRecoverGroupIds(self):
|
3975
|
-
"""分散置放群组ID列表,可通过[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取。每次请求允许操作的分散置放群组数量上限是
|
3995
|
+
"""分散置放群组ID列表,可通过[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取。每次请求允许操作的分散置放群组数量上限是10。
|
3976
3996
|
:rtype: list of str
|
3977
3997
|
"""
|
3978
3998
|
return self._DisasterRecoverGroupIds
|
@@ -4933,7 +4953,7 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
|
|
4933
4953
|
|
4934
4954
|
def __init__(self):
|
4935
4955
|
r"""
|
4936
|
-
:param _DisasterRecoverGroupIds: 分散置放群组ID列表。每次请求允许操作的分散置放群组数量上限是
|
4956
|
+
:param _DisasterRecoverGroupIds: 分散置放群组ID列表。每次请求允许操作的分散置放群组数量上限是10。
|
4937
4957
|
:type DisasterRecoverGroupIds: list of str
|
4938
4958
|
:param _Name: 分散置放群组名称,支持模糊匹配。
|
4939
4959
|
:type Name: str
|
@@ -4949,7 +4969,7 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
|
|
4949
4969
|
|
4950
4970
|
@property
|
4951
4971
|
def DisasterRecoverGroupIds(self):
|
4952
|
-
"""分散置放群组ID列表。每次请求允许操作的分散置放群组数量上限是
|
4972
|
+
"""分散置放群组ID列表。每次请求允许操作的分散置放群组数量上限是10。
|
4953
4973
|
:rtype: list of str
|
4954
4974
|
"""
|
4955
4975
|
return self._DisasterRecoverGroupIds
|
@@ -5251,6 +5271,10 @@ class DescribeHpcClustersRequest(AbstractModel):
|
|
5251
5271
|
:type HpcClusterType: str
|
5252
5272
|
:param _HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
|
5253
5273
|
:type HpcClusterBusinessId: str
|
5274
|
+
:param _InstanceType: 高性能计算集群实例类型
|
5275
|
+
:type InstanceType: str
|
5276
|
+
:param _Filters: <li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。
|
5277
|
+
:type Filters: list of Filter
|
5254
5278
|
"""
|
5255
5279
|
self._HpcClusterIds = None
|
5256
5280
|
self._Name = None
|
@@ -5259,6 +5283,8 @@ class DescribeHpcClustersRequest(AbstractModel):
|
|
5259
5283
|
self._Limit = None
|
5260
5284
|
self._HpcClusterType = None
|
5261
5285
|
self._HpcClusterBusinessId = None
|
5286
|
+
self._InstanceType = None
|
5287
|
+
self._Filters = None
|
5262
5288
|
|
5263
5289
|
@property
|
5264
5290
|
def HpcClusterIds(self):
|
@@ -5337,6 +5363,28 @@ class DescribeHpcClustersRequest(AbstractModel):
|
|
5337
5363
|
def HpcClusterBusinessId(self, HpcClusterBusinessId):
|
5338
5364
|
self._HpcClusterBusinessId = HpcClusterBusinessId
|
5339
5365
|
|
5366
|
+
@property
|
5367
|
+
def InstanceType(self):
|
5368
|
+
"""高性能计算集群实例类型
|
5369
|
+
:rtype: str
|
5370
|
+
"""
|
5371
|
+
return self._InstanceType
|
5372
|
+
|
5373
|
+
@InstanceType.setter
|
5374
|
+
def InstanceType(self, InstanceType):
|
5375
|
+
self._InstanceType = InstanceType
|
5376
|
+
|
5377
|
+
@property
|
5378
|
+
def Filters(self):
|
5379
|
+
"""<li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。
|
5380
|
+
:rtype: list of Filter
|
5381
|
+
"""
|
5382
|
+
return self._Filters
|
5383
|
+
|
5384
|
+
@Filters.setter
|
5385
|
+
def Filters(self, Filters):
|
5386
|
+
self._Filters = Filters
|
5387
|
+
|
5340
5388
|
|
5341
5389
|
def _deserialize(self, params):
|
5342
5390
|
self._HpcClusterIds = params.get("HpcClusterIds")
|
@@ -5346,6 +5394,13 @@ class DescribeHpcClustersRequest(AbstractModel):
|
|
5346
5394
|
self._Limit = params.get("Limit")
|
5347
5395
|
self._HpcClusterType = params.get("HpcClusterType")
|
5348
5396
|
self._HpcClusterBusinessId = params.get("HpcClusterBusinessId")
|
5397
|
+
self._InstanceType = params.get("InstanceType")
|
5398
|
+
if params.get("Filters") is not None:
|
5399
|
+
self._Filters = []
|
5400
|
+
for item in params.get("Filters"):
|
5401
|
+
obj = Filter()
|
5402
|
+
obj._deserialize(item)
|
5403
|
+
self._Filters.append(obj)
|
5349
5404
|
memeber_set = set(params.keys())
|
5350
5405
|
for name, value in vars(self).items():
|
5351
5406
|
property_name = name[1:]
|
@@ -9567,6 +9622,10 @@ class HpcClusterInfo(AbstractModel):
|
|
9567
9622
|
:param _HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
|
9568
9623
|
注意:此字段可能返回 null,表示取不到有效值。
|
9569
9624
|
:type HpcClusterBusinessId: str
|
9625
|
+
:param _HpcClusterNetMode: 高性能计算集群网络模式
|
9626
|
+
:type HpcClusterNetMode: int
|
9627
|
+
:param _Tags: 高性能计算集群关联的标签列表
|
9628
|
+
:type Tags: list of Tag
|
9570
9629
|
"""
|
9571
9630
|
self._HpcClusterId = None
|
9572
9631
|
self._Name = None
|
@@ -9578,6 +9637,8 @@ class HpcClusterInfo(AbstractModel):
|
|
9578
9637
|
self._InstanceIds = None
|
9579
9638
|
self._HpcClusterType = None
|
9580
9639
|
self._HpcClusterBusinessId = None
|
9640
|
+
self._HpcClusterNetMode = None
|
9641
|
+
self._Tags = None
|
9581
9642
|
|
9582
9643
|
@property
|
9583
9644
|
def HpcClusterId(self):
|
@@ -9695,6 +9756,28 @@ class HpcClusterInfo(AbstractModel):
|
|
9695
9756
|
def HpcClusterBusinessId(self, HpcClusterBusinessId):
|
9696
9757
|
self._HpcClusterBusinessId = HpcClusterBusinessId
|
9697
9758
|
|
9759
|
+
@property
|
9760
|
+
def HpcClusterNetMode(self):
|
9761
|
+
"""高性能计算集群网络模式
|
9762
|
+
:rtype: int
|
9763
|
+
"""
|
9764
|
+
return self._HpcClusterNetMode
|
9765
|
+
|
9766
|
+
@HpcClusterNetMode.setter
|
9767
|
+
def HpcClusterNetMode(self, HpcClusterNetMode):
|
9768
|
+
self._HpcClusterNetMode = HpcClusterNetMode
|
9769
|
+
|
9770
|
+
@property
|
9771
|
+
def Tags(self):
|
9772
|
+
"""高性能计算集群关联的标签列表
|
9773
|
+
:rtype: list of Tag
|
9774
|
+
"""
|
9775
|
+
return self._Tags
|
9776
|
+
|
9777
|
+
@Tags.setter
|
9778
|
+
def Tags(self, Tags):
|
9779
|
+
self._Tags = Tags
|
9780
|
+
|
9698
9781
|
|
9699
9782
|
def _deserialize(self, params):
|
9700
9783
|
self._HpcClusterId = params.get("HpcClusterId")
|
@@ -9707,6 +9790,13 @@ class HpcClusterInfo(AbstractModel):
|
|
9707
9790
|
self._InstanceIds = params.get("InstanceIds")
|
9708
9791
|
self._HpcClusterType = params.get("HpcClusterType")
|
9709
9792
|
self._HpcClusterBusinessId = params.get("HpcClusterBusinessId")
|
9793
|
+
self._HpcClusterNetMode = params.get("HpcClusterNetMode")
|
9794
|
+
if params.get("Tags") is not None:
|
9795
|
+
self._Tags = []
|
9796
|
+
for item in params.get("Tags"):
|
9797
|
+
obj = Tag()
|
9798
|
+
obj._deserialize(item)
|
9799
|
+
self._Tags.append(obj)
|
9710
9800
|
memeber_set = set(params.keys())
|
9711
9801
|
for name, value in vars(self).items():
|
9712
9802
|
property_name = name[1:]
|
@@ -11575,7 +11665,7 @@ class InquiryPriceRunInstancesRequest(AbstractModel):
|
|
11575
11665
|
:type InternetAccessible: :class:`tencentcloud.cvm.v20170312.models.InternetAccessible`
|
11576
11666
|
:param _InstanceCount: 购买实例数量。取值范围:[1,100]。默认取值:1。指定购买实例的数量不能超过用户所能购买的剩余配额数量,具体配额相关限制详见[CVM实例购买限制](https://cloud.tencent.com/document/product/213/2664)。
|
11577
11667
|
:type InstanceCount: int
|
11578
|
-
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
11668
|
+
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
11579
11669
|
:type InstanceName: str
|
11580
11670
|
:param _LoginSettings: 实例登录设置。通过该参数可以设置实例的登录方式密码、密钥或保持镜像的原始登录设置。默认情况下会随机生成密码,并以站内信方式知会到用户。
|
11581
11671
|
:type LoginSettings: :class:`tencentcloud.cvm.v20170312.models.LoginSettings`
|
@@ -11734,7 +11824,7 @@ class InquiryPriceRunInstancesRequest(AbstractModel):
|
|
11734
11824
|
|
11735
11825
|
@property
|
11736
11826
|
def InstanceName(self):
|
11737
|
-
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
11827
|
+
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
11738
11828
|
:rtype: str
|
11739
11829
|
"""
|
11740
11830
|
return self._InstanceName
|
@@ -16352,6 +16442,100 @@ class ModifyInstancesChargeTypeResponse(AbstractModel):
|
|
16352
16442
|
self._RequestId = params.get("RequestId")
|
16353
16443
|
|
16354
16444
|
|
16445
|
+
class ModifyInstancesDisasterRecoverGroupRequest(AbstractModel):
|
16446
|
+
"""ModifyInstancesDisasterRecoverGroup请求参数结构体
|
16447
|
+
|
16448
|
+
"""
|
16449
|
+
|
16450
|
+
def __init__(self):
|
16451
|
+
r"""
|
16452
|
+
:param _InstanceIds: 一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728)接口返回值中的`InstanceId`获取。每次请求批量实例的上限为1
|
16453
|
+
:type InstanceIds: list of str
|
16454
|
+
:param _DisasterRecoverGroupId: 分散置放群组ID,可使用[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取
|
16455
|
+
:type DisasterRecoverGroupId: str
|
16456
|
+
:param _Force: 是否强制更换实例宿主机。取值范围:<br><li>true:表示允许实例更换宿主机,允许重启实例。本地盘子机不支持指定此参数。</li><br><li>false:不允许实例更换宿主机,只在当前宿主机上加入置放群组。这可能导致更换置放群组失败。</li><br><br>默认取值:false
|
16457
|
+
:type Force: bool
|
16458
|
+
"""
|
16459
|
+
self._InstanceIds = None
|
16460
|
+
self._DisasterRecoverGroupId = None
|
16461
|
+
self._Force = None
|
16462
|
+
|
16463
|
+
@property
|
16464
|
+
def InstanceIds(self):
|
16465
|
+
"""一个或多个待操作的实例ID。可通过[`DescribeInstances`](https://cloud.tencent.com/document/api/213/15728)接口返回值中的`InstanceId`获取。每次请求批量实例的上限为1
|
16466
|
+
:rtype: list of str
|
16467
|
+
"""
|
16468
|
+
return self._InstanceIds
|
16469
|
+
|
16470
|
+
@InstanceIds.setter
|
16471
|
+
def InstanceIds(self, InstanceIds):
|
16472
|
+
self._InstanceIds = InstanceIds
|
16473
|
+
|
16474
|
+
@property
|
16475
|
+
def DisasterRecoverGroupId(self):
|
16476
|
+
"""分散置放群组ID,可使用[DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/api/213/17810)接口获取
|
16477
|
+
:rtype: str
|
16478
|
+
"""
|
16479
|
+
return self._DisasterRecoverGroupId
|
16480
|
+
|
16481
|
+
@DisasterRecoverGroupId.setter
|
16482
|
+
def DisasterRecoverGroupId(self, DisasterRecoverGroupId):
|
16483
|
+
self._DisasterRecoverGroupId = DisasterRecoverGroupId
|
16484
|
+
|
16485
|
+
@property
|
16486
|
+
def Force(self):
|
16487
|
+
"""是否强制更换实例宿主机。取值范围:<br><li>true:表示允许实例更换宿主机,允许重启实例。本地盘子机不支持指定此参数。</li><br><li>false:不允许实例更换宿主机,只在当前宿主机上加入置放群组。这可能导致更换置放群组失败。</li><br><br>默认取值:false
|
16488
|
+
:rtype: bool
|
16489
|
+
"""
|
16490
|
+
return self._Force
|
16491
|
+
|
16492
|
+
@Force.setter
|
16493
|
+
def Force(self, Force):
|
16494
|
+
self._Force = Force
|
16495
|
+
|
16496
|
+
|
16497
|
+
def _deserialize(self, params):
|
16498
|
+
self._InstanceIds = params.get("InstanceIds")
|
16499
|
+
self._DisasterRecoverGroupId = params.get("DisasterRecoverGroupId")
|
16500
|
+
self._Force = params.get("Force")
|
16501
|
+
memeber_set = set(params.keys())
|
16502
|
+
for name, value in vars(self).items():
|
16503
|
+
property_name = name[1:]
|
16504
|
+
if property_name in memeber_set:
|
16505
|
+
memeber_set.remove(property_name)
|
16506
|
+
if len(memeber_set) > 0:
|
16507
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16508
|
+
|
16509
|
+
|
16510
|
+
|
16511
|
+
class ModifyInstancesDisasterRecoverGroupResponse(AbstractModel):
|
16512
|
+
"""ModifyInstancesDisasterRecoverGroup返回参数结构体
|
16513
|
+
|
16514
|
+
"""
|
16515
|
+
|
16516
|
+
def __init__(self):
|
16517
|
+
r"""
|
16518
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16519
|
+
:type RequestId: str
|
16520
|
+
"""
|
16521
|
+
self._RequestId = None
|
16522
|
+
|
16523
|
+
@property
|
16524
|
+
def RequestId(self):
|
16525
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16526
|
+
:rtype: str
|
16527
|
+
"""
|
16528
|
+
return self._RequestId
|
16529
|
+
|
16530
|
+
@RequestId.setter
|
16531
|
+
def RequestId(self, RequestId):
|
16532
|
+
self._RequestId = RequestId
|
16533
|
+
|
16534
|
+
|
16535
|
+
def _deserialize(self, params):
|
16536
|
+
self._RequestId = params.get("RequestId")
|
16537
|
+
|
16538
|
+
|
16355
16539
|
class ModifyInstancesProjectRequest(AbstractModel):
|
16356
16540
|
"""ModifyInstancesProject请求参数结构体
|
16357
16541
|
|
@@ -19172,7 +19356,7 @@ class RunInstancesRequest(AbstractModel):
|
|
19172
19356
|
:type InternetAccessible: :class:`tencentcloud.cvm.v20170312.models.InternetAccessible`
|
19173
19357
|
:param _InstanceCount: 购买实例数量。包年包月实例取值范围:[1,500],按量计费实例取值范围:[1,500]。默认取值:1。指定购买实例的数量不能超过用户所能购买的剩余配额数量,具体配额相关限制详见[CVM实例购买限制](https://cloud.tencent.com/document/product/213/2664)。
|
19174
19358
|
:type InstanceCount: int
|
19175
|
-
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
19359
|
+
:param _InstanceName: 实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
19176
19360
|
:type InstanceName: str
|
19177
19361
|
:param _LoginSettings: 实例登录设置。通过该参数可以设置实例的登录方式密码、密钥或保持镜像的原始登录设置。默认情况下会随机生成密码,并以站内信方式知会到用户。
|
19178
19362
|
:type LoginSettings: :class:`tencentcloud.cvm.v20170312.models.LoginSettings`
|
@@ -19360,7 +19544,7 @@ false(默认):发送正常请求,通过检查后直接创建实例
|
|
19360
19544
|
|
19361
19545
|
@property
|
19362
19546
|
def InstanceName(self):
|
19363
|
-
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持
|
19547
|
+
"""实例显示名称。<br><li>不指定实例显示名称则默认显示‘未命名’。</li><li>购买多台实例,如果指定模式串`{R:x}`,表示生成数字`[x, x+n-1]`,其中`n`表示购买实例的数量,例如`server_{R:3}`,购买1台时,实例显示名称为`server_3`;购买2台时,实例显示名称分别为`server_3`,`server_4`。支持指定多个模式串`{R:x}`。</li><li>购买多台实例,如果不指定模式串,则在实例显示名称添加后缀`1、2...n`,其中`n`表示购买实例的数量,例如`server_`,购买2台时,实例显示名称分别为`server_1`,`server_2`。</li><li>最多支持128个字符(包含模式串)。</li>
|
19364
19548
|
:rtype: str
|
19365
19549
|
"""
|
19366
19550
|
return self._InstanceName
|
@@ -608,7 +608,6 @@ stoped:终止状态
|
|
608
608
|
:param _ApplyTime: 敏捷上云申请的时间
|
609
609
|
:type ApplyTime: str
|
610
610
|
:param _ReadyTime: 敏捷上云建设完成的时间
|
611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
612
611
|
:type ReadyTime: str
|
613
612
|
:param _ExpireTime: 敏捷上云过期时间
|
614
613
|
:type ExpireTime: str
|
@@ -630,6 +629,8 @@ cross-region:跨地域
|
|
630
629
|
:type CloudAttachServiceGatewaysSupport: bool
|
631
630
|
:param _BUpdateBandwidth: 敏捷上云服务是否处于升降配中
|
632
631
|
:type BUpdateBandwidth: bool
|
632
|
+
:param _ArRegion: 接入地域
|
633
|
+
:type ArRegion: str
|
633
634
|
"""
|
634
635
|
self._InstanceId = None
|
635
636
|
self._Name = None
|
@@ -650,6 +651,7 @@ cross-region:跨地域
|
|
650
651
|
self._DirectConnectId = None
|
651
652
|
self._CloudAttachServiceGatewaysSupport = None
|
652
653
|
self._BUpdateBandwidth = None
|
654
|
+
self._ArRegion = None
|
653
655
|
|
654
656
|
@property
|
655
657
|
def InstanceId(self):
|
@@ -760,7 +762,6 @@ stoped:终止状态
|
|
760
762
|
@property
|
761
763
|
def ReadyTime(self):
|
762
764
|
"""敏捷上云建设完成的时间
|
763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
764
765
|
:rtype: str
|
765
766
|
"""
|
766
767
|
return self._ReadyTime
|
@@ -870,6 +871,17 @@ cross-region:跨地域
|
|
870
871
|
def BUpdateBandwidth(self, BUpdateBandwidth):
|
871
872
|
self._BUpdateBandwidth = BUpdateBandwidth
|
872
873
|
|
874
|
+
@property
|
875
|
+
def ArRegion(self):
|
876
|
+
"""接入地域
|
877
|
+
:rtype: str
|
878
|
+
"""
|
879
|
+
return self._ArRegion
|
880
|
+
|
881
|
+
@ArRegion.setter
|
882
|
+
def ArRegion(self, ArRegion):
|
883
|
+
self._ArRegion = ArRegion
|
884
|
+
|
873
885
|
|
874
886
|
def _deserialize(self, params):
|
875
887
|
self._InstanceId = params.get("InstanceId")
|
@@ -891,6 +903,7 @@ cross-region:跨地域
|
|
891
903
|
self._DirectConnectId = params.get("DirectConnectId")
|
892
904
|
self._CloudAttachServiceGatewaysSupport = params.get("CloudAttachServiceGatewaysSupport")
|
893
905
|
self._BUpdateBandwidth = params.get("BUpdateBandwidth")
|
906
|
+
self._ArRegion = params.get("ArRegion")
|
894
907
|
memeber_set = set(params.keys())
|
895
908
|
for name, value in vars(self).items():
|
896
909
|
property_name = name[1:]
|
@@ -971,6 +984,8 @@ class CreateCasInput(AbstractModel):
|
|
971
984
|
:type Telephone: str
|
972
985
|
:param _Remarks: 备注信息
|
973
986
|
:type Remarks: str
|
987
|
+
:param _ArRegion: 接入地域
|
988
|
+
:type ArRegion: str
|
974
989
|
"""
|
975
990
|
self._Name = None
|
976
991
|
self._IdcAddress = None
|
@@ -978,6 +993,7 @@ class CreateCasInput(AbstractModel):
|
|
978
993
|
self._Bandwidth = None
|
979
994
|
self._Telephone = None
|
980
995
|
self._Remarks = None
|
996
|
+
self._ArRegion = None
|
981
997
|
|
982
998
|
@property
|
983
999
|
def Name(self):
|
@@ -1045,6 +1061,17 @@ class CreateCasInput(AbstractModel):
|
|
1045
1061
|
def Remarks(self, Remarks):
|
1046
1062
|
self._Remarks = Remarks
|
1047
1063
|
|
1064
|
+
@property
|
1065
|
+
def ArRegion(self):
|
1066
|
+
"""接入地域
|
1067
|
+
:rtype: str
|
1068
|
+
"""
|
1069
|
+
return self._ArRegion
|
1070
|
+
|
1071
|
+
@ArRegion.setter
|
1072
|
+
def ArRegion(self, ArRegion):
|
1073
|
+
self._ArRegion = ArRegion
|
1074
|
+
|
1048
1075
|
|
1049
1076
|
def _deserialize(self, params):
|
1050
1077
|
self._Name = params.get("Name")
|
@@ -1053,6 +1080,7 @@ class CreateCasInput(AbstractModel):
|
|
1053
1080
|
self._Bandwidth = params.get("Bandwidth")
|
1054
1081
|
self._Telephone = params.get("Telephone")
|
1055
1082
|
self._Remarks = params.get("Remarks")
|
1083
|
+
self._ArRegion = params.get("ArRegion")
|
1056
1084
|
memeber_set = set(params.keys())
|
1057
1085
|
for name, value in vars(self).items():
|
1058
1086
|
property_name = name[1:]
|
@@ -29007,6 +29007,44 @@ class SessionResourceTemplate(AbstractModel):
|
|
29007
29007
|
|
29008
29008
|
|
29009
29009
|
|
29010
|
+
class SmartOptimizerChangeTablePolicy(AbstractModel):
|
29011
|
+
"""混合表中,change表的数据保存时间,单位为天
|
29012
|
+
|
29013
|
+
"""
|
29014
|
+
|
29015
|
+
def __init__(self):
|
29016
|
+
r"""
|
29017
|
+
:param _DataRetentionTime: change表的数据保存时间,单位为天
|
29018
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
29019
|
+
:type DataRetentionTime: int
|
29020
|
+
"""
|
29021
|
+
self._DataRetentionTime = None
|
29022
|
+
|
29023
|
+
@property
|
29024
|
+
def DataRetentionTime(self):
|
29025
|
+
"""change表的数据保存时间,单位为天
|
29026
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
29027
|
+
:rtype: int
|
29028
|
+
"""
|
29029
|
+
return self._DataRetentionTime
|
29030
|
+
|
29031
|
+
@DataRetentionTime.setter
|
29032
|
+
def DataRetentionTime(self, DataRetentionTime):
|
29033
|
+
self._DataRetentionTime = DataRetentionTime
|
29034
|
+
|
29035
|
+
|
29036
|
+
def _deserialize(self, params):
|
29037
|
+
self._DataRetentionTime = params.get("DataRetentionTime")
|
29038
|
+
memeber_set = set(params.keys())
|
29039
|
+
for name, value in vars(self).items():
|
29040
|
+
property_name = name[1:]
|
29041
|
+
if property_name in memeber_set:
|
29042
|
+
memeber_set.remove(property_name)
|
29043
|
+
if len(memeber_set) > 0:
|
29044
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
29045
|
+
|
29046
|
+
|
29047
|
+
|
29010
29048
|
class SmartOptimizerIndexPolicy(AbstractModel):
|
29011
29049
|
"""SmartOptimizerIndexPolicy
|
29012
29050
|
|
@@ -29173,12 +29211,16 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
29173
29211
|
:param _Index: SmartOptimizerIndexPolicy
|
29174
29212
|
注意:此字段可能返回 null,表示取不到有效值。
|
29175
29213
|
:type Index: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerIndexPolicy`
|
29214
|
+
:param _ChangeTable: SmartOptimizerChangeTablePolicy
|
29215
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
29216
|
+
:type ChangeTable: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerChangeTablePolicy`
|
29176
29217
|
"""
|
29177
29218
|
self._Inherit = None
|
29178
29219
|
self._Resources = None
|
29179
29220
|
self._Written = None
|
29180
29221
|
self._Lifecycle = None
|
29181
29222
|
self._Index = None
|
29223
|
+
self._ChangeTable = None
|
29182
29224
|
|
29183
29225
|
@property
|
29184
29226
|
def Inherit(self):
|
@@ -29240,6 +29282,18 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
29240
29282
|
def Index(self, Index):
|
29241
29283
|
self._Index = Index
|
29242
29284
|
|
29285
|
+
@property
|
29286
|
+
def ChangeTable(self):
|
29287
|
+
"""SmartOptimizerChangeTablePolicy
|
29288
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
29289
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.SmartOptimizerChangeTablePolicy`
|
29290
|
+
"""
|
29291
|
+
return self._ChangeTable
|
29292
|
+
|
29293
|
+
@ChangeTable.setter
|
29294
|
+
def ChangeTable(self, ChangeTable):
|
29295
|
+
self._ChangeTable = ChangeTable
|
29296
|
+
|
29243
29297
|
|
29244
29298
|
def _deserialize(self, params):
|
29245
29299
|
self._Inherit = params.get("Inherit")
|
@@ -29258,6 +29312,9 @@ class SmartOptimizerPolicy(AbstractModel):
|
|
29258
29312
|
if params.get("Index") is not None:
|
29259
29313
|
self._Index = SmartOptimizerIndexPolicy()
|
29260
29314
|
self._Index._deserialize(params.get("Index"))
|
29315
|
+
if params.get("ChangeTable") is not None:
|
29316
|
+
self._ChangeTable = SmartOptimizerChangeTablePolicy()
|
29317
|
+
self._ChangeTable._deserialize(params.get("ChangeTable"))
|
29261
29318
|
memeber_set = set(params.keys())
|
29262
29319
|
for name, value in vars(self).items():
|
29263
29320
|
property_name = name[1:]
|
@@ -31555,6 +31612,9 @@ class TableBaseInfo(AbstractModel):
|
|
31555
31612
|
:param _SmartPolicy: 智能数据治理配置项
|
31556
31613
|
注意:此字段可能返回 null,表示取不到有效值。
|
31557
31614
|
:type SmartPolicy: :class:`tencentcloud.dlc.v20210125.models.SmartPolicy`
|
31615
|
+
:param _PrimaryKeys: T-ICEBERG表的主键
|
31616
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31617
|
+
:type PrimaryKeys: list of str
|
31558
31618
|
"""
|
31559
31619
|
self._DatabaseName = None
|
31560
31620
|
self._TableName = None
|
@@ -31567,6 +31627,7 @@ class TableBaseInfo(AbstractModel):
|
|
31567
31627
|
self._GovernPolicy = None
|
31568
31628
|
self._DbGovernPolicyIsDisable = None
|
31569
31629
|
self._SmartPolicy = None
|
31630
|
+
self._PrimaryKeys = None
|
31570
31631
|
|
31571
31632
|
@property
|
31572
31633
|
def DatabaseName(self):
|
@@ -31706,6 +31767,18 @@ class TableBaseInfo(AbstractModel):
|
|
31706
31767
|
def SmartPolicy(self, SmartPolicy):
|
31707
31768
|
self._SmartPolicy = SmartPolicy
|
31708
31769
|
|
31770
|
+
@property
|
31771
|
+
def PrimaryKeys(self):
|
31772
|
+
"""T-ICEBERG表的主键
|
31773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31774
|
+
:rtype: list of str
|
31775
|
+
"""
|
31776
|
+
return self._PrimaryKeys
|
31777
|
+
|
31778
|
+
@PrimaryKeys.setter
|
31779
|
+
def PrimaryKeys(self, PrimaryKeys):
|
31780
|
+
self._PrimaryKeys = PrimaryKeys
|
31781
|
+
|
31709
31782
|
|
31710
31783
|
def _deserialize(self, params):
|
31711
31784
|
self._DatabaseName = params.get("DatabaseName")
|
@@ -31723,6 +31796,7 @@ class TableBaseInfo(AbstractModel):
|
|
31723
31796
|
if params.get("SmartPolicy") is not None:
|
31724
31797
|
self._SmartPolicy = SmartPolicy()
|
31725
31798
|
self._SmartPolicy._deserialize(params.get("SmartPolicy"))
|
31799
|
+
self._PrimaryKeys = params.get("PrimaryKeys")
|
31726
31800
|
memeber_set = set(params.keys())
|
31727
31801
|
for name, value in vars(self).items():
|
31728
31802
|
property_name = name[1:]
|
@@ -31885,6 +31959,8 @@ class TableResponseInfo(AbstractModel):
|
|
31885
31959
|
:param _HeatValue: 访问热点
|
31886
31960
|
注意:此字段可能返回 null,表示取不到有效值。
|
31887
31961
|
:type HeatValue: int
|
31962
|
+
:param _InputFormatShort: InputFormat的缩写
|
31963
|
+
:type InputFormatShort: str
|
31888
31964
|
"""
|
31889
31965
|
self._TableBaseInfo = None
|
31890
31966
|
self._Columns = None
|
@@ -31898,6 +31974,7 @@ class TableResponseInfo(AbstractModel):
|
|
31898
31974
|
self._RecordCount = None
|
31899
31975
|
self._MapMaterializedViewName = None
|
31900
31976
|
self._HeatValue = None
|
31977
|
+
self._InputFormatShort = None
|
31901
31978
|
|
31902
31979
|
@property
|
31903
31980
|
def TableBaseInfo(self):
|
@@ -32042,6 +32119,17 @@ class TableResponseInfo(AbstractModel):
|
|
32042
32119
|
def HeatValue(self, HeatValue):
|
32043
32120
|
self._HeatValue = HeatValue
|
32044
32121
|
|
32122
|
+
@property
|
32123
|
+
def InputFormatShort(self):
|
32124
|
+
"""InputFormat的缩写
|
32125
|
+
:rtype: str
|
32126
|
+
"""
|
32127
|
+
return self._InputFormatShort
|
32128
|
+
|
32129
|
+
@InputFormatShort.setter
|
32130
|
+
def InputFormatShort(self, InputFormatShort):
|
32131
|
+
self._InputFormatShort = InputFormatShort
|
32132
|
+
|
32045
32133
|
|
32046
32134
|
def _deserialize(self, params):
|
32047
32135
|
if params.get("TableBaseInfo") is not None:
|
@@ -32073,6 +32161,7 @@ class TableResponseInfo(AbstractModel):
|
|
32073
32161
|
self._RecordCount = params.get("RecordCount")
|
32074
32162
|
self._MapMaterializedViewName = params.get("MapMaterializedViewName")
|
32075
32163
|
self._HeatValue = params.get("HeatValue")
|
32164
|
+
self._InputFormatShort = params.get("InputFormatShort")
|
32076
32165
|
memeber_set = set(params.keys())
|
32077
32166
|
for name, value in vars(self).items():
|
32078
32167
|
property_name = name[1:]
|