tencentcloud-sdk-python 3.0.1387__py2.py3-none-any.whl → 3.0.1389__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/batch/v20170312/models.py +24 -26
- tencentcloud/bh/v20230418/models.py +315 -0
- tencentcloud/cam/v20190116/errorcodes.py +6 -0
- tencentcloud/cam/v20190116/models.py +0 -8
- tencentcloud/cbs/v20170312/models.py +8 -8
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +827 -0
- tencentcloud/cdwdoris/v20211228/models.py +64 -0
- tencentcloud/cfs/v20190719/models.py +28 -16
- tencentcloud/cfw/v20190904/models.py +4 -4
- tencentcloud/chc/v20230418/models.py +69 -4
- tencentcloud/ckafka/v20190819/ckafka_client.py +1 -1
- tencentcloud/ckafka/v20190819/models.py +29 -2
- tencentcloud/clb/v20180317/models.py +44 -44
- tencentcloud/cme/v20191029/errorcodes.py +6 -0
- tencentcloud/cme/v20191029/models.py +2 -2
- tencentcloud/csip/v20221121/models.py +18 -20
- tencentcloud/cynosdb/v20190107/models.py +239 -6
- tencentcloud/dlc/v20210125/models.py +18 -18
- tencentcloud/dnspod/v20210323/models.py +2 -2
- tencentcloud/dts/v20211206/models.py +20 -6
- tencentcloud/emr/v20190103/emr_client.py +92 -0
- tencentcloud/emr/v20190103/models.py +599 -0
- tencentcloud/es/v20180416/models.py +0 -2
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +15 -0
- tencentcloud/faceid/v20180301/models.py +88 -24
- tencentcloud/gs/v20191118/models.py +30 -0
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/models.py +8 -8
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +45 -0
- tencentcloud/oceanus/v20190422/models.py +747 -2
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/rum/v20210622/models.py +15 -0
- tencentcloud/ses/v20201002/models.py +180 -0
- tencentcloud/ses/v20201002/ses_client.py +23 -0
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +15 -0
- tencentcloud/tag/v20180813/models.py +0 -26
- tencentcloud/tione/v20211111/models.py +62 -0
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/vod_client.py +3 -3
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +14 -2
- tencentcloud/wedata/v20210820/models.py +524 -2
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1387.dist-info → tencentcloud_sdk_python-3.0.1389.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1387.dist-info → tencentcloud_sdk_python-3.0.1389.dist-info}/RECORD +55 -55
- {tencentcloud_sdk_python-3.0.1387.dist-info → tencentcloud_sdk_python-3.0.1389.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1387.dist-info → tencentcloud_sdk_python-3.0.1389.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1387.dist-info → tencentcloud_sdk_python-3.0.1389.dist-info}/top_level.txt +0 -0
@@ -32748,6 +32748,8 @@ class TextVehicleBack(AbstractModel):
|
|
32748
32748
|
:type AddressElectronic: str
|
32749
32749
|
:param _IssueAuthorityElectronic: 发证机关
|
32750
32750
|
:type IssueAuthorityElectronic: str
|
32751
|
+
:param _CarBodyColor: 车身颜色
|
32752
|
+
:type CarBodyColor: str
|
32751
32753
|
"""
|
32752
32754
|
self._PlateNo = None
|
32753
32755
|
self._FileNo = None
|
@@ -32763,6 +32765,7 @@ class TextVehicleBack(AbstractModel):
|
|
32763
32765
|
self._FuelType = None
|
32764
32766
|
self._AddressElectronic = None
|
32765
32767
|
self._IssueAuthorityElectronic = None
|
32768
|
+
self._CarBodyColor = None
|
32766
32769
|
|
32767
32770
|
@property
|
32768
32771
|
def PlateNo(self):
|
@@ -32931,6 +32934,17 @@ class TextVehicleBack(AbstractModel):
|
|
32931
32934
|
def IssueAuthorityElectronic(self, IssueAuthorityElectronic):
|
32932
32935
|
self._IssueAuthorityElectronic = IssueAuthorityElectronic
|
32933
32936
|
|
32937
|
+
@property
|
32938
|
+
def CarBodyColor(self):
|
32939
|
+
"""车身颜色
|
32940
|
+
:rtype: str
|
32941
|
+
"""
|
32942
|
+
return self._CarBodyColor
|
32943
|
+
|
32944
|
+
@CarBodyColor.setter
|
32945
|
+
def CarBodyColor(self, CarBodyColor):
|
32946
|
+
self._CarBodyColor = CarBodyColor
|
32947
|
+
|
32934
32948
|
|
32935
32949
|
def _deserialize(self, params):
|
32936
32950
|
self._PlateNo = params.get("PlateNo")
|
@@ -32947,6 +32961,7 @@ class TextVehicleBack(AbstractModel):
|
|
32947
32961
|
self._FuelType = params.get("FuelType")
|
32948
32962
|
self._AddressElectronic = params.get("AddressElectronic")
|
32949
32963
|
self._IssueAuthorityElectronic = params.get("IssueAuthorityElectronic")
|
32964
|
+
self._CarBodyColor = params.get("CarBodyColor")
|
32950
32965
|
memeber_set = set(params.keys())
|
32951
32966
|
for name, value in vars(self).items():
|
32952
32967
|
property_name = name[1:]
|
@@ -4710,6 +4710,8 @@ class DescribeDataPerformancePageRequest(AbstractModel):
|
|
4710
4710
|
:type Env: str
|
4711
4711
|
:param _NetStatus: 网络状态
|
4712
4712
|
:type NetStatus: str
|
4713
|
+
:param _WebVitals: 是否返回webvitals数据
|
4714
|
+
:type WebVitals: bool
|
4713
4715
|
"""
|
4714
4716
|
self._ID = None
|
4715
4717
|
self._StartTime = None
|
@@ -4734,6 +4736,7 @@ class DescribeDataPerformancePageRequest(AbstractModel):
|
|
4734
4736
|
self._CostType = None
|
4735
4737
|
self._Env = None
|
4736
4738
|
self._NetStatus = None
|
4739
|
+
self._WebVitals = None
|
4737
4740
|
|
4738
4741
|
@property
|
4739
4742
|
def ID(self):
|
@@ -4988,6 +4991,17 @@ class DescribeDataPerformancePageRequest(AbstractModel):
|
|
4988
4991
|
def NetStatus(self, NetStatus):
|
4989
4992
|
self._NetStatus = NetStatus
|
4990
4993
|
|
4994
|
+
@property
|
4995
|
+
def WebVitals(self):
|
4996
|
+
"""是否返回webvitals数据
|
4997
|
+
:rtype: bool
|
4998
|
+
"""
|
4999
|
+
return self._WebVitals
|
5000
|
+
|
5001
|
+
@WebVitals.setter
|
5002
|
+
def WebVitals(self, WebVitals):
|
5003
|
+
self._WebVitals = WebVitals
|
5004
|
+
|
4991
5005
|
|
4992
5006
|
def _deserialize(self, params):
|
4993
5007
|
self._ID = params.get("ID")
|
@@ -5013,6 +5027,7 @@ class DescribeDataPerformancePageRequest(AbstractModel):
|
|
5013
5027
|
self._CostType = params.get("CostType")
|
5014
5028
|
self._Env = params.get("Env")
|
5015
5029
|
self._NetStatus = params.get("NetStatus")
|
5030
|
+
self._WebVitals = params.get("WebVitals")
|
5016
5031
|
memeber_set = set(params.keys())
|
5017
5032
|
for name, value in vars(self).items():
|
5018
5033
|
property_name = name[1:]
|
@@ -18,6 +18,72 @@ import warnings
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
19
19
|
|
20
20
|
|
21
|
+
class AddressUnsubscribeConfigData(AbstractModel):
|
22
|
+
"""地址级退订配置
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _Address: 发信地址
|
29
|
+
:type Address: str
|
30
|
+
:param _UnsubscribeConfig: 退订链接选项 0: 不加入退订链接 1: 简体中文 2: 英文 3: 繁体中文 4: 西班牙语 5: 法语 6: 德语 7: 日语 8: 韩语 9: 阿拉伯语 10: 泰语
|
31
|
+
:type UnsubscribeConfig: str
|
32
|
+
:param _Status: 0:关闭,1:开启
|
33
|
+
:type Status: int
|
34
|
+
"""
|
35
|
+
self._Address = None
|
36
|
+
self._UnsubscribeConfig = None
|
37
|
+
self._Status = None
|
38
|
+
|
39
|
+
@property
|
40
|
+
def Address(self):
|
41
|
+
"""发信地址
|
42
|
+
:rtype: str
|
43
|
+
"""
|
44
|
+
return self._Address
|
45
|
+
|
46
|
+
@Address.setter
|
47
|
+
def Address(self, Address):
|
48
|
+
self._Address = Address
|
49
|
+
|
50
|
+
@property
|
51
|
+
def UnsubscribeConfig(self):
|
52
|
+
"""退订链接选项 0: 不加入退订链接 1: 简体中文 2: 英文 3: 繁体中文 4: 西班牙语 5: 法语 6: 德语 7: 日语 8: 韩语 9: 阿拉伯语 10: 泰语
|
53
|
+
:rtype: str
|
54
|
+
"""
|
55
|
+
return self._UnsubscribeConfig
|
56
|
+
|
57
|
+
@UnsubscribeConfig.setter
|
58
|
+
def UnsubscribeConfig(self, UnsubscribeConfig):
|
59
|
+
self._UnsubscribeConfig = UnsubscribeConfig
|
60
|
+
|
61
|
+
@property
|
62
|
+
def Status(self):
|
63
|
+
"""0:关闭,1:开启
|
64
|
+
:rtype: int
|
65
|
+
"""
|
66
|
+
return self._Status
|
67
|
+
|
68
|
+
@Status.setter
|
69
|
+
def Status(self, Status):
|
70
|
+
self._Status = Status
|
71
|
+
|
72
|
+
|
73
|
+
def _deserialize(self, params):
|
74
|
+
self._Address = params.get("Address")
|
75
|
+
self._UnsubscribeConfig = params.get("UnsubscribeConfig")
|
76
|
+
self._Status = params.get("Status")
|
77
|
+
memeber_set = set(params.keys())
|
78
|
+
for name, value in vars(self).items():
|
79
|
+
property_name = name[1:]
|
80
|
+
if property_name in memeber_set:
|
81
|
+
memeber_set.remove(property_name)
|
82
|
+
if len(memeber_set) > 0:
|
83
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
84
|
+
|
85
|
+
|
86
|
+
|
21
87
|
class Attachment(AbstractModel):
|
22
88
|
"""附件结构,包含附件名和base64之后的附件内容。
|
23
89
|
|
@@ -2627,6 +2693,120 @@ class GetStatisticsReportResponse(AbstractModel):
|
|
2627
2693
|
self._RequestId = params.get("RequestId")
|
2628
2694
|
|
2629
2695
|
|
2696
|
+
class ListAddressUnsubscribeConfigRequest(AbstractModel):
|
2697
|
+
"""ListAddressUnsubscribeConfig请求参数结构体
|
2698
|
+
|
2699
|
+
"""
|
2700
|
+
|
2701
|
+
def __init__(self):
|
2702
|
+
r"""
|
2703
|
+
:param _Offset: 偏移量
|
2704
|
+
:type Offset: int
|
2705
|
+
:param _Limit: 拉取最大条数,不超过100
|
2706
|
+
:type Limit: str
|
2707
|
+
"""
|
2708
|
+
self._Offset = None
|
2709
|
+
self._Limit = None
|
2710
|
+
|
2711
|
+
@property
|
2712
|
+
def Offset(self):
|
2713
|
+
"""偏移量
|
2714
|
+
:rtype: int
|
2715
|
+
"""
|
2716
|
+
return self._Offset
|
2717
|
+
|
2718
|
+
@Offset.setter
|
2719
|
+
def Offset(self, Offset):
|
2720
|
+
self._Offset = Offset
|
2721
|
+
|
2722
|
+
@property
|
2723
|
+
def Limit(self):
|
2724
|
+
"""拉取最大条数,不超过100
|
2725
|
+
:rtype: str
|
2726
|
+
"""
|
2727
|
+
return self._Limit
|
2728
|
+
|
2729
|
+
@Limit.setter
|
2730
|
+
def Limit(self, Limit):
|
2731
|
+
self._Limit = Limit
|
2732
|
+
|
2733
|
+
|
2734
|
+
def _deserialize(self, params):
|
2735
|
+
self._Offset = params.get("Offset")
|
2736
|
+
self._Limit = params.get("Limit")
|
2737
|
+
memeber_set = set(params.keys())
|
2738
|
+
for name, value in vars(self).items():
|
2739
|
+
property_name = name[1:]
|
2740
|
+
if property_name in memeber_set:
|
2741
|
+
memeber_set.remove(property_name)
|
2742
|
+
if len(memeber_set) > 0:
|
2743
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2744
|
+
|
2745
|
+
|
2746
|
+
|
2747
|
+
class ListAddressUnsubscribeConfigResponse(AbstractModel):
|
2748
|
+
"""ListAddressUnsubscribeConfig返回参数结构体
|
2749
|
+
|
2750
|
+
"""
|
2751
|
+
|
2752
|
+
def __init__(self):
|
2753
|
+
r"""
|
2754
|
+
:param _AddressUnsubscribeConfigList: 地址级退订配置
|
2755
|
+
:type AddressUnsubscribeConfigList: list of AddressUnsubscribeConfigData
|
2756
|
+
:param _Total: 总数
|
2757
|
+
:type Total: int
|
2758
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2759
|
+
:type RequestId: str
|
2760
|
+
"""
|
2761
|
+
self._AddressUnsubscribeConfigList = None
|
2762
|
+
self._Total = None
|
2763
|
+
self._RequestId = None
|
2764
|
+
|
2765
|
+
@property
|
2766
|
+
def AddressUnsubscribeConfigList(self):
|
2767
|
+
"""地址级退订配置
|
2768
|
+
:rtype: list of AddressUnsubscribeConfigData
|
2769
|
+
"""
|
2770
|
+
return self._AddressUnsubscribeConfigList
|
2771
|
+
|
2772
|
+
@AddressUnsubscribeConfigList.setter
|
2773
|
+
def AddressUnsubscribeConfigList(self, AddressUnsubscribeConfigList):
|
2774
|
+
self._AddressUnsubscribeConfigList = AddressUnsubscribeConfigList
|
2775
|
+
|
2776
|
+
@property
|
2777
|
+
def Total(self):
|
2778
|
+
"""总数
|
2779
|
+
:rtype: int
|
2780
|
+
"""
|
2781
|
+
return self._Total
|
2782
|
+
|
2783
|
+
@Total.setter
|
2784
|
+
def Total(self, Total):
|
2785
|
+
self._Total = Total
|
2786
|
+
|
2787
|
+
@property
|
2788
|
+
def RequestId(self):
|
2789
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2790
|
+
:rtype: str
|
2791
|
+
"""
|
2792
|
+
return self._RequestId
|
2793
|
+
|
2794
|
+
@RequestId.setter
|
2795
|
+
def RequestId(self, RequestId):
|
2796
|
+
self._RequestId = RequestId
|
2797
|
+
|
2798
|
+
|
2799
|
+
def _deserialize(self, params):
|
2800
|
+
if params.get("AddressUnsubscribeConfigList") is not None:
|
2801
|
+
self._AddressUnsubscribeConfigList = []
|
2802
|
+
for item in params.get("AddressUnsubscribeConfigList"):
|
2803
|
+
obj = AddressUnsubscribeConfigData()
|
2804
|
+
obj._deserialize(item)
|
2805
|
+
self._AddressUnsubscribeConfigList.append(obj)
|
2806
|
+
self._Total = params.get("Total")
|
2807
|
+
self._RequestId = params.get("RequestId")
|
2808
|
+
|
2809
|
+
|
2630
2810
|
class ListBlackEmailAddressRequest(AbstractModel):
|
2631
2811
|
"""ListBlackEmailAddress请求参数结构体
|
2632
2812
|
|
@@ -441,6 +441,29 @@ class SesClient(AbstractClient):
|
|
441
441
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
442
442
|
|
443
443
|
|
444
|
+
def ListAddressUnsubscribeConfig(self, request):
|
445
|
+
"""获取地址级退订配置列表
|
446
|
+
|
447
|
+
:param request: Request instance for ListAddressUnsubscribeConfig.
|
448
|
+
:type request: :class:`tencentcloud.ses.v20201002.models.ListAddressUnsubscribeConfigRequest`
|
449
|
+
:rtype: :class:`tencentcloud.ses.v20201002.models.ListAddressUnsubscribeConfigResponse`
|
450
|
+
|
451
|
+
"""
|
452
|
+
try:
|
453
|
+
params = request._serialize()
|
454
|
+
headers = request.headers
|
455
|
+
body = self.call("ListAddressUnsubscribeConfig", params, headers=headers)
|
456
|
+
response = json.loads(body)
|
457
|
+
model = models.ListAddressUnsubscribeConfigResponse()
|
458
|
+
model._deserialize(response["Response"])
|
459
|
+
return model
|
460
|
+
except Exception as e:
|
461
|
+
if isinstance(e, TencentCloudSDKException):
|
462
|
+
raise
|
463
|
+
else:
|
464
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
465
|
+
|
466
|
+
|
444
467
|
def ListBlackEmailAddress(self, request):
|
445
468
|
"""腾讯云发送的邮件一旦被收件方判断为硬退(Hard Bounce),腾讯云会拉黑该地址,并不允许所有用户向该地址发送邮件。成为邮箱黑名单。如果业务方确认是误判,可以从黑名单中删除。
|
446
469
|
|
@@ -116,6 +116,9 @@ FAILEDOPERATION_CERTIFICATEMATCHERROR = 'FailedOperation.CertificateMatchError'
|
|
116
116
|
# 证书与私钥不对应。
|
117
117
|
FAILEDOPERATION_CERTIFICATEMISMATCH = 'FailedOperation.CertificateMismatch'
|
118
118
|
|
119
|
+
# 该证书已设置成不允许下载。
|
120
|
+
FAILEDOPERATION_CERTIFICATENOTALLOWDOWNLOAD = 'FailedOperation.CertificateNotAllowDownload'
|
121
|
+
|
119
122
|
# 证书不可用,请检查后再试。
|
120
123
|
FAILEDOPERATION_CERTIFICATENOTAVAILABLE = 'FailedOperation.CertificateNotAvailable'
|
121
124
|
|
@@ -3613,10 +3613,13 @@ class ClbInstanceDetail(AbstractModel):
|
|
3613
3613
|
:type LoadBalancerName: str
|
3614
3614
|
:param _Listeners: CLB监听器列表
|
3615
3615
|
:type Listeners: list of ClbListener
|
3616
|
+
:param _Forward: 负载均衡类型,0 传统型负载均衡; 1 应用型负载均衡
|
3617
|
+
:type Forward: int
|
3616
3618
|
"""
|
3617
3619
|
self._LoadBalancerId = None
|
3618
3620
|
self._LoadBalancerName = None
|
3619
3621
|
self._Listeners = None
|
3622
|
+
self._Forward = None
|
3620
3623
|
|
3621
3624
|
@property
|
3622
3625
|
def LoadBalancerId(self):
|
@@ -3651,6 +3654,17 @@ class ClbInstanceDetail(AbstractModel):
|
|
3651
3654
|
def Listeners(self, Listeners):
|
3652
3655
|
self._Listeners = Listeners
|
3653
3656
|
|
3657
|
+
@property
|
3658
|
+
def Forward(self):
|
3659
|
+
"""负载均衡类型,0 传统型负载均衡; 1 应用型负载均衡
|
3660
|
+
:rtype: int
|
3661
|
+
"""
|
3662
|
+
return self._Forward
|
3663
|
+
|
3664
|
+
@Forward.setter
|
3665
|
+
def Forward(self, Forward):
|
3666
|
+
self._Forward = Forward
|
3667
|
+
|
3654
3668
|
|
3655
3669
|
def _deserialize(self, params):
|
3656
3670
|
self._LoadBalancerId = params.get("LoadBalancerId")
|
@@ -3661,6 +3675,7 @@ class ClbInstanceDetail(AbstractModel):
|
|
3661
3675
|
obj = ClbListener()
|
3662
3676
|
obj._deserialize(item)
|
3663
3677
|
self._Listeners.append(obj)
|
3678
|
+
self._Forward = params.get("Forward")
|
3664
3679
|
memeber_set = set(params.keys())
|
3665
3680
|
for name, value in vars(self).items():
|
3666
3681
|
property_name = name[1:]
|
@@ -1693,7 +1693,6 @@ class DescribeResourceTagsResponse(AbstractModel):
|
|
1693
1693
|
:param _Offset: 数据位移偏量
|
1694
1694
|
:type Offset: int
|
1695
1695
|
:param _Limit: 每页大小
|
1696
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1697
1696
|
:type Limit: int
|
1698
1697
|
:param _Rows: 资源标签
|
1699
1698
|
:type Rows: list of TagResource
|
@@ -1731,7 +1730,6 @@ class DescribeResourceTagsResponse(AbstractModel):
|
|
1731
1730
|
@property
|
1732
1731
|
def Limit(self):
|
1733
1732
|
"""每页大小
|
1734
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1735
1733
|
:rtype: int
|
1736
1734
|
"""
|
1737
1735
|
return self._Limit
|
@@ -1934,7 +1932,6 @@ class DescribeResourcesByTagsResponse(AbstractModel):
|
|
1934
1932
|
:param _Offset: 数据位移偏量
|
1935
1933
|
:type Offset: int
|
1936
1934
|
:param _Limit: 每页大小
|
1937
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1938
1935
|
:type Limit: int
|
1939
1936
|
:param _Rows: 资源标签
|
1940
1937
|
:type Rows: list of ResourceTag
|
@@ -1972,7 +1969,6 @@ class DescribeResourcesByTagsResponse(AbstractModel):
|
|
1972
1969
|
@property
|
1973
1970
|
def Limit(self):
|
1974
1971
|
"""每页大小
|
1975
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1976
1972
|
:rtype: int
|
1977
1973
|
"""
|
1978
1974
|
return self._Limit
|
@@ -4376,10 +4372,8 @@ class ResourceIdTag(AbstractModel):
|
|
4376
4372
|
def __init__(self):
|
4377
4373
|
r"""
|
4378
4374
|
:param _ResourceId: 资源唯一标识
|
4379
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4380
4375
|
:type ResourceId: str
|
4381
4376
|
:param _TagKeyValues: 标签键值对
|
4382
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4383
4377
|
:type TagKeyValues: list of Tag
|
4384
4378
|
"""
|
4385
4379
|
self._ResourceId = None
|
@@ -4388,7 +4382,6 @@ class ResourceIdTag(AbstractModel):
|
|
4388
4382
|
@property
|
4389
4383
|
def ResourceId(self):
|
4390
4384
|
"""资源唯一标识
|
4391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4392
4385
|
:rtype: str
|
4393
4386
|
"""
|
4394
4387
|
return self._ResourceId
|
@@ -4400,7 +4393,6 @@ class ResourceIdTag(AbstractModel):
|
|
4400
4393
|
@property
|
4401
4394
|
def TagKeyValues(self):
|
4402
4395
|
"""标签键值对
|
4403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4404
4396
|
:rtype: list of Tag
|
4405
4397
|
"""
|
4406
4398
|
return self._TagKeyValues
|
@@ -4436,19 +4428,14 @@ class ResourceTag(AbstractModel):
|
|
4436
4428
|
def __init__(self):
|
4437
4429
|
r"""
|
4438
4430
|
:param _ResourceRegion: 资源所在地域
|
4439
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4440
4431
|
:type ResourceRegion: str
|
4441
4432
|
:param _ServiceType: 业务类型
|
4442
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4443
4433
|
:type ServiceType: str
|
4444
4434
|
:param _ResourcePrefix: 资源前缀
|
4445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4446
4435
|
:type ResourcePrefix: str
|
4447
4436
|
:param _ResourceId: 资源唯一标记
|
4448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4449
4437
|
:type ResourceId: str
|
4450
4438
|
:param _Tags: 资源标签
|
4451
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4452
4439
|
:type Tags: list of Tag
|
4453
4440
|
"""
|
4454
4441
|
self._ResourceRegion = None
|
@@ -4460,7 +4447,6 @@ class ResourceTag(AbstractModel):
|
|
4460
4447
|
@property
|
4461
4448
|
def ResourceRegion(self):
|
4462
4449
|
"""资源所在地域
|
4463
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4464
4450
|
:rtype: str
|
4465
4451
|
"""
|
4466
4452
|
return self._ResourceRegion
|
@@ -4472,7 +4458,6 @@ class ResourceTag(AbstractModel):
|
|
4472
4458
|
@property
|
4473
4459
|
def ServiceType(self):
|
4474
4460
|
"""业务类型
|
4475
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4476
4461
|
:rtype: str
|
4477
4462
|
"""
|
4478
4463
|
return self._ServiceType
|
@@ -4484,7 +4469,6 @@ class ResourceTag(AbstractModel):
|
|
4484
4469
|
@property
|
4485
4470
|
def ResourcePrefix(self):
|
4486
4471
|
"""资源前缀
|
4487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4488
4472
|
:rtype: str
|
4489
4473
|
"""
|
4490
4474
|
return self._ResourcePrefix
|
@@ -4496,7 +4480,6 @@ class ResourceTag(AbstractModel):
|
|
4496
4480
|
@property
|
4497
4481
|
def ResourceId(self):
|
4498
4482
|
"""资源唯一标记
|
4499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4500
4483
|
:rtype: str
|
4501
4484
|
"""
|
4502
4485
|
return self._ResourceId
|
@@ -4508,7 +4491,6 @@ class ResourceTag(AbstractModel):
|
|
4508
4491
|
@property
|
4509
4492
|
def Tags(self):
|
4510
4493
|
"""资源标签
|
4511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4512
4494
|
:rtype: list of Tag
|
4513
4495
|
"""
|
4514
4496
|
return self._Tags
|
@@ -4609,7 +4591,6 @@ class Tag(AbstractModel):
|
|
4609
4591
|
:param _TagValue: 标签值
|
4610
4592
|
:type TagValue: str
|
4611
4593
|
:param _Category: 标签类型。取值: Custom:自定义标签。 System:系统标签。 All:全部标签。 默认值:All。
|
4612
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4613
4594
|
:type Category: str
|
4614
4595
|
"""
|
4615
4596
|
self._TagKey = None
|
@@ -4641,7 +4622,6 @@ class Tag(AbstractModel):
|
|
4641
4622
|
@property
|
4642
4623
|
def Category(self):
|
4643
4624
|
"""标签类型。取值: Custom:自定义标签。 System:系统标签。 All:全部标签。 默认值:All。
|
4644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4645
4625
|
:rtype: str
|
4646
4626
|
"""
|
4647
4627
|
return self._Category
|
@@ -4770,10 +4750,8 @@ class TagResource(AbstractModel):
|
|
4770
4750
|
:param _TagValueMd5: 标签值MD5值
|
4771
4751
|
:type TagValueMd5: str
|
4772
4752
|
:param _ServiceType: 资源类型
|
4773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4774
4753
|
:type ServiceType: str
|
4775
4754
|
:param _Category: 标签类型。取值: Custom:自定义标签。 System:系统标签。
|
4776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4777
4755
|
:type Category: str
|
4778
4756
|
"""
|
4779
4757
|
self._TagKey = None
|
@@ -4842,7 +4820,6 @@ class TagResource(AbstractModel):
|
|
4842
4820
|
@property
|
4843
4821
|
def ServiceType(self):
|
4844
4822
|
"""资源类型
|
4845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4846
4823
|
:rtype: str
|
4847
4824
|
"""
|
4848
4825
|
return self._ServiceType
|
@@ -4854,7 +4831,6 @@ class TagResource(AbstractModel):
|
|
4854
4831
|
@property
|
4855
4832
|
def Category(self):
|
4856
4833
|
"""标签类型。取值: Custom:自定义标签。 System:系统标签。
|
4857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4858
4834
|
:rtype: str
|
4859
4835
|
"""
|
4860
4836
|
return self._Category
|
@@ -5014,7 +4990,6 @@ class TagWithDelete(AbstractModel):
|
|
5014
4990
|
:param _CanDelete: 是否可以删除
|
5015
4991
|
:type CanDelete: int
|
5016
4992
|
:param _Category: 标签类型。取值: Custom:自定义标签。 System:系统标签。 All:全部标签。 默认值:All。
|
5017
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5018
4993
|
:type Category: str
|
5019
4994
|
"""
|
5020
4995
|
self._TagKey = None
|
@@ -5058,7 +5033,6 @@ class TagWithDelete(AbstractModel):
|
|
5058
5033
|
@property
|
5059
5034
|
def Category(self):
|
5060
5035
|
"""标签类型。取值: Custom:自定义标签。 System:系统标签。 All:全部标签。 默认值:All。
|
5061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5062
5036
|
:rtype: str
|
5063
5037
|
"""
|
5064
5038
|
return self._Category
|
@@ -15678,6 +15678,10 @@ class Pod(AbstractModel):
|
|
15678
15678
|
:type CrossTenantENIInfo: :class:`tencentcloud.tione.v20211111.models.CrossTenantENIInfo`
|
15679
15679
|
:param _Status: 实例的状态信息
|
15680
15680
|
:type Status: str
|
15681
|
+
:param _StartScheduleTime: 实例的开始调度时间
|
15682
|
+
:type StartScheduleTime: str
|
15683
|
+
:param _Message: 实例状态的补充信息
|
15684
|
+
:type Message: str
|
15681
15685
|
"""
|
15682
15686
|
self._Name = None
|
15683
15687
|
self._Uid = None
|
@@ -15689,6 +15693,8 @@ class Pod(AbstractModel):
|
|
15689
15693
|
self._ContainerInfos = None
|
15690
15694
|
self._CrossTenantENIInfo = None
|
15691
15695
|
self._Status = None
|
15696
|
+
self._StartScheduleTime = None
|
15697
|
+
self._Message = None
|
15692
15698
|
|
15693
15699
|
@property
|
15694
15700
|
def Name(self):
|
@@ -15813,6 +15819,28 @@ class Pod(AbstractModel):
|
|
15813
15819
|
def Status(self, Status):
|
15814
15820
|
self._Status = Status
|
15815
15821
|
|
15822
|
+
@property
|
15823
|
+
def StartScheduleTime(self):
|
15824
|
+
"""实例的开始调度时间
|
15825
|
+
:rtype: str
|
15826
|
+
"""
|
15827
|
+
return self._StartScheduleTime
|
15828
|
+
|
15829
|
+
@StartScheduleTime.setter
|
15830
|
+
def StartScheduleTime(self, StartScheduleTime):
|
15831
|
+
self._StartScheduleTime = StartScheduleTime
|
15832
|
+
|
15833
|
+
@property
|
15834
|
+
def Message(self):
|
15835
|
+
"""实例状态的补充信息
|
15836
|
+
:rtype: str
|
15837
|
+
"""
|
15838
|
+
return self._Message
|
15839
|
+
|
15840
|
+
@Message.setter
|
15841
|
+
def Message(self, Message):
|
15842
|
+
self._Message = Message
|
15843
|
+
|
15816
15844
|
|
15817
15845
|
def _deserialize(self, params):
|
15818
15846
|
self._Name = params.get("Name")
|
@@ -15834,6 +15862,8 @@ class Pod(AbstractModel):
|
|
15834
15862
|
self._CrossTenantENIInfo = CrossTenantENIInfo()
|
15835
15863
|
self._CrossTenantENIInfo._deserialize(params.get("CrossTenantENIInfo"))
|
15836
15864
|
self._Status = params.get("Status")
|
15865
|
+
self._StartScheduleTime = params.get("StartScheduleTime")
|
15866
|
+
self._Message = params.get("Message")
|
15837
15867
|
memeber_set = set(params.keys())
|
15838
15868
|
for name, value in vars(self).items():
|
15839
15869
|
property_name = name[1:]
|
@@ -17542,6 +17572,9 @@ DEFAULT: 其他来源
|
|
17542
17572
|
:param _InstancePerReplicas: 单副本下的实例数,仅在部署类型为DIST时生效,默认1
|
17543
17573
|
注意:此字段可能返回 null,表示取不到有效值。
|
17544
17574
|
:type InstancePerReplicas: str
|
17575
|
+
:param _MonitorSource: 用于监控查询的Source
|
17576
|
+
枚举值,部分情况下与CreateSource不同,通过该字段兼容
|
17577
|
+
:type MonitorSource: str
|
17545
17578
|
"""
|
17546
17579
|
self._ServiceGroupId = None
|
17547
17580
|
self._ServiceId = None
|
@@ -17576,6 +17609,7 @@ DEFAULT: 其他来源
|
|
17576
17609
|
self._ArchiveStatus = None
|
17577
17610
|
self._DeployType = None
|
17578
17611
|
self._InstancePerReplicas = None
|
17612
|
+
self._MonitorSource = None
|
17579
17613
|
|
17580
17614
|
@property
|
17581
17615
|
def ServiceGroupId(self):
|
@@ -17988,6 +18022,18 @@ DEFAULT: 其他来源
|
|
17988
18022
|
def InstancePerReplicas(self, InstancePerReplicas):
|
17989
18023
|
self._InstancePerReplicas = InstancePerReplicas
|
17990
18024
|
|
18025
|
+
@property
|
18026
|
+
def MonitorSource(self):
|
18027
|
+
"""用于监控查询的Source
|
18028
|
+
枚举值,部分情况下与CreateSource不同,通过该字段兼容
|
18029
|
+
:rtype: str
|
18030
|
+
"""
|
18031
|
+
return self._MonitorSource
|
18032
|
+
|
18033
|
+
@MonitorSource.setter
|
18034
|
+
def MonitorSource(self, MonitorSource):
|
18035
|
+
self._MonitorSource = MonitorSource
|
18036
|
+
|
17991
18037
|
|
17992
18038
|
def _deserialize(self, params):
|
17993
18039
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
@@ -18034,6 +18080,7 @@ DEFAULT: 其他来源
|
|
18034
18080
|
self._ArchiveStatus = params.get("ArchiveStatus")
|
18035
18081
|
self._DeployType = params.get("DeployType")
|
18036
18082
|
self._InstancePerReplicas = params.get("InstancePerReplicas")
|
18083
|
+
self._MonitorSource = params.get("MonitorSource")
|
18037
18084
|
memeber_set = set(params.keys())
|
18038
18085
|
for name, value in vars(self).items():
|
18039
18086
|
property_name = name[1:]
|
@@ -18566,6 +18613,8 @@ UPDATING 更新中
|
|
18566
18613
|
:type AuthTokens: list of AuthToken
|
18567
18614
|
:param _MonitorSource: 用于监控的创建来源字段
|
18568
18615
|
:type MonitorSource: str
|
18616
|
+
:param _SubUinName: 子用户的 nickname
|
18617
|
+
:type SubUinName: str
|
18569
18618
|
"""
|
18570
18619
|
self._ServiceGroupId = None
|
18571
18620
|
self._ServiceGroupName = None
|
@@ -18590,6 +18639,7 @@ UPDATING 更新中
|
|
18590
18639
|
self._AuthorizationEnable = None
|
18591
18640
|
self._AuthTokens = None
|
18592
18641
|
self._MonitorSource = None
|
18642
|
+
self._SubUinName = None
|
18593
18643
|
|
18594
18644
|
@property
|
18595
18645
|
def ServiceGroupId(self):
|
@@ -18873,6 +18923,17 @@ UPDATING 更新中
|
|
18873
18923
|
def MonitorSource(self, MonitorSource):
|
18874
18924
|
self._MonitorSource = MonitorSource
|
18875
18925
|
|
18926
|
+
@property
|
18927
|
+
def SubUinName(self):
|
18928
|
+
"""子用户的 nickname
|
18929
|
+
:rtype: str
|
18930
|
+
"""
|
18931
|
+
return self._SubUinName
|
18932
|
+
|
18933
|
+
@SubUinName.setter
|
18934
|
+
def SubUinName(self, SubUinName):
|
18935
|
+
self._SubUinName = SubUinName
|
18936
|
+
|
18876
18937
|
|
18877
18938
|
def _deserialize(self, params):
|
18878
18939
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
@@ -18913,6 +18974,7 @@ UPDATING 更新中
|
|
18913
18974
|
obj._deserialize(item)
|
18914
18975
|
self._AuthTokens.append(obj)
|
18915
18976
|
self._MonitorSource = params.get("MonitorSource")
|
18977
|
+
self._SubUinName = params.get("SubUinName")
|
18916
18978
|
memeber_set = set(params.keys())
|
18917
18979
|
for name, value in vars(self).items():
|
18918
18980
|
property_name = name[1:]
|
@@ -662,6 +662,9 @@ LIMITEXCEEDED_KEYFRAMEDESCCOUNTREACHMAX = 'LimitExceeded.KeyFrameDescCountReachM
|
|
662
662
|
# 播放列表长度太大。
|
663
663
|
LIMITEXCEEDED_PLAYLIST = 'LimitExceeded.PlayList'
|
664
664
|
|
665
|
+
# 播单列表长度超过上限。
|
666
|
+
LIMITEXCEEDED_ROUNDPLAYLIST = 'LimitExceeded.RoundPlaylist'
|
667
|
+
|
665
668
|
# 超过播单总数限制。
|
666
669
|
LIMITEXCEEDED_ROUNDPLAYS = 'LimitExceeded.RoundPlays'
|
667
670
|
|