tencentcloud-sdk-python 3.0.1335__py2.py3-none-any.whl → 3.0.1336__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/acp/v20220105/models.py +0 -8
- tencentcloud/aiart/v20221229/aiart_client.py +24 -0
- tencentcloud/aiart/v20221229/models.py +121 -0
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cvm/v20170312/models.py +0 -8
- tencentcloud/dlc/v20210125/models.py +17 -0
- tencentcloud/domain/v20180808/errorcodes.py +2 -2
- tencentcloud/ess/v20201111/ess_client.py +5 -4
- tencentcloud/ess/v20201111/models.py +4 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +5 -4
- tencentcloud/essbasic/v20210526/models.py +8 -2
- tencentcloud/iotexplorer/v20190423/models.py +237 -0
- tencentcloud/mqtt/v20240516/models.py +865 -15
- tencentcloud/mqtt/v20240516/mqtt_client.py +69 -0
- tencentcloud/organization/v20210331/models.py +158 -0
- tencentcloud/organization/v20210331/organization_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/RECORD +22 -22
- {tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/top_level.txt +0 -0
@@ -578,6 +578,29 @@ class MqttClient(AbstractClient):
|
|
578
578
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
579
579
|
|
580
580
|
|
581
|
+
def DescribeClientList(self, request):
|
582
|
+
"""查询 MQTT 客户端详情
|
583
|
+
|
584
|
+
:param request: Request instance for DescribeClientList.
|
585
|
+
:type request: :class:`tencentcloud.mqtt.v20240516.models.DescribeClientListRequest`
|
586
|
+
:rtype: :class:`tencentcloud.mqtt.v20240516.models.DescribeClientListResponse`
|
587
|
+
|
588
|
+
"""
|
589
|
+
try:
|
590
|
+
params = request._serialize()
|
591
|
+
headers = request.headers
|
592
|
+
body = self.call("DescribeClientList", params, headers=headers)
|
593
|
+
response = json.loads(body)
|
594
|
+
model = models.DescribeClientListResponse()
|
595
|
+
model._deserialize(response["Response"])
|
596
|
+
return model
|
597
|
+
except Exception as e:
|
598
|
+
if isinstance(e, TencentCloudSDKException):
|
599
|
+
raise
|
600
|
+
else:
|
601
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
602
|
+
|
603
|
+
|
581
604
|
def DescribeDeviceCertificate(self, request):
|
582
605
|
"""查询设备证书详情接口
|
583
606
|
|
@@ -721,6 +744,29 @@ class MqttClient(AbstractClient):
|
|
721
744
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
722
745
|
|
723
746
|
|
747
|
+
def DescribeMessageList(self, request):
|
748
|
+
"""查询消息列表,如查询死信,请设置ConsumerGroup参数
|
749
|
+
|
750
|
+
:param request: Request instance for DescribeMessageList.
|
751
|
+
:type request: :class:`tencentcloud.mqtt.v20240516.models.DescribeMessageListRequest`
|
752
|
+
:rtype: :class:`tencentcloud.mqtt.v20240516.models.DescribeMessageListResponse`
|
753
|
+
|
754
|
+
"""
|
755
|
+
try:
|
756
|
+
params = request._serialize()
|
757
|
+
headers = request.headers
|
758
|
+
body = self.call("DescribeMessageList", params, headers=headers)
|
759
|
+
response = json.loads(body)
|
760
|
+
model = models.DescribeMessageListResponse()
|
761
|
+
model._deserialize(response["Response"])
|
762
|
+
return model
|
763
|
+
except Exception as e:
|
764
|
+
if isinstance(e, TencentCloudSDKException):
|
765
|
+
raise
|
766
|
+
else:
|
767
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
768
|
+
|
769
|
+
|
724
770
|
def DescribeProductSKUList(self, request):
|
725
771
|
"""获取产品售卖规格
|
726
772
|
|
@@ -744,6 +790,29 @@ class MqttClient(AbstractClient):
|
|
744
790
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
745
791
|
|
746
792
|
|
793
|
+
def DescribeSharedSubscriptionLag(self, request):
|
794
|
+
"""查询共享订阅消息堆积量
|
795
|
+
|
796
|
+
:param request: Request instance for DescribeSharedSubscriptionLag.
|
797
|
+
:type request: :class:`tencentcloud.mqtt.v20240516.models.DescribeSharedSubscriptionLagRequest`
|
798
|
+
:rtype: :class:`tencentcloud.mqtt.v20240516.models.DescribeSharedSubscriptionLagResponse`
|
799
|
+
|
800
|
+
"""
|
801
|
+
try:
|
802
|
+
params = request._serialize()
|
803
|
+
headers = request.headers
|
804
|
+
body = self.call("DescribeSharedSubscriptionLag", params, headers=headers)
|
805
|
+
response = json.loads(body)
|
806
|
+
model = models.DescribeSharedSubscriptionLagResponse()
|
807
|
+
model._deserialize(response["Response"])
|
808
|
+
return model
|
809
|
+
except Exception as e:
|
810
|
+
if isinstance(e, TencentCloudSDKException):
|
811
|
+
raise
|
812
|
+
else:
|
813
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
814
|
+
|
815
|
+
|
747
816
|
def DescribeTopic(self, request):
|
748
817
|
"""查询mqtt主题详情
|
749
818
|
|
@@ -1343,6 +1343,85 @@ class BindOrganizationMemberAuthAccountResponse(AbstractModel):
|
|
1343
1343
|
self._RequestId = params.get("RequestId")
|
1344
1344
|
|
1345
1345
|
|
1346
|
+
class BindOrganizationPolicySubAccountRequest(AbstractModel):
|
1347
|
+
"""BindOrganizationPolicySubAccount请求参数结构体
|
1348
|
+
|
1349
|
+
"""
|
1350
|
+
|
1351
|
+
def __init__(self):
|
1352
|
+
r"""
|
1353
|
+
:param _PolicyId: 策略ID。
|
1354
|
+
:type PolicyId: int
|
1355
|
+
:param _OrgSubAccountUins: 组织管理员子账号Uin列表。最大5个
|
1356
|
+
:type OrgSubAccountUins: list of int
|
1357
|
+
"""
|
1358
|
+
self._PolicyId = None
|
1359
|
+
self._OrgSubAccountUins = None
|
1360
|
+
|
1361
|
+
@property
|
1362
|
+
def PolicyId(self):
|
1363
|
+
"""策略ID。
|
1364
|
+
:rtype: int
|
1365
|
+
"""
|
1366
|
+
return self._PolicyId
|
1367
|
+
|
1368
|
+
@PolicyId.setter
|
1369
|
+
def PolicyId(self, PolicyId):
|
1370
|
+
self._PolicyId = PolicyId
|
1371
|
+
|
1372
|
+
@property
|
1373
|
+
def OrgSubAccountUins(self):
|
1374
|
+
"""组织管理员子账号Uin列表。最大5个
|
1375
|
+
:rtype: list of int
|
1376
|
+
"""
|
1377
|
+
return self._OrgSubAccountUins
|
1378
|
+
|
1379
|
+
@OrgSubAccountUins.setter
|
1380
|
+
def OrgSubAccountUins(self, OrgSubAccountUins):
|
1381
|
+
self._OrgSubAccountUins = OrgSubAccountUins
|
1382
|
+
|
1383
|
+
|
1384
|
+
def _deserialize(self, params):
|
1385
|
+
self._PolicyId = params.get("PolicyId")
|
1386
|
+
self._OrgSubAccountUins = params.get("OrgSubAccountUins")
|
1387
|
+
memeber_set = set(params.keys())
|
1388
|
+
for name, value in vars(self).items():
|
1389
|
+
property_name = name[1:]
|
1390
|
+
if property_name in memeber_set:
|
1391
|
+
memeber_set.remove(property_name)
|
1392
|
+
if len(memeber_set) > 0:
|
1393
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1394
|
+
|
1395
|
+
|
1396
|
+
|
1397
|
+
class BindOrganizationPolicySubAccountResponse(AbstractModel):
|
1398
|
+
"""BindOrganizationPolicySubAccount返回参数结构体
|
1399
|
+
|
1400
|
+
"""
|
1401
|
+
|
1402
|
+
def __init__(self):
|
1403
|
+
r"""
|
1404
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1405
|
+
:type RequestId: str
|
1406
|
+
"""
|
1407
|
+
self._RequestId = None
|
1408
|
+
|
1409
|
+
@property
|
1410
|
+
def RequestId(self):
|
1411
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1412
|
+
:rtype: str
|
1413
|
+
"""
|
1414
|
+
return self._RequestId
|
1415
|
+
|
1416
|
+
@RequestId.setter
|
1417
|
+
def RequestId(self, RequestId):
|
1418
|
+
self._RequestId = RequestId
|
1419
|
+
|
1420
|
+
|
1421
|
+
def _deserialize(self, params):
|
1422
|
+
self._RequestId = params.get("RequestId")
|
1423
|
+
|
1424
|
+
|
1346
1425
|
class CancelOrganizationMemberAuthAccountRequest(AbstractModel):
|
1347
1426
|
"""CancelOrganizationMemberAuthAccount请求参数结构体
|
1348
1427
|
|
@@ -1437,6 +1516,85 @@ class CancelOrganizationMemberAuthAccountResponse(AbstractModel):
|
|
1437
1516
|
self._RequestId = params.get("RequestId")
|
1438
1517
|
|
1439
1518
|
|
1519
|
+
class CancelOrganizationPolicySubAccountRequest(AbstractModel):
|
1520
|
+
"""CancelOrganizationPolicySubAccount请求参数结构体
|
1521
|
+
|
1522
|
+
"""
|
1523
|
+
|
1524
|
+
def __init__(self):
|
1525
|
+
r"""
|
1526
|
+
:param _PolicyId: 策略ID。
|
1527
|
+
:type PolicyId: int
|
1528
|
+
:param _OrgSubAccountUins: 组织管理员子账号Uin列表。最大5个
|
1529
|
+
:type OrgSubAccountUins: list of int
|
1530
|
+
"""
|
1531
|
+
self._PolicyId = None
|
1532
|
+
self._OrgSubAccountUins = None
|
1533
|
+
|
1534
|
+
@property
|
1535
|
+
def PolicyId(self):
|
1536
|
+
"""策略ID。
|
1537
|
+
:rtype: int
|
1538
|
+
"""
|
1539
|
+
return self._PolicyId
|
1540
|
+
|
1541
|
+
@PolicyId.setter
|
1542
|
+
def PolicyId(self, PolicyId):
|
1543
|
+
self._PolicyId = PolicyId
|
1544
|
+
|
1545
|
+
@property
|
1546
|
+
def OrgSubAccountUins(self):
|
1547
|
+
"""组织管理员子账号Uin列表。最大5个
|
1548
|
+
:rtype: list of int
|
1549
|
+
"""
|
1550
|
+
return self._OrgSubAccountUins
|
1551
|
+
|
1552
|
+
@OrgSubAccountUins.setter
|
1553
|
+
def OrgSubAccountUins(self, OrgSubAccountUins):
|
1554
|
+
self._OrgSubAccountUins = OrgSubAccountUins
|
1555
|
+
|
1556
|
+
|
1557
|
+
def _deserialize(self, params):
|
1558
|
+
self._PolicyId = params.get("PolicyId")
|
1559
|
+
self._OrgSubAccountUins = params.get("OrgSubAccountUins")
|
1560
|
+
memeber_set = set(params.keys())
|
1561
|
+
for name, value in vars(self).items():
|
1562
|
+
property_name = name[1:]
|
1563
|
+
if property_name in memeber_set:
|
1564
|
+
memeber_set.remove(property_name)
|
1565
|
+
if len(memeber_set) > 0:
|
1566
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1567
|
+
|
1568
|
+
|
1569
|
+
|
1570
|
+
class CancelOrganizationPolicySubAccountResponse(AbstractModel):
|
1571
|
+
"""CancelOrganizationPolicySubAccount返回参数结构体
|
1572
|
+
|
1573
|
+
"""
|
1574
|
+
|
1575
|
+
def __init__(self):
|
1576
|
+
r"""
|
1577
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1578
|
+
:type RequestId: str
|
1579
|
+
"""
|
1580
|
+
self._RequestId = None
|
1581
|
+
|
1582
|
+
@property
|
1583
|
+
def RequestId(self):
|
1584
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1585
|
+
:rtype: str
|
1586
|
+
"""
|
1587
|
+
return self._RequestId
|
1588
|
+
|
1589
|
+
@RequestId.setter
|
1590
|
+
def RequestId(self, RequestId):
|
1591
|
+
self._RequestId = RequestId
|
1592
|
+
|
1593
|
+
|
1594
|
+
def _deserialize(self, params):
|
1595
|
+
self._RequestId = params.get("RequestId")
|
1596
|
+
|
1597
|
+
|
1440
1598
|
class CheckAccountDeleteRequest(AbstractModel):
|
1441
1599
|
"""CheckAccountDelete请求参数结构体
|
1442
1600
|
|
@@ -279,6 +279,29 @@ class OrganizationClient(AbstractClient):
|
|
279
279
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
280
280
|
|
281
281
|
|
282
|
+
def BindOrganizationPolicySubAccount(self, request):
|
283
|
+
"""绑定成员访问授权策略和组织管理员子账号
|
284
|
+
|
285
|
+
:param request: Request instance for BindOrganizationPolicySubAccount.
|
286
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.BindOrganizationPolicySubAccountRequest`
|
287
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.BindOrganizationPolicySubAccountResponse`
|
288
|
+
|
289
|
+
"""
|
290
|
+
try:
|
291
|
+
params = request._serialize()
|
292
|
+
headers = request.headers
|
293
|
+
body = self.call("BindOrganizationPolicySubAccount", params, headers=headers)
|
294
|
+
response = json.loads(body)
|
295
|
+
model = models.BindOrganizationPolicySubAccountResponse()
|
296
|
+
model._deserialize(response["Response"])
|
297
|
+
return model
|
298
|
+
except Exception as e:
|
299
|
+
if isinstance(e, TencentCloudSDKException):
|
300
|
+
raise
|
301
|
+
else:
|
302
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
303
|
+
|
304
|
+
|
282
305
|
def CancelOrganizationMemberAuthAccount(self, request):
|
283
306
|
"""取消组织成员和组织管理员子账号的授权关系
|
284
307
|
|
@@ -302,6 +325,29 @@ class OrganizationClient(AbstractClient):
|
|
302
325
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
303
326
|
|
304
327
|
|
328
|
+
def CancelOrganizationPolicySubAccount(self, request):
|
329
|
+
"""解绑成员访问授权策略和组织管理员子账号
|
330
|
+
|
331
|
+
:param request: Request instance for CancelOrganizationPolicySubAccount.
|
332
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.CancelOrganizationPolicySubAccountRequest`
|
333
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.CancelOrganizationPolicySubAccountResponse`
|
334
|
+
|
335
|
+
"""
|
336
|
+
try:
|
337
|
+
params = request._serialize()
|
338
|
+
headers = request.headers
|
339
|
+
body = self.call("CancelOrganizationPolicySubAccount", params, headers=headers)
|
340
|
+
response = json.loads(body)
|
341
|
+
model = models.CancelOrganizationPolicySubAccountResponse()
|
342
|
+
model._deserialize(response["Response"])
|
343
|
+
return model
|
344
|
+
except Exception as e:
|
345
|
+
if isinstance(e, TencentCloudSDKException):
|
346
|
+
raise
|
347
|
+
else:
|
348
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
349
|
+
|
350
|
+
|
305
351
|
def CheckAccountDelete(self, request):
|
306
352
|
"""成员账号删除检查
|
307
353
|
|
{tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.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=94mKuLtTEMHlX3haNDa-oyukTTQztQanRFEP9xGpGZQ,631
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
|
@@ -65,7 +65,7 @@ tencentcloud/acp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
65
65
|
tencentcloud/acp/v20220105/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
66
|
tencentcloud/acp/v20220105/acp_client.py,sha256=eeMinYjJPVMaKlEqxNouCmKNZTlRZqVr5xgec5PFdVg,8408
|
67
67
|
tencentcloud/acp/v20220105/errorcodes.py,sha256=4QyeCrmGjarPxYiiyS9WG-aoJttr_lf7HDxZw85CfuY,832
|
68
|
-
tencentcloud/acp/v20220105/models.py,sha256
|
68
|
+
tencentcloud/acp/v20220105/models.py,sha256=-zvI-LrK2fUpr0xYo4fdYnltK2uxMzyLB7E4IPH694M,65862
|
69
69
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
70
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
71
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=MXKHGrZ6xmXMm6atL0L3mgQH_5V16gqDGRlA7E2S0Dw,2848
|
@@ -83,9 +83,9 @@ tencentcloud/afc/v20200226/errorcodes.py,sha256=DQPz-hl3I1UcoRcILjf6TY9owGeSunfP
|
|
83
83
|
tencentcloud/afc/v20200226/models.py,sha256=RI8Var7RbWjZwFLzYNYtvoIV_O4m-xB5Dgp4LMDWp84,50861
|
84
84
|
tencentcloud/aiart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
85
|
tencentcloud/aiart/v20221229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
|
-
tencentcloud/aiart/v20221229/aiart_client.py,sha256=
|
86
|
+
tencentcloud/aiart/v20221229/aiart_client.py,sha256=dIh_JFhzROF-zKCHBzGwC6BejtkzD1R9uh3quGcBfm4,28504
|
87
87
|
tencentcloud/aiart/v20221229/errorcodes.py,sha256=Vaofe0Q5YAxZcvdoEvMGVwFVPD0MGk5kmT0TyhFxPII,4005
|
88
|
-
tencentcloud/aiart/v20221229/models.py,sha256=
|
88
|
+
tencentcloud/aiart/v20221229/models.py,sha256=OKxw5Cvfn8KEx9L8Vf2KWK_jyLjrfSZGLG33g0E7EM8,148452
|
89
89
|
tencentcloud/ame/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
90
|
tencentcloud/ame/v20190916/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
91
|
tencentcloud/ame/v20190916/ame_client.py,sha256=Y1bNhduaCVJpFV6smgB_fsZl8u4YrAdPPPfEUXdXtQw,29579
|
@@ -272,7 +272,7 @@ tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
272
272
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
273
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=gTo0OoOdHUphCktIJOQvQf7c-fEhEBumtHwha0RBnqU,61641
|
274
274
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=YpE0amsljwMGnceNjLbv5wU2gCUEdYg7D9mIaTyuGUo,6100
|
275
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
275
|
+
tencentcloud/ccc/v20200210/models.py,sha256=FWHbVNTGnxa085RKGVNJ0UHul-P6fIDEAf4dhayYisc,483294
|
276
276
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=dV_i2_3uzn_h1N9WeBEBF7mBOkAYlbolOvPOqvozJWw,172888
|
@@ -456,7 +456,7 @@ tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
456
456
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
457
457
|
tencentcloud/cvm/v20170312/cvm_client.py,sha256=p3yMB3UlKnO5v7sesOfPJ4TFjWd8-VBfqoQMrIzfnTI,126480
|
458
458
|
tencentcloud/cvm/v20170312/errorcodes.py,sha256=4K4VcfrfCWOnNaDZ-syyy1vJiPky5m9o0KOZuAUAAJM,51627
|
459
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
459
|
+
tencentcloud/cvm/v20170312/models.py,sha256=Ub_mSZCnhRnQ0a2X6OvgBuP6O1SWNXa9QZxuB3WZj-0,893825
|
460
460
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
461
461
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
462
462
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=psIq2s5fbmi6bJk6dht49a5UGhB3Oujv7Tnj-q0fvNM,474786
|
@@ -515,7 +515,7 @@ tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
515
515
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
516
516
|
tencentcloud/dlc/v20210125/dlc_client.py,sha256=zV-1gVGBrb4XKBaIbXqf8vnS5rdbd5TvaenXTWA6yEQ,133443
|
517
517
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=6B38U2w5cQyWw1Xcfeve280M1ZLqwG-JDRr58sZN0nw,30574
|
518
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
518
|
+
tencentcloud/dlc/v20210125/models.py,sha256=pHnDDTgl67kxQeF2JATp5Wk-6tSuf9KH81E6IbYT16U,1136609
|
519
519
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
520
520
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
521
521
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=m4nV1yKI1CibU2Vthso_Y9jzxdL84-r90f497mdLpHY,77838
|
@@ -524,7 +524,7 @@ tencentcloud/dnspod/v20210323/models.py,sha256=-uySwiBVGQ2hqyBGcnx-_5LW9xCVB0XhH
|
|
524
524
|
tencentcloud/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
525
525
|
tencentcloud/domain/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
526
526
|
tencentcloud/domain/v20180808/domain_client.py,sha256=oC0y61_DEpru9o_EF2zJYzBg33rk0OPh7hIj2zKhkO0,51734
|
527
|
-
tencentcloud/domain/v20180808/errorcodes.py,sha256=
|
527
|
+
tencentcloud/domain/v20180808/errorcodes.py,sha256=aLvxqUyTOWuqeuLude2KOM3PmaJDPyEsG8jJ2UJXykA,14834
|
528
528
|
tencentcloud/domain/v20180808/models.py,sha256=A-0tN70GaoOHkt8T70g7jWmuOxDUcwms7_8jn6-eXVM,320495
|
529
529
|
tencentcloud/drm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
530
530
|
tencentcloud/drm/v20181115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -602,8 +602,8 @@ tencentcloud/es/v20180416/models.py,sha256=1SC9b8qlQmmoEsVS_aNAHMvexF4K4bK8MF2OC
|
|
602
602
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
603
603
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
604
604
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=uJlDeOdWRCMjeWHVNkjHV_zbFkw0mDfa9BAp7icUswk,26219
|
605
|
-
tencentcloud/ess/v20201111/ess_client.py,sha256=
|
606
|
-
tencentcloud/ess/v20201111/models.py,sha256
|
605
|
+
tencentcloud/ess/v20201111/ess_client.py,sha256=8NdKFJjkJMDe-hMoCazTwzcoiANCLR8-GrzY_R3Cje4,175387
|
606
|
+
tencentcloud/ess/v20201111/models.py,sha256=AhSkYti4c_hmQoWrYR_yy8oS18LM8JOXDoKnTOvh9nM,1341340
|
607
607
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
608
608
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
609
609
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -611,8 +611,8 @@ tencentcloud/essbasic/v20201222/essbasic_client.py,sha256=kua9joup-BLKbyITYpVovM
|
|
611
611
|
tencentcloud/essbasic/v20201222/models.py,sha256=O9e3iv74K4tUd9YKAf61DQ1KKG59MwVbujfQP-WaqhI,334804
|
612
612
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
613
613
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
614
|
-
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=
|
615
|
-
tencentcloud/essbasic/v20210526/models.py,sha256
|
614
|
+
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=FjN3tt4fCA05z4ozqV8IZufLLRP740rYKUkkIuUPdhQ,166904
|
615
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=-VtgEdQl5wbKjnRgIjcwTCsigARhA8s_kYmAtih9yK4,1216912
|
616
616
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
617
617
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
618
618
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -773,7 +773,7 @@ tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
773
773
|
tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
774
774
|
tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=5ngBLiqBqH9-cLKp8t3oSSc0eosxdjP6gJxyupQZKtA,23452
|
775
775
|
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=Y-xTnDgkeHrHjsMrTGXwk1XTEeuNPm2bMc9toV2t2Zk,148390
|
776
|
-
tencentcloud/iotexplorer/v20190423/models.py,sha256=
|
776
|
+
tencentcloud/iotexplorer/v20190423/models.py,sha256=VT1DrRhaXNXguiBO6y0-0k0gP9Lwu6vZ8dQ0MIMeHQY,814308
|
777
777
|
tencentcloud/iottid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
778
778
|
tencentcloud/iottid/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
779
779
|
tencentcloud/iottid/v20190411/errorcodes.py,sha256=8HLJco204GFDbjmQDdjbUSLO1AFGPXVNVhsglGcae-g,1707
|
@@ -921,8 +921,8 @@ tencentcloud/mps/v20190612/mps_client.py,sha256=V1qrT0BPaIQOtyRrSjkrLrqVxfyAT_ng
|
|
921
921
|
tencentcloud/mqtt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
922
922
|
tencentcloud/mqtt/v20240516/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
923
923
|
tencentcloud/mqtt/v20240516/errorcodes.py,sha256=nWnZzKCegsil70j63hI7NSoaWnUntSd-CNJ-84ThhHk,2185
|
924
|
-
tencentcloud/mqtt/v20240516/models.py,sha256=
|
925
|
-
tencentcloud/mqtt/v20240516/mqtt_client.py,sha256=
|
924
|
+
tencentcloud/mqtt/v20240516/models.py,sha256=NKHBL7RABVLbbFcK2uOoYhJmwblXWk1uSnSnOewFEak,263352
|
925
|
+
tencentcloud/mqtt/v20240516/mqtt_client.py,sha256=gKoiecQJhd3YeapTsNNU1p6TgsLmgiTDXr2idFzzFi0,46439
|
926
926
|
tencentcloud/mrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
927
927
|
tencentcloud/mrs/v20200910/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
928
928
|
tencentcloud/mrs/v20200910/errorcodes.py,sha256=rNaH_62A9Rbd5rtuNhlVt5gi0lSs_KwYVC-nnO3ETZ4,3628
|
@@ -975,8 +975,8 @@ tencentcloud/organization/v20181225/models.py,sha256=fC1ng-YDeBbwF7Np_1UmRVI5p6s
|
|
975
975
|
tencentcloud/organization/v20181225/organization_client.py,sha256=-SJphXgr5hcVBf98wUnMdtMBo-0YGJyDLjs6tiyuiAw,19700
|
976
976
|
tencentcloud/organization/v20210331/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
977
977
|
tencentcloud/organization/v20210331/errorcodes.py,sha256=y_Kh7Z2AjosABeT3UfKupsTHY0dDIY-q_ZGt3G-iIBw,36353
|
978
|
-
tencentcloud/organization/v20210331/models.py,sha256=
|
979
|
-
tencentcloud/organization/v20210331/organization_client.py,sha256=
|
978
|
+
tencentcloud/organization/v20210331/models.py,sha256=npHbT3pt5t7Dou1i9ysTmy89JtV8rPaGJHhA4xvmKsA,688494
|
979
|
+
tencentcloud/organization/v20210331/organization_client.py,sha256=m-9HsAM8Fl0T2pSwwW1RB4c5X658bfDlS_VhacO0Fio,118997
|
980
980
|
tencentcloud/partners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
981
981
|
tencentcloud/partners/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
982
982
|
tencentcloud/partners/v20180321/errorcodes.py,sha256=RyvWd0w7mRvVZABn_tVqhVu5JSTCI_akA9CTQF-mwr8,885
|
@@ -1498,8 +1498,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1498
1498
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1499
1499
|
tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
|
1500
1500
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1501
|
-
tencentcloud_sdk_python-3.0.
|
1502
|
-
tencentcloud_sdk_python-3.0.
|
1503
|
-
tencentcloud_sdk_python-3.0.
|
1504
|
-
tencentcloud_sdk_python-3.0.
|
1505
|
-
tencentcloud_sdk_python-3.0.
|
1501
|
+
tencentcloud_sdk_python-3.0.1336.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1502
|
+
tencentcloud_sdk_python-3.0.1336.dist-info/METADATA,sha256=OLC2LQX8T1ZUtT-HAOs8cavnx9IZYv0fHLzP587MWDk,1613
|
1503
|
+
tencentcloud_sdk_python-3.0.1336.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1504
|
+
tencentcloud_sdk_python-3.0.1336.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1505
|
+
tencentcloud_sdk_python-3.0.1336.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1335.dist-info → tencentcloud_sdk_python-3.0.1336.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|