tencentcloud-sdk-python 3.0.1112__py2.py3-none-any.whl → 3.0.1114__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/cbs/v20170312/models.py +13 -1
- tencentcloud/cdn/v20180606/models.py +4 -4
- tencentcloud/common/abstract_client.py +7 -3
- tencentcloud/common/profile/client_profile.py +12 -1
- tencentcloud/cwp/v20180228/models.py +62 -2
- tencentcloud/dlc/v20210125/models.py +13 -0
- tencentcloud/ess/v20201111/models.py +4 -0
- tencentcloud/faceid/v20180301/models.py +3 -2
- tencentcloud/hai/v20230812/models.py +13 -0
- tencentcloud/lcic/v20220817/models.py +16 -5
- tencentcloud/live/v20180801/models.py +51 -0
- tencentcloud/tag/v20180813/models.py +4 -4
- tencentcloud/teo/v20220901/models.py +17 -4
- tencentcloud/teo/v20220901/teo_client.py +1 -1
- tencentcloud/trtc/v20190722/errorcodes.py +9 -0
- tencentcloud/trtc/v20190722/models.py +325 -1
- tencentcloud/trtc/v20190722/trtc_client.py +70 -0
- {tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -5458,11 +5458,14 @@ class ModifyDisksRenewFlagRequest(AbstractModel):
|
|
|
5458
5458
|
r"""
|
|
5459
5459
|
:param _DiskIds: 一个或多个待操作的云硬盘ID。
|
|
5460
5460
|
:type DiskIds: list of str
|
|
5461
|
-
:param _RenewFlag:
|
|
5461
|
+
:param _RenewFlag: 云硬盘的自动续费标识。取值范围:<ul><li>NOTIFY_AND_AUTO_RENEW:通知过期且自动续费</li><li>NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费</li></ul>
|
|
5462
5462
|
:type RenewFlag: str
|
|
5463
|
+
:param _AutoRenewPeriod: 该参数支持设置云硬盘的自动续费周期,单位为月。
|
|
5464
|
+
:type AutoRenewPeriod: int
|
|
5463
5465
|
"""
|
|
5464
5466
|
self._DiskIds = None
|
|
5465
5467
|
self._RenewFlag = None
|
|
5468
|
+
self._AutoRenewPeriod = None
|
|
5466
5469
|
|
|
5467
5470
|
@property
|
|
5468
5471
|
def DiskIds(self):
|
|
@@ -5480,10 +5483,19 @@ class ModifyDisksRenewFlagRequest(AbstractModel):
|
|
|
5480
5483
|
def RenewFlag(self, RenewFlag):
|
|
5481
5484
|
self._RenewFlag = RenewFlag
|
|
5482
5485
|
|
|
5486
|
+
@property
|
|
5487
|
+
def AutoRenewPeriod(self):
|
|
5488
|
+
return self._AutoRenewPeriod
|
|
5489
|
+
|
|
5490
|
+
@AutoRenewPeriod.setter
|
|
5491
|
+
def AutoRenewPeriod(self, AutoRenewPeriod):
|
|
5492
|
+
self._AutoRenewPeriod = AutoRenewPeriod
|
|
5493
|
+
|
|
5483
5494
|
|
|
5484
5495
|
def _deserialize(self, params):
|
|
5485
5496
|
self._DiskIds = params.get("DiskIds")
|
|
5486
5497
|
self._RenewFlag = params.get("RenewFlag")
|
|
5498
|
+
self._AutoRenewPeriod = params.get("AutoRenewPeriod")
|
|
5487
5499
|
memeber_set = set(params.keys())
|
|
5488
5500
|
for name, value in vars(self).items():
|
|
5489
5501
|
property_name = name[1:]
|
|
@@ -16526,8 +16526,8 @@ blacklist:黑名单
|
|
|
16526
16526
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16527
16527
|
:type FilterType: str
|
|
16528
16528
|
:param _Filters: IP 黑白名单列表
|
|
16529
|
-
支持 X.X.X.X
|
|
16530
|
-
最多可填充
|
|
16529
|
+
支持 X.X.X.X 格式IPV4地址 或X:X:X:X:X:X:X:X 格式IPV6地址, 或网段格式/X(IPV4:1≤X≤32;IPV6:1≤X≤128)
|
|
16530
|
+
最多可填充 200 个白名单或 200 个黑名单;
|
|
16531
16531
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16532
16532
|
:type Filters: list of str
|
|
16533
16533
|
:param _FilterRules: IP 黑白名单分路径配置,白名单功能
|
|
@@ -16618,8 +16618,8 @@ blacklist:黑名单
|
|
|
16618
16618
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16619
16619
|
:type FilterType: str
|
|
16620
16620
|
:param _Filters: IP 黑白名单列表
|
|
16621
|
-
支持 X.X.X.X
|
|
16622
|
-
最多可填充
|
|
16621
|
+
支持 X.X.X.X 格式IPV4地址 或X:X:X:X:X:X:X:X 格式IPV6地址, 或网段格式/X(IPV4:1≤X≤32;IPV6:1≤X≤128)
|
|
16622
|
+
最多可填充 200 个白名单或 500 个黑名单;
|
|
16623
16623
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16624
16624
|
:type Filters: list of str
|
|
16625
16625
|
:param _RuleType: 规则类型:
|
|
@@ -86,6 +86,10 @@ class AbstractClient(object):
|
|
|
86
86
|
if self.profile.region_breaker_profile is None:
|
|
87
87
|
self.profile.region_breaker_profile = RegionBreakerProfile()
|
|
88
88
|
self.circuit_breaker = CircuitBreaker(self.profile.region_breaker_profile)
|
|
89
|
+
if self.profile.request_client:
|
|
90
|
+
self.request_client = self._sdkVersion + "; " + self.profile.request_client
|
|
91
|
+
else:
|
|
92
|
+
self.request_client = self._sdkVersion
|
|
89
93
|
|
|
90
94
|
def _fix_params(self, params):
|
|
91
95
|
if not isinstance(params, (dict,)):
|
|
@@ -135,7 +139,7 @@ class AbstractClient(object):
|
|
|
135
139
|
def _build_req_with_old_signature(self, action, params, req):
|
|
136
140
|
params = copy.deepcopy(self._fix_params(params))
|
|
137
141
|
params['Action'] = action[0].upper() + action[1:]
|
|
138
|
-
params['RequestClient'] = self.
|
|
142
|
+
params['RequestClient'] = self.request_client
|
|
139
143
|
params['Nonce'] = random.randint(1, sys.maxsize)
|
|
140
144
|
params['Timestamp'] = int(time.time())
|
|
141
145
|
params['Version'] = self._apiVersion
|
|
@@ -184,7 +188,7 @@ class AbstractClient(object):
|
|
|
184
188
|
timestamp = int(time.time())
|
|
185
189
|
req.header["Host"] = endpoint
|
|
186
190
|
req.header["X-TC-Action"] = action[0].upper() + action[1:]
|
|
187
|
-
req.header["X-TC-RequestClient"] = self.
|
|
191
|
+
req.header["X-TC-RequestClient"] = self.request_client
|
|
188
192
|
req.header["X-TC-Timestamp"] = str(timestamp)
|
|
189
193
|
req.header["X-TC-Version"] = self._apiVersion
|
|
190
194
|
if self.profile.unsignedPayload is True:
|
|
@@ -275,7 +279,7 @@ class AbstractClient(object):
|
|
|
275
279
|
timestamp = int(time.time())
|
|
276
280
|
req.header["Host"] = endpoint
|
|
277
281
|
req.header["X-TC-Action"] = action[0].upper() + action[1:]
|
|
278
|
-
req.header["X-TC-RequestClient"] = self.
|
|
282
|
+
req.header["X-TC-RequestClient"] = self.request_client
|
|
279
283
|
req.header["X-TC-Timestamp"] = str(timestamp)
|
|
280
284
|
req.header["X-TC-Version"] = self._apiVersion
|
|
281
285
|
if self.profile.unsignedPayload is True:
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
|
+
import re
|
|
15
|
+
import warnings
|
|
14
16
|
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
|
|
15
17
|
from tencentcloud.common.profile.http_profile import HttpProfile
|
|
16
18
|
|
|
@@ -19,7 +21,7 @@ class ClientProfile(object):
|
|
|
19
21
|
unsignedPayload = False
|
|
20
22
|
|
|
21
23
|
def __init__(self, signMethod=None, httpProfile=None, language="zh-CN",
|
|
22
|
-
disable_region_breaker=True, region_breaker_profile=None):
|
|
24
|
+
disable_region_breaker=True, region_breaker_profile=None, request_client=None):
|
|
23
25
|
"""SDK profile.
|
|
24
26
|
|
|
25
27
|
:param signMethod: The signature method, valid choice: HmacSHA1, HmacSHA256, TC3-HMAC-SHA256
|
|
@@ -32,6 +34,8 @@ class ClientProfile(object):
|
|
|
32
34
|
:type disable_region_breaker: bool
|
|
33
35
|
:param region_breaker_profile: The region breaker profile.
|
|
34
36
|
:type region_breaker_profile: :class:`RegionBreakerProfile`
|
|
37
|
+
:param request_client: Custom request client.
|
|
38
|
+
:type request_client: str
|
|
35
39
|
"""
|
|
36
40
|
self.httpProfile = HttpProfile() if httpProfile is None else httpProfile
|
|
37
41
|
self.signMethod = "TC3-HMAC-SHA256" if signMethod is None else signMethod
|
|
@@ -43,6 +47,13 @@ class ClientProfile(object):
|
|
|
43
47
|
self.region_breaker_profile = region_breaker_profile
|
|
44
48
|
if not self.disable_region_breaker and self.region_breaker_profile is None:
|
|
45
49
|
self.region_breaker_profile = RegionBreakerProfile()
|
|
50
|
+
self.request_client = None
|
|
51
|
+
if isinstance(request_client, str) and re.match("^[0-9a-zA-Z-_,;.]+$", request_client):
|
|
52
|
+
if len(request_client) > 128:
|
|
53
|
+
warnings.warn("the length of RequestClient should be with in 128 characters, it will be truncated")
|
|
54
|
+
self.request_client = request_client[:128]
|
|
55
|
+
elif request_client is not None:
|
|
56
|
+
warnings.warn("RequestClient not match the regexp: ^[0-9a-zA-Z-_,;.]+$, ignored")
|
|
46
57
|
|
|
47
58
|
|
|
48
59
|
class RegionBreakerProfile(object):
|
|
@@ -12352,7 +12352,17 @@ class BruteAttackInfo(AbstractModel):
|
|
|
12352
12352
|
:param _CreateTime: 创建时间
|
|
12353
12353
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12354
12354
|
:type CreateTime: str
|
|
12355
|
-
:param _BanStatus:
|
|
12355
|
+
:param _BanStatus: 0 -不阻断(客户端版本不支持)
|
|
12356
|
+
1 -已阻断
|
|
12357
|
+
2 -阻断失败(程序异常)
|
|
12358
|
+
3 -不阻断(内网不阻断)
|
|
12359
|
+
4 -可用区不支持阻断
|
|
12360
|
+
10-阻断中
|
|
12361
|
+
81-不阻断(未开启阻断)
|
|
12362
|
+
82-不阻断(非专业版)
|
|
12363
|
+
83-不阻断(已加白名单)
|
|
12364
|
+
86-不阻断(系统白名单)
|
|
12365
|
+
87-不阻断(客户端离线)
|
|
12356
12366
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12357
12367
|
:type BanStatus: int
|
|
12358
12368
|
:param _EventType: 事件类型:200-暴力破解事件,300-暴力破解成功事件(页面展示),400-暴力破解不存在的帐号事件
|
|
@@ -12394,6 +12404,12 @@ class BruteAttackInfo(AbstractModel):
|
|
|
12394
12404
|
:param _DataFrom: 事件来源:0--阻断规则,1--威胁情报
|
|
12395
12405
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12396
12406
|
:type DataFrom: int
|
|
12407
|
+
:param _AttackStatusDesc: 破解状态说明
|
|
12408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12409
|
+
:type AttackStatusDesc: str
|
|
12410
|
+
:param _BanExpiredTime: 阻断过期时间(仅阻断中事件有效)
|
|
12411
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12412
|
+
:type BanExpiredTime: str
|
|
12397
12413
|
"""
|
|
12398
12414
|
self._Id = None
|
|
12399
12415
|
self._Uuid = None
|
|
@@ -12420,6 +12436,8 @@ class BruteAttackInfo(AbstractModel):
|
|
|
12420
12436
|
self._Location = None
|
|
12421
12437
|
self._RiskLevel = None
|
|
12422
12438
|
self._DataFrom = None
|
|
12439
|
+
self._AttackStatusDesc = None
|
|
12440
|
+
self._BanExpiredTime = None
|
|
12423
12441
|
|
|
12424
12442
|
@property
|
|
12425
12443
|
def Id(self):
|
|
@@ -12621,6 +12639,22 @@ class BruteAttackInfo(AbstractModel):
|
|
|
12621
12639
|
def DataFrom(self, DataFrom):
|
|
12622
12640
|
self._DataFrom = DataFrom
|
|
12623
12641
|
|
|
12642
|
+
@property
|
|
12643
|
+
def AttackStatusDesc(self):
|
|
12644
|
+
return self._AttackStatusDesc
|
|
12645
|
+
|
|
12646
|
+
@AttackStatusDesc.setter
|
|
12647
|
+
def AttackStatusDesc(self, AttackStatusDesc):
|
|
12648
|
+
self._AttackStatusDesc = AttackStatusDesc
|
|
12649
|
+
|
|
12650
|
+
@property
|
|
12651
|
+
def BanExpiredTime(self):
|
|
12652
|
+
return self._BanExpiredTime
|
|
12653
|
+
|
|
12654
|
+
@BanExpiredTime.setter
|
|
12655
|
+
def BanExpiredTime(self, BanExpiredTime):
|
|
12656
|
+
self._BanExpiredTime = BanExpiredTime
|
|
12657
|
+
|
|
12624
12658
|
|
|
12625
12659
|
def _deserialize(self, params):
|
|
12626
12660
|
self._Id = params.get("Id")
|
|
@@ -12650,6 +12684,8 @@ class BruteAttackInfo(AbstractModel):
|
|
|
12650
12684
|
self._Location = params.get("Location")
|
|
12651
12685
|
self._RiskLevel = params.get("RiskLevel")
|
|
12652
12686
|
self._DataFrom = params.get("DataFrom")
|
|
12687
|
+
self._AttackStatusDesc = params.get("AttackStatusDesc")
|
|
12688
|
+
self._BanExpiredTime = params.get("BanExpiredTime")
|
|
12653
12689
|
memeber_set = set(params.keys())
|
|
12654
12690
|
for name, value in vars(self).items():
|
|
12655
12691
|
property_name = name[1:]
|
|
@@ -26937,11 +26973,14 @@ class DescribeBanStatusResponse(AbstractModel):
|
|
|
26937
26973
|
:type Status: int
|
|
26938
26974
|
:param _ShowTips: 是否弹窗提示信息 false: 关闭,true: 开启
|
|
26939
26975
|
:type ShowTips: bool
|
|
26976
|
+
:param _OpenSmartMode: 是否开启智能过白模式
|
|
26977
|
+
:type OpenSmartMode: bool
|
|
26940
26978
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
26941
26979
|
:type RequestId: str
|
|
26942
26980
|
"""
|
|
26943
26981
|
self._Status = None
|
|
26944
26982
|
self._ShowTips = None
|
|
26983
|
+
self._OpenSmartMode = None
|
|
26945
26984
|
self._RequestId = None
|
|
26946
26985
|
|
|
26947
26986
|
@property
|
|
@@ -26960,6 +26999,14 @@ class DescribeBanStatusResponse(AbstractModel):
|
|
|
26960
26999
|
def ShowTips(self, ShowTips):
|
|
26961
27000
|
self._ShowTips = ShowTips
|
|
26962
27001
|
|
|
27002
|
+
@property
|
|
27003
|
+
def OpenSmartMode(self):
|
|
27004
|
+
return self._OpenSmartMode
|
|
27005
|
+
|
|
27006
|
+
@OpenSmartMode.setter
|
|
27007
|
+
def OpenSmartMode(self, OpenSmartMode):
|
|
27008
|
+
self._OpenSmartMode = OpenSmartMode
|
|
27009
|
+
|
|
26963
27010
|
@property
|
|
26964
27011
|
def RequestId(self):
|
|
26965
27012
|
return self._RequestId
|
|
@@ -26972,6 +27019,7 @@ class DescribeBanStatusResponse(AbstractModel):
|
|
|
26972
27019
|
def _deserialize(self, params):
|
|
26973
27020
|
self._Status = params.get("Status")
|
|
26974
27021
|
self._ShowTips = params.get("ShowTips")
|
|
27022
|
+
self._OpenSmartMode = params.get("OpenSmartMode")
|
|
26975
27023
|
self._RequestId = params.get("RequestId")
|
|
26976
27024
|
|
|
26977
27025
|
|
|
@@ -68618,10 +68666,13 @@ class ModifyBanStatusRequest(AbstractModel):
|
|
|
68618
68666
|
|
|
68619
68667
|
def __init__(self):
|
|
68620
68668
|
r"""
|
|
68621
|
-
:param _Status:
|
|
68669
|
+
:param _Status: 阻断开关状态: 0 -- 关闭 1 -- 高级阻断 2 -- 基础阻断(只阻断情报库黑ip)
|
|
68622
68670
|
:type Status: int
|
|
68671
|
+
:param _OpenSmartMode: 是否开启智能过白模式
|
|
68672
|
+
:type OpenSmartMode: bool
|
|
68623
68673
|
"""
|
|
68624
68674
|
self._Status = None
|
|
68675
|
+
self._OpenSmartMode = None
|
|
68625
68676
|
|
|
68626
68677
|
@property
|
|
68627
68678
|
def Status(self):
|
|
@@ -68631,9 +68682,18 @@ class ModifyBanStatusRequest(AbstractModel):
|
|
|
68631
68682
|
def Status(self, Status):
|
|
68632
68683
|
self._Status = Status
|
|
68633
68684
|
|
|
68685
|
+
@property
|
|
68686
|
+
def OpenSmartMode(self):
|
|
68687
|
+
return self._OpenSmartMode
|
|
68688
|
+
|
|
68689
|
+
@OpenSmartMode.setter
|
|
68690
|
+
def OpenSmartMode(self, OpenSmartMode):
|
|
68691
|
+
self._OpenSmartMode = OpenSmartMode
|
|
68692
|
+
|
|
68634
68693
|
|
|
68635
68694
|
def _deserialize(self, params):
|
|
68636
68695
|
self._Status = params.get("Status")
|
|
68696
|
+
self._OpenSmartMode = params.get("OpenSmartMode")
|
|
68637
68697
|
memeber_set = set(params.keys())
|
|
68638
68698
|
for name, value in vars(self).items():
|
|
68639
68699
|
property_name = name[1:]
|
|
@@ -7240,6 +7240,9 @@ class DataEngineInfo(AbstractModel):
|
|
|
7240
7240
|
:param _EngineTypeDetail: 引擎详细类型,支持:SparkSQL/SparkBatch/PrestoSQL/Kyuubi
|
|
7241
7241
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7242
7242
|
:type EngineTypeDetail: str
|
|
7243
|
+
:param _EngineNetworkId: 引擎网络ID
|
|
7244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7245
|
+
:type EngineNetworkId: str
|
|
7243
7246
|
"""
|
|
7244
7247
|
self._DataEngineName = None
|
|
7245
7248
|
self._EngineType = None
|
|
@@ -7289,6 +7292,7 @@ class DataEngineInfo(AbstractModel):
|
|
|
7289
7292
|
self._AutoAuthorization = None
|
|
7290
7293
|
self._EngineGeneration = None
|
|
7291
7294
|
self._EngineTypeDetail = None
|
|
7295
|
+
self._EngineNetworkId = None
|
|
7292
7296
|
|
|
7293
7297
|
@property
|
|
7294
7298
|
def DataEngineName(self):
|
|
@@ -7674,6 +7678,14 @@ class DataEngineInfo(AbstractModel):
|
|
|
7674
7678
|
def EngineTypeDetail(self, EngineTypeDetail):
|
|
7675
7679
|
self._EngineTypeDetail = EngineTypeDetail
|
|
7676
7680
|
|
|
7681
|
+
@property
|
|
7682
|
+
def EngineNetworkId(self):
|
|
7683
|
+
return self._EngineNetworkId
|
|
7684
|
+
|
|
7685
|
+
@EngineNetworkId.setter
|
|
7686
|
+
def EngineNetworkId(self, EngineNetworkId):
|
|
7687
|
+
self._EngineNetworkId = EngineNetworkId
|
|
7688
|
+
|
|
7677
7689
|
|
|
7678
7690
|
def _deserialize(self, params):
|
|
7679
7691
|
self._DataEngineName = params.get("DataEngineName")
|
|
@@ -7738,6 +7750,7 @@ class DataEngineInfo(AbstractModel):
|
|
|
7738
7750
|
self._AutoAuthorization = params.get("AutoAuthorization")
|
|
7739
7751
|
self._EngineGeneration = params.get("EngineGeneration")
|
|
7740
7752
|
self._EngineTypeDetail = params.get("EngineTypeDetail")
|
|
7753
|
+
self._EngineNetworkId = params.get("EngineNetworkId")
|
|
7741
7754
|
memeber_set = set(params.keys())
|
|
7742
7755
|
for name, value in vars(self).items():
|
|
7743
7756
|
property_name = name[1:]
|
|
@@ -249,6 +249,10 @@ class ApproverInfo(AbstractModel):
|
|
|
249
249
|
:param _NotifyType: 通知签署方经办人的方式, 有以下途径:
|
|
250
250
|
<ul><li> **sms** : (默认)短信</li>
|
|
251
251
|
<li> **none** : 不通知</li></ul>
|
|
252
|
+
```
|
|
253
|
+
注意:
|
|
254
|
+
如果使用的是通过文件发起合同(CreateFlowByFiles),NotifyType必须 是 sms 才会发送短信
|
|
255
|
+
```
|
|
252
256
|
:type NotifyType: str
|
|
253
257
|
:param _ApproverRole: 收据场景设置签署人角色类型, 可以设置如下****类型****:
|
|
254
258
|
<ul><li> **1** :收款人</li>
|
|
@@ -1533,10 +1533,11 @@ class DetectAuthRequest(AbstractModel):
|
|
|
1533
1533
|
:type RuleId: str
|
|
1534
1534
|
:param _TerminalType: 本接口不需要传递此参数。
|
|
1535
1535
|
:type TerminalType: str
|
|
1536
|
-
:param _IdCard:
|
|
1536
|
+
:param _IdCard: 身份标识(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
|
1537
1537
|
规则:a-z,A-Z,0-9组合。最长长度32位。
|
|
1538
1538
|
:type IdCard: str
|
|
1539
|
-
:param _Name:
|
|
1539
|
+
:param _Name: 姓名。(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。
|
|
1540
|
+
最长长度32位。中文请使用UTF-8编码。
|
|
1540
1541
|
:type Name: str
|
|
1541
1542
|
:param _RedirectUrl: 认证结束后重定向的回调链接地址。最长长度1024位。
|
|
1542
1543
|
:type RedirectUrl: str
|
|
@@ -1034,6 +1034,9 @@ FAILED:表示操作失败
|
|
|
1034
1034
|
:param _LoginServices: 实例包含的登录服务详情
|
|
1035
1035
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1036
1036
|
:type LoginServices: list of LoginService
|
|
1037
|
+
:param _OSType: 应用服务的操作系统类型
|
|
1038
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1039
|
+
:type OSType: str
|
|
1037
1040
|
"""
|
|
1038
1041
|
self._InstanceId = None
|
|
1039
1042
|
self._InstanceName = None
|
|
@@ -1056,6 +1059,7 @@ FAILED:表示操作失败
|
|
|
1056
1059
|
self._MaxFreeTraffic = None
|
|
1057
1060
|
self._ConfigurationEnvironment = None
|
|
1058
1061
|
self._LoginServices = None
|
|
1062
|
+
self._OSType = None
|
|
1059
1063
|
|
|
1060
1064
|
@property
|
|
1061
1065
|
def InstanceId(self):
|
|
@@ -1225,6 +1229,14 @@ FAILED:表示操作失败
|
|
|
1225
1229
|
def LoginServices(self, LoginServices):
|
|
1226
1230
|
self._LoginServices = LoginServices
|
|
1227
1231
|
|
|
1232
|
+
@property
|
|
1233
|
+
def OSType(self):
|
|
1234
|
+
return self._OSType
|
|
1235
|
+
|
|
1236
|
+
@OSType.setter
|
|
1237
|
+
def OSType(self, OSType):
|
|
1238
|
+
self._OSType = OSType
|
|
1239
|
+
|
|
1228
1240
|
|
|
1229
1241
|
def _deserialize(self, params):
|
|
1230
1242
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1255,6 +1267,7 @@ FAILED:表示操作失败
|
|
|
1255
1267
|
obj = LoginService()
|
|
1256
1268
|
obj._deserialize(item)
|
|
1257
1269
|
self._LoginServices.append(obj)
|
|
1270
|
+
self._OSType = params.get("OSType")
|
|
1258
1271
|
memeber_set = set(params.keys())
|
|
1259
1272
|
for name, value in vars(self).items():
|
|
1260
1273
|
property_name = name[1:]
|
|
@@ -1894,7 +1894,7 @@ video 纯视频
|
|
|
1894
1894
|
:type EnableAutoStart: int
|
|
1895
1895
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
|
1896
1896
|
:type RecordBackground: str
|
|
1897
|
-
:param _RecordScene: 录制自定义场景,仅recordlayout=9
|
|
1897
|
+
:param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
1898
1898
|
:type RecordScene: str
|
|
1899
1899
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
1900
1900
|
:type RecordLang: str
|
|
@@ -2155,10 +2155,14 @@ video 纯视频
|
|
|
2155
2155
|
|
|
2156
2156
|
@property
|
|
2157
2157
|
def RecordLang(self):
|
|
2158
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
2159
|
+
|
|
2158
2160
|
return self._RecordLang
|
|
2159
2161
|
|
|
2160
2162
|
@RecordLang.setter
|
|
2161
2163
|
def RecordLang(self, RecordLang):
|
|
2164
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
2165
|
+
|
|
2162
2166
|
self._RecordLang = RecordLang
|
|
2163
2167
|
|
|
2164
2168
|
|
|
@@ -7918,7 +7922,7 @@ video 纯视频
|
|
|
7918
7922
|
:type RecordLiveUrl: str
|
|
7919
7923
|
:param _EnableAutoStart: 是否自动开始上课:0 不自动上课(默认) 1 自动上课 live_type=1的时候有效
|
|
7920
7924
|
:type EnableAutoStart: int
|
|
7921
|
-
:param _RecordScene: 录制自定义场景,仅recordlayout=9
|
|
7925
|
+
:param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
7922
7926
|
:type RecordScene: str
|
|
7923
7927
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
7924
7928
|
:type RecordLang: str
|
|
@@ -8152,10 +8156,14 @@ video 纯视频
|
|
|
8152
8156
|
|
|
8153
8157
|
@property
|
|
8154
8158
|
def RecordLang(self):
|
|
8159
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
8160
|
+
|
|
8155
8161
|
return self._RecordLang
|
|
8156
8162
|
|
|
8157
8163
|
@RecordLang.setter
|
|
8158
8164
|
def RecordLang(self, RecordLang):
|
|
8165
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
8166
|
+
|
|
8159
8167
|
self._RecordLang = RecordLang
|
|
8160
8168
|
|
|
8161
8169
|
|
|
@@ -8692,7 +8700,7 @@ class RoomInfo(AbstractModel):
|
|
|
8692
8700
|
:type EnableAutoStart: int
|
|
8693
8701
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
|
8694
8702
|
:type RecordBackground: str
|
|
8695
|
-
:param _RecordScene: 录制自定义场景,仅recordlayout=9
|
|
8703
|
+
:param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
8696
8704
|
:type RecordScene: str
|
|
8697
8705
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
8698
8706
|
:type RecordLang: str
|
|
@@ -8944,10 +8952,14 @@ class RoomInfo(AbstractModel):
|
|
|
8944
8952
|
|
|
8945
8953
|
@property
|
|
8946
8954
|
def RecordLang(self):
|
|
8955
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
8956
|
+
|
|
8947
8957
|
return self._RecordLang
|
|
8948
8958
|
|
|
8949
8959
|
@RecordLang.setter
|
|
8950
8960
|
def RecordLang(self, RecordLang):
|
|
8961
|
+
warnings.warn("parameter `RecordLang` is deprecated", DeprecationWarning)
|
|
8962
|
+
|
|
8951
8963
|
self._RecordLang = RecordLang
|
|
8952
8964
|
|
|
8953
8965
|
|
|
@@ -9065,11 +9077,10 @@ class RoomItem(AbstractModel):
|
|
|
9065
9077
|
:param _RecordBackground: 录制文件背景图片,支持png、jpg、jpeg、bmp格式,暂不支持透明通道
|
|
9066
9078
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9067
9079
|
:type RecordBackground: str
|
|
9068
|
-
:param _RecordScene: 录制自定义场景,仅recordlayout=9
|
|
9080
|
+
:param _RecordScene: 录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。
|
|
9069
9081
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9070
9082
|
:type RecordScene: str
|
|
9071
9083
|
:param _RecordLang: 录制自定义语言,仅recordlayout=9的时候此参数有效
|
|
9072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
9073
9084
|
:type RecordLang: str
|
|
9074
9085
|
"""
|
|
9075
9086
|
self._Name = None
|
|
@@ -12734,6 +12734,57 @@ class DescribeLiveWatermarksRequest(AbstractModel):
|
|
|
12734
12734
|
|
|
12735
12735
|
"""
|
|
12736
12736
|
|
|
12737
|
+
def __init__(self):
|
|
12738
|
+
r"""
|
|
12739
|
+
:param _Name: 水印名称
|
|
12740
|
+
:type Name: str
|
|
12741
|
+
:param _PageNo: 分页的索引参数,从1开始
|
|
12742
|
+
:type PageNo: int
|
|
12743
|
+
:param _PageSize: 分页的大小参数,默认值500
|
|
12744
|
+
:type PageSize: int
|
|
12745
|
+
"""
|
|
12746
|
+
self._Name = None
|
|
12747
|
+
self._PageNo = None
|
|
12748
|
+
self._PageSize = None
|
|
12749
|
+
|
|
12750
|
+
@property
|
|
12751
|
+
def Name(self):
|
|
12752
|
+
return self._Name
|
|
12753
|
+
|
|
12754
|
+
@Name.setter
|
|
12755
|
+
def Name(self, Name):
|
|
12756
|
+
self._Name = Name
|
|
12757
|
+
|
|
12758
|
+
@property
|
|
12759
|
+
def PageNo(self):
|
|
12760
|
+
return self._PageNo
|
|
12761
|
+
|
|
12762
|
+
@PageNo.setter
|
|
12763
|
+
def PageNo(self, PageNo):
|
|
12764
|
+
self._PageNo = PageNo
|
|
12765
|
+
|
|
12766
|
+
@property
|
|
12767
|
+
def PageSize(self):
|
|
12768
|
+
return self._PageSize
|
|
12769
|
+
|
|
12770
|
+
@PageSize.setter
|
|
12771
|
+
def PageSize(self, PageSize):
|
|
12772
|
+
self._PageSize = PageSize
|
|
12773
|
+
|
|
12774
|
+
|
|
12775
|
+
def _deserialize(self, params):
|
|
12776
|
+
self._Name = params.get("Name")
|
|
12777
|
+
self._PageNo = params.get("PageNo")
|
|
12778
|
+
self._PageSize = params.get("PageSize")
|
|
12779
|
+
memeber_set = set(params.keys())
|
|
12780
|
+
for name, value in vars(self).items():
|
|
12781
|
+
property_name = name[1:]
|
|
12782
|
+
if property_name in memeber_set:
|
|
12783
|
+
memeber_set.remove(property_name)
|
|
12784
|
+
if len(memeber_set) > 0:
|
|
12785
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12786
|
+
|
|
12787
|
+
|
|
12737
12788
|
|
|
12738
12789
|
class DescribeLiveWatermarksResponse(AbstractModel):
|
|
12739
12790
|
"""DescribeLiveWatermarks返回参数结构体
|
|
@@ -72,7 +72,7 @@ class AddProjectResponse(AbstractModel):
|
|
|
72
72
|
r"""
|
|
73
73
|
:param _ProjectId: 项目Id
|
|
74
74
|
:type ProjectId: int
|
|
75
|
-
:param _IsNew:
|
|
75
|
+
:param _IsNew: 是否为新项目,1是新项目,0不是新项目
|
|
76
76
|
:type IsNew: int
|
|
77
77
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
78
78
|
:type RequestId: str
|
|
@@ -3111,7 +3111,7 @@ class GetTagKeysResponse(AbstractModel):
|
|
|
3111
3111
|
|
|
3112
3112
|
def __init__(self):
|
|
3113
3113
|
r"""
|
|
3114
|
-
:param _PaginationToken: 获取的下一页的Token
|
|
3114
|
+
:param _PaginationToken: 获取的下一页的Token值,如果当前是最后一页,返回为空
|
|
3115
3115
|
:type PaginationToken: str
|
|
3116
3116
|
:param _TagKeys: 标签键信息。
|
|
3117
3117
|
:type TagKeys: list of str
|
|
@@ -3233,7 +3233,7 @@ class GetTagValuesResponse(AbstractModel):
|
|
|
3233
3233
|
|
|
3234
3234
|
def __init__(self):
|
|
3235
3235
|
r"""
|
|
3236
|
-
:param _PaginationToken: 获取的下一页的Token
|
|
3236
|
+
:param _PaginationToken: 获取的下一页的Token值,如果当前是最后一页,返回为空
|
|
3237
3237
|
:type PaginationToken: str
|
|
3238
3238
|
:param _Tags: 标签列表。
|
|
3239
3239
|
:type Tags: list of Tag
|
|
@@ -3360,7 +3360,7 @@ class GetTagsResponse(AbstractModel):
|
|
|
3360
3360
|
|
|
3361
3361
|
def __init__(self):
|
|
3362
3362
|
r"""
|
|
3363
|
-
:param _PaginationToken: 获取的下一页的Token
|
|
3363
|
+
:param _PaginationToken: 获取的下一页的Token值,如果当前是最后一页,返回为空
|
|
3364
3364
|
:type PaginationToken: str
|
|
3365
3365
|
:param _Tags: 标签列表。
|
|
3366
3366
|
:type Tags: list of Tag
|
|
@@ -765,6 +765,8 @@ class Action(AbstractModel):
|
|
|
765
765
|
<li> HTTP/2 访问(Http2);</li>
|
|
766
766
|
<li> 回源跟随重定向(UpstreamFollowRedirect);</li>
|
|
767
767
|
<li> 修改源站(Origin)。</li>
|
|
768
|
+
<li> 七层回源超时(HTTPUpstreamTimeout)。</li>
|
|
769
|
+
<li> Http应答(HttpResponse)。</li>
|
|
768
770
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
769
771
|
:type NormalAction: :class:`tencentcloud.teo.v20220901.models.NormalAction`
|
|
770
772
|
:param _RewriteAction: 带有请求头/响应头的功能操作,选择该类型的功能项有:
|
|
@@ -2041,7 +2043,11 @@ class BindSecurityTemplateToEntityRequest(AbstractModel):
|
|
|
2041
2043
|
<li>unbind-keep-policy:将域名从策略模板解绑,解绑时保留当前策略;</li>
|
|
2042
2044
|
<li>unbind-use-default:将域名从策略模板解绑,并使用默认空白策略。</li>注意:解绑操作当前仅支持单个域名解绑。即:当 Operate 参数取值为 unbind-keep-policy 或 unbind-use-default 时,Entities 参数列表仅支持填写一个域名。
|
|
2043
2045
|
:type Operate: str
|
|
2044
|
-
:param _TemplateId: 指定绑定或解绑的策略模板 ID
|
|
2046
|
+
:param _TemplateId: 指定绑定或解绑的策略模板 ID 或站点全局策略
|
|
2047
|
+
- 如需绑定至策略模板,或从策略模板解绑,请指定策略模板 ID。
|
|
2048
|
+
- 如需绑定至站点全局策略,或从站点全局策略解绑,请使用 @ZoneLevel@domain 参数值。
|
|
2049
|
+
|
|
2050
|
+
注意:解绑后,域名将使用独立策略,并单独计算规则配额,请确保解绑前套餐规则配额充足。
|
|
2045
2051
|
:type TemplateId: str
|
|
2046
2052
|
:param _OverWrite: 如指定的域名已经绑定了策略模板,是否替换该模板。支持下列取值:
|
|
2047
2053
|
<li>true: 替换域名当前绑定的模板;</li>
|
|
@@ -18448,9 +18454,15 @@ class ModifySecurityPolicyRequest(AbstractModel):
|
|
|
18448
18454
|
:type ZoneId: str
|
|
18449
18455
|
:param _SecurityConfig: 安全配置。
|
|
18450
18456
|
:type SecurityConfig: :class:`tencentcloud.teo.v20220901.models.SecurityConfig`
|
|
18451
|
-
:param _Entity:
|
|
18457
|
+
:param _Entity: 子域名/应用名。
|
|
18458
|
+
|
|
18459
|
+
注意:当同时指定本参数和 TemplateId 参数时,本参数不生效。请勿同时指定本参数和 TemplateId 参数。
|
|
18452
18460
|
:type Entity: str
|
|
18453
|
-
:param _TemplateId:
|
|
18461
|
+
:param _TemplateId: 指定模板策略 ID,或指定站点全局策略。
|
|
18462
|
+
- 如需配置策略模板,请指定策略模板 ID。
|
|
18463
|
+
- 如需配置站点全局策略,请使用 @ZoneLevel@Domain 参数值
|
|
18464
|
+
|
|
18465
|
+
注意:当使用本参数时,Entity 参数不生效。请勿同时使用本参数和 Entity 参数。
|
|
18454
18466
|
:type TemplateId: str
|
|
18455
18467
|
"""
|
|
18456
18468
|
self._ZoneId = None
|
|
@@ -21996,7 +22008,7 @@ class RuleCondition(AbstractModel):
|
|
|
21996
22008
|
<li> exist: 存在; </li>
|
|
21997
22009
|
<li> notexist: 不存在。</li>
|
|
21998
22010
|
:type Operator: str
|
|
21999
|
-
:param _Target: 匹配类型,取值有: <li> filename:文件名; </li> <li> extension:文件后缀; </li> <li> host:HOST; </li> <li> full_url:URL Full,当前站点下完整 URL 路径,必须包含 HTTP 协议,Host 和 路径; </li> <li> url:URL Path,当前站点下 URL 路径的请求; </li><li>client_country:客户端国家/地区;</li> <li> query_string:查询字符串,当前站点下请求URL的查询字符串; </li> <li> request_header:HTTP请求头部。 </li>
|
|
22011
|
+
:param _Target: 匹配类型,取值有: <li> filename:文件名; </li> <li> extension:文件后缀; </li> <li> host:HOST; </li> <li> full_url:URL Full,当前站点下完整 URL 路径,必须包含 HTTP 协议,Host 和 路径; </li> <li> url:URL Path,当前站点下 URL 路径的请求; </li><li>client_country:客户端国家/地区;</li> <li> query_string:查询字符串,当前站点下请求URL的查询字符串; </li> <li> request_header:HTTP请求头部。 </li><li> client_ip:客户端 IP。 </li>
|
|
22000
22012
|
:type Target: str
|
|
22001
22013
|
:param _Values: 对应匹配类型的参数值,仅在匹配类型为查询字符串或HTTP请求头并且运算符取值为存在或不存在时允许传空数组,对应匹配类型有:
|
|
22002
22014
|
<li> 文件后缀:jpg、txt等文件后缀;</li>
|
|
@@ -22008,6 +22020,7 @@ class RuleCondition(AbstractModel):
|
|
|
22008
22020
|
<li> 客户端国家/地区:符合ISO3166标准的国家/地区标识;</li>
|
|
22009
22021
|
<li> 查询字符串: 当前站点下URL请求中查询字符串的参数值,例如lang=cn&version=1中的cn和1; </li>
|
|
22010
22022
|
<li> HTTP 请求头: HTTP请求头部字段值,例如Accept-Language:zh-CN,zh;q=0.9中的zh-CN,zh;q=0.9。 </li>
|
|
22023
|
+
<li> 客户端 IP: 当前请求携带的客户端请求IP,支持IPv4 IPv6, 支持IP段。 </li>
|
|
22011
22024
|
:type Values: list of str
|
|
22012
22025
|
:param _IgnoreCase: 是否忽略参数值的大小写,默认值为 false。
|
|
22013
22026
|
:type IgnoreCase: bool
|
|
@@ -401,7 +401,7 @@ class TeoClient(AbstractClient):
|
|
|
401
401
|
|
|
402
402
|
def CreateRealtimeLogDeliveryTask(self, request):
|
|
403
403
|
"""通过本接口创建实时日志投递任务。本接口有如下限制:
|
|
404
|
-
同一个实体(七层域名或者四层代理实例)在同种数据投递类型(LogType)和数据投递区域(Area)的组合下,只能被添加到一个实时日志投递任务中。建议先通过 [DescribeRealtimeLogDeliveryTasks](https://
|
|
404
|
+
同一个实体(七层域名或者四层代理实例)在同种数据投递类型(LogType)和数据投递区域(Area)的组合下,只能被添加到一个实时日志投递任务中。建议先通过 [DescribeRealtimeLogDeliveryTasks](https://cloud.tencent.com/document/product/1552/104110) 接口根据实体查询实时日志投递任务列表,检查实体是否已经被添加到另一实时日志投递任务中。
|
|
405
405
|
|
|
406
406
|
:param request: Request instance for CreateRealtimeLogDeliveryTask.
|
|
407
407
|
:type request: :class:`tencentcloud.teo.v20220901.models.CreateRealtimeLogDeliveryTaskRequest`
|
|
@@ -53,12 +53,21 @@ FAILEDOPERATION_ROOMNOTEXIST = 'FailedOperation.RoomNotExist'
|
|
|
53
53
|
# 应用ID不存在。
|
|
54
54
|
FAILEDOPERATION_SDKAPPIDNOTEXIST = 'FailedOperation.SdkAppIdNotExist'
|
|
55
55
|
|
|
56
|
+
# AppId下没有此SdkAppId的资源
|
|
57
|
+
FAILEDOPERATION_SDKAPPIDNOTUNDERAPPID = 'FailedOperation.SdkAppIdNotUnderAppId'
|
|
58
|
+
|
|
59
|
+
# SdkAppId未开通页面录制能力,请检查。
|
|
60
|
+
FAILEDOPERATION_SDKAPPIDNOTWEBRECORDABILITY = 'FailedOperation.SdkAppIdNotWebRecordAbility'
|
|
61
|
+
|
|
56
62
|
# 任务已存在
|
|
57
63
|
FAILEDOPERATION_TASKEXIST = 'FailedOperation.TaskExist'
|
|
58
64
|
|
|
59
65
|
# 调用接口时任务已结束。
|
|
60
66
|
FAILEDOPERATION_TASKFINISHED = 'FailedOperation.TaskFinished'
|
|
61
67
|
|
|
68
|
+
# 任务不存在或已结束
|
|
69
|
+
FAILEDOPERATION_TASKNOTEXIST = 'FailedOperation.TaskNotExist'
|
|
70
|
+
|
|
62
71
|
# 内部错误。
|
|
63
72
|
INTERNALERROR = 'InternalError'
|
|
64
73
|
|
|
@@ -3896,6 +3896,77 @@ class DescribeUserInfoResponse(AbstractModel):
|
|
|
3896
3896
|
self._RequestId = params.get("RequestId")
|
|
3897
3897
|
|
|
3898
3898
|
|
|
3899
|
+
class DescribeWebRecordRequest(AbstractModel):
|
|
3900
|
+
"""DescribeWebRecord请求参数结构体
|
|
3901
|
+
|
|
3902
|
+
"""
|
|
3903
|
+
|
|
3904
|
+
def __init__(self):
|
|
3905
|
+
r"""
|
|
3906
|
+
:param _TaskId: 开始页面录制时返回的任务id
|
|
3907
|
+
:type TaskId: str
|
|
3908
|
+
"""
|
|
3909
|
+
self._TaskId = None
|
|
3910
|
+
|
|
3911
|
+
@property
|
|
3912
|
+
def TaskId(self):
|
|
3913
|
+
return self._TaskId
|
|
3914
|
+
|
|
3915
|
+
@TaskId.setter
|
|
3916
|
+
def TaskId(self, TaskId):
|
|
3917
|
+
self._TaskId = TaskId
|
|
3918
|
+
|
|
3919
|
+
|
|
3920
|
+
def _deserialize(self, params):
|
|
3921
|
+
self._TaskId = params.get("TaskId")
|
|
3922
|
+
memeber_set = set(params.keys())
|
|
3923
|
+
for name, value in vars(self).items():
|
|
3924
|
+
property_name = name[1:]
|
|
3925
|
+
if property_name in memeber_set:
|
|
3926
|
+
memeber_set.remove(property_name)
|
|
3927
|
+
if len(memeber_set) > 0:
|
|
3928
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3929
|
+
|
|
3930
|
+
|
|
3931
|
+
|
|
3932
|
+
class DescribeWebRecordResponse(AbstractModel):
|
|
3933
|
+
"""DescribeWebRecord返回参数结构体
|
|
3934
|
+
|
|
3935
|
+
"""
|
|
3936
|
+
|
|
3937
|
+
def __init__(self):
|
|
3938
|
+
r"""
|
|
3939
|
+
:param _Status: 1: 正在录制中
|
|
3940
|
+
2: 任务不存在
|
|
3941
|
+
:type Status: int
|
|
3942
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3943
|
+
:type RequestId: str
|
|
3944
|
+
"""
|
|
3945
|
+
self._Status = None
|
|
3946
|
+
self._RequestId = None
|
|
3947
|
+
|
|
3948
|
+
@property
|
|
3949
|
+
def Status(self):
|
|
3950
|
+
return self._Status
|
|
3951
|
+
|
|
3952
|
+
@Status.setter
|
|
3953
|
+
def Status(self, Status):
|
|
3954
|
+
self._Status = Status
|
|
3955
|
+
|
|
3956
|
+
@property
|
|
3957
|
+
def RequestId(self):
|
|
3958
|
+
return self._RequestId
|
|
3959
|
+
|
|
3960
|
+
@RequestId.setter
|
|
3961
|
+
def RequestId(self, RequestId):
|
|
3962
|
+
self._RequestId = RequestId
|
|
3963
|
+
|
|
3964
|
+
|
|
3965
|
+
def _deserialize(self, params):
|
|
3966
|
+
self._Status = params.get("Status")
|
|
3967
|
+
self._RequestId = params.get("RequestId")
|
|
3968
|
+
|
|
3969
|
+
|
|
3899
3970
|
class DismissRoomByStrRoomIdRequest(AbstractModel):
|
|
3900
3971
|
"""DismissRoomByStrRoomId请求参数结构体
|
|
3901
3972
|
|
|
@@ -8463,6 +8534,143 @@ class StartStreamIngestResponse(AbstractModel):
|
|
|
8463
8534
|
self._RequestId = params.get("RequestId")
|
|
8464
8535
|
|
|
8465
8536
|
|
|
8537
|
+
class StartWebRecordRequest(AbstractModel):
|
|
8538
|
+
"""StartWebRecord请求参数结构体
|
|
8539
|
+
|
|
8540
|
+
"""
|
|
8541
|
+
|
|
8542
|
+
def __init__(self):
|
|
8543
|
+
r"""
|
|
8544
|
+
:param _RecordUrl: 需要录制的网页URL
|
|
8545
|
+
|
|
8546
|
+
:type RecordUrl: str
|
|
8547
|
+
:param _MaxDurationLimit: 录制最大时长限制, 单位 s, 合法取值范围[0, 36000], 默认 36000s(10 小时)
|
|
8548
|
+
|
|
8549
|
+
:type MaxDurationLimit: int
|
|
8550
|
+
:param _StorageParams: 云存储相关的参数,目前支持腾讯云对象存储,不支持第三方云存储以及VOD
|
|
8551
|
+
:type StorageParams: :class:`tencentcloud.trtc.v20190722.models.StorageParams`
|
|
8552
|
+
:param _WebRecordVideoParams: 页面录制视频参数
|
|
8553
|
+
:type WebRecordVideoParams: :class:`tencentcloud.trtc.v20190722.models.WebRecordVideoParams`
|
|
8554
|
+
:param _SdkAppId: TRTC的SdkAppId
|
|
8555
|
+
:type SdkAppId: int
|
|
8556
|
+
:param _RecordId: 当对重复任务敏感时,请关注此值: 为了避免任务在短时间内重复发起,导致任务重复
|
|
8557
|
+
传入录制RecordId来标识此次任务, 小于32字节,若携带RecordId发起两次以上的开始录制请求,任务只会启动一个,第二个报错FailedOperation.TaskExist。注意StartWebRecord调用失败时而非FailedOperation.TaskExist错误,请更换RecordId重新发起。
|
|
8558
|
+
:type RecordId: str
|
|
8559
|
+
"""
|
|
8560
|
+
self._RecordUrl = None
|
|
8561
|
+
self._MaxDurationLimit = None
|
|
8562
|
+
self._StorageParams = None
|
|
8563
|
+
self._WebRecordVideoParams = None
|
|
8564
|
+
self._SdkAppId = None
|
|
8565
|
+
self._RecordId = None
|
|
8566
|
+
|
|
8567
|
+
@property
|
|
8568
|
+
def RecordUrl(self):
|
|
8569
|
+
return self._RecordUrl
|
|
8570
|
+
|
|
8571
|
+
@RecordUrl.setter
|
|
8572
|
+
def RecordUrl(self, RecordUrl):
|
|
8573
|
+
self._RecordUrl = RecordUrl
|
|
8574
|
+
|
|
8575
|
+
@property
|
|
8576
|
+
def MaxDurationLimit(self):
|
|
8577
|
+
return self._MaxDurationLimit
|
|
8578
|
+
|
|
8579
|
+
@MaxDurationLimit.setter
|
|
8580
|
+
def MaxDurationLimit(self, MaxDurationLimit):
|
|
8581
|
+
self._MaxDurationLimit = MaxDurationLimit
|
|
8582
|
+
|
|
8583
|
+
@property
|
|
8584
|
+
def StorageParams(self):
|
|
8585
|
+
return self._StorageParams
|
|
8586
|
+
|
|
8587
|
+
@StorageParams.setter
|
|
8588
|
+
def StorageParams(self, StorageParams):
|
|
8589
|
+
self._StorageParams = StorageParams
|
|
8590
|
+
|
|
8591
|
+
@property
|
|
8592
|
+
def WebRecordVideoParams(self):
|
|
8593
|
+
return self._WebRecordVideoParams
|
|
8594
|
+
|
|
8595
|
+
@WebRecordVideoParams.setter
|
|
8596
|
+
def WebRecordVideoParams(self, WebRecordVideoParams):
|
|
8597
|
+
self._WebRecordVideoParams = WebRecordVideoParams
|
|
8598
|
+
|
|
8599
|
+
@property
|
|
8600
|
+
def SdkAppId(self):
|
|
8601
|
+
return self._SdkAppId
|
|
8602
|
+
|
|
8603
|
+
@SdkAppId.setter
|
|
8604
|
+
def SdkAppId(self, SdkAppId):
|
|
8605
|
+
self._SdkAppId = SdkAppId
|
|
8606
|
+
|
|
8607
|
+
@property
|
|
8608
|
+
def RecordId(self):
|
|
8609
|
+
return self._RecordId
|
|
8610
|
+
|
|
8611
|
+
@RecordId.setter
|
|
8612
|
+
def RecordId(self, RecordId):
|
|
8613
|
+
self._RecordId = RecordId
|
|
8614
|
+
|
|
8615
|
+
|
|
8616
|
+
def _deserialize(self, params):
|
|
8617
|
+
self._RecordUrl = params.get("RecordUrl")
|
|
8618
|
+
self._MaxDurationLimit = params.get("MaxDurationLimit")
|
|
8619
|
+
if params.get("StorageParams") is not None:
|
|
8620
|
+
self._StorageParams = StorageParams()
|
|
8621
|
+
self._StorageParams._deserialize(params.get("StorageParams"))
|
|
8622
|
+
if params.get("WebRecordVideoParams") is not None:
|
|
8623
|
+
self._WebRecordVideoParams = WebRecordVideoParams()
|
|
8624
|
+
self._WebRecordVideoParams._deserialize(params.get("WebRecordVideoParams"))
|
|
8625
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
8626
|
+
self._RecordId = params.get("RecordId")
|
|
8627
|
+
memeber_set = set(params.keys())
|
|
8628
|
+
for name, value in vars(self).items():
|
|
8629
|
+
property_name = name[1:]
|
|
8630
|
+
if property_name in memeber_set:
|
|
8631
|
+
memeber_set.remove(property_name)
|
|
8632
|
+
if len(memeber_set) > 0:
|
|
8633
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8634
|
+
|
|
8635
|
+
|
|
8636
|
+
|
|
8637
|
+
class StartWebRecordResponse(AbstractModel):
|
|
8638
|
+
"""StartWebRecord返回参数结构体
|
|
8639
|
+
|
|
8640
|
+
"""
|
|
8641
|
+
|
|
8642
|
+
def __init__(self):
|
|
8643
|
+
r"""
|
|
8644
|
+
:param _TaskId: 录制任务的唯一Id
|
|
8645
|
+
:type TaskId: str
|
|
8646
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8647
|
+
:type RequestId: str
|
|
8648
|
+
"""
|
|
8649
|
+
self._TaskId = None
|
|
8650
|
+
self._RequestId = None
|
|
8651
|
+
|
|
8652
|
+
@property
|
|
8653
|
+
def TaskId(self):
|
|
8654
|
+
return self._TaskId
|
|
8655
|
+
|
|
8656
|
+
@TaskId.setter
|
|
8657
|
+
def TaskId(self, TaskId):
|
|
8658
|
+
self._TaskId = TaskId
|
|
8659
|
+
|
|
8660
|
+
@property
|
|
8661
|
+
def RequestId(self):
|
|
8662
|
+
return self._RequestId
|
|
8663
|
+
|
|
8664
|
+
@RequestId.setter
|
|
8665
|
+
def RequestId(self, RequestId):
|
|
8666
|
+
self._RequestId = RequestId
|
|
8667
|
+
|
|
8668
|
+
|
|
8669
|
+
def _deserialize(self, params):
|
|
8670
|
+
self._TaskId = params.get("TaskId")
|
|
8671
|
+
self._RequestId = params.get("RequestId")
|
|
8672
|
+
|
|
8673
|
+
|
|
8466
8674
|
class StopMCUMixTranscodeByStrRoomIdRequest(AbstractModel):
|
|
8467
8675
|
"""StopMCUMixTranscodeByStrRoomId请求参数结构体
|
|
8468
8676
|
|
|
@@ -8755,6 +8963,64 @@ class StopStreamIngestResponse(AbstractModel):
|
|
|
8755
8963
|
self._RequestId = params.get("RequestId")
|
|
8756
8964
|
|
|
8757
8965
|
|
|
8966
|
+
class StopWebRecordRequest(AbstractModel):
|
|
8967
|
+
"""StopWebRecord请求参数结构体
|
|
8968
|
+
|
|
8969
|
+
"""
|
|
8970
|
+
|
|
8971
|
+
def __init__(self):
|
|
8972
|
+
r"""
|
|
8973
|
+
:param _TaskId: 需要停止的任务Id
|
|
8974
|
+
:type TaskId: str
|
|
8975
|
+
"""
|
|
8976
|
+
self._TaskId = None
|
|
8977
|
+
|
|
8978
|
+
@property
|
|
8979
|
+
def TaskId(self):
|
|
8980
|
+
return self._TaskId
|
|
8981
|
+
|
|
8982
|
+
@TaskId.setter
|
|
8983
|
+
def TaskId(self, TaskId):
|
|
8984
|
+
self._TaskId = TaskId
|
|
8985
|
+
|
|
8986
|
+
|
|
8987
|
+
def _deserialize(self, params):
|
|
8988
|
+
self._TaskId = params.get("TaskId")
|
|
8989
|
+
memeber_set = set(params.keys())
|
|
8990
|
+
for name, value in vars(self).items():
|
|
8991
|
+
property_name = name[1:]
|
|
8992
|
+
if property_name in memeber_set:
|
|
8993
|
+
memeber_set.remove(property_name)
|
|
8994
|
+
if len(memeber_set) > 0:
|
|
8995
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8996
|
+
|
|
8997
|
+
|
|
8998
|
+
|
|
8999
|
+
class StopWebRecordResponse(AbstractModel):
|
|
9000
|
+
"""StopWebRecord返回参数结构体
|
|
9001
|
+
|
|
9002
|
+
"""
|
|
9003
|
+
|
|
9004
|
+
def __init__(self):
|
|
9005
|
+
r"""
|
|
9006
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
9007
|
+
:type RequestId: str
|
|
9008
|
+
"""
|
|
9009
|
+
self._RequestId = None
|
|
9010
|
+
|
|
9011
|
+
@property
|
|
9012
|
+
def RequestId(self):
|
|
9013
|
+
return self._RequestId
|
|
9014
|
+
|
|
9015
|
+
@RequestId.setter
|
|
9016
|
+
def RequestId(self, RequestId):
|
|
9017
|
+
self._RequestId = RequestId
|
|
9018
|
+
|
|
9019
|
+
|
|
9020
|
+
def _deserialize(self, params):
|
|
9021
|
+
self._RequestId = params.get("RequestId")
|
|
9022
|
+
|
|
9023
|
+
|
|
8758
9024
|
class StorageFile(AbstractModel):
|
|
8759
9025
|
"""云端录制查询接口,录制文件的信息
|
|
8760
9026
|
|
|
@@ -9102,7 +9368,7 @@ class TencentVod(AbstractModel):
|
|
|
9102
9368
|
:param _MediaType: 上传到vod平台的录制文件格式类型,0:mp4(默认), 1: hls, 2:aac(StreamType=1纯音频录制时有效),
|
|
9103
9369
|
3: hls+mp4, 4: hls+aac(StreamType=1纯音频录制时有效)。
|
|
9104
9370
|
:type MediaType: int
|
|
9105
|
-
:param _UserDefineRecordId: 仅支持API录制上传vod,该参数表示用户可以自定义录制文件名前缀,【限制长度为64字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9
|
|
9371
|
+
:param _UserDefineRecordId: 仅支持API录制上传vod,该参数表示用户可以自定义录制文件名前缀,【限制长度为64字节,只允许包含大小写英文字母(a-zA-Z)、数字(0-9)及下划线和连词符】。前缀与自动生成的录制文件名之间用`__UserDefine_u_` 分开。
|
|
9106
9372
|
:type UserDefineRecordId: str
|
|
9107
9373
|
"""
|
|
9108
9374
|
self._Procedure = None
|
|
@@ -10337,4 +10603,62 @@ class WaterMarkTimestamp(AbstractModel):
|
|
|
10337
10603
|
memeber_set.remove(property_name)
|
|
10338
10604
|
if len(memeber_set) > 0:
|
|
10339
10605
|
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10606
|
+
|
|
10607
|
+
|
|
10608
|
+
|
|
10609
|
+
class WebRecordVideoParams(AbstractModel):
|
|
10610
|
+
"""页面录制视频参数
|
|
10611
|
+
|
|
10612
|
+
"""
|
|
10613
|
+
|
|
10614
|
+
def __init__(self):
|
|
10615
|
+
r"""
|
|
10616
|
+
:param _Width: 录制画面宽度,默认为1280,取值范围[0, 1920]
|
|
10617
|
+
:type Width: int
|
|
10618
|
+
:param _Height: 录制画面高度,默认为720,取值范围[0, 1080]
|
|
10619
|
+
:type Height: int
|
|
10620
|
+
:param _Format: 指定输出格式,可选hls,mp4
|
|
10621
|
+
|
|
10622
|
+
:type Format: str
|
|
10623
|
+
"""
|
|
10624
|
+
self._Width = None
|
|
10625
|
+
self._Height = None
|
|
10626
|
+
self._Format = None
|
|
10627
|
+
|
|
10628
|
+
@property
|
|
10629
|
+
def Width(self):
|
|
10630
|
+
return self._Width
|
|
10631
|
+
|
|
10632
|
+
@Width.setter
|
|
10633
|
+
def Width(self, Width):
|
|
10634
|
+
self._Width = Width
|
|
10635
|
+
|
|
10636
|
+
@property
|
|
10637
|
+
def Height(self):
|
|
10638
|
+
return self._Height
|
|
10639
|
+
|
|
10640
|
+
@Height.setter
|
|
10641
|
+
def Height(self, Height):
|
|
10642
|
+
self._Height = Height
|
|
10643
|
+
|
|
10644
|
+
@property
|
|
10645
|
+
def Format(self):
|
|
10646
|
+
return self._Format
|
|
10647
|
+
|
|
10648
|
+
@Format.setter
|
|
10649
|
+
def Format(self, Format):
|
|
10650
|
+
self._Format = Format
|
|
10651
|
+
|
|
10652
|
+
|
|
10653
|
+
def _deserialize(self, params):
|
|
10654
|
+
self._Width = params.get("Width")
|
|
10655
|
+
self._Height = params.get("Height")
|
|
10656
|
+
self._Format = params.get("Format")
|
|
10657
|
+
memeber_set = set(params.keys())
|
|
10658
|
+
for name, value in vars(self).items():
|
|
10659
|
+
property_name = name[1:]
|
|
10660
|
+
if property_name in memeber_set:
|
|
10661
|
+
memeber_set.remove(property_name)
|
|
10662
|
+
if len(memeber_set) > 0:
|
|
10663
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10340
10664
|
|
|
@@ -778,6 +778,29 @@ class TrtcClient(AbstractClient):
|
|
|
778
778
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
779
779
|
|
|
780
780
|
|
|
781
|
+
def DescribeWebRecord(self, request):
|
|
782
|
+
"""查询页面录制任务
|
|
783
|
+
|
|
784
|
+
:param request: Request instance for DescribeWebRecord.
|
|
785
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.DescribeWebRecordRequest`
|
|
786
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.DescribeWebRecordResponse`
|
|
787
|
+
|
|
788
|
+
"""
|
|
789
|
+
try:
|
|
790
|
+
params = request._serialize()
|
|
791
|
+
headers = request.headers
|
|
792
|
+
body = self.call("DescribeWebRecord", params, headers=headers)
|
|
793
|
+
response = json.loads(body)
|
|
794
|
+
model = models.DescribeWebRecordResponse()
|
|
795
|
+
model._deserialize(response["Response"])
|
|
796
|
+
return model
|
|
797
|
+
except Exception as e:
|
|
798
|
+
if isinstance(e, TencentCloudSDKException):
|
|
799
|
+
raise
|
|
800
|
+
else:
|
|
801
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
802
|
+
|
|
803
|
+
|
|
781
804
|
def DismissRoom(self, request):
|
|
782
805
|
"""接口说明:把房间所有用户从房间移出,解散房间。支持所有平台,Android、iOS、Windows 和 macOS 需升级到 TRTC SDK 6.6及以上版本。
|
|
783
806
|
|
|
@@ -1145,6 +1168,30 @@ class TrtcClient(AbstractClient):
|
|
|
1145
1168
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1146
1169
|
|
|
1147
1170
|
|
|
1171
|
+
def StartWebRecord(self, request):
|
|
1172
|
+
"""通过此接口可以发起 WEB 页面录制任务,在接口参数中指定录制 URL,录制分辨率,录制结果存储等参数。
|
|
1173
|
+
因为参数或API逻辑问题会立即返回结果。而因为页面问题,如页面无法访问,会在回调中返回结果,请关注。
|
|
1174
|
+
|
|
1175
|
+
:param request: Request instance for StartWebRecord.
|
|
1176
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.StartWebRecordRequest`
|
|
1177
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.StartWebRecordResponse`
|
|
1178
|
+
|
|
1179
|
+
"""
|
|
1180
|
+
try:
|
|
1181
|
+
params = request._serialize()
|
|
1182
|
+
headers = request.headers
|
|
1183
|
+
body = self.call("StartWebRecord", params, headers=headers)
|
|
1184
|
+
response = json.loads(body)
|
|
1185
|
+
model = models.StartWebRecordResponse()
|
|
1186
|
+
model._deserialize(response["Response"])
|
|
1187
|
+
return model
|
|
1188
|
+
except Exception as e:
|
|
1189
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1190
|
+
raise
|
|
1191
|
+
else:
|
|
1192
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1193
|
+
|
|
1194
|
+
|
|
1148
1195
|
def StopMCUMixTranscode(self, request):
|
|
1149
1196
|
"""接口说明:结束云端混流
|
|
1150
1197
|
|
|
@@ -1237,6 +1284,29 @@ class TrtcClient(AbstractClient):
|
|
|
1237
1284
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1238
1285
|
|
|
1239
1286
|
|
|
1287
|
+
def StopWebRecord(self, request):
|
|
1288
|
+
"""停止页面录制任务
|
|
1289
|
+
|
|
1290
|
+
:param request: Request instance for StopWebRecord.
|
|
1291
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.StopWebRecordRequest`
|
|
1292
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.StopWebRecordResponse`
|
|
1293
|
+
|
|
1294
|
+
"""
|
|
1295
|
+
try:
|
|
1296
|
+
params = request._serialize()
|
|
1297
|
+
headers = request.headers
|
|
1298
|
+
body = self.call("StopWebRecord", params, headers=headers)
|
|
1299
|
+
response = json.loads(body)
|
|
1300
|
+
model = models.StopWebRecordResponse()
|
|
1301
|
+
model._deserialize(response["Response"])
|
|
1302
|
+
return model
|
|
1303
|
+
except Exception as e:
|
|
1304
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1305
|
+
raise
|
|
1306
|
+
else:
|
|
1307
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1308
|
+
|
|
1309
|
+
|
|
1240
1310
|
def UpdatePublishCdnStream(self, request):
|
|
1241
1311
|
"""更新转推任务。
|
|
1242
1312
|
注:请参见启动转推任务的接口说明和使用说明。
|
{tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/RECORD
RENAMED
|
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
|
53
|
-
tencentcloud/__init__.py,sha256=
|
|
53
|
+
tencentcloud/__init__.py,sha256=RMqIAo0gVkncIFIJ_sckKB6e8blKcfnPpBpQs8-_AGA,631
|
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
|
@@ -257,7 +257,7 @@ tencentcloud/cbs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
257
257
|
tencentcloud/cbs/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
258
258
|
tencentcloud/cbs/v20170312/cbs_client.py,sha256=YTx4Yb3OheyJBt10m0JUJG350OHCzBlFviHPqZhcGUM,51017
|
|
259
259
|
tencentcloud/cbs/v20170312/errorcodes.py,sha256=tz02MrIvzaH-tNVJdLx-7mM4iLSob0lBMqXjcRpMhTo,7755
|
|
260
|
-
tencentcloud/cbs/v20170312/models.py,sha256=
|
|
260
|
+
tencentcloud/cbs/v20170312/models.py,sha256=5zgB6ENKJugSDdjsY6j47fqk6Sdj4Yj3JNc4K5lF1ks,233183
|
|
261
261
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
262
262
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
263
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=uYhWGLfVxR5ut0VzwhV5GJLGuT0oJljwCv6kMlRe2L4,47941
|
|
@@ -277,7 +277,7 @@ tencentcloud/cdn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
277
277
|
tencentcloud/cdn/v20180606/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
278
|
tencentcloud/cdn/v20180606/cdn_client.py,sha256=Zm4LCkjvt62SDeVBxI3aj_reEjq1WRBscloTy-sHhiI,82548
|
|
279
279
|
tencentcloud/cdn/v20180606/errorcodes.py,sha256=9Nu4v78JfK2Uz9JCkB5mCrOLnfvnUakJviNFJXmwGe4,22415
|
|
280
|
-
tencentcloud/cdn/v20180606/models.py,sha256=
|
|
280
|
+
tencentcloud/cdn/v20180606/models.py,sha256=Y_DedISVBe5I7fRKHEi6WcLLCSUZcPNSvJouhlo-7do,863625
|
|
281
281
|
tencentcloud/cds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
282
|
tencentcloud/cds/v20180420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
283
|
tencentcloud/cds/v20180420/cds_client.py,sha256=XTv2yeTSBPNp5bnokDJs-U6-D606zKwriN5cVKD3VMk,6824
|
|
@@ -392,7 +392,7 @@ tencentcloud/cms/v20190321/cms_client.py,sha256=RtYxsysb2MhKn1MrAfxI5gss-d_b-8sp
|
|
|
392
392
|
tencentcloud/cms/v20190321/errorcodes.py,sha256=1_B2Hyib6nnF1S9VKWoT2I14dZhnuvHC6Ecynzx450E,4152
|
|
393
393
|
tencentcloud/cms/v20190321/models.py,sha256=lHANhIKJRy2UmMFGhYqTupYmVhtUo3vZvm7PLKh5u00,98021
|
|
394
394
|
tencentcloud/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
|
-
tencentcloud/common/abstract_client.py,sha256=
|
|
395
|
+
tencentcloud/common/abstract_client.py,sha256=mb-q7l-8uKJJ_kf0KfKpz3QSqr6P0sjfW0YMw5gLy2M,22929
|
|
396
396
|
tencentcloud/common/abstract_model.py,sha256=3v71msaz-M3krVA5iSiq8WgIOorPbHgs5Y63TPLBJvo,2335
|
|
397
397
|
tencentcloud/common/circuit_breaker.py,sha256=p_6ssklMRtR-YKNGcFLd3ClUvZPs8ZLnVkhjcOZA0DY,4301
|
|
398
398
|
tencentcloud/common/common_client.py,sha256=H8VH-6y41AN1aIjz4PaJCpj-T1EoW9KGfaeqxPEBzWg,1958
|
|
@@ -404,7 +404,7 @@ tencentcloud/common/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
404
404
|
tencentcloud/common/http/pre_conn.py,sha256=aeEqmTc2JKO8Wd6r_SwLofCyrfPv-A0hQV00SZAgpU0,2488
|
|
405
405
|
tencentcloud/common/http/request.py,sha256=Qgo3BI4cbbEv1Y2EvlB8KQSh1brvPKRypSdfnY_Yay0,5642
|
|
406
406
|
tencentcloud/common/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
|
-
tencentcloud/common/profile/client_profile.py,sha256=
|
|
407
|
+
tencentcloud/common/profile/client_profile.py,sha256=lAG-dSEnlubPrXmfi5yOyT0RywR_yA0ypFqgVTtmlL4,5159
|
|
408
408
|
tencentcloud/common/profile/http_profile.py,sha256=cASJQE1eCTM3t5miwrGxMNMDMBGq0RG0Nfmdxk8liUw,1930
|
|
409
409
|
tencentcloud/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
410
|
tencentcloud/config/v20220802/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -440,7 +440,7 @@ tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
440
440
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
441
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=lhlctrfHNGm4SkKr44in8Ax1DLAAhm_Jjee4pC7WLoo,478736
|
|
442
442
|
tencentcloud/cwp/v20180228/errorcodes.py,sha256=ufR6JVtlmHjo7-mJn7-UBZhFCiqHrVagbLRYr9dncyM,4402
|
|
443
|
-
tencentcloud/cwp/v20180228/models.py,sha256=
|
|
443
|
+
tencentcloud/cwp/v20180228/models.py,sha256=yZierV62qErujAtxafyfxPADK6dB8hS2MrJedzT1saw,2525135
|
|
444
444
|
tencentcloud/cws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
445
|
tencentcloud/cws/v20180312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
446
446
|
tencentcloud/cws/v20180312/cws_client.py,sha256=sN_4qU4vLv0x6Ep9P1m7fMGRT3yshhACTeJ1Y3xGnZo,18593
|
|
@@ -494,7 +494,7 @@ tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
494
494
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
495
495
|
tencentcloud/dlc/v20210125/dlc_client.py,sha256=i37BUFajxHPXXeW7YC-Q0b9iSkMqqjVfLbOjOt0b63M,113414
|
|
496
496
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=bCnUjD56LgkJGXKbpGD-wwfKAFHpgsf0a5ZacZmMzQ0,30191
|
|
497
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
|
497
|
+
tencentcloud/dlc/v20210125/models.py,sha256=uPMVltq8ez8l1tVF04n4WLZBnUpTAfzM5ZWMBAbwscI,780378
|
|
498
498
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
499
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
500
500
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=dg0oMf9c4g9IchHhFEbsq5Nc2_E1SFnkSO-f3Z45E9k,66984
|
|
@@ -582,7 +582,7 @@ tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
582
582
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
583
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=h-AIvXEEia_V2rwi4moeykckHoulRwiVi8iJlIYqlus,25376
|
|
584
584
|
tencentcloud/ess/v20201111/ess_client.py,sha256=db9OWfhvvEvHeAjPPvM2K_Fvv8UrKSj1_X_0vTBFtUE,125409
|
|
585
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
|
585
|
+
tencentcloud/ess/v20201111/models.py,sha256=iGjQfUqIPUZj66Dy4crbbLt_tyOVLDobHYC1UVwXC5M,739720
|
|
586
586
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
587
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
588
588
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
|
@@ -605,7 +605,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
605
605
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
606
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=HvVf7F7KvecU8EfWdnhbd97adRNQzvzPYampxRO3-RU,10307
|
|
607
607
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=jt_7piDpysY0HrE0xOWz7n06eGScS9PhKooJ21o3WAA,36093
|
|
608
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
|
608
|
+
tencentcloud/faceid/v20180301/models.py,sha256=erpzlGAyut3tIjZkaCT85lBp6RYetflRi-U5X3JkV4w,241913
|
|
609
609
|
tencentcloud/fmu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
610
610
|
tencentcloud/fmu/v20191213/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
611
611
|
tencentcloud/fmu/v20191213/errorcodes.py,sha256=MBDe9JRLnn1i7rCBS1PIsHjL6BC09Gf0iZJ7FNCc6zQ,6925
|
|
@@ -655,7 +655,7 @@ tencentcloud/hai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
655
655
|
tencentcloud/hai/v20230812/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
656
656
|
tencentcloud/hai/v20230812/errorcodes.py,sha256=3hEpBfj3Cnrt8qr2zV7kxcOSGUtwEzAGcD7VFHXi20o,4636
|
|
657
657
|
tencentcloud/hai/v20230812/hai_client.py,sha256=N5CyonlXNb-_UqNCxxOQmnYYaqJXIrgA31xkCpMMIA4,10865
|
|
658
|
-
tencentcloud/hai/v20230812/models.py,sha256=
|
|
658
|
+
tencentcloud/hai/v20230812/models.py,sha256=keZnHQpRwfjeladJo6ddIN2lNEhHCRfzF-uLzWe7KHA,65205
|
|
659
659
|
tencentcloud/hasim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
660
660
|
tencentcloud/hasim/v20210716/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
661
|
tencentcloud/hasim/v20210716/errorcodes.py,sha256=7qCWrDAxpsMnOqFDXFg-UFsISYJuVsRWiCVN-COx5Qo,1393
|
|
@@ -794,7 +794,7 @@ tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
794
794
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
795
795
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=LG8UEIjk0pH8DwRBv9TwBhsULJ_t4i3-xaxhsag52sI,4699
|
|
796
796
|
tencentcloud/lcic/v20220817/lcic_client.py,sha256=3fLEyyD9Ukm75VIMR4AxnR5NAEdI7bZR7dshj8xs27k,54626
|
|
797
|
-
tencentcloud/lcic/v20220817/models.py,sha256=
|
|
797
|
+
tencentcloud/lcic/v20220817/models.py,sha256=a02fXbyCFv0EEppjdn6N7kpITRxMIAZj45IwVKM2TXk,297300
|
|
798
798
|
tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
799
799
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
800
800
|
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=gLqiiYX8UzwpZHmgcCo_PrH-PLTnRx7_3eFhgs7BJe0,31496
|
|
@@ -804,7 +804,7 @@ tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
804
804
|
tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
805
805
|
tencentcloud/live/v20180801/errorcodes.py,sha256=zUVXfM5AXka1kCY4cQTVHMa5YlWugx3l2A5yXMC9Ifc,20253
|
|
806
806
|
tencentcloud/live/v20180801/live_client.py,sha256=BeNtM1tD4jukSHiEEER6JPsOKpJS7-manhBZLTRGIQY,161959
|
|
807
|
-
tencentcloud/live/v20180801/models.py,sha256=
|
|
807
|
+
tencentcloud/live/v20180801/models.py,sha256=DXm6t0H5P8msUurpvr8OSq9Fp9Y54wQELpTML2QAk6U,810061
|
|
808
808
|
tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
809
809
|
tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
810
810
|
tencentcloud/lowcode/v20210108/errorcodes.py,sha256=ZkpeDXiPLJe7W3TH-FBCg3I8m8YiUBEEmGV51yx9jdc,948
|
|
@@ -1069,7 +1069,7 @@ tencentcloud/taf/v20200210/taf_client.py,sha256=bhp5mlRWusAlCia9VpZj98WfEcuwY-d0
|
|
|
1069
1069
|
tencentcloud/tag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1070
1070
|
tencentcloud/tag/v20180813/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1071
1071
|
tencentcloud/tag/v20180813/errorcodes.py,sha256=dJFJrZnPJ2hNQNpXDCDKDvQxgNILI1ytxCrxIYccz1k,5696
|
|
1072
|
-
tencentcloud/tag/v20180813/models.py,sha256=
|
|
1072
|
+
tencentcloud/tag/v20180813/models.py,sha256=E0s01WeLaOv81Ax7Bz17hhTe_IKhF_Q3qQfwZeyyQBA,130244
|
|
1073
1073
|
tencentcloud/tag/v20180813/tag_client.py,sha256=cqmvAFRikRoJLtrG5uVbazmvMgMv1JcgIsEJAQd_mqg,28668
|
|
1074
1074
|
tencentcloud/tan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1075
1075
|
tencentcloud/tan/v20220420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1186,8 +1186,8 @@ tencentcloud/teo/v20220106/models.py,sha256=rkriO1NNqjyJntfd99ifhT61-9R0muvljDfS
|
|
|
1186
1186
|
tencentcloud/teo/v20220106/teo_client.py,sha256=zKdu8PLL0kN-RRe1XGMwbrcaYtB_Ou7Z6YXb50_K2Gc,5399
|
|
1187
1187
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1188
1188
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=j0kt86JYFxemMDS_LWxDUNgG1b_u1Hh6cz3I2iNSvSU,43141
|
|
1189
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
|
1190
|
-
tencentcloud/teo/v20220901/teo_client.py,sha256=
|
|
1189
|
+
tencentcloud/teo/v20220901/models.py,sha256=SBtuTs33Lg5jVdwumQd0X0_9NzcfbuiyOrJ6QH2mwyY,805407
|
|
1190
|
+
tencentcloud/teo/v20220901/teo_client.py,sha256=ixsG8CLSWApnolkBj0zQiSKH9CGXZIW5UNUowCM7ry8,94768
|
|
1191
1191
|
tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1192
1192
|
tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1193
1193
|
tencentcloud/thpc/v20211109/errorcodes.py,sha256=xwipivn8e41cJXazb93E1dSq36noRO_aNmrGy_EjxTc,2035
|
|
@@ -1300,9 +1300,9 @@ tencentcloud/trro/v20220325/models.py,sha256=mJ1L8xoeBN59EIjr_SSMyh5es4I4TojcYHf
|
|
|
1300
1300
|
tencentcloud/trro/v20220325/trro_client.py,sha256=UMXZ_jOKKI2_cydbscFAPxqVfSUpUml2a6XuSXeIdLM,21373
|
|
1301
1301
|
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1302
1302
|
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1303
|
-
tencentcloud/trtc/v20190722/errorcodes.py,sha256
|
|
1304
|
-
tencentcloud/trtc/v20190722/models.py,sha256=
|
|
1305
|
-
tencentcloud/trtc/v20190722/trtc_client.py,sha256=
|
|
1303
|
+
tencentcloud/trtc/v20190722/errorcodes.py,sha256=-ht4zOvSE-lXdWyScrFvLZAcWRAhGBXAEreWUbSlrSM,10647
|
|
1304
|
+
tencentcloud/trtc/v20190722/models.py,sha256=gzve6H75ytQ4wuBwJLht61hddT_q3rTf4WKz3HtcNpo,339484
|
|
1305
|
+
tencentcloud/trtc/v20190722/trtc_client.py,sha256=28_jfvN5-ILIJ8UnhQboNKgmXd_8suoP-i97IyZwLCs,78183
|
|
1306
1306
|
tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1307
1307
|
tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1308
1308
|
tencentcloud/tse/v20201207/errorcodes.py,sha256=HVL21WZbHbQ-ti83Y7kcle8DhijhQB8k6LE3AIRm_t8,6304
|
|
@@ -1414,8 +1414,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
1414
1414
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
|
1415
1415
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
|
1416
1416
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
|
1417
|
-
tencentcloud_sdk_python-3.0.
|
|
1418
|
-
tencentcloud_sdk_python-3.0.
|
|
1419
|
-
tencentcloud_sdk_python-3.0.
|
|
1420
|
-
tencentcloud_sdk_python-3.0.
|
|
1421
|
-
tencentcloud_sdk_python-3.0.
|
|
1417
|
+
tencentcloud_sdk_python-3.0.1114.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
|
1418
|
+
tencentcloud_sdk_python-3.0.1114.dist-info/METADATA,sha256=4E0w1Q7FAiPdc7A7VVMfzrUzfXpjudT-zEK68UN7GPg,1511
|
|
1419
|
+
tencentcloud_sdk_python-3.0.1114.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
1420
|
+
tencentcloud_sdk_python-3.0.1114.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
|
1421
|
+
tencentcloud_sdk_python-3.0.1114.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/LICENSE
RENAMED
|
File without changes
|
{tencentcloud_sdk_python-3.0.1112.dist-info → tencentcloud_sdk_python-3.0.1114.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|