tencentcloud-sdk-python-intl-en 3.0.1285__py2.py3-none-any.whl → 3.0.1287__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +141 -120
- tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- tencentcloud/dlc/v20210125/models.py +424 -14
- tencentcloud/mdl/v20200326/models.py +72 -2
- tencentcloud/mdp/v20200527/models.py +100 -2
- tencentcloud/message/__init__.py +0 -0
- tencentcloud/message/v20181225/__init__.py +0 -0
- tencentcloud/message/v20181225/errorcodes.py +27 -0
- tencentcloud/message/v20181225/message_client.py +49 -0
- tencentcloud/message/v20181225/models.py +138 -0
- tencentcloud/mps/v20190612/errorcodes.py +42 -0
- tencentcloud/mps/v20190612/models.py +810 -43
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/teo/v20220901/teo_client.py +3 -3
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/RECORD +20 -15
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1285.dist-info → tencentcloud_sdk_python_intl_en-3.0.1287.dist-info}/top_level.txt +0 -0
|
@@ -342,6 +342,29 @@ class MpsClient(AbstractClient):
|
|
|
342
342
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
343
343
|
|
|
344
344
|
|
|
345
|
+
def CreateSmartEraseTemplate(self, request):
|
|
346
|
+
r"""This API is used to create a custom smart erasing template.
|
|
347
|
+
|
|
348
|
+
:param request: Request instance for CreateSmartEraseTemplate.
|
|
349
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.CreateSmartEraseTemplateRequest`
|
|
350
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.CreateSmartEraseTemplateResponse`
|
|
351
|
+
|
|
352
|
+
"""
|
|
353
|
+
try:
|
|
354
|
+
params = request._serialize()
|
|
355
|
+
headers = request.headers
|
|
356
|
+
body = self.call("CreateSmartEraseTemplate", params, headers=headers)
|
|
357
|
+
response = json.loads(body)
|
|
358
|
+
model = models.CreateSmartEraseTemplateResponse()
|
|
359
|
+
model._deserialize(response["Response"])
|
|
360
|
+
return model
|
|
361
|
+
except Exception as e:
|
|
362
|
+
if isinstance(e, TencentCloudSDKException):
|
|
363
|
+
raise
|
|
364
|
+
else:
|
|
365
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
366
|
+
|
|
367
|
+
|
|
345
368
|
def CreateSmartSubtitleTemplate(self, request):
|
|
346
369
|
r"""This API is used to create a custom smart subtitle template.
|
|
347
370
|
|
|
@@ -769,6 +792,29 @@ class MpsClient(AbstractClient):
|
|
|
769
792
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
770
793
|
|
|
771
794
|
|
|
795
|
+
def DeleteSmartEraseTemplate(self, request):
|
|
796
|
+
r"""This API is used to delete a user-defined smart erasing template.
|
|
797
|
+
|
|
798
|
+
:param request: Request instance for DeleteSmartEraseTemplate.
|
|
799
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DeleteSmartEraseTemplateRequest`
|
|
800
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DeleteSmartEraseTemplateResponse`
|
|
801
|
+
|
|
802
|
+
"""
|
|
803
|
+
try:
|
|
804
|
+
params = request._serialize()
|
|
805
|
+
headers = request.headers
|
|
806
|
+
body = self.call("DeleteSmartEraseTemplate", params, headers=headers)
|
|
807
|
+
response = json.loads(body)
|
|
808
|
+
model = models.DeleteSmartEraseTemplateResponse()
|
|
809
|
+
model._deserialize(response["Response"])
|
|
810
|
+
return model
|
|
811
|
+
except Exception as e:
|
|
812
|
+
if isinstance(e, TencentCloudSDKException):
|
|
813
|
+
raise
|
|
814
|
+
else:
|
|
815
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
816
|
+
|
|
817
|
+
|
|
772
818
|
def DeleteSmartSubtitleTemplate(self, request):
|
|
773
819
|
r"""This API is used to delete a user-defined smart subtitle template.
|
|
774
820
|
|
|
@@ -1275,6 +1321,29 @@ class MpsClient(AbstractClient):
|
|
|
1275
1321
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1276
1322
|
|
|
1277
1323
|
|
|
1324
|
+
def DescribeSmartEraseTemplates(self, request):
|
|
1325
|
+
r"""This API is used to obtain the list of smart erasing template details based on the unique identifier of the template. The returned result includes all matching user-defined smart erasing templates and system preset smart erasing templates.
|
|
1326
|
+
|
|
1327
|
+
:param request: Request instance for DescribeSmartEraseTemplates.
|
|
1328
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.DescribeSmartEraseTemplatesRequest`
|
|
1329
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.DescribeSmartEraseTemplatesResponse`
|
|
1330
|
+
|
|
1331
|
+
"""
|
|
1332
|
+
try:
|
|
1333
|
+
params = request._serialize()
|
|
1334
|
+
headers = request.headers
|
|
1335
|
+
body = self.call("DescribeSmartEraseTemplates", params, headers=headers)
|
|
1336
|
+
response = json.loads(body)
|
|
1337
|
+
model = models.DescribeSmartEraseTemplatesResponse()
|
|
1338
|
+
model._deserialize(response["Response"])
|
|
1339
|
+
return model
|
|
1340
|
+
except Exception as e:
|
|
1341
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1342
|
+
raise
|
|
1343
|
+
else:
|
|
1344
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1345
|
+
|
|
1346
|
+
|
|
1278
1347
|
def DescribeSmartSubtitleTemplates(self, request):
|
|
1279
1348
|
r"""This API is used to obtain the list of smart subtitle templates based on template unique identifier. The returned result includes all matching user-defined smart subtitle templates and system preset smart subtitle templates.
|
|
1280
1349
|
|
|
@@ -1935,6 +2004,29 @@ class MpsClient(AbstractClient):
|
|
|
1935
2004
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1936
2005
|
|
|
1937
2006
|
|
|
2007
|
+
def ModifySmartEraseTemplate(self, request):
|
|
2008
|
+
r"""This API is used to modify a user-defined smart erasing template.
|
|
2009
|
+
|
|
2010
|
+
:param request: Request instance for ModifySmartEraseTemplate.
|
|
2011
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.ModifySmartEraseTemplateRequest`
|
|
2012
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ModifySmartEraseTemplateResponse`
|
|
2013
|
+
|
|
2014
|
+
"""
|
|
2015
|
+
try:
|
|
2016
|
+
params = request._serialize()
|
|
2017
|
+
headers = request.headers
|
|
2018
|
+
body = self.call("ModifySmartEraseTemplate", params, headers=headers)
|
|
2019
|
+
response = json.loads(body)
|
|
2020
|
+
model = models.ModifySmartEraseTemplateResponse()
|
|
2021
|
+
model._deserialize(response["Response"])
|
|
2022
|
+
return model
|
|
2023
|
+
except Exception as e:
|
|
2024
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2025
|
+
raise
|
|
2026
|
+
else:
|
|
2027
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2028
|
+
|
|
2029
|
+
|
|
1938
2030
|
def ModifySmartSubtitleTemplate(self, request):
|
|
1939
2031
|
r"""This API is used to modify a user-defined smart subtitle template.
|
|
1940
2032
|
|
|
@@ -1611,7 +1611,7 @@ class TeoClient(AbstractClient):
|
|
|
1611
1611
|
|
|
1612
1612
|
def DescribeAliasDomains(self, request):
|
|
1613
1613
|
r"""This API is used to query the alias domain name information list.
|
|
1614
|
-
The feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://
|
|
1614
|
+
The feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://www.tencentcloud.com/contact-us).
|
|
1615
1615
|
|
|
1616
1616
|
:param request: Request instance for DescribeAliasDomains.
|
|
1617
1617
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeAliasDomainsRequest`
|
|
@@ -3100,7 +3100,7 @@ class TeoClient(AbstractClient):
|
|
|
3100
3100
|
1. The plan has expired (except for the Enterprise Edition Plan);
|
|
3101
3101
|
2. All sites under the plan have been either shut down or deleted.
|
|
3102
3102
|
|
|
3103
|
-
> The site status can be queried through the [Query Site List](https://
|
|
3103
|
+
> The site status can be queried through the [Query Site List](https://www.tencentcloud.com/zh/document/product/1145/50481) interface.
|
|
3104
3104
|
A site can be deactivated by switching the site to a closed status through the [Switch Site Status](https://intl.cloud.tencent.com/document/product/1552/80707?from_cn_redirect=1) interface.
|
|
3105
3105
|
A site can be deleted by using the [Delete Site](https://intl.cloud.tencent.com/document/product/1552/80717?from_cn_redirect=1) interface.
|
|
3106
3106
|
|
|
@@ -3895,7 +3895,7 @@ class TeoClient(AbstractClient):
|
|
|
3895
3895
|
|
|
3896
3896
|
|
|
3897
3897
|
def ModifyLoadBalancer(self, request):
|
|
3898
|
-
r"""This API is used to modify LoadBalancer configuration. The load balancing feature is in beta test. If you need to use it, [contact us](https://
|
|
3898
|
+
r"""This API is used to modify LoadBalancer configuration. The load balancing feature is in beta test. If you need to use it, [contact us](https://www.tencentcloud.com/contact-us).
|
|
3899
3899
|
|
|
3900
3900
|
:param request: Request instance for ModifyLoadBalancer.
|
|
3901
3901
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyLoadBalancerRequest`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=nKtAV92paOJ09X5NFbnJwHcG_echP_IKkfdQeb-eP2Y,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=PI6LX0PouoGb8e_ydQ9rATqY795jQh7JPK2COE_oH-Q,2899
|
|
@@ -200,8 +200,8 @@ tencentcloud/ctsdb/v20230202/models.py,sha256=BPcAb1ypOJaIpQNvkYSyXIT2KeOO8HWim3
|
|
|
200
200
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
201
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
202
|
tencentcloud/cvm/v20170312/cvm_client.py,sha256=QwpXxYhJY0Jfnm3nzAclj-0KdIU0uzP_TOrBUOrAZr0,103055
|
|
203
|
-
tencentcloud/cvm/v20170312/errorcodes.py,sha256=
|
|
204
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
|
203
|
+
tencentcloud/cvm/v20170312/errorcodes.py,sha256=vzqK5iQPcORc8X6cF-vHrfZO4ZjvO9iqp-AhQ0JfZ90,57271
|
|
204
|
+
tencentcloud/cvm/v20170312/models.py,sha256=fX9YUu1aNR5dpaBx306y0Xb4Q2Ofi2g9dtfHAAyZDAM,827020
|
|
205
205
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
206
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
207
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=cvTAxQ5gLpderI3wjGkfKrPRIexKM9vygt36y6ZDH3s,444575
|
|
@@ -243,9 +243,9 @@ tencentcloud/dcdb/v20180411/errorcodes.py,sha256=N__WJ70XTRcqJwXxMF2KDrNa6O7LJBO
|
|
|
243
243
|
tencentcloud/dcdb/v20180411/models.py,sha256=xXwJdWC2Lafh_p8YrN1aygXt7f0J7f9MirFt2JI97Ls,461989
|
|
244
244
|
tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
245
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
|
-
tencentcloud/dlc/v20210125/dlc_client.py,sha256=
|
|
246
|
+
tencentcloud/dlc/v20210125/dlc_client.py,sha256=7MJ4qWkrekltAt1fsIwmUYuKZFSz1cLgFC1J87D4uwc,99542
|
|
247
247
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=f0QStwofoAwEbv1pTNlRjRnDm5dv0fNcp-PDqVbyr2o,31542
|
|
248
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
|
248
|
+
tencentcloud/dlc/v20210125/models.py,sha256=UDDuQ59kBfT9s6yCaA13No3dL_6vGBrsHsgdCYFyvts,824472
|
|
249
249
|
tencentcloud/dms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
250
|
tencentcloud/dms/v20200819/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
251
|
tencentcloud/dms/v20200819/dms_client.py,sha256=rbd9TqhAUebfyTNh-_MXic9EGgATMaf4WLf29rpq7Ek,2718
|
|
@@ -409,12 +409,17 @@ tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
409
409
|
tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
410
|
tencentcloud/mdl/v20200326/errorcodes.py,sha256=cb25jEY97KZ7-16TIkdjJdYkNjtHvudGZ_1epZS1fBo,3194
|
|
411
411
|
tencentcloud/mdl/v20200326/mdl_client.py,sha256=YrvvuqGrIgSJ9WBXrY4_Q9rbcOXSXMb5fSl-zmy-KVo,32736
|
|
412
|
-
tencentcloud/mdl/v20200326/models.py,sha256=
|
|
412
|
+
tencentcloud/mdl/v20200326/models.py,sha256=7Mk8dsFB33D_26KZEEbbL3mzvyc73VSF7M1Od1lA4S0,433820
|
|
413
413
|
tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
415
|
tencentcloud/mdp/v20200527/errorcodes.py,sha256=p99PwKKV4u52hUvw70jpUQzbBZednyQOYLPidqmhAts,2850
|
|
416
416
|
tencentcloud/mdp/v20200527/mdp_client.py,sha256=qwkmBDnNLn2lDcjUgkgezCY_Ps5ERCAYqMt79LppMOE,61172
|
|
417
|
-
tencentcloud/mdp/v20200527/models.py,sha256=
|
|
417
|
+
tencentcloud/mdp/v20200527/models.py,sha256=8ng36MeFKlRO3xsWAMBOiYCotrvVK-rPOJKUbe5raOI,366682
|
|
418
|
+
tencentcloud/message/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
+
tencentcloud/message/v20181225/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
|
+
tencentcloud/message/v20181225/errorcodes.py,sha256=CukHjHpyViLIs-Wx9GCaDn7srdXtoseMmJ7-aKakyek,930
|
|
421
|
+
tencentcloud/message/v20181225/message_client.py,sha256=aOLXtWA2kdii5_kSfbJDnZg2g-cdyZ4KvdXcfeRnsm8,1961
|
|
422
|
+
tencentcloud/message/v20181225/models.py,sha256=NOjgl7wn7h1Yia58C75ZKK4CHrm6Jo7BqAPmMxYnNqk,4158
|
|
418
423
|
tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
424
|
tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
425
|
tencentcloud/mongodb/v20190725/errorcodes.py,sha256=FY76Gg6i_g7wFuILwh8KcrEb6jAnay2N0r7EbHVbKkE,7405
|
|
@@ -427,9 +432,9 @@ tencentcloud/monitor/v20180724/models.py,sha256=DN-QVzDnOXi34KnHvDWfPinjeW0jDMg_
|
|
|
427
432
|
tencentcloud/monitor/v20180724/monitor_client.py,sha256=1fL7_-XV-jpyxmH5ibvE--EpMU0ly3YrsSCoHmnXovc,143043
|
|
428
433
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
434
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
|
-
tencentcloud/mps/v20190612/errorcodes.py,sha256=
|
|
431
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
|
432
|
-
tencentcloud/mps/v20190612/mps_client.py,sha256=
|
|
435
|
+
tencentcloud/mps/v20190612/errorcodes.py,sha256=NhcsYnJvqcMkyN-9kMRGklKluz94Y61iNLyqKEMTqJc,17455
|
|
436
|
+
tencentcloud/mps/v20190612/models.py,sha256=DxXha4Vj3oa-G4jGpaTjAoG2QUqdiPCiBrAWCg_uLuw,2109283
|
|
437
|
+
tencentcloud/mps/v20190612/mps_client.py,sha256=ApOcEiSn6pNpfFjt_2DKU6h4Ep9bgwJYUbUIaoLURdA,101513
|
|
433
438
|
tencentcloud/msp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
439
|
tencentcloud/msp/v20180319/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
435
440
|
tencentcloud/msp/v20180319/errorcodes.py,sha256=MNj5ZKgjXM_F5_LD-sYFjb5pPZy8_q---2PdbMWeoZA,779
|
|
@@ -605,7 +610,7 @@ tencentcloud/teo/v20220106/teo_client.py,sha256=pFawOB_-KDT4xTmSKOYiUJCHHGUNx9gm
|
|
|
605
610
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
611
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=NfpPrKMLyN7gMLmypQIyc5uKqdeZ_os3MUVmXJRrW7s,64124
|
|
607
612
|
tencentcloud/teo/v20220901/models.py,sha256=WEvDhGIs4DIKmsXEdoyHpM5eB2O97Ufa0k-10fcT_Vs,1959023
|
|
608
|
-
tencentcloud/teo/v20220901/teo_client.py,sha256=
|
|
613
|
+
tencentcloud/teo/v20220901/teo_client.py,sha256=FxG9-A20i1FmTj5eCCEv8qGzxLIIEXgUkFSj880DIGY,206191
|
|
609
614
|
tencentcloud/tione/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
610
615
|
tencentcloud/tione/v20211111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
611
616
|
tencentcloud/tione/v20211111/errorcodes.py,sha256=1Pq2FzB1tPF3y62Sz6glNNWo9_9PhntifIredoVAbgs,2844
|
|
@@ -698,7 +703,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
698
703
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
|
699
704
|
tencentcloud/yunjing/v20180228/models.py,sha256=nivJxxJYNvW-I_WWuoZj5RJaexdeSctX04e7osSjSUo,331388
|
|
700
705
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=XYRY2x9Bs-06YaFx6swLlxuqhNRuykLZuIte6bc8T2E,67433
|
|
701
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
702
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
703
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
704
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
706
|
+
tencentcloud_sdk_python_intl_en-3.0.1287.dist-info/METADATA,sha256=fFshEL78g9u2ttelK6tIvBXnEOlswfmJ-1VHsAbljFE,1628
|
|
707
|
+
tencentcloud_sdk_python_intl_en-3.0.1287.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
708
|
+
tencentcloud_sdk_python_intl_en-3.0.1287.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
709
|
+
tencentcloud_sdk_python_intl_en-3.0.1287.dist-info/RECORD,,
|
|
File without changes
|