tencentcloud-sdk-python 3.0.1176__py2.py3-none-any.whl → 3.0.1177__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/asr/v20190614/models.py +30 -0
- tencentcloud/ckafka/v20190819/ckafka_client.py +4 -4
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +33 -3
- tencentcloud/domain/v20180808/models.py +64 -0
- tencentcloud/ess/v20201111/ess_client.py +5 -5
- tencentcloud/ess/v20201111/models.py +1 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +5 -5
- tencentcloud/essbasic/v20210526/models.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +12 -10
- tencentcloud/ssl/v20191205/models.py +239 -0
- tencentcloud/thpc/v20230321/models.py +33 -5
- tencentcloud/tke/v20180525/models.py +75 -0
- tencentcloud/tke/v20180525/tke_client.py +7 -7
- tencentcloud/trtc/v20190722/errorcodes.py +0 -3
- tencentcloud/trtc/v20190722/models.py +1 -1
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/top_level.txt +0 -0
@@ -114,10 +114,14 @@ class ApiGatewayInstanceList(AbstractModel):
|
|
114
114
|
:type InstanceList: list of ApiGatewayInstanceDetail
|
115
115
|
:param _TotalCount: 该地域下apigateway实例总数
|
116
116
|
:type TotalCount: int
|
117
|
+
:param _Error: 是否查询异常
|
118
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
119
|
+
:type Error: str
|
117
120
|
"""
|
118
121
|
self._Region = None
|
119
122
|
self._InstanceList = None
|
120
123
|
self._TotalCount = None
|
124
|
+
self._Error = None
|
121
125
|
|
122
126
|
@property
|
123
127
|
def Region(self):
|
@@ -143,6 +147,14 @@ class ApiGatewayInstanceList(AbstractModel):
|
|
143
147
|
def TotalCount(self, TotalCount):
|
144
148
|
self._TotalCount = TotalCount
|
145
149
|
|
150
|
+
@property
|
151
|
+
def Error(self):
|
152
|
+
return self._Error
|
153
|
+
|
154
|
+
@Error.setter
|
155
|
+
def Error(self, Error):
|
156
|
+
self._Error = Error
|
157
|
+
|
146
158
|
|
147
159
|
def _deserialize(self, params):
|
148
160
|
self._Region = params.get("Region")
|
@@ -153,6 +165,7 @@ class ApiGatewayInstanceList(AbstractModel):
|
|
153
165
|
obj._deserialize(item)
|
154
166
|
self._InstanceList.append(obj)
|
155
167
|
self._TotalCount = params.get("TotalCount")
|
168
|
+
self._Error = params.get("Error")
|
156
169
|
memeber_set = set(params.keys())
|
157
170
|
for name, value in vars(self).items():
|
158
171
|
property_name = name[1:]
|
@@ -497,6 +510,84 @@ class BindResourceResult(AbstractModel):
|
|
497
510
|
|
498
511
|
|
499
512
|
|
513
|
+
class COSInstanceList(AbstractModel):
|
514
|
+
"""cos实例详情 - 异步关联云资源数据结构
|
515
|
+
|
516
|
+
"""
|
517
|
+
|
518
|
+
def __init__(self):
|
519
|
+
r"""
|
520
|
+
:param _Region: 地域
|
521
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
522
|
+
:type Region: str
|
523
|
+
:param _InstanceList: 实例详情
|
524
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
525
|
+
:type InstanceList: list of CosInstanceDetail
|
526
|
+
:param _TotalCount: 地域下总数
|
527
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
528
|
+
:type TotalCount: int
|
529
|
+
:param _Error: 错误信息
|
530
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
531
|
+
:type Error: str
|
532
|
+
"""
|
533
|
+
self._Region = None
|
534
|
+
self._InstanceList = None
|
535
|
+
self._TotalCount = None
|
536
|
+
self._Error = None
|
537
|
+
|
538
|
+
@property
|
539
|
+
def Region(self):
|
540
|
+
return self._Region
|
541
|
+
|
542
|
+
@Region.setter
|
543
|
+
def Region(self, Region):
|
544
|
+
self._Region = Region
|
545
|
+
|
546
|
+
@property
|
547
|
+
def InstanceList(self):
|
548
|
+
return self._InstanceList
|
549
|
+
|
550
|
+
@InstanceList.setter
|
551
|
+
def InstanceList(self, InstanceList):
|
552
|
+
self._InstanceList = InstanceList
|
553
|
+
|
554
|
+
@property
|
555
|
+
def TotalCount(self):
|
556
|
+
return self._TotalCount
|
557
|
+
|
558
|
+
@TotalCount.setter
|
559
|
+
def TotalCount(self, TotalCount):
|
560
|
+
self._TotalCount = TotalCount
|
561
|
+
|
562
|
+
@property
|
563
|
+
def Error(self):
|
564
|
+
return self._Error
|
565
|
+
|
566
|
+
@Error.setter
|
567
|
+
def Error(self, Error):
|
568
|
+
self._Error = Error
|
569
|
+
|
570
|
+
|
571
|
+
def _deserialize(self, params):
|
572
|
+
self._Region = params.get("Region")
|
573
|
+
if params.get("InstanceList") is not None:
|
574
|
+
self._InstanceList = []
|
575
|
+
for item in params.get("InstanceList"):
|
576
|
+
obj = CosInstanceDetail()
|
577
|
+
obj._deserialize(item)
|
578
|
+
self._InstanceList.append(obj)
|
579
|
+
self._TotalCount = params.get("TotalCount")
|
580
|
+
self._Error = params.get("Error")
|
581
|
+
memeber_set = set(params.keys())
|
582
|
+
for name, value in vars(self).items():
|
583
|
+
property_name = name[1:]
|
584
|
+
if property_name in memeber_set:
|
585
|
+
memeber_set.remove(property_name)
|
586
|
+
if len(memeber_set) > 0:
|
587
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
588
|
+
|
589
|
+
|
590
|
+
|
500
591
|
class CancelAuditCertificateRequest(AbstractModel):
|
501
592
|
"""CancelAuditCertificate请求参数结构体
|
502
593
|
|
@@ -718,9 +809,13 @@ class CdnInstanceList(AbstractModel):
|
|
718
809
|
:param _InstanceList: cdn域名详情
|
719
810
|
注意:此字段可能返回 null,表示取不到有效值。
|
720
811
|
:type InstanceList: list of CdnInstanceDetail
|
812
|
+
:param _Error: 是否查询异常
|
813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
814
|
+
:type Error: str
|
721
815
|
"""
|
722
816
|
self._TotalCount = None
|
723
817
|
self._InstanceList = None
|
818
|
+
self._Error = None
|
724
819
|
|
725
820
|
@property
|
726
821
|
def TotalCount(self):
|
@@ -738,6 +833,14 @@ class CdnInstanceList(AbstractModel):
|
|
738
833
|
def InstanceList(self, InstanceList):
|
739
834
|
self._InstanceList = InstanceList
|
740
835
|
|
836
|
+
@property
|
837
|
+
def Error(self):
|
838
|
+
return self._Error
|
839
|
+
|
840
|
+
@Error.setter
|
841
|
+
def Error(self, Error):
|
842
|
+
self._Error = Error
|
843
|
+
|
741
844
|
|
742
845
|
def _deserialize(self, params):
|
743
846
|
self._TotalCount = params.get("TotalCount")
|
@@ -747,6 +850,7 @@ class CdnInstanceList(AbstractModel):
|
|
747
850
|
obj = CdnInstanceDetail()
|
748
851
|
obj._deserialize(item)
|
749
852
|
self._InstanceList.append(obj)
|
853
|
+
self._Error = params.get("Error")
|
750
854
|
memeber_set = set(params.keys())
|
751
855
|
for name, value in vars(self).items():
|
752
856
|
property_name = name[1:]
|
@@ -1880,10 +1984,14 @@ class ClbInstanceList(AbstractModel):
|
|
1880
1984
|
:type InstanceList: list of ClbInstanceDetail
|
1881
1985
|
:param _TotalCount: 该地域下Clb实例总数
|
1882
1986
|
:type TotalCount: int
|
1987
|
+
:param _Error: 是否查询异常
|
1988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1989
|
+
:type Error: str
|
1883
1990
|
"""
|
1884
1991
|
self._Region = None
|
1885
1992
|
self._InstanceList = None
|
1886
1993
|
self._TotalCount = None
|
1994
|
+
self._Error = None
|
1887
1995
|
|
1888
1996
|
@property
|
1889
1997
|
def Region(self):
|
@@ -1909,6 +2017,14 @@ class ClbInstanceList(AbstractModel):
|
|
1909
2017
|
def TotalCount(self, TotalCount):
|
1910
2018
|
self._TotalCount = TotalCount
|
1911
2019
|
|
2020
|
+
@property
|
2021
|
+
def Error(self):
|
2022
|
+
return self._Error
|
2023
|
+
|
2024
|
+
@Error.setter
|
2025
|
+
def Error(self, Error):
|
2026
|
+
self._Error = Error
|
2027
|
+
|
1912
2028
|
|
1913
2029
|
def _deserialize(self, params):
|
1914
2030
|
self._Region = params.get("Region")
|
@@ -1919,6 +2035,7 @@ class ClbInstanceList(AbstractModel):
|
|
1919
2035
|
obj._deserialize(item)
|
1920
2036
|
self._InstanceList.append(obj)
|
1921
2037
|
self._TotalCount = params.get("TotalCount")
|
2038
|
+
self._Error = params.get("Error")
|
1922
2039
|
memeber_set = set(params.keys())
|
1923
2040
|
for name, value in vars(self).items():
|
1924
2041
|
property_name = name[1:]
|
@@ -3075,9 +3192,13 @@ class DdosInstanceList(AbstractModel):
|
|
3075
3192
|
:param _InstanceList: ddos实例详情
|
3076
3193
|
注意:此字段可能返回 null,表示取不到有效值。
|
3077
3194
|
:type InstanceList: list of DdosInstanceDetail
|
3195
|
+
:param _Error: 是否查询异常
|
3196
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3197
|
+
:type Error: str
|
3078
3198
|
"""
|
3079
3199
|
self._TotalCount = None
|
3080
3200
|
self._InstanceList = None
|
3201
|
+
self._Error = None
|
3081
3202
|
|
3082
3203
|
@property
|
3083
3204
|
def TotalCount(self):
|
@@ -3095,6 +3216,14 @@ class DdosInstanceList(AbstractModel):
|
|
3095
3216
|
def InstanceList(self, InstanceList):
|
3096
3217
|
self._InstanceList = InstanceList
|
3097
3218
|
|
3219
|
+
@property
|
3220
|
+
def Error(self):
|
3221
|
+
return self._Error
|
3222
|
+
|
3223
|
+
@Error.setter
|
3224
|
+
def Error(self, Error):
|
3225
|
+
self._Error = Error
|
3226
|
+
|
3098
3227
|
|
3099
3228
|
def _deserialize(self, params):
|
3100
3229
|
self._TotalCount = params.get("TotalCount")
|
@@ -3104,6 +3233,7 @@ class DdosInstanceList(AbstractModel):
|
|
3104
3233
|
obj = DdosInstanceDetail()
|
3105
3234
|
obj._deserialize(item)
|
3106
3235
|
self._InstanceList.append(obj)
|
3236
|
+
self._Error = params.get("Error")
|
3107
3237
|
memeber_set = set(params.keys())
|
3108
3238
|
for name, value in vars(self).items():
|
3109
3239
|
property_name = name[1:]
|
@@ -4247,6 +4377,9 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4247
4377
|
:param _TSE: 关联tse资源详情
|
4248
4378
|
注意:此字段可能返回 null,表示取不到有效值。
|
4249
4379
|
:type TSE: list of TSEInstanceList
|
4380
|
+
:param _COS: 关联的COS资源详情
|
4381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4382
|
+
:type COS: list of COSInstanceList
|
4250
4383
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4251
4384
|
:type RequestId: str
|
4252
4385
|
"""
|
@@ -4263,6 +4396,7 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4263
4396
|
self._Status = None
|
4264
4397
|
self._CacheTime = None
|
4265
4398
|
self._TSE = None
|
4399
|
+
self._COS = None
|
4266
4400
|
self._RequestId = None
|
4267
4401
|
|
4268
4402
|
@property
|
@@ -4369,6 +4503,14 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4369
4503
|
def TSE(self, TSE):
|
4370
4504
|
self._TSE = TSE
|
4371
4505
|
|
4506
|
+
@property
|
4507
|
+
def COS(self):
|
4508
|
+
return self._COS
|
4509
|
+
|
4510
|
+
@COS.setter
|
4511
|
+
def COS(self, COS):
|
4512
|
+
self._COS = COS
|
4513
|
+
|
4372
4514
|
@property
|
4373
4515
|
def RequestId(self):
|
4374
4516
|
return self._RequestId
|
@@ -4447,6 +4589,12 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4447
4589
|
obj = TSEInstanceList()
|
4448
4590
|
obj._deserialize(item)
|
4449
4591
|
self._TSE.append(obj)
|
4592
|
+
if params.get("COS") is not None:
|
4593
|
+
self._COS = []
|
4594
|
+
for item in params.get("COS"):
|
4595
|
+
obj = COSInstanceList()
|
4596
|
+
obj._deserialize(item)
|
4597
|
+
self._COS.append(obj)
|
4450
4598
|
self._RequestId = params.get("RequestId")
|
4451
4599
|
|
4452
4600
|
|
@@ -10092,9 +10240,13 @@ class LiveInstanceList(AbstractModel):
|
|
10092
10240
|
:param _InstanceList: live实例详情
|
10093
10241
|
注意:此字段可能返回 null,表示取不到有效值。
|
10094
10242
|
:type InstanceList: list of LiveInstanceDetail
|
10243
|
+
:param _Error: 是否查询异常
|
10244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10245
|
+
:type Error: str
|
10095
10246
|
"""
|
10096
10247
|
self._TotalCount = None
|
10097
10248
|
self._InstanceList = None
|
10249
|
+
self._Error = None
|
10098
10250
|
|
10099
10251
|
@property
|
10100
10252
|
def TotalCount(self):
|
@@ -10112,6 +10264,14 @@ class LiveInstanceList(AbstractModel):
|
|
10112
10264
|
def InstanceList(self, InstanceList):
|
10113
10265
|
self._InstanceList = InstanceList
|
10114
10266
|
|
10267
|
+
@property
|
10268
|
+
def Error(self):
|
10269
|
+
return self._Error
|
10270
|
+
|
10271
|
+
@Error.setter
|
10272
|
+
def Error(self, Error):
|
10273
|
+
self._Error = Error
|
10274
|
+
|
10115
10275
|
|
10116
10276
|
def _deserialize(self, params):
|
10117
10277
|
self._TotalCount = params.get("TotalCount")
|
@@ -10121,6 +10281,7 @@ class LiveInstanceList(AbstractModel):
|
|
10121
10281
|
obj = LiveInstanceDetail()
|
10122
10282
|
obj._deserialize(item)
|
10123
10283
|
self._InstanceList.append(obj)
|
10284
|
+
self._Error = params.get("Error")
|
10124
10285
|
memeber_set = set(params.keys())
|
10125
10286
|
for name, value in vars(self).items():
|
10126
10287
|
property_name = name[1:]
|
@@ -13070,9 +13231,13 @@ class TCBInstanceList(AbstractModel):
|
|
13070
13231
|
:param _Environments: tcb环境实例详情
|
13071
13232
|
注意:此字段可能返回 null,表示取不到有效值。
|
13072
13233
|
:type Environments: list of TCBEnvironments
|
13234
|
+
:param _Error: 是否查询异常
|
13235
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13236
|
+
:type Error: str
|
13073
13237
|
"""
|
13074
13238
|
self._Region = None
|
13075
13239
|
self._Environments = None
|
13240
|
+
self._Error = None
|
13076
13241
|
|
13077
13242
|
@property
|
13078
13243
|
def Region(self):
|
@@ -13090,6 +13255,14 @@ class TCBInstanceList(AbstractModel):
|
|
13090
13255
|
def Environments(self, Environments):
|
13091
13256
|
self._Environments = Environments
|
13092
13257
|
|
13258
|
+
@property
|
13259
|
+
def Error(self):
|
13260
|
+
return self._Error
|
13261
|
+
|
13262
|
+
@Error.setter
|
13263
|
+
def Error(self, Error):
|
13264
|
+
self._Error = Error
|
13265
|
+
|
13093
13266
|
|
13094
13267
|
def _deserialize(self, params):
|
13095
13268
|
self._Region = params.get("Region")
|
@@ -13099,6 +13272,7 @@ class TCBInstanceList(AbstractModel):
|
|
13099
13272
|
obj = TCBEnvironments()
|
13100
13273
|
obj._deserialize(item)
|
13101
13274
|
self._Environments.append(obj)
|
13275
|
+
self._Error = params.get("Error")
|
13102
13276
|
memeber_set = set(params.keys())
|
13103
13277
|
for name, value in vars(self).items():
|
13104
13278
|
property_name = name[1:]
|
@@ -13188,10 +13362,14 @@ class TSEInstanceList(AbstractModel):
|
|
13188
13362
|
:type TotalCount: int
|
13189
13363
|
:param _Region: 地域
|
13190
13364
|
:type Region: str
|
13365
|
+
:param _Error: 是否查询异常
|
13366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13367
|
+
:type Error: str
|
13191
13368
|
"""
|
13192
13369
|
self._InstanceList = None
|
13193
13370
|
self._TotalCount = None
|
13194
13371
|
self._Region = None
|
13372
|
+
self._Error = None
|
13195
13373
|
|
13196
13374
|
@property
|
13197
13375
|
def InstanceList(self):
|
@@ -13217,6 +13395,14 @@ class TSEInstanceList(AbstractModel):
|
|
13217
13395
|
def Region(self, Region):
|
13218
13396
|
self._Region = Region
|
13219
13397
|
|
13398
|
+
@property
|
13399
|
+
def Error(self):
|
13400
|
+
return self._Error
|
13401
|
+
|
13402
|
+
@Error.setter
|
13403
|
+
def Error(self, Error):
|
13404
|
+
self._Error = Error
|
13405
|
+
|
13220
13406
|
|
13221
13407
|
def _deserialize(self, params):
|
13222
13408
|
if params.get("InstanceList") is not None:
|
@@ -13227,6 +13413,7 @@ class TSEInstanceList(AbstractModel):
|
|
13227
13413
|
self._InstanceList.append(obj)
|
13228
13414
|
self._TotalCount = params.get("TotalCount")
|
13229
13415
|
self._Region = params.get("Region")
|
13416
|
+
self._Error = params.get("Error")
|
13230
13417
|
memeber_set = set(params.keys())
|
13231
13418
|
for name, value in vars(self).items():
|
13232
13419
|
property_name = name[1:]
|
@@ -13364,9 +13551,13 @@ class TeoInstanceList(AbstractModel):
|
|
13364
13551
|
:type InstanceList: list of TeoInstanceDetail
|
13365
13552
|
:param _TotalCount: edgeone实例总数
|
13366
13553
|
:type TotalCount: int
|
13554
|
+
:param _Error: 是否查询异常
|
13555
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13556
|
+
:type Error: str
|
13367
13557
|
"""
|
13368
13558
|
self._InstanceList = None
|
13369
13559
|
self._TotalCount = None
|
13560
|
+
self._Error = None
|
13370
13561
|
|
13371
13562
|
@property
|
13372
13563
|
def InstanceList(self):
|
@@ -13384,6 +13575,14 @@ class TeoInstanceList(AbstractModel):
|
|
13384
13575
|
def TotalCount(self, TotalCount):
|
13385
13576
|
self._TotalCount = TotalCount
|
13386
13577
|
|
13578
|
+
@property
|
13579
|
+
def Error(self):
|
13580
|
+
return self._Error
|
13581
|
+
|
13582
|
+
@Error.setter
|
13583
|
+
def Error(self, Error):
|
13584
|
+
self._Error = Error
|
13585
|
+
|
13387
13586
|
|
13388
13587
|
def _deserialize(self, params):
|
13389
13588
|
if params.get("InstanceList") is not None:
|
@@ -13393,6 +13592,7 @@ class TeoInstanceList(AbstractModel):
|
|
13393
13592
|
obj._deserialize(item)
|
13394
13593
|
self._InstanceList.append(obj)
|
13395
13594
|
self._TotalCount = params.get("TotalCount")
|
13595
|
+
self._Error = params.get("Error")
|
13396
13596
|
memeber_set = set(params.keys())
|
13397
13597
|
for name, value in vars(self).items():
|
13398
13598
|
property_name = name[1:]
|
@@ -13560,10 +13760,14 @@ class TkeInstanceList(AbstractModel):
|
|
13560
13760
|
:type InstanceList: list of TkeInstanceDetail
|
13561
13761
|
:param _TotalCount: 该地域下tke实例总数
|
13562
13762
|
:type TotalCount: int
|
13763
|
+
:param _Error: 是否查询异常
|
13764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13765
|
+
:type Error: str
|
13563
13766
|
"""
|
13564
13767
|
self._Region = None
|
13565
13768
|
self._InstanceList = None
|
13566
13769
|
self._TotalCount = None
|
13770
|
+
self._Error = None
|
13567
13771
|
|
13568
13772
|
@property
|
13569
13773
|
def Region(self):
|
@@ -13589,6 +13793,14 @@ class TkeInstanceList(AbstractModel):
|
|
13589
13793
|
def TotalCount(self, TotalCount):
|
13590
13794
|
self._TotalCount = TotalCount
|
13591
13795
|
|
13796
|
+
@property
|
13797
|
+
def Error(self):
|
13798
|
+
return self._Error
|
13799
|
+
|
13800
|
+
@Error.setter
|
13801
|
+
def Error(self, Error):
|
13802
|
+
self._Error = Error
|
13803
|
+
|
13592
13804
|
|
13593
13805
|
def _deserialize(self, params):
|
13594
13806
|
self._Region = params.get("Region")
|
@@ -13599,6 +13811,7 @@ class TkeInstanceList(AbstractModel):
|
|
13599
13811
|
obj._deserialize(item)
|
13600
13812
|
self._InstanceList.append(obj)
|
13601
13813
|
self._TotalCount = params.get("TotalCount")
|
13814
|
+
self._Error = params.get("Error")
|
13602
13815
|
memeber_set = set(params.keys())
|
13603
13816
|
for name, value in vars(self).items():
|
13604
13817
|
property_name = name[1:]
|
@@ -15111,9 +15324,13 @@ class VODInstanceList(AbstractModel):
|
|
15111
15324
|
:type InstanceList: list of VodInstanceDetail
|
15112
15325
|
:param _TotalCount: 该地域下vod实例总数
|
15113
15326
|
:type TotalCount: int
|
15327
|
+
:param _Error: 是否查询异常
|
15328
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15329
|
+
:type Error: str
|
15114
15330
|
"""
|
15115
15331
|
self._InstanceList = None
|
15116
15332
|
self._TotalCount = None
|
15333
|
+
self._Error = None
|
15117
15334
|
|
15118
15335
|
@property
|
15119
15336
|
def InstanceList(self):
|
@@ -15131,6 +15348,14 @@ class VODInstanceList(AbstractModel):
|
|
15131
15348
|
def TotalCount(self, TotalCount):
|
15132
15349
|
self._TotalCount = TotalCount
|
15133
15350
|
|
15351
|
+
@property
|
15352
|
+
def Error(self):
|
15353
|
+
return self._Error
|
15354
|
+
|
15355
|
+
@Error.setter
|
15356
|
+
def Error(self, Error):
|
15357
|
+
self._Error = Error
|
15358
|
+
|
15134
15359
|
|
15135
15360
|
def _deserialize(self, params):
|
15136
15361
|
if params.get("InstanceList") is not None:
|
@@ -15140,6 +15365,7 @@ class VODInstanceList(AbstractModel):
|
|
15140
15365
|
obj._deserialize(item)
|
15141
15366
|
self._InstanceList.append(obj)
|
15142
15367
|
self._TotalCount = params.get("TotalCount")
|
15368
|
+
self._Error = params.get("Error")
|
15143
15369
|
memeber_set = set(params.keys())
|
15144
15370
|
for name, value in vars(self).items():
|
15145
15371
|
property_name = name[1:]
|
@@ -15338,10 +15564,14 @@ class WafInstanceList(AbstractModel):
|
|
15338
15564
|
:type InstanceList: list of WafInstanceDetail
|
15339
15565
|
:param _TotalCount: 该地域下waf实例总数
|
15340
15566
|
:type TotalCount: int
|
15567
|
+
:param _Error: 是否查询异常
|
15568
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15569
|
+
:type Error: str
|
15341
15570
|
"""
|
15342
15571
|
self._Region = None
|
15343
15572
|
self._InstanceList = None
|
15344
15573
|
self._TotalCount = None
|
15574
|
+
self._Error = None
|
15345
15575
|
|
15346
15576
|
@property
|
15347
15577
|
def Region(self):
|
@@ -15367,6 +15597,14 @@ class WafInstanceList(AbstractModel):
|
|
15367
15597
|
def TotalCount(self, TotalCount):
|
15368
15598
|
self._TotalCount = TotalCount
|
15369
15599
|
|
15600
|
+
@property
|
15601
|
+
def Error(self):
|
15602
|
+
return self._Error
|
15603
|
+
|
15604
|
+
@Error.setter
|
15605
|
+
def Error(self, Error):
|
15606
|
+
self._Error = Error
|
15607
|
+
|
15370
15608
|
|
15371
15609
|
def _deserialize(self, params):
|
15372
15610
|
self._Region = params.get("Region")
|
@@ -15377,6 +15615,7 @@ class WafInstanceList(AbstractModel):
|
|
15377
15615
|
obj._deserialize(item)
|
15378
15616
|
self._InstanceList.append(obj)
|
15379
15617
|
self._TotalCount = params.get("TotalCount")
|
15618
|
+
self._Error = params.get("Error")
|
15380
15619
|
memeber_set = set(params.keys())
|
15381
15620
|
for name, value in vars(self).items():
|
15382
15621
|
property_name = name[1:]
|
@@ -814,7 +814,7 @@ class ClusterOverview(AbstractModel):
|
|
814
814
|
r"""
|
815
815
|
:param _ClusterId: 集群ID。
|
816
816
|
:type ClusterId: str
|
817
|
-
:param _ClusterStatus: 集群状态。取值范围:<
|
817
|
+
:param _ClusterStatus: 集群状态。取值范围:<li>PENDING:创建中</li><li>INITING:初始化中</li><li>INIT_FAILED:初始化失败</li><li>RUNNING:运行中</li><li>TERMINATING:销毁中</li>
|
818
818
|
:type ClusterStatus: str
|
819
819
|
:param _ClusterName: 集群名称。
|
820
820
|
:type ClusterName: str
|
@@ -824,6 +824,9 @@ class ClusterOverview(AbstractModel):
|
|
824
824
|
:type CreateTime: str
|
825
825
|
:param _SchedulerType: 集群调度器。
|
826
826
|
:type SchedulerType: str
|
827
|
+
:param _SchedulerVersion: 集群调度器版本。
|
828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
829
|
+
:type SchedulerVersion: str
|
827
830
|
:param _ComputeNodeCount: 计算节点数量。
|
828
831
|
:type ComputeNodeCount: int
|
829
832
|
:param _ComputeNodeSet: 计算节点概览。
|
@@ -836,7 +839,7 @@ class ClusterOverview(AbstractModel):
|
|
836
839
|
:type LoginNodeSet: list of LoginNodeOverview
|
837
840
|
:param _LoginNodeCount: 登录节点数量。
|
838
841
|
:type LoginNodeCount: int
|
839
|
-
:param _AutoScalingType:
|
842
|
+
:param _AutoScalingType: 弹性伸缩类型。取值范围:<li>THPC_AS:集群自动扩缩容由THPC产品内部实现。</li><li>AS:集群自动扩缩容由[弹性伸缩](https://cloud.tencent.com/document/product/377/3154)产品实现。</li>
|
840
843
|
:type AutoScalingType: str
|
841
844
|
:param _VpcId: 集群所属私有网络ID。
|
842
845
|
:type VpcId: str
|
@@ -847,6 +850,7 @@ class ClusterOverview(AbstractModel):
|
|
847
850
|
self._Placement = None
|
848
851
|
self._CreateTime = None
|
849
852
|
self._SchedulerType = None
|
853
|
+
self._SchedulerVersion = None
|
850
854
|
self._ComputeNodeCount = None
|
851
855
|
self._ComputeNodeSet = None
|
852
856
|
self._ManagerNodeCount = None
|
@@ -904,6 +908,14 @@ class ClusterOverview(AbstractModel):
|
|
904
908
|
def SchedulerType(self, SchedulerType):
|
905
909
|
self._SchedulerType = SchedulerType
|
906
910
|
|
911
|
+
@property
|
912
|
+
def SchedulerVersion(self):
|
913
|
+
return self._SchedulerVersion
|
914
|
+
|
915
|
+
@SchedulerVersion.setter
|
916
|
+
def SchedulerVersion(self, SchedulerVersion):
|
917
|
+
self._SchedulerVersion = SchedulerVersion
|
918
|
+
|
907
919
|
@property
|
908
920
|
def ComputeNodeCount(self):
|
909
921
|
return self._ComputeNodeCount
|
@@ -978,6 +990,7 @@ class ClusterOverview(AbstractModel):
|
|
978
990
|
self._Placement._deserialize(params.get("Placement"))
|
979
991
|
self._CreateTime = params.get("CreateTime")
|
980
992
|
self._SchedulerType = params.get("SchedulerType")
|
993
|
+
self._SchedulerVersion = params.get("SchedulerVersion")
|
981
994
|
self._ComputeNodeCount = params.get("ComputeNodeCount")
|
982
995
|
if params.get("ComputeNodeSet") is not None:
|
983
996
|
self._ComputeNodeSet = []
|
@@ -1193,8 +1206,13 @@ class CreateClusterRequest(AbstractModel):
|
|
1193
1206
|
:type ComputeNode: :class:`tencentcloud.thpc.v20230321.models.ComputeNode`
|
1194
1207
|
:param _ComputeNodeCount: 指定计算节点的数量。默认取值:0。
|
1195
1208
|
:type ComputeNodeCount: int
|
1196
|
-
:param _SchedulerType: 调度器类型。默认取值:SLURM。<
|
1209
|
+
:param _SchedulerType: 调度器类型。默认取值:SLURM。<li>SGE:SGE调度器。</li><li>SLURM:SLURM调度器。</li>
|
1197
1210
|
:type SchedulerType: str
|
1211
|
+
:param _SchedulerVersion: 创建调度器的版本号,可填写版本号为“latest” 和 各调度器支持的版本号;如果是"latest", 则代表创建的是平台当前支持的该类型调度器最新版本。如果不填写,默认创建的是“latest”版本调度器
|
1212
|
+
各调度器支持的集群版本:
|
1213
|
+
<li>SLURM:21.08.8、23.11.7</li>
|
1214
|
+
<li>SGE: 8.1.9</li>
|
1215
|
+
:type SchedulerVersion: str
|
1198
1216
|
:param _ImageId: 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前支持部分公有镜像和自定义镜像。
|
1199
1217
|
:type ImageId: str
|
1200
1218
|
:param _VirtualPrivateCloud: 私有网络相关信息配置。
|
@@ -1212,7 +1230,7 @@ true:发送检查请求,不会创建实例。检查项包括是否填写了
|
|
1212
1230
|
false(默认):发送正常请求,通过检查后直接创建实例
|
1213
1231
|
:type DryRun: bool
|
1214
1232
|
:param _AccountType: 域名字服务类型。默认取值:NIS。
|
1215
|
-
<li>NIS:NIS
|
1233
|
+
<li>NIS:NIS域名字服务。</li>
|
1216
1234
|
:type AccountType: str
|
1217
1235
|
:param _ClusterName: 集群显示名称。
|
1218
1236
|
:type ClusterName: str
|
@@ -1224,7 +1242,7 @@ false(默认):发送正常请求,通过检查后直接创建实例
|
|
1224
1242
|
:type LoginNodeCount: int
|
1225
1243
|
:param _Tags: 创建集群时同时绑定的标签对说明。
|
1226
1244
|
:type Tags: list of Tag
|
1227
|
-
:param _AutoScalingType: 弹性伸缩类型。默认值:THPC_AS<
|
1245
|
+
:param _AutoScalingType: 弹性伸缩类型。默认值:THPC_AS<li>THPC_AS:集群自动扩缩容由THPC产品内部实现。</li><li>AS:集群自动扩缩容由[弹性伸缩](https://cloud.tencent.com/document/product/377/3154)产品实现。</li>
|
1228
1246
|
:type AutoScalingType: str
|
1229
1247
|
:param _InitNodeScripts: 节点初始化脚本信息列表。
|
1230
1248
|
:type InitNodeScripts: list of NodeScript
|
@@ -1237,6 +1255,7 @@ false(默认):发送正常请求,通过检查后直接创建实例
|
|
1237
1255
|
self._ComputeNode = None
|
1238
1256
|
self._ComputeNodeCount = None
|
1239
1257
|
self._SchedulerType = None
|
1258
|
+
self._SchedulerVersion = None
|
1240
1259
|
self._ImageId = None
|
1241
1260
|
self._VirtualPrivateCloud = None
|
1242
1261
|
self._LoginSettings = None
|
@@ -1301,6 +1320,14 @@ false(默认):发送正常请求,通过检查后直接创建实例
|
|
1301
1320
|
def SchedulerType(self, SchedulerType):
|
1302
1321
|
self._SchedulerType = SchedulerType
|
1303
1322
|
|
1323
|
+
@property
|
1324
|
+
def SchedulerVersion(self):
|
1325
|
+
return self._SchedulerVersion
|
1326
|
+
|
1327
|
+
@SchedulerVersion.setter
|
1328
|
+
def SchedulerVersion(self, SchedulerVersion):
|
1329
|
+
self._SchedulerVersion = SchedulerVersion
|
1330
|
+
|
1304
1331
|
@property
|
1305
1332
|
def ImageId(self):
|
1306
1333
|
return self._ImageId
|
@@ -1435,6 +1462,7 @@ false(默认):发送正常请求,通过检查后直接创建实例
|
|
1435
1462
|
self._ComputeNode._deserialize(params.get("ComputeNode"))
|
1436
1463
|
self._ComputeNodeCount = params.get("ComputeNodeCount")
|
1437
1464
|
self._SchedulerType = params.get("SchedulerType")
|
1465
|
+
self._SchedulerVersion = params.get("SchedulerVersion")
|
1438
1466
|
self._ImageId = params.get("ImageId")
|
1439
1467
|
if params.get("VirtualPrivateCloud") is not None:
|
1440
1468
|
self._VirtualPrivateCloud = VirtualPrivateCloud()
|