tencentcloud-sdk-python 3.0.1340__py2.py3-none-any.whl → 3.0.1341__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/autoscaling/v20180419/autoscaling_client.py +26 -0
- tencentcloud/autoscaling/v20180419/models.py +94 -0
- tencentcloud/cdc/v20201214/models.py +29 -74
- tencentcloud/cdwch/v20200915/models.py +124 -0
- tencentcloud/cdz/v20221123/models.py +0 -8
- tencentcloud/cynosdb/v20190107/models.py +0 -290
- tencentcloud/dbbrain/v20210527/models.py +15 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +532 -0
- tencentcloud/lcic/v20220817/models.py +4 -4
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +12 -3
- tencentcloud/lighthouse/v20200324/models.py +139 -39
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +6 -6
- tencentcloud/ocr/v20181119/models.py +82 -0
- tencentcloud/ssl/v20191205/models.py +7 -319
- tencentcloud/tchd/v20230306/models.py +168 -0
- tencentcloud/tchd/v20230306/tchd_client.py +24 -0
- tencentcloud/wedata/v20210820/models.py +133 -254
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/top_level.txt +0 -0
@@ -1089,6 +1089,8 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1089
1089
|
:type CommonSpec: :class:`tencentcloud.cdwch.v20200915.models.NodeSpec`
|
1090
1090
|
:param _TagItems: 标签列表
|
1091
1091
|
:type TagItems: list of Tag
|
1092
|
+
:param _SecondaryZoneInfo: 副可用去信息
|
1093
|
+
:type SecondaryZoneInfo: list of SecondaryZoneInfo
|
1092
1094
|
"""
|
1093
1095
|
self._Zone = None
|
1094
1096
|
self._HaFlag = None
|
@@ -1105,6 +1107,7 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1105
1107
|
self._HAZk = None
|
1106
1108
|
self._CommonSpec = None
|
1107
1109
|
self._TagItems = None
|
1110
|
+
self._SecondaryZoneInfo = None
|
1108
1111
|
|
1109
1112
|
@property
|
1110
1113
|
def Zone(self):
|
@@ -1277,6 +1280,17 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1277
1280
|
def TagItems(self, TagItems):
|
1278
1281
|
self._TagItems = TagItems
|
1279
1282
|
|
1283
|
+
@property
|
1284
|
+
def SecondaryZoneInfo(self):
|
1285
|
+
"""副可用去信息
|
1286
|
+
:rtype: list of SecondaryZoneInfo
|
1287
|
+
"""
|
1288
|
+
return self._SecondaryZoneInfo
|
1289
|
+
|
1290
|
+
@SecondaryZoneInfo.setter
|
1291
|
+
def SecondaryZoneInfo(self, SecondaryZoneInfo):
|
1292
|
+
self._SecondaryZoneInfo = SecondaryZoneInfo
|
1293
|
+
|
1280
1294
|
|
1281
1295
|
def _deserialize(self, params):
|
1282
1296
|
self._Zone = params.get("Zone")
|
@@ -1307,6 +1321,12 @@ SpecName从DescribeSpec接口中返回的CommonSpec.Name(ZK节点)获取
|
|
1307
1321
|
obj = Tag()
|
1308
1322
|
obj._deserialize(item)
|
1309
1323
|
self._TagItems.append(obj)
|
1324
|
+
if params.get("SecondaryZoneInfo") is not None:
|
1325
|
+
self._SecondaryZoneInfo = []
|
1326
|
+
for item in params.get("SecondaryZoneInfo"):
|
1327
|
+
obj = SecondaryZoneInfo()
|
1328
|
+
obj._deserialize(item)
|
1329
|
+
self._SecondaryZoneInfo.append(obj)
|
1310
1330
|
memeber_set = set(params.keys())
|
1311
1331
|
for name, value in vars(self).items():
|
1312
1332
|
property_name = name[1:]
|
@@ -3094,6 +3114,8 @@ class DescribeInstancesNewRequest(AbstractModel):
|
|
3094
3114
|
:type SearchTags: list of SearchTags
|
3095
3115
|
:param _IsSimple: 信息详细与否
|
3096
3116
|
:type IsSimple: bool
|
3117
|
+
:param _Vips: vip列表
|
3118
|
+
:type Vips: list of str
|
3097
3119
|
"""
|
3098
3120
|
self._SearchInstanceId = None
|
3099
3121
|
self._SearchInstanceName = None
|
@@ -3101,6 +3123,7 @@ class DescribeInstancesNewRequest(AbstractModel):
|
|
3101
3123
|
self._Limit = None
|
3102
3124
|
self._SearchTags = None
|
3103
3125
|
self._IsSimple = None
|
3126
|
+
self._Vips = None
|
3104
3127
|
|
3105
3128
|
@property
|
3106
3129
|
def SearchInstanceId(self):
|
@@ -3168,6 +3191,17 @@ class DescribeInstancesNewRequest(AbstractModel):
|
|
3168
3191
|
def IsSimple(self, IsSimple):
|
3169
3192
|
self._IsSimple = IsSimple
|
3170
3193
|
|
3194
|
+
@property
|
3195
|
+
def Vips(self):
|
3196
|
+
"""vip列表
|
3197
|
+
:rtype: list of str
|
3198
|
+
"""
|
3199
|
+
return self._Vips
|
3200
|
+
|
3201
|
+
@Vips.setter
|
3202
|
+
def Vips(self, Vips):
|
3203
|
+
self._Vips = Vips
|
3204
|
+
|
3171
3205
|
|
3172
3206
|
def _deserialize(self, params):
|
3173
3207
|
self._SearchInstanceId = params.get("SearchInstanceId")
|
@@ -3181,6 +3215,7 @@ class DescribeInstancesNewRequest(AbstractModel):
|
|
3181
3215
|
obj._deserialize(item)
|
3182
3216
|
self._SearchTags.append(obj)
|
3183
3217
|
self._IsSimple = params.get("IsSimple")
|
3218
|
+
self._Vips = params.get("Vips")
|
3184
3219
|
memeber_set = set(params.keys())
|
3185
3220
|
for name, value in vars(self).items():
|
3186
3221
|
property_name = name[1:]
|
@@ -7423,6 +7458,95 @@ class SearchTags(AbstractModel):
|
|
7423
7458
|
|
7424
7459
|
|
7425
7460
|
|
7461
|
+
class SecondaryZoneInfo(AbstractModel):
|
7462
|
+
"""副可用区详情
|
7463
|
+
|
7464
|
+
"""
|
7465
|
+
|
7466
|
+
def __init__(self):
|
7467
|
+
r"""
|
7468
|
+
:param _SecondaryZone: 副可用区
|
7469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7470
|
+
:type SecondaryZone: str
|
7471
|
+
:param _SecondarySubnet: 可用区可用的子网id
|
7472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7473
|
+
:type SecondarySubnet: str
|
7474
|
+
:param _UserIpNum: 可用区可用的子网可用ip的数量
|
7475
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7476
|
+
:type UserIpNum: str
|
7477
|
+
:param _SecondaryUserSubnetIPNum: 可用区可用的子网可用ip的数量
|
7478
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7479
|
+
:type SecondaryUserSubnetIPNum: int
|
7480
|
+
"""
|
7481
|
+
self._SecondaryZone = None
|
7482
|
+
self._SecondarySubnet = None
|
7483
|
+
self._UserIpNum = None
|
7484
|
+
self._SecondaryUserSubnetIPNum = None
|
7485
|
+
|
7486
|
+
@property
|
7487
|
+
def SecondaryZone(self):
|
7488
|
+
"""副可用区
|
7489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7490
|
+
:rtype: str
|
7491
|
+
"""
|
7492
|
+
return self._SecondaryZone
|
7493
|
+
|
7494
|
+
@SecondaryZone.setter
|
7495
|
+
def SecondaryZone(self, SecondaryZone):
|
7496
|
+
self._SecondaryZone = SecondaryZone
|
7497
|
+
|
7498
|
+
@property
|
7499
|
+
def SecondarySubnet(self):
|
7500
|
+
"""可用区可用的子网id
|
7501
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7502
|
+
:rtype: str
|
7503
|
+
"""
|
7504
|
+
return self._SecondarySubnet
|
7505
|
+
|
7506
|
+
@SecondarySubnet.setter
|
7507
|
+
def SecondarySubnet(self, SecondarySubnet):
|
7508
|
+
self._SecondarySubnet = SecondarySubnet
|
7509
|
+
|
7510
|
+
@property
|
7511
|
+
def UserIpNum(self):
|
7512
|
+
"""可用区可用的子网可用ip的数量
|
7513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7514
|
+
:rtype: str
|
7515
|
+
"""
|
7516
|
+
return self._UserIpNum
|
7517
|
+
|
7518
|
+
@UserIpNum.setter
|
7519
|
+
def UserIpNum(self, UserIpNum):
|
7520
|
+
self._UserIpNum = UserIpNum
|
7521
|
+
|
7522
|
+
@property
|
7523
|
+
def SecondaryUserSubnetIPNum(self):
|
7524
|
+
"""可用区可用的子网可用ip的数量
|
7525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7526
|
+
:rtype: int
|
7527
|
+
"""
|
7528
|
+
return self._SecondaryUserSubnetIPNum
|
7529
|
+
|
7530
|
+
@SecondaryUserSubnetIPNum.setter
|
7531
|
+
def SecondaryUserSubnetIPNum(self, SecondaryUserSubnetIPNum):
|
7532
|
+
self._SecondaryUserSubnetIPNum = SecondaryUserSubnetIPNum
|
7533
|
+
|
7534
|
+
|
7535
|
+
def _deserialize(self, params):
|
7536
|
+
self._SecondaryZone = params.get("SecondaryZone")
|
7537
|
+
self._SecondarySubnet = params.get("SecondarySubnet")
|
7538
|
+
self._UserIpNum = params.get("UserIpNum")
|
7539
|
+
self._SecondaryUserSubnetIPNum = params.get("SecondaryUserSubnetIPNum")
|
7540
|
+
memeber_set = set(params.keys())
|
7541
|
+
for name, value in vars(self).items():
|
7542
|
+
property_name = name[1:]
|
7543
|
+
if property_name in memeber_set:
|
7544
|
+
memeber_set.remove(property_name)
|
7545
|
+
if len(memeber_set) > 0:
|
7546
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7547
|
+
|
7548
|
+
|
7549
|
+
|
7426
7550
|
class ServiceInfo(AbstractModel):
|
7427
7551
|
"""服务详细信息描述。
|
7428
7552
|
|
@@ -503,10 +503,8 @@ class DescribeCloudDedicatedZoneResourceSummaryResponse(AbstractModel):
|
|
503
503
|
def __init__(self):
|
504
504
|
r"""
|
505
505
|
:param _ResourceSummarySet: 资源水位详情
|
506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
507
506
|
:type ResourceSummarySet: list of CloudDedicatedZoneResourceSummaryInfo
|
508
507
|
:param _ExtraInfo: 资源水位扩展信息
|
509
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
510
508
|
:type ExtraInfo: :class:`tencentcloud.cdz.v20221123.models.ExtraInfo`
|
511
509
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
512
510
|
:type RequestId: str
|
@@ -518,7 +516,6 @@ class DescribeCloudDedicatedZoneResourceSummaryResponse(AbstractModel):
|
|
518
516
|
@property
|
519
517
|
def ResourceSummarySet(self):
|
520
518
|
"""资源水位详情
|
521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
522
519
|
:rtype: list of CloudDedicatedZoneResourceSummaryInfo
|
523
520
|
"""
|
524
521
|
return self._ResourceSummarySet
|
@@ -530,7 +527,6 @@ class DescribeCloudDedicatedZoneResourceSummaryResponse(AbstractModel):
|
|
530
527
|
@property
|
531
528
|
def ExtraInfo(self):
|
532
529
|
"""资源水位扩展信息
|
533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
534
530
|
:rtype: :class:`tencentcloud.cdz.v20221123.models.ExtraInfo`
|
535
531
|
"""
|
536
532
|
return self._ExtraInfo
|
@@ -572,10 +568,8 @@ class ExtraInfo(AbstractModel):
|
|
572
568
|
def __init__(self):
|
573
569
|
r"""
|
574
570
|
:param _ThisMondayLocalDate: 专属可用区当地时间本周一日期
|
575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
576
571
|
:type ThisMondayLocalDate: str
|
577
572
|
:param _LastMondayLocalDate: 专属可用区当地时间上周一日期
|
578
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
579
573
|
:type LastMondayLocalDate: str
|
580
574
|
"""
|
581
575
|
self._ThisMondayLocalDate = None
|
@@ -584,7 +578,6 @@ class ExtraInfo(AbstractModel):
|
|
584
578
|
@property
|
585
579
|
def ThisMondayLocalDate(self):
|
586
580
|
"""专属可用区当地时间本周一日期
|
587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
588
581
|
:rtype: str
|
589
582
|
"""
|
590
583
|
return self._ThisMondayLocalDate
|
@@ -596,7 +589,6 @@ class ExtraInfo(AbstractModel):
|
|
596
589
|
@property
|
597
590
|
def LastMondayLocalDate(self):
|
598
591
|
"""专属可用区当地时间上周一日期
|
599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
600
592
|
:rtype: str
|
601
593
|
"""
|
602
594
|
return self._LastMondayLocalDate
|