tencentcloud-sdk-python 3.0.1176__py2.py3-none-any.whl → 3.0.1178__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +24 -0
- tencentcloud/aiart/v20221229/models.py +163 -0
- 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 +62 -3
- tencentcloud/cwp/v20180228/cwp_client.py +0 -25
- tencentcloud/cwp/v20180228/models.py +0 -118
- tencentcloud/domain/v20180808/models.py +64 -0
- tencentcloud/emr/v20190103/models.py +727 -5
- tencentcloud/ess/v20201111/ess_client.py +5 -5
- tencentcloud/ess/v20201111/models.py +10 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +5 -5
- tencentcloud/essbasic/v20210526/models.py +3 -2
- tencentcloud/ims/v20201229/ims_client.py +2 -2
- tencentcloud/ioa/v20220601/models.py +168 -142
- tencentcloud/iotexplorer/v20190423/models.py +13 -0
- tencentcloud/mps/v20190612/models.py +96 -25
- tencentcloud/ocr/v20181119/models.py +24 -0
- tencentcloud/redis/v20180412/models.py +12 -10
- tencentcloud/ssl/v20191205/models.py +363 -0
- tencentcloud/ssl/v20191205/ssl_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +182 -1
- 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/vclm/__init__.py +0 -0
- tencentcloud/vclm/v20240523/__init__.py +0 -0
- tencentcloud/vclm/v20240523/errorcodes.py +198 -0
- tencentcloud/vclm/v20240523/models.py +1028 -0
- tencentcloud/vclm/v20240523/vclm_client.py +187 -0
- tencentcloud/vdb/v20230616/models.py +26 -0
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1178.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1178.dist-info}/RECORD +40 -35
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1178.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1178.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1176.dist-info → tencentcloud_sdk_python-3.0.1178.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:]
|
@@ -401,6 +414,53 @@ class ApplyCertificateResponse(AbstractModel):
|
|
401
414
|
self._RequestId = params.get("RequestId")
|
402
415
|
|
403
416
|
|
417
|
+
class BatchDeleteFail(AbstractModel):
|
418
|
+
"""批量删除失败的项
|
419
|
+
|
420
|
+
"""
|
421
|
+
|
422
|
+
def __init__(self):
|
423
|
+
r"""
|
424
|
+
:param _CertId: 失败的证书ID
|
425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
426
|
+
:type CertId: str
|
427
|
+
:param _Msg: 失败的原因
|
428
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
429
|
+
:type Msg: str
|
430
|
+
"""
|
431
|
+
self._CertId = None
|
432
|
+
self._Msg = None
|
433
|
+
|
434
|
+
@property
|
435
|
+
def CertId(self):
|
436
|
+
return self._CertId
|
437
|
+
|
438
|
+
@CertId.setter
|
439
|
+
def CertId(self, CertId):
|
440
|
+
self._CertId = CertId
|
441
|
+
|
442
|
+
@property
|
443
|
+
def Msg(self):
|
444
|
+
return self._Msg
|
445
|
+
|
446
|
+
@Msg.setter
|
447
|
+
def Msg(self, Msg):
|
448
|
+
self._Msg = Msg
|
449
|
+
|
450
|
+
|
451
|
+
def _deserialize(self, params):
|
452
|
+
self._CertId = params.get("CertId")
|
453
|
+
self._Msg = params.get("Msg")
|
454
|
+
memeber_set = set(params.keys())
|
455
|
+
for name, value in vars(self).items():
|
456
|
+
property_name = name[1:]
|
457
|
+
if property_name in memeber_set:
|
458
|
+
memeber_set.remove(property_name)
|
459
|
+
if len(memeber_set) > 0:
|
460
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
461
|
+
|
462
|
+
|
463
|
+
|
404
464
|
class BindResourceRegionResult(AbstractModel):
|
405
465
|
"""绑定资源地域结果
|
406
466
|
|
@@ -497,6 +557,84 @@ class BindResourceResult(AbstractModel):
|
|
497
557
|
|
498
558
|
|
499
559
|
|
560
|
+
class COSInstanceList(AbstractModel):
|
561
|
+
"""cos实例详情 - 异步关联云资源数据结构
|
562
|
+
|
563
|
+
"""
|
564
|
+
|
565
|
+
def __init__(self):
|
566
|
+
r"""
|
567
|
+
:param _Region: 地域
|
568
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
569
|
+
:type Region: str
|
570
|
+
:param _InstanceList: 实例详情
|
571
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
572
|
+
:type InstanceList: list of CosInstanceDetail
|
573
|
+
:param _TotalCount: 地域下总数
|
574
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
575
|
+
:type TotalCount: int
|
576
|
+
:param _Error: 错误信息
|
577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
578
|
+
:type Error: str
|
579
|
+
"""
|
580
|
+
self._Region = None
|
581
|
+
self._InstanceList = None
|
582
|
+
self._TotalCount = None
|
583
|
+
self._Error = None
|
584
|
+
|
585
|
+
@property
|
586
|
+
def Region(self):
|
587
|
+
return self._Region
|
588
|
+
|
589
|
+
@Region.setter
|
590
|
+
def Region(self, Region):
|
591
|
+
self._Region = Region
|
592
|
+
|
593
|
+
@property
|
594
|
+
def InstanceList(self):
|
595
|
+
return self._InstanceList
|
596
|
+
|
597
|
+
@InstanceList.setter
|
598
|
+
def InstanceList(self, InstanceList):
|
599
|
+
self._InstanceList = InstanceList
|
600
|
+
|
601
|
+
@property
|
602
|
+
def TotalCount(self):
|
603
|
+
return self._TotalCount
|
604
|
+
|
605
|
+
@TotalCount.setter
|
606
|
+
def TotalCount(self, TotalCount):
|
607
|
+
self._TotalCount = TotalCount
|
608
|
+
|
609
|
+
@property
|
610
|
+
def Error(self):
|
611
|
+
return self._Error
|
612
|
+
|
613
|
+
@Error.setter
|
614
|
+
def Error(self, Error):
|
615
|
+
self._Error = Error
|
616
|
+
|
617
|
+
|
618
|
+
def _deserialize(self, params):
|
619
|
+
self._Region = params.get("Region")
|
620
|
+
if params.get("InstanceList") is not None:
|
621
|
+
self._InstanceList = []
|
622
|
+
for item in params.get("InstanceList"):
|
623
|
+
obj = CosInstanceDetail()
|
624
|
+
obj._deserialize(item)
|
625
|
+
self._InstanceList.append(obj)
|
626
|
+
self._TotalCount = params.get("TotalCount")
|
627
|
+
self._Error = params.get("Error")
|
628
|
+
memeber_set = set(params.keys())
|
629
|
+
for name, value in vars(self).items():
|
630
|
+
property_name = name[1:]
|
631
|
+
if property_name in memeber_set:
|
632
|
+
memeber_set.remove(property_name)
|
633
|
+
if len(memeber_set) > 0:
|
634
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
635
|
+
|
636
|
+
|
637
|
+
|
500
638
|
class CancelAuditCertificateRequest(AbstractModel):
|
501
639
|
"""CancelAuditCertificate请求参数结构体
|
502
640
|
|
@@ -718,9 +856,13 @@ class CdnInstanceList(AbstractModel):
|
|
718
856
|
:param _InstanceList: cdn域名详情
|
719
857
|
注意:此字段可能返回 null,表示取不到有效值。
|
720
858
|
:type InstanceList: list of CdnInstanceDetail
|
859
|
+
:param _Error: 是否查询异常
|
860
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
861
|
+
:type Error: str
|
721
862
|
"""
|
722
863
|
self._TotalCount = None
|
723
864
|
self._InstanceList = None
|
865
|
+
self._Error = None
|
724
866
|
|
725
867
|
@property
|
726
868
|
def TotalCount(self):
|
@@ -738,6 +880,14 @@ class CdnInstanceList(AbstractModel):
|
|
738
880
|
def InstanceList(self, InstanceList):
|
739
881
|
self._InstanceList = InstanceList
|
740
882
|
|
883
|
+
@property
|
884
|
+
def Error(self):
|
885
|
+
return self._Error
|
886
|
+
|
887
|
+
@Error.setter
|
888
|
+
def Error(self, Error):
|
889
|
+
self._Error = Error
|
890
|
+
|
741
891
|
|
742
892
|
def _deserialize(self, params):
|
743
893
|
self._TotalCount = params.get("TotalCount")
|
@@ -747,6 +897,7 @@ class CdnInstanceList(AbstractModel):
|
|
747
897
|
obj = CdnInstanceDetail()
|
748
898
|
obj._deserialize(item)
|
749
899
|
self._InstanceList.append(obj)
|
900
|
+
self._Error = params.get("Error")
|
750
901
|
memeber_set = set(params.keys())
|
751
902
|
for name, value in vars(self).items():
|
752
903
|
property_name = name[1:]
|
@@ -1880,10 +2031,14 @@ class ClbInstanceList(AbstractModel):
|
|
1880
2031
|
:type InstanceList: list of ClbInstanceDetail
|
1881
2032
|
:param _TotalCount: 该地域下Clb实例总数
|
1882
2033
|
:type TotalCount: int
|
2034
|
+
:param _Error: 是否查询异常
|
2035
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2036
|
+
:type Error: str
|
1883
2037
|
"""
|
1884
2038
|
self._Region = None
|
1885
2039
|
self._InstanceList = None
|
1886
2040
|
self._TotalCount = None
|
2041
|
+
self._Error = None
|
1887
2042
|
|
1888
2043
|
@property
|
1889
2044
|
def Region(self):
|
@@ -1909,6 +2064,14 @@ class ClbInstanceList(AbstractModel):
|
|
1909
2064
|
def TotalCount(self, TotalCount):
|
1910
2065
|
self._TotalCount = TotalCount
|
1911
2066
|
|
2067
|
+
@property
|
2068
|
+
def Error(self):
|
2069
|
+
return self._Error
|
2070
|
+
|
2071
|
+
@Error.setter
|
2072
|
+
def Error(self, Error):
|
2073
|
+
self._Error = Error
|
2074
|
+
|
1912
2075
|
|
1913
2076
|
def _deserialize(self, params):
|
1914
2077
|
self._Region = params.get("Region")
|
@@ -1919,6 +2082,7 @@ class ClbInstanceList(AbstractModel):
|
|
1919
2082
|
obj._deserialize(item)
|
1920
2083
|
self._InstanceList.append(obj)
|
1921
2084
|
self._TotalCount = params.get("TotalCount")
|
2085
|
+
self._Error = params.get("Error")
|
1922
2086
|
memeber_set = set(params.keys())
|
1923
2087
|
for name, value in vars(self).items():
|
1924
2088
|
property_name = name[1:]
|
@@ -3075,9 +3239,13 @@ class DdosInstanceList(AbstractModel):
|
|
3075
3239
|
:param _InstanceList: ddos实例详情
|
3076
3240
|
注意:此字段可能返回 null,表示取不到有效值。
|
3077
3241
|
:type InstanceList: list of DdosInstanceDetail
|
3242
|
+
:param _Error: 是否查询异常
|
3243
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3244
|
+
:type Error: str
|
3078
3245
|
"""
|
3079
3246
|
self._TotalCount = None
|
3080
3247
|
self._InstanceList = None
|
3248
|
+
self._Error = None
|
3081
3249
|
|
3082
3250
|
@property
|
3083
3251
|
def TotalCount(self):
|
@@ -3095,6 +3263,14 @@ class DdosInstanceList(AbstractModel):
|
|
3095
3263
|
def InstanceList(self, InstanceList):
|
3096
3264
|
self._InstanceList = InstanceList
|
3097
3265
|
|
3266
|
+
@property
|
3267
|
+
def Error(self):
|
3268
|
+
return self._Error
|
3269
|
+
|
3270
|
+
@Error.setter
|
3271
|
+
def Error(self, Error):
|
3272
|
+
self._Error = Error
|
3273
|
+
|
3098
3274
|
|
3099
3275
|
def _deserialize(self, params):
|
3100
3276
|
self._TotalCount = params.get("TotalCount")
|
@@ -3104,6 +3280,7 @@ class DdosInstanceList(AbstractModel):
|
|
3104
3280
|
obj = DdosInstanceDetail()
|
3105
3281
|
obj._deserialize(item)
|
3106
3282
|
self._InstanceList.append(obj)
|
3283
|
+
self._Error = params.get("Error")
|
3107
3284
|
memeber_set = set(params.keys())
|
3108
3285
|
for name, value in vars(self).items():
|
3109
3286
|
property_name = name[1:]
|
@@ -3209,6 +3386,83 @@ class DeleteCertificateResponse(AbstractModel):
|
|
3209
3386
|
self._RequestId = params.get("RequestId")
|
3210
3387
|
|
3211
3388
|
|
3389
|
+
class DeleteCertificatesRequest(AbstractModel):
|
3390
|
+
"""DeleteCertificates请求参数结构体
|
3391
|
+
|
3392
|
+
"""
|
3393
|
+
|
3394
|
+
|
3395
|
+
class DeleteCertificatesResponse(AbstractModel):
|
3396
|
+
"""DeleteCertificates返回参数结构体
|
3397
|
+
|
3398
|
+
"""
|
3399
|
+
|
3400
|
+
def __init__(self):
|
3401
|
+
r"""
|
3402
|
+
:param _Success: 成功的ID
|
3403
|
+
:type Success: list of str
|
3404
|
+
:param _Fail: 失败的ID和原因
|
3405
|
+
:type Fail: list of BatchDeleteFail
|
3406
|
+
:param _CertTaskIds: 证书ID和异步任务的ID
|
3407
|
+
:type CertTaskIds: list of CertTaskId
|
3408
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3409
|
+
:type RequestId: str
|
3410
|
+
"""
|
3411
|
+
self._Success = None
|
3412
|
+
self._Fail = None
|
3413
|
+
self._CertTaskIds = None
|
3414
|
+
self._RequestId = None
|
3415
|
+
|
3416
|
+
@property
|
3417
|
+
def Success(self):
|
3418
|
+
return self._Success
|
3419
|
+
|
3420
|
+
@Success.setter
|
3421
|
+
def Success(self, Success):
|
3422
|
+
self._Success = Success
|
3423
|
+
|
3424
|
+
@property
|
3425
|
+
def Fail(self):
|
3426
|
+
return self._Fail
|
3427
|
+
|
3428
|
+
@Fail.setter
|
3429
|
+
def Fail(self, Fail):
|
3430
|
+
self._Fail = Fail
|
3431
|
+
|
3432
|
+
@property
|
3433
|
+
def CertTaskIds(self):
|
3434
|
+
return self._CertTaskIds
|
3435
|
+
|
3436
|
+
@CertTaskIds.setter
|
3437
|
+
def CertTaskIds(self, CertTaskIds):
|
3438
|
+
self._CertTaskIds = CertTaskIds
|
3439
|
+
|
3440
|
+
@property
|
3441
|
+
def RequestId(self):
|
3442
|
+
return self._RequestId
|
3443
|
+
|
3444
|
+
@RequestId.setter
|
3445
|
+
def RequestId(self, RequestId):
|
3446
|
+
self._RequestId = RequestId
|
3447
|
+
|
3448
|
+
|
3449
|
+
def _deserialize(self, params):
|
3450
|
+
self._Success = params.get("Success")
|
3451
|
+
if params.get("Fail") is not None:
|
3452
|
+
self._Fail = []
|
3453
|
+
for item in params.get("Fail"):
|
3454
|
+
obj = BatchDeleteFail()
|
3455
|
+
obj._deserialize(item)
|
3456
|
+
self._Fail.append(obj)
|
3457
|
+
if params.get("CertTaskIds") is not None:
|
3458
|
+
self._CertTaskIds = []
|
3459
|
+
for item in params.get("CertTaskIds"):
|
3460
|
+
obj = CertTaskId()
|
3461
|
+
obj._deserialize(item)
|
3462
|
+
self._CertTaskIds.append(obj)
|
3463
|
+
self._RequestId = params.get("RequestId")
|
3464
|
+
|
3465
|
+
|
3212
3466
|
class DeleteManagerRequest(AbstractModel):
|
3213
3467
|
"""DeleteManager请求参数结构体
|
3214
3468
|
|
@@ -4247,6 +4501,9 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4247
4501
|
:param _TSE: 关联tse资源详情
|
4248
4502
|
注意:此字段可能返回 null,表示取不到有效值。
|
4249
4503
|
:type TSE: list of TSEInstanceList
|
4504
|
+
:param _COS: 关联的COS资源详情
|
4505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4506
|
+
:type COS: list of COSInstanceList
|
4250
4507
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4251
4508
|
:type RequestId: str
|
4252
4509
|
"""
|
@@ -4263,6 +4520,7 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4263
4520
|
self._Status = None
|
4264
4521
|
self._CacheTime = None
|
4265
4522
|
self._TSE = None
|
4523
|
+
self._COS = None
|
4266
4524
|
self._RequestId = None
|
4267
4525
|
|
4268
4526
|
@property
|
@@ -4369,6 +4627,14 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4369
4627
|
def TSE(self, TSE):
|
4370
4628
|
self._TSE = TSE
|
4371
4629
|
|
4630
|
+
@property
|
4631
|
+
def COS(self):
|
4632
|
+
return self._COS
|
4633
|
+
|
4634
|
+
@COS.setter
|
4635
|
+
def COS(self, COS):
|
4636
|
+
self._COS = COS
|
4637
|
+
|
4372
4638
|
@property
|
4373
4639
|
def RequestId(self):
|
4374
4640
|
return self._RequestId
|
@@ -4447,6 +4713,12 @@ class DescribeCertificateBindResourceTaskDetailResponse(AbstractModel):
|
|
4447
4713
|
obj = TSEInstanceList()
|
4448
4714
|
obj._deserialize(item)
|
4449
4715
|
self._TSE.append(obj)
|
4716
|
+
if params.get("COS") is not None:
|
4717
|
+
self._COS = []
|
4718
|
+
for item in params.get("COS"):
|
4719
|
+
obj = COSInstanceList()
|
4720
|
+
obj._deserialize(item)
|
4721
|
+
self._COS.append(obj)
|
4450
4722
|
self._RequestId = params.get("RequestId")
|
4451
4723
|
|
4452
4724
|
|
@@ -10092,9 +10364,13 @@ class LiveInstanceList(AbstractModel):
|
|
10092
10364
|
:param _InstanceList: live实例详情
|
10093
10365
|
注意:此字段可能返回 null,表示取不到有效值。
|
10094
10366
|
:type InstanceList: list of LiveInstanceDetail
|
10367
|
+
:param _Error: 是否查询异常
|
10368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10369
|
+
:type Error: str
|
10095
10370
|
"""
|
10096
10371
|
self._TotalCount = None
|
10097
10372
|
self._InstanceList = None
|
10373
|
+
self._Error = None
|
10098
10374
|
|
10099
10375
|
@property
|
10100
10376
|
def TotalCount(self):
|
@@ -10112,6 +10388,14 @@ class LiveInstanceList(AbstractModel):
|
|
10112
10388
|
def InstanceList(self, InstanceList):
|
10113
10389
|
self._InstanceList = InstanceList
|
10114
10390
|
|
10391
|
+
@property
|
10392
|
+
def Error(self):
|
10393
|
+
return self._Error
|
10394
|
+
|
10395
|
+
@Error.setter
|
10396
|
+
def Error(self, Error):
|
10397
|
+
self._Error = Error
|
10398
|
+
|
10115
10399
|
|
10116
10400
|
def _deserialize(self, params):
|
10117
10401
|
self._TotalCount = params.get("TotalCount")
|
@@ -10121,6 +10405,7 @@ class LiveInstanceList(AbstractModel):
|
|
10121
10405
|
obj = LiveInstanceDetail()
|
10122
10406
|
obj._deserialize(item)
|
10123
10407
|
self._InstanceList.append(obj)
|
10408
|
+
self._Error = params.get("Error")
|
10124
10409
|
memeber_set = set(params.keys())
|
10125
10410
|
for name, value in vars(self).items():
|
10126
10411
|
property_name = name[1:]
|
@@ -13070,9 +13355,13 @@ class TCBInstanceList(AbstractModel):
|
|
13070
13355
|
:param _Environments: tcb环境实例详情
|
13071
13356
|
注意:此字段可能返回 null,表示取不到有效值。
|
13072
13357
|
:type Environments: list of TCBEnvironments
|
13358
|
+
:param _Error: 是否查询异常
|
13359
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13360
|
+
:type Error: str
|
13073
13361
|
"""
|
13074
13362
|
self._Region = None
|
13075
13363
|
self._Environments = None
|
13364
|
+
self._Error = None
|
13076
13365
|
|
13077
13366
|
@property
|
13078
13367
|
def Region(self):
|
@@ -13090,6 +13379,14 @@ class TCBInstanceList(AbstractModel):
|
|
13090
13379
|
def Environments(self, Environments):
|
13091
13380
|
self._Environments = Environments
|
13092
13381
|
|
13382
|
+
@property
|
13383
|
+
def Error(self):
|
13384
|
+
return self._Error
|
13385
|
+
|
13386
|
+
@Error.setter
|
13387
|
+
def Error(self, Error):
|
13388
|
+
self._Error = Error
|
13389
|
+
|
13093
13390
|
|
13094
13391
|
def _deserialize(self, params):
|
13095
13392
|
self._Region = params.get("Region")
|
@@ -13099,6 +13396,7 @@ class TCBInstanceList(AbstractModel):
|
|
13099
13396
|
obj = TCBEnvironments()
|
13100
13397
|
obj._deserialize(item)
|
13101
13398
|
self._Environments.append(obj)
|
13399
|
+
self._Error = params.get("Error")
|
13102
13400
|
memeber_set = set(params.keys())
|
13103
13401
|
for name, value in vars(self).items():
|
13104
13402
|
property_name = name[1:]
|
@@ -13188,10 +13486,14 @@ class TSEInstanceList(AbstractModel):
|
|
13188
13486
|
:type TotalCount: int
|
13189
13487
|
:param _Region: 地域
|
13190
13488
|
:type Region: str
|
13489
|
+
:param _Error: 是否查询异常
|
13490
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13491
|
+
:type Error: str
|
13191
13492
|
"""
|
13192
13493
|
self._InstanceList = None
|
13193
13494
|
self._TotalCount = None
|
13194
13495
|
self._Region = None
|
13496
|
+
self._Error = None
|
13195
13497
|
|
13196
13498
|
@property
|
13197
13499
|
def InstanceList(self):
|
@@ -13217,6 +13519,14 @@ class TSEInstanceList(AbstractModel):
|
|
13217
13519
|
def Region(self, Region):
|
13218
13520
|
self._Region = Region
|
13219
13521
|
|
13522
|
+
@property
|
13523
|
+
def Error(self):
|
13524
|
+
return self._Error
|
13525
|
+
|
13526
|
+
@Error.setter
|
13527
|
+
def Error(self, Error):
|
13528
|
+
self._Error = Error
|
13529
|
+
|
13220
13530
|
|
13221
13531
|
def _deserialize(self, params):
|
13222
13532
|
if params.get("InstanceList") is not None:
|
@@ -13227,6 +13537,7 @@ class TSEInstanceList(AbstractModel):
|
|
13227
13537
|
self._InstanceList.append(obj)
|
13228
13538
|
self._TotalCount = params.get("TotalCount")
|
13229
13539
|
self._Region = params.get("Region")
|
13540
|
+
self._Error = params.get("Error")
|
13230
13541
|
memeber_set = set(params.keys())
|
13231
13542
|
for name, value in vars(self).items():
|
13232
13543
|
property_name = name[1:]
|
@@ -13364,9 +13675,13 @@ class TeoInstanceList(AbstractModel):
|
|
13364
13675
|
:type InstanceList: list of TeoInstanceDetail
|
13365
13676
|
:param _TotalCount: edgeone实例总数
|
13366
13677
|
:type TotalCount: int
|
13678
|
+
:param _Error: 是否查询异常
|
13679
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13680
|
+
:type Error: str
|
13367
13681
|
"""
|
13368
13682
|
self._InstanceList = None
|
13369
13683
|
self._TotalCount = None
|
13684
|
+
self._Error = None
|
13370
13685
|
|
13371
13686
|
@property
|
13372
13687
|
def InstanceList(self):
|
@@ -13384,6 +13699,14 @@ class TeoInstanceList(AbstractModel):
|
|
13384
13699
|
def TotalCount(self, TotalCount):
|
13385
13700
|
self._TotalCount = TotalCount
|
13386
13701
|
|
13702
|
+
@property
|
13703
|
+
def Error(self):
|
13704
|
+
return self._Error
|
13705
|
+
|
13706
|
+
@Error.setter
|
13707
|
+
def Error(self, Error):
|
13708
|
+
self._Error = Error
|
13709
|
+
|
13387
13710
|
|
13388
13711
|
def _deserialize(self, params):
|
13389
13712
|
if params.get("InstanceList") is not None:
|
@@ -13393,6 +13716,7 @@ class TeoInstanceList(AbstractModel):
|
|
13393
13716
|
obj._deserialize(item)
|
13394
13717
|
self._InstanceList.append(obj)
|
13395
13718
|
self._TotalCount = params.get("TotalCount")
|
13719
|
+
self._Error = params.get("Error")
|
13396
13720
|
memeber_set = set(params.keys())
|
13397
13721
|
for name, value in vars(self).items():
|
13398
13722
|
property_name = name[1:]
|
@@ -13560,10 +13884,14 @@ class TkeInstanceList(AbstractModel):
|
|
13560
13884
|
:type InstanceList: list of TkeInstanceDetail
|
13561
13885
|
:param _TotalCount: 该地域下tke实例总数
|
13562
13886
|
:type TotalCount: int
|
13887
|
+
:param _Error: 是否查询异常
|
13888
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13889
|
+
:type Error: str
|
13563
13890
|
"""
|
13564
13891
|
self._Region = None
|
13565
13892
|
self._InstanceList = None
|
13566
13893
|
self._TotalCount = None
|
13894
|
+
self._Error = None
|
13567
13895
|
|
13568
13896
|
@property
|
13569
13897
|
def Region(self):
|
@@ -13589,6 +13917,14 @@ class TkeInstanceList(AbstractModel):
|
|
13589
13917
|
def TotalCount(self, TotalCount):
|
13590
13918
|
self._TotalCount = TotalCount
|
13591
13919
|
|
13920
|
+
@property
|
13921
|
+
def Error(self):
|
13922
|
+
return self._Error
|
13923
|
+
|
13924
|
+
@Error.setter
|
13925
|
+
def Error(self, Error):
|
13926
|
+
self._Error = Error
|
13927
|
+
|
13592
13928
|
|
13593
13929
|
def _deserialize(self, params):
|
13594
13930
|
self._Region = params.get("Region")
|
@@ -13599,6 +13935,7 @@ class TkeInstanceList(AbstractModel):
|
|
13599
13935
|
obj._deserialize(item)
|
13600
13936
|
self._InstanceList.append(obj)
|
13601
13937
|
self._TotalCount = params.get("TotalCount")
|
13938
|
+
self._Error = params.get("Error")
|
13602
13939
|
memeber_set = set(params.keys())
|
13603
13940
|
for name, value in vars(self).items():
|
13604
13941
|
property_name = name[1:]
|
@@ -15111,9 +15448,13 @@ class VODInstanceList(AbstractModel):
|
|
15111
15448
|
:type InstanceList: list of VodInstanceDetail
|
15112
15449
|
:param _TotalCount: 该地域下vod实例总数
|
15113
15450
|
:type TotalCount: int
|
15451
|
+
:param _Error: 是否查询异常
|
15452
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15453
|
+
:type Error: str
|
15114
15454
|
"""
|
15115
15455
|
self._InstanceList = None
|
15116
15456
|
self._TotalCount = None
|
15457
|
+
self._Error = None
|
15117
15458
|
|
15118
15459
|
@property
|
15119
15460
|
def InstanceList(self):
|
@@ -15131,6 +15472,14 @@ class VODInstanceList(AbstractModel):
|
|
15131
15472
|
def TotalCount(self, TotalCount):
|
15132
15473
|
self._TotalCount = TotalCount
|
15133
15474
|
|
15475
|
+
@property
|
15476
|
+
def Error(self):
|
15477
|
+
return self._Error
|
15478
|
+
|
15479
|
+
@Error.setter
|
15480
|
+
def Error(self, Error):
|
15481
|
+
self._Error = Error
|
15482
|
+
|
15134
15483
|
|
15135
15484
|
def _deserialize(self, params):
|
15136
15485
|
if params.get("InstanceList") is not None:
|
@@ -15140,6 +15489,7 @@ class VODInstanceList(AbstractModel):
|
|
15140
15489
|
obj._deserialize(item)
|
15141
15490
|
self._InstanceList.append(obj)
|
15142
15491
|
self._TotalCount = params.get("TotalCount")
|
15492
|
+
self._Error = params.get("Error")
|
15143
15493
|
memeber_set = set(params.keys())
|
15144
15494
|
for name, value in vars(self).items():
|
15145
15495
|
property_name = name[1:]
|
@@ -15338,10 +15688,14 @@ class WafInstanceList(AbstractModel):
|
|
15338
15688
|
:type InstanceList: list of WafInstanceDetail
|
15339
15689
|
:param _TotalCount: 该地域下waf实例总数
|
15340
15690
|
:type TotalCount: int
|
15691
|
+
:param _Error: 是否查询异常
|
15692
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15693
|
+
:type Error: str
|
15341
15694
|
"""
|
15342
15695
|
self._Region = None
|
15343
15696
|
self._InstanceList = None
|
15344
15697
|
self._TotalCount = None
|
15698
|
+
self._Error = None
|
15345
15699
|
|
15346
15700
|
@property
|
15347
15701
|
def Region(self):
|
@@ -15367,6 +15721,14 @@ class WafInstanceList(AbstractModel):
|
|
15367
15721
|
def TotalCount(self, TotalCount):
|
15368
15722
|
self._TotalCount = TotalCount
|
15369
15723
|
|
15724
|
+
@property
|
15725
|
+
def Error(self):
|
15726
|
+
return self._Error
|
15727
|
+
|
15728
|
+
@Error.setter
|
15729
|
+
def Error(self, Error):
|
15730
|
+
self._Error = Error
|
15731
|
+
|
15370
15732
|
|
15371
15733
|
def _deserialize(self, params):
|
15372
15734
|
self._Region = params.get("Region")
|
@@ -15377,6 +15739,7 @@ class WafInstanceList(AbstractModel):
|
|
15377
15739
|
obj._deserialize(item)
|
15378
15740
|
self._InstanceList.append(obj)
|
15379
15741
|
self._TotalCount = params.get("TotalCount")
|
15742
|
+
self._Error = params.get("Error")
|
15380
15743
|
memeber_set = set(params.keys())
|
15381
15744
|
for name, value in vars(self).items():
|
15382
15745
|
property_name = name[1:]
|
@@ -256,6 +256,29 @@ class SslClient(AbstractClient):
|
|
256
256
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
257
257
|
|
258
258
|
|
259
|
+
def DeleteCertificates(self, request):
|
260
|
+
"""批量删除证书,删除证书前支持查询证书是否关联了腾讯云云资源 (需自定义配置参数,参数名称:IsSync)
|
261
|
+
|
262
|
+
:param request: Request instance for DeleteCertificates.
|
263
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.DeleteCertificatesRequest`
|
264
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.DeleteCertificatesResponse`
|
265
|
+
|
266
|
+
"""
|
267
|
+
try:
|
268
|
+
params = request._serialize()
|
269
|
+
headers = request.headers
|
270
|
+
body = self.call("DeleteCertificates", params, headers=headers)
|
271
|
+
response = json.loads(body)
|
272
|
+
model = models.DeleteCertificatesResponse()
|
273
|
+
model._deserialize(response["Response"])
|
274
|
+
return model
|
275
|
+
except Exception as e:
|
276
|
+
if isinstance(e, TencentCloudSDKException):
|
277
|
+
raise
|
278
|
+
else:
|
279
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
|
+
|
281
|
+
|
259
282
|
def DeleteManager(self, request):
|
260
283
|
"""删除管理人
|
261
284
|
|