tencentcloud-sdk-python 3.0.1175__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 +190 -3
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +0 -70
- tencentcloud/cynosdb/v20190107/models.py +13 -0
- tencentcloud/dlc/v20210125/models.py +1 -1
- tencentcloud/domain/v20180808/models.py +64 -0
- tencentcloud/dts/v20211206/models.py +3 -3
- 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 +6 -4
- tencentcloud/faceid/v20180301/models.py +1 -16
- tencentcloud/ioa/v20220601/ioa_client.py +69 -0
- tencentcloud/ioa/v20220601/models.py +1239 -63
- tencentcloud/iotexplorer/v20190423/errorcodes.py +3 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +325 -0
- tencentcloud/live/v20180801/models.py +13 -0
- tencentcloud/ocr/v20181119/ocr_client.py +3 -1
- tencentcloud/partners/v20180321/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +12 -10
- tencentcloud/ssl/v20191205/models.py +239 -0
- tencentcloud/tcr/v20190924/models.py +13 -0
- tencentcloud/tcss/v20201101/models.py +150 -27
- tencentcloud/thpc/v20230321/models.py +33 -5
- tencentcloud/tke/v20180525/models.py +87 -0
- tencentcloud/tke/v20180525/tke_client.py +7 -7
- tencentcloud/trtc/v20190722/errorcodes.py +0 -3
- tencentcloud/trtc/v20190722/models.py +1 -1
- tencentcloud/tts/v20190823/models.py +2 -2
- tencentcloud/wedata/v20210820/models.py +539 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1175.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1175.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1175.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1175.dist-info → tencentcloud_sdk_python-3.0.1177.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1175.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:]
|
@@ -435,10 +435,14 @@ class CheckInstanceNameResponse(AbstractModel):
|
|
435
435
|
r"""
|
436
436
|
:param _IsValidated: 检查结果,true为合法,false为非法
|
437
437
|
:type IsValidated: bool
|
438
|
+
:param _DetailCode: 1: Illegal(名子非法), 2:Reserved(名字保留), 3:Existed(名字已存在)
|
439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
440
|
+
:type DetailCode: int
|
438
441
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
439
442
|
:type RequestId: str
|
440
443
|
"""
|
441
444
|
self._IsValidated = None
|
445
|
+
self._DetailCode = None
|
442
446
|
self._RequestId = None
|
443
447
|
|
444
448
|
@property
|
@@ -449,6 +453,14 @@ class CheckInstanceNameResponse(AbstractModel):
|
|
449
453
|
def IsValidated(self, IsValidated):
|
450
454
|
self._IsValidated = IsValidated
|
451
455
|
|
456
|
+
@property
|
457
|
+
def DetailCode(self):
|
458
|
+
return self._DetailCode
|
459
|
+
|
460
|
+
@DetailCode.setter
|
461
|
+
def DetailCode(self, DetailCode):
|
462
|
+
self._DetailCode = DetailCode
|
463
|
+
|
452
464
|
@property
|
453
465
|
def RequestId(self):
|
454
466
|
return self._RequestId
|
@@ -460,6 +472,7 @@ class CheckInstanceNameResponse(AbstractModel):
|
|
460
472
|
|
461
473
|
def _deserialize(self, params):
|
462
474
|
self._IsValidated = params.get("IsValidated")
|
475
|
+
self._DetailCode = params.get("DetailCode")
|
463
476
|
self._RequestId = params.get("RequestId")
|
464
477
|
|
465
478
|
|