tencentcloud-sdk-python 3.0.1442__py2.py3-none-any.whl → 3.0.1443__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +28 -48
- tencentcloud/ckafka/v20190819/models.py +23 -23
- tencentcloud/clb/v20180317/models.py +4 -4
- tencentcloud/cls/v20201016/cls_client.py +3 -3
- tencentcloud/cls/v20201016/errorcodes.py +3 -0
- tencentcloud/cls/v20201016/models.py +943 -214
- tencentcloud/common/credential.py +20 -2
- tencentcloud/dnspod/v20210323/errorcodes.py +3 -0
- tencentcloud/dnspod/v20210323/models.py +17 -2
- tencentcloud/es/v20180416/models.py +30 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -1
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -1
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iai/v20200303/models.py +19 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +27 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +53 -0
- tencentcloud/lighthouse/v20200324/models.py +534 -0
- tencentcloud/live/v20180801/models.py +2 -10
- tencentcloud/lke/v20231130/lke_client.py +0 -23
- tencentcloud/lke/v20231130/models.py +40 -128
- tencentcloud/ocr/v20181119/models.py +34 -0
- tencentcloud/organization/v20210331/models.py +24 -26
- tencentcloud/ssl/v20191205/models.py +2 -2
- tencentcloud/tbaas/v20180416/errorcodes.py +6 -0
- tencentcloud/teo/v20220901/models.py +18 -18
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/errorcodes.py +15 -0
- tencentcloud/trtc/v20190722/models.py +482 -0
- tencentcloud/trtc/v20190722/trtc_client.py +64 -0
- tencentcloud/tse/v20201207/models.py +30 -0
- tencentcloud/tsf/v20180326/errorcodes.py +32 -11
- tencentcloud/tsf/v20180326/models.py +976 -778
- tencentcloud/tsf/v20180326/tsf_client.py +18 -18
- tencentcloud/vod/v20180717/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +35 -0
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/wsa/v20250508/models.py +42 -6
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/RECORD +44 -44
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1443.dist-info}/top_level.txt +0 -0
|
@@ -5450,10 +5450,13 @@ class CreateAttributeLabelResponse(AbstractModel):
|
|
|
5450
5450
|
r"""
|
|
5451
5451
|
:param _AttrBizId: 标签ID
|
|
5452
5452
|
:type AttrBizId: str
|
|
5453
|
+
:param _Labels: 标签值ID与名称
|
|
5454
|
+
:type Labels: list of AttributeLabel
|
|
5453
5455
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5454
5456
|
:type RequestId: str
|
|
5455
5457
|
"""
|
|
5456
5458
|
self._AttrBizId = None
|
|
5459
|
+
self._Labels = None
|
|
5457
5460
|
self._RequestId = None
|
|
5458
5461
|
|
|
5459
5462
|
@property
|
|
@@ -5467,6 +5470,17 @@ class CreateAttributeLabelResponse(AbstractModel):
|
|
|
5467
5470
|
def AttrBizId(self, AttrBizId):
|
|
5468
5471
|
self._AttrBizId = AttrBizId
|
|
5469
5472
|
|
|
5473
|
+
@property
|
|
5474
|
+
def Labels(self):
|
|
5475
|
+
"""标签值ID与名称
|
|
5476
|
+
:rtype: list of AttributeLabel
|
|
5477
|
+
"""
|
|
5478
|
+
return self._Labels
|
|
5479
|
+
|
|
5480
|
+
@Labels.setter
|
|
5481
|
+
def Labels(self, Labels):
|
|
5482
|
+
self._Labels = Labels
|
|
5483
|
+
|
|
5470
5484
|
@property
|
|
5471
5485
|
def RequestId(self):
|
|
5472
5486
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5481,6 +5495,12 @@ class CreateAttributeLabelResponse(AbstractModel):
|
|
|
5481
5495
|
|
|
5482
5496
|
def _deserialize(self, params):
|
|
5483
5497
|
self._AttrBizId = params.get("AttrBizId")
|
|
5498
|
+
if params.get("Labels") is not None:
|
|
5499
|
+
self._Labels = []
|
|
5500
|
+
for item in params.get("Labels"):
|
|
5501
|
+
obj = AttributeLabel()
|
|
5502
|
+
obj._deserialize(item)
|
|
5503
|
+
self._Labels.append(obj)
|
|
5484
5504
|
self._RequestId = params.get("RequestId")
|
|
5485
5505
|
|
|
5486
5506
|
|
|
@@ -17471,134 +17491,6 @@ class Label(AbstractModel):
|
|
|
17471
17491
|
|
|
17472
17492
|
|
|
17473
17493
|
|
|
17474
|
-
class ListAppCategoryRequest(AbstractModel):
|
|
17475
|
-
"""ListAppCategory请求参数结构体
|
|
17476
|
-
|
|
17477
|
-
"""
|
|
17478
|
-
|
|
17479
|
-
|
|
17480
|
-
class ListAppCategoryResponse(AbstractModel):
|
|
17481
|
-
"""ListAppCategory返回参数结构体
|
|
17482
|
-
|
|
17483
|
-
"""
|
|
17484
|
-
|
|
17485
|
-
def __init__(self):
|
|
17486
|
-
r"""
|
|
17487
|
-
:param _List: 应用类型列表
|
|
17488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17489
|
-
:type List: list of ListAppCategoryRspOption
|
|
17490
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17491
|
-
:type RequestId: str
|
|
17492
|
-
"""
|
|
17493
|
-
self._List = None
|
|
17494
|
-
self._RequestId = None
|
|
17495
|
-
|
|
17496
|
-
@property
|
|
17497
|
-
def List(self):
|
|
17498
|
-
"""应用类型列表
|
|
17499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17500
|
-
:rtype: list of ListAppCategoryRspOption
|
|
17501
|
-
"""
|
|
17502
|
-
return self._List
|
|
17503
|
-
|
|
17504
|
-
@List.setter
|
|
17505
|
-
def List(self, List):
|
|
17506
|
-
self._List = List
|
|
17507
|
-
|
|
17508
|
-
@property
|
|
17509
|
-
def RequestId(self):
|
|
17510
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
17511
|
-
:rtype: str
|
|
17512
|
-
"""
|
|
17513
|
-
return self._RequestId
|
|
17514
|
-
|
|
17515
|
-
@RequestId.setter
|
|
17516
|
-
def RequestId(self, RequestId):
|
|
17517
|
-
self._RequestId = RequestId
|
|
17518
|
-
|
|
17519
|
-
|
|
17520
|
-
def _deserialize(self, params):
|
|
17521
|
-
if params.get("List") is not None:
|
|
17522
|
-
self._List = []
|
|
17523
|
-
for item in params.get("List"):
|
|
17524
|
-
obj = ListAppCategoryRspOption()
|
|
17525
|
-
obj._deserialize(item)
|
|
17526
|
-
self._List.append(obj)
|
|
17527
|
-
self._RequestId = params.get("RequestId")
|
|
17528
|
-
|
|
17529
|
-
|
|
17530
|
-
class ListAppCategoryRspOption(AbstractModel):
|
|
17531
|
-
"""应用类型详情
|
|
17532
|
-
|
|
17533
|
-
"""
|
|
17534
|
-
|
|
17535
|
-
def __init__(self):
|
|
17536
|
-
r"""
|
|
17537
|
-
:param _Text: 类型名称
|
|
17538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17539
|
-
:type Text: str
|
|
17540
|
-
:param _Value: 类型值
|
|
17541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17542
|
-
:type Value: str
|
|
17543
|
-
:param _Logo: 类型log
|
|
17544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17545
|
-
:type Logo: str
|
|
17546
|
-
"""
|
|
17547
|
-
self._Text = None
|
|
17548
|
-
self._Value = None
|
|
17549
|
-
self._Logo = None
|
|
17550
|
-
|
|
17551
|
-
@property
|
|
17552
|
-
def Text(self):
|
|
17553
|
-
"""类型名称
|
|
17554
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17555
|
-
:rtype: str
|
|
17556
|
-
"""
|
|
17557
|
-
return self._Text
|
|
17558
|
-
|
|
17559
|
-
@Text.setter
|
|
17560
|
-
def Text(self, Text):
|
|
17561
|
-
self._Text = Text
|
|
17562
|
-
|
|
17563
|
-
@property
|
|
17564
|
-
def Value(self):
|
|
17565
|
-
"""类型值
|
|
17566
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17567
|
-
:rtype: str
|
|
17568
|
-
"""
|
|
17569
|
-
return self._Value
|
|
17570
|
-
|
|
17571
|
-
@Value.setter
|
|
17572
|
-
def Value(self, Value):
|
|
17573
|
-
self._Value = Value
|
|
17574
|
-
|
|
17575
|
-
@property
|
|
17576
|
-
def Logo(self):
|
|
17577
|
-
"""类型log
|
|
17578
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
17579
|
-
:rtype: str
|
|
17580
|
-
"""
|
|
17581
|
-
return self._Logo
|
|
17582
|
-
|
|
17583
|
-
@Logo.setter
|
|
17584
|
-
def Logo(self, Logo):
|
|
17585
|
-
self._Logo = Logo
|
|
17586
|
-
|
|
17587
|
-
|
|
17588
|
-
def _deserialize(self, params):
|
|
17589
|
-
self._Text = params.get("Text")
|
|
17590
|
-
self._Value = params.get("Value")
|
|
17591
|
-
self._Logo = params.get("Logo")
|
|
17592
|
-
memeber_set = set(params.keys())
|
|
17593
|
-
for name, value in vars(self).items():
|
|
17594
|
-
property_name = name[1:]
|
|
17595
|
-
if property_name in memeber_set:
|
|
17596
|
-
memeber_set.remove(property_name)
|
|
17597
|
-
if len(memeber_set) > 0:
|
|
17598
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17599
|
-
|
|
17600
|
-
|
|
17601
|
-
|
|
17602
17494
|
class ListAppKnowledgeDetailRequest(AbstractModel):
|
|
17603
17495
|
"""ListAppKnowledgeDetail请求参数结构体
|
|
17604
17496
|
|
|
@@ -23059,10 +22951,13 @@ class ModifyAttributeLabelResponse(AbstractModel):
|
|
|
23059
22951
|
r"""
|
|
23060
22952
|
:param _TaskId: 任务ID
|
|
23061
22953
|
:type TaskId: str
|
|
22954
|
+
:param _Labels: 标签ID与名称
|
|
22955
|
+
:type Labels: list of AttributeLabel
|
|
23062
22956
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
23063
22957
|
:type RequestId: str
|
|
23064
22958
|
"""
|
|
23065
22959
|
self._TaskId = None
|
|
22960
|
+
self._Labels = None
|
|
23066
22961
|
self._RequestId = None
|
|
23067
22962
|
|
|
23068
22963
|
@property
|
|
@@ -23076,6 +22971,17 @@ class ModifyAttributeLabelResponse(AbstractModel):
|
|
|
23076
22971
|
def TaskId(self, TaskId):
|
|
23077
22972
|
self._TaskId = TaskId
|
|
23078
22973
|
|
|
22974
|
+
@property
|
|
22975
|
+
def Labels(self):
|
|
22976
|
+
"""标签ID与名称
|
|
22977
|
+
:rtype: list of AttributeLabel
|
|
22978
|
+
"""
|
|
22979
|
+
return self._Labels
|
|
22980
|
+
|
|
22981
|
+
@Labels.setter
|
|
22982
|
+
def Labels(self, Labels):
|
|
22983
|
+
self._Labels = Labels
|
|
22984
|
+
|
|
23079
22985
|
@property
|
|
23080
22986
|
def RequestId(self):
|
|
23081
22987
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -23090,6 +22996,12 @@ class ModifyAttributeLabelResponse(AbstractModel):
|
|
|
23090
22996
|
|
|
23091
22997
|
def _deserialize(self, params):
|
|
23092
22998
|
self._TaskId = params.get("TaskId")
|
|
22999
|
+
if params.get("Labels") is not None:
|
|
23000
|
+
self._Labels = []
|
|
23001
|
+
for item in params.get("Labels"):
|
|
23002
|
+
obj = AttributeLabel()
|
|
23003
|
+
obj._deserialize(item)
|
|
23004
|
+
self._Labels.append(obj)
|
|
23093
23005
|
self._RequestId = params.get("RequestId")
|
|
23094
23006
|
|
|
23095
23007
|
|
|
@@ -3608,6 +3608,10 @@ class CardWarnInfo(AbstractModel):
|
|
|
3608
3608
|
:type BlurCheck: int
|
|
3609
3609
|
:param _BlurScore: 模糊分数, 范围:0.0-1.0,分数越高越模糊,建议阈值为0.5
|
|
3610
3610
|
:type BlurScore: float
|
|
3611
|
+
:param _ElectronCheck: 是否电子身份证
|
|
3612
|
+
0:否
|
|
3613
|
+
1:是电子身份证
|
|
3614
|
+
:type ElectronCheck: int
|
|
3611
3615
|
"""
|
|
3612
3616
|
self._BorderCheck = None
|
|
3613
3617
|
self._OcclusionCheck = None
|
|
@@ -3616,6 +3620,7 @@ class CardWarnInfo(AbstractModel):
|
|
|
3616
3620
|
self._PSCheck = None
|
|
3617
3621
|
self._BlurCheck = None
|
|
3618
3622
|
self._BlurScore = None
|
|
3623
|
+
self._ElectronCheck = None
|
|
3619
3624
|
|
|
3620
3625
|
@property
|
|
3621
3626
|
def BorderCheck(self):
|
|
@@ -3706,6 +3711,19 @@ class CardWarnInfo(AbstractModel):
|
|
|
3706
3711
|
def BlurScore(self, BlurScore):
|
|
3707
3712
|
self._BlurScore = BlurScore
|
|
3708
3713
|
|
|
3714
|
+
@property
|
|
3715
|
+
def ElectronCheck(self):
|
|
3716
|
+
"""是否电子身份证
|
|
3717
|
+
0:否
|
|
3718
|
+
1:是电子身份证
|
|
3719
|
+
:rtype: int
|
|
3720
|
+
"""
|
|
3721
|
+
return self._ElectronCheck
|
|
3722
|
+
|
|
3723
|
+
@ElectronCheck.setter
|
|
3724
|
+
def ElectronCheck(self, ElectronCheck):
|
|
3725
|
+
self._ElectronCheck = ElectronCheck
|
|
3726
|
+
|
|
3709
3727
|
|
|
3710
3728
|
def _deserialize(self, params):
|
|
3711
3729
|
self._BorderCheck = params.get("BorderCheck")
|
|
@@ -3715,6 +3733,7 @@ class CardWarnInfo(AbstractModel):
|
|
|
3715
3733
|
self._PSCheck = params.get("PSCheck")
|
|
3716
3734
|
self._BlurCheck = params.get("BlurCheck")
|
|
3717
3735
|
self._BlurScore = params.get("BlurScore")
|
|
3736
|
+
self._ElectronCheck = params.get("ElectronCheck")
|
|
3718
3737
|
memeber_set = set(params.keys())
|
|
3719
3738
|
for name, value in vars(self).items():
|
|
3720
3739
|
property_name = name[1:]
|
|
@@ -27157,6 +27176,8 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
|
27157
27176
|
:type EnableWordCheck: bool
|
|
27158
27177
|
:param _EnableQualityCheck: 默认值为false,打开返回证件是否模糊。
|
|
27159
27178
|
:type EnableQualityCheck: bool
|
|
27179
|
+
:param _EnableElectronCheck: 默认值为false,打开返回是否存在电子身份证判断。
|
|
27180
|
+
:type EnableElectronCheck: bool
|
|
27160
27181
|
"""
|
|
27161
27182
|
self._ImageBase64 = None
|
|
27162
27183
|
self._ImageUrl = None
|
|
@@ -27170,6 +27191,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
|
27170
27191
|
self._EnablePSCheck = None
|
|
27171
27192
|
self._EnableWordCheck = None
|
|
27172
27193
|
self._EnableQualityCheck = None
|
|
27194
|
+
self._EnableElectronCheck = None
|
|
27173
27195
|
|
|
27174
27196
|
@property
|
|
27175
27197
|
def ImageBase64(self):
|
|
@@ -27316,6 +27338,17 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
|
27316
27338
|
def EnableQualityCheck(self, EnableQualityCheck):
|
|
27317
27339
|
self._EnableQualityCheck = EnableQualityCheck
|
|
27318
27340
|
|
|
27341
|
+
@property
|
|
27342
|
+
def EnableElectronCheck(self):
|
|
27343
|
+
"""默认值为false,打开返回是否存在电子身份证判断。
|
|
27344
|
+
:rtype: bool
|
|
27345
|
+
"""
|
|
27346
|
+
return self._EnableElectronCheck
|
|
27347
|
+
|
|
27348
|
+
@EnableElectronCheck.setter
|
|
27349
|
+
def EnableElectronCheck(self, EnableElectronCheck):
|
|
27350
|
+
self._EnableElectronCheck = EnableElectronCheck
|
|
27351
|
+
|
|
27319
27352
|
|
|
27320
27353
|
def _deserialize(self, params):
|
|
27321
27354
|
self._ImageBase64 = params.get("ImageBase64")
|
|
@@ -27330,6 +27363,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
|
|
|
27330
27363
|
self._EnablePSCheck = params.get("EnablePSCheck")
|
|
27331
27364
|
self._EnableWordCheck = params.get("EnableWordCheck")
|
|
27332
27365
|
self._EnableQualityCheck = params.get("EnableQualityCheck")
|
|
27366
|
+
self._EnableElectronCheck = params.get("EnableElectronCheck")
|
|
27333
27367
|
memeber_set = set(params.keys())
|
|
27334
27368
|
for name, value in vars(self).items():
|
|
27335
27369
|
property_name = name[1:]
|
|
@@ -7539,15 +7539,15 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7539
7539
|
|
|
7540
7540
|
def __init__(self):
|
|
7541
7541
|
r"""
|
|
7542
|
-
:param _Area:
|
|
7542
|
+
:param _Area: 共享地域。可通过接口[DescribeShareAreas](https://cloud.tencent.com/document/product/850/103050)获取支持共享的地域。
|
|
7543
7543
|
:type Area: str
|
|
7544
|
-
:param _Offset:
|
|
7544
|
+
:param _Offset: 偏移量。取值是limit的整数倍。默认值 : 0。
|
|
7545
7545
|
:type Offset: int
|
|
7546
|
-
:param _Limit:
|
|
7546
|
+
:param _Limit: 限制数目。取值范围:1~50。
|
|
7547
7547
|
:type Limit: int
|
|
7548
|
-
:param _SearchKey: 搜索关键字,支持业务资源ID
|
|
7548
|
+
:param _SearchKey: 搜索关键字,支持业务资源ID搜索。
|
|
7549
7549
|
:type SearchKey: str
|
|
7550
|
-
:param _Type:
|
|
7550
|
+
:param _Type: 共享资源类型。支持共享的资源类型,请参见[资源共享概述](https://cloud.tencent.com/document/product/850/59489)
|
|
7551
7551
|
:type Type: str
|
|
7552
7552
|
:param _ProductResourceIds: 业务资源ID。最大50个
|
|
7553
7553
|
:type ProductResourceIds: list of str
|
|
@@ -7561,7 +7561,7 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7561
7561
|
|
|
7562
7562
|
@property
|
|
7563
7563
|
def Area(self):
|
|
7564
|
-
"""
|
|
7564
|
+
"""共享地域。可通过接口[DescribeShareAreas](https://cloud.tencent.com/document/product/850/103050)获取支持共享的地域。
|
|
7565
7565
|
:rtype: str
|
|
7566
7566
|
"""
|
|
7567
7567
|
return self._Area
|
|
@@ -7572,7 +7572,7 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7572
7572
|
|
|
7573
7573
|
@property
|
|
7574
7574
|
def Offset(self):
|
|
7575
|
-
"""
|
|
7575
|
+
"""偏移量。取值是limit的整数倍。默认值 : 0。
|
|
7576
7576
|
:rtype: int
|
|
7577
7577
|
"""
|
|
7578
7578
|
return self._Offset
|
|
@@ -7583,7 +7583,7 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7583
7583
|
|
|
7584
7584
|
@property
|
|
7585
7585
|
def Limit(self):
|
|
7586
|
-
"""
|
|
7586
|
+
"""限制数目。取值范围:1~50。
|
|
7587
7587
|
:rtype: int
|
|
7588
7588
|
"""
|
|
7589
7589
|
return self._Limit
|
|
@@ -7594,7 +7594,7 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7594
7594
|
|
|
7595
7595
|
@property
|
|
7596
7596
|
def SearchKey(self):
|
|
7597
|
-
"""搜索关键字,支持业务资源ID
|
|
7597
|
+
"""搜索关键字,支持业务资源ID搜索。
|
|
7598
7598
|
:rtype: str
|
|
7599
7599
|
"""
|
|
7600
7600
|
return self._SearchKey
|
|
@@ -7605,7 +7605,7 @@ class DescribeResourceToShareMemberRequest(AbstractModel):
|
|
|
7605
7605
|
|
|
7606
7606
|
@property
|
|
7607
7607
|
def Type(self):
|
|
7608
|
-
"""
|
|
7608
|
+
"""共享资源类型。支持共享的资源类型,请参见[资源共享概述](https://cloud.tencent.com/document/product/850/59489)
|
|
7609
7609
|
:rtype: str
|
|
7610
7610
|
"""
|
|
7611
7611
|
return self._Type
|
|
@@ -19041,20 +19041,19 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19041
19041
|
|
|
19042
19042
|
def __init__(self):
|
|
19043
19043
|
r"""
|
|
19044
|
-
:param _ResourceId:
|
|
19044
|
+
:param _ResourceId: 共享单元资源ID。
|
|
19045
19045
|
:type ResourceId: str
|
|
19046
|
-
:param _Type:
|
|
19046
|
+
:param _Type: 资源类型。
|
|
19047
19047
|
:type Type: str
|
|
19048
|
-
:param _UnitId: 共享单元ID
|
|
19048
|
+
:param _UnitId: 共享单元ID。
|
|
19049
19049
|
:type UnitId: str
|
|
19050
|
-
:param _UnitName:
|
|
19050
|
+
:param _UnitName: 共享单元名称。
|
|
19051
19051
|
:type UnitName: str
|
|
19052
|
-
:param _CreateTime:
|
|
19052
|
+
:param _CreateTime: 创建时间。
|
|
19053
19053
|
:type CreateTime: str
|
|
19054
|
-
:param _ProductResourceId: 业务资源ID
|
|
19054
|
+
:param _ProductResourceId: 业务资源ID。
|
|
19055
19055
|
:type ProductResourceId: str
|
|
19056
|
-
:param _ShareManagerUin:
|
|
19057
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19056
|
+
:param _ShareManagerUin: 共享账号Uin。
|
|
19058
19057
|
:type ShareManagerUin: int
|
|
19059
19058
|
"""
|
|
19060
19059
|
self._ResourceId = None
|
|
@@ -19067,7 +19066,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19067
19066
|
|
|
19068
19067
|
@property
|
|
19069
19068
|
def ResourceId(self):
|
|
19070
|
-
"""
|
|
19069
|
+
"""共享单元资源ID。
|
|
19071
19070
|
:rtype: str
|
|
19072
19071
|
"""
|
|
19073
19072
|
return self._ResourceId
|
|
@@ -19078,7 +19077,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19078
19077
|
|
|
19079
19078
|
@property
|
|
19080
19079
|
def Type(self):
|
|
19081
|
-
"""
|
|
19080
|
+
"""资源类型。
|
|
19082
19081
|
:rtype: str
|
|
19083
19082
|
"""
|
|
19084
19083
|
return self._Type
|
|
@@ -19089,7 +19088,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19089
19088
|
|
|
19090
19089
|
@property
|
|
19091
19090
|
def UnitId(self):
|
|
19092
|
-
"""共享单元ID
|
|
19091
|
+
"""共享单元ID。
|
|
19093
19092
|
:rtype: str
|
|
19094
19093
|
"""
|
|
19095
19094
|
return self._UnitId
|
|
@@ -19100,7 +19099,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19100
19099
|
|
|
19101
19100
|
@property
|
|
19102
19101
|
def UnitName(self):
|
|
19103
|
-
"""
|
|
19102
|
+
"""共享单元名称。
|
|
19104
19103
|
:rtype: str
|
|
19105
19104
|
"""
|
|
19106
19105
|
return self._UnitName
|
|
@@ -19111,7 +19110,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19111
19110
|
|
|
19112
19111
|
@property
|
|
19113
19112
|
def CreateTime(self):
|
|
19114
|
-
"""
|
|
19113
|
+
"""创建时间。
|
|
19115
19114
|
:rtype: str
|
|
19116
19115
|
"""
|
|
19117
19116
|
return self._CreateTime
|
|
@@ -19122,7 +19121,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19122
19121
|
|
|
19123
19122
|
@property
|
|
19124
19123
|
def ProductResourceId(self):
|
|
19125
|
-
"""业务资源ID
|
|
19124
|
+
"""业务资源ID。
|
|
19126
19125
|
:rtype: str
|
|
19127
19126
|
"""
|
|
19128
19127
|
return self._ProductResourceId
|
|
@@ -19133,8 +19132,7 @@ class ShareResourceToMember(AbstractModel):
|
|
|
19133
19132
|
|
|
19134
19133
|
@property
|
|
19135
19134
|
def ShareManagerUin(self):
|
|
19136
|
-
"""
|
|
19137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
19135
|
+
"""共享账号Uin。
|
|
19138
19136
|
:rtype: int
|
|
19139
19137
|
"""
|
|
19140
19138
|
return self._ShareManagerUin
|
|
@@ -10913,7 +10913,7 @@ class DescribeDownloadCertificateUrlRequest(AbstractModel):
|
|
|
10913
10913
|
r"""
|
|
10914
10914
|
:param _CertificateId: 证书ID
|
|
10915
10915
|
:type CertificateId: str
|
|
10916
|
-
:param _ServiceType:
|
|
10916
|
+
:param _ServiceType: 下载的服务类型: nginx tomcat apache iis jks other root, 不传则默认下载nginx格式
|
|
10917
10917
|
:type ServiceType: str
|
|
10918
10918
|
"""
|
|
10919
10919
|
self._CertificateId = None
|
|
@@ -10932,7 +10932,7 @@ class DescribeDownloadCertificateUrlRequest(AbstractModel):
|
|
|
10932
10932
|
|
|
10933
10933
|
@property
|
|
10934
10934
|
def ServiceType(self):
|
|
10935
|
-
"""
|
|
10935
|
+
"""下载的服务类型: nginx tomcat apache iis jks other root, 不传则默认下载nginx格式
|
|
10936
10936
|
:rtype: str
|
|
10937
10937
|
"""
|
|
10938
10938
|
return self._ServiceType
|
|
@@ -65,6 +65,12 @@ FAILEDOPERATION_CAYUNAPIAPPLYCERT = 'FailedOperation.CaYunApiApplyCert'
|
|
|
65
65
|
# CFCA云API错误。
|
|
66
66
|
FAILEDOPERATION_CAYUNAPICOMMON = 'FailedOperation.CaYunApiCommon'
|
|
67
67
|
|
|
68
|
+
# 合约调用失败
|
|
69
|
+
FAILEDOPERATION_CHAINMAKERCHAINCODEINVOKEFAILED = 'FailedOperation.ChainMakerChaincodeInvokeFailed'
|
|
70
|
+
|
|
71
|
+
# 合约查询失败
|
|
72
|
+
FAILEDOPERATION_CHAINMAKERCHAINCODEQUERYFAILED = 'FailedOperation.ChainMakerChaincodeQueryFailed'
|
|
73
|
+
|
|
68
74
|
# Bcos不能编译已经部署的合约。
|
|
69
75
|
FAILEDOPERATION_COMPILEDEPLOYEDCONTRACT = 'FailedOperation.CompileDeployedContract'
|
|
70
76
|
|
|
@@ -10399,21 +10399,21 @@ class CreateOriginGroupRequest(AbstractModel):
|
|
|
10399
10399
|
r"""
|
|
10400
10400
|
:param _ZoneId: 站点 ID
|
|
10401
10401
|
:type ZoneId: str
|
|
10402
|
+
:param _Records: 源站记录信息,此参数必填。
|
|
10403
|
+
:type Records: list of OriginRecord
|
|
10402
10404
|
:param _Name: 源站组名称,可输入1 - 200个字符,允许的字符为 a - z, A - Z, 0 - 9, _, - 。
|
|
10403
10405
|
:type Name: str
|
|
10404
10406
|
:param _Type: 源站组类型,此参数必填,取值有:
|
|
10405
10407
|
<li>GENERAL:通用型源站组,仅支持添加 IP/域名 源站,可以被域名服务、规则引擎、四层代理、通用型负载均衡、HTTP 专用型负载均衡引用;</li>
|
|
10406
10408
|
<li>HTTP: HTTP 专用型源站组,支持添加 IP/域名、对象存储源站作为源站,无法被四层代理引用,仅支持被添加加速域名、规则引擎-修改源站、HTTP 专用型负载均衡引用。</li>
|
|
10407
10409
|
:type Type: str
|
|
10408
|
-
:param _Records: 源站记录信息,此参数必填。
|
|
10409
|
-
:type Records: list of OriginRecord
|
|
10410
10410
|
:param _HostHeader: 回源 Host Header,仅 Type = HTTP 时传入生效,规则引擎修改 Host Header 配置优先级高于源站组的 Host Header。
|
|
10411
10411
|
:type HostHeader: str
|
|
10412
10412
|
"""
|
|
10413
10413
|
self._ZoneId = None
|
|
10414
|
+
self._Records = None
|
|
10414
10415
|
self._Name = None
|
|
10415
10416
|
self._Type = None
|
|
10416
|
-
self._Records = None
|
|
10417
10417
|
self._HostHeader = None
|
|
10418
10418
|
|
|
10419
10419
|
@property
|
|
@@ -10427,6 +10427,17 @@ class CreateOriginGroupRequest(AbstractModel):
|
|
|
10427
10427
|
def ZoneId(self, ZoneId):
|
|
10428
10428
|
self._ZoneId = ZoneId
|
|
10429
10429
|
|
|
10430
|
+
@property
|
|
10431
|
+
def Records(self):
|
|
10432
|
+
"""源站记录信息,此参数必填。
|
|
10433
|
+
:rtype: list of OriginRecord
|
|
10434
|
+
"""
|
|
10435
|
+
return self._Records
|
|
10436
|
+
|
|
10437
|
+
@Records.setter
|
|
10438
|
+
def Records(self, Records):
|
|
10439
|
+
self._Records = Records
|
|
10440
|
+
|
|
10430
10441
|
@property
|
|
10431
10442
|
def Name(self):
|
|
10432
10443
|
"""源站组名称,可输入1 - 200个字符,允许的字符为 a - z, A - Z, 0 - 9, _, - 。
|
|
@@ -10451,17 +10462,6 @@ class CreateOriginGroupRequest(AbstractModel):
|
|
|
10451
10462
|
def Type(self, Type):
|
|
10452
10463
|
self._Type = Type
|
|
10453
10464
|
|
|
10454
|
-
@property
|
|
10455
|
-
def Records(self):
|
|
10456
|
-
"""源站记录信息,此参数必填。
|
|
10457
|
-
:rtype: list of OriginRecord
|
|
10458
|
-
"""
|
|
10459
|
-
return self._Records
|
|
10460
|
-
|
|
10461
|
-
@Records.setter
|
|
10462
|
-
def Records(self, Records):
|
|
10463
|
-
self._Records = Records
|
|
10464
|
-
|
|
10465
10465
|
@property
|
|
10466
10466
|
def HostHeader(self):
|
|
10467
10467
|
"""回源 Host Header,仅 Type = HTTP 时传入生效,规则引擎修改 Host Header 配置优先级高于源站组的 Host Header。
|
|
@@ -10476,14 +10476,14 @@ class CreateOriginGroupRequest(AbstractModel):
|
|
|
10476
10476
|
|
|
10477
10477
|
def _deserialize(self, params):
|
|
10478
10478
|
self._ZoneId = params.get("ZoneId")
|
|
10479
|
-
self._Name = params.get("Name")
|
|
10480
|
-
self._Type = params.get("Type")
|
|
10481
10479
|
if params.get("Records") is not None:
|
|
10482
10480
|
self._Records = []
|
|
10483
10481
|
for item in params.get("Records"):
|
|
10484
10482
|
obj = OriginRecord()
|
|
10485
10483
|
obj._deserialize(item)
|
|
10486
10484
|
self._Records.append(obj)
|
|
10485
|
+
self._Name = params.get("Name")
|
|
10486
|
+
self._Type = params.get("Type")
|
|
10487
10487
|
self._HostHeader = params.get("HostHeader")
|
|
10488
10488
|
memeber_set = set(params.keys())
|
|
10489
10489
|
for name, value in vars(self).items():
|
|
@@ -42952,7 +42952,7 @@ class OriginRecord(AbstractModel):
|
|
|
42952
42952
|
:type Type: str
|
|
42953
42953
|
:param _RecordId: 源站记录ID。
|
|
42954
42954
|
:type RecordId: str
|
|
42955
|
-
:param _Weight:
|
|
42955
|
+
:param _Weight: 【源站权重】:用于控制流量分配优先级的参数,取值范围:0-100(整数):<li>空值:不设置权重,系统按默认策略调度;</li><li>0 值:明确设置权重为0,流量将不会分配到该源站,注意事项:必须确保至少有一个源站的权重值大于0;</li><li>正常值:数值越大分配流量越多 ;</li>
|
|
42956
42956
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
42957
42957
|
:type Weight: int
|
|
42958
42958
|
:param _Private: 是否私有鉴权,当源站类型 RecordType=COS/AWS_S3 时生效,取值有:
|
|
@@ -43008,7 +43008,7 @@ class OriginRecord(AbstractModel):
|
|
|
43008
43008
|
|
|
43009
43009
|
@property
|
|
43010
43010
|
def Weight(self):
|
|
43011
|
-
"""
|
|
43011
|
+
"""【源站权重】:用于控制流量分配优先级的参数,取值范围:0-100(整数):<li>空值:不设置权重,系统按默认策略调度;</li><li>0 值:明确设置权重为0,流量将不会分配到该源站,注意事项:必须确保至少有一个源站的权重值大于0;</li><li>正常值:数值越大分配流量越多 ;</li>
|
|
43012
43012
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
43013
43013
|
:rtype: int
|
|
43014
43014
|
"""
|
|
@@ -137,6 +137,9 @@ INVALIDPARAMETER_APPID = 'InvalidParameter.AppId'
|
|
|
137
137
|
# 音频编码参数错误。
|
|
138
138
|
INVALIDPARAMETER_AUDIOENCODEPARAMS = 'InvalidParameter.AudioEncodeParams'
|
|
139
139
|
|
|
140
|
+
# 无效的参考音频
|
|
141
|
+
INVALIDPARAMETER_AUDIOPROMPT = 'InvalidParameter.AudioPrompt'
|
|
142
|
+
|
|
140
143
|
# BackgroundImageUrl参数错误。
|
|
141
144
|
INVALIDPARAMETER_BACKGROUNDIMAGEURL = 'InvalidParameter.BackgroundImageUrl'
|
|
142
145
|
|
|
@@ -242,6 +245,9 @@ INVALIDPARAMETER_STREAMURL = 'InvalidParameter.StreamUrl'
|
|
|
242
245
|
# TaskId 参数错误。
|
|
243
246
|
INVALIDPARAMETER_TASKID = 'InvalidParameter.TaskId'
|
|
244
247
|
|
|
248
|
+
# 无效的文本长度
|
|
249
|
+
INVALIDPARAMETER_TEXTLENGTH = 'InvalidParameter.TextLength'
|
|
250
|
+
|
|
245
251
|
# Url解析参数失败。
|
|
246
252
|
INVALIDPARAMETER_URLPARAMSERROR = 'InvalidParameter.UrlParamsError'
|
|
247
253
|
|
|
@@ -263,6 +269,12 @@ INVALIDPARAMETER_USERSIGNOTADMIN = 'InvalidParameter.UserSigNotAdmin'
|
|
|
263
269
|
# 视频分辨率参数错误。
|
|
264
270
|
INVALIDPARAMETER_VIDEORESOLUTION = 'InvalidParameter.VideoResolution'
|
|
265
271
|
|
|
272
|
+
# 无效的VoiceId
|
|
273
|
+
INVALIDPARAMETER_VOICEID = 'InvalidParameter.VoiceId'
|
|
274
|
+
|
|
275
|
+
# 无效的声音名字
|
|
276
|
+
INVALIDPARAMETER_VOICENAME = 'InvalidParameter.VoiceName'
|
|
277
|
+
|
|
266
278
|
# RoomId值错误。
|
|
267
279
|
INVALIDPARAMETERVALUE_ROOMID = 'InvalidParameterValue.RoomId'
|
|
268
280
|
|
|
@@ -391,3 +403,6 @@ UNKNOWNPARAMETER = 'UnknownParameter'
|
|
|
391
403
|
|
|
392
404
|
# 操作不支持。
|
|
393
405
|
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
|
406
|
+
|
|
407
|
+
# 不允许使用,请联系技术人员
|
|
408
|
+
UNSUPPORTEDOPERATION_NOTALLOWED = 'UnsupportedOperation.NotAllowed'
|