tencentcloud-sdk-python-intl-en 3.0.1228__py2.py3-none-any.whl → 3.0.1230__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.

@@ -0,0 +1,194 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ import json
17
+
18
+ from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
19
+ from tencentcloud.common.abstract_client import AbstractClient
20
+ from tencentcloud.vod.v20240718 import models
21
+
22
+
23
+ class VodClient(AbstractClient):
24
+ _apiVersion = '2024-07-18'
25
+ _endpoint = 'vod.intl.tencentcloudapi.com'
26
+ _service = 'vod'
27
+
28
+
29
+ def CreateIncrementalMigrationStrategy(self, request):
30
+ """Create an incremental migration strategy for the storage of the professional application.
31
+
32
+ :param request: Request instance for CreateIncrementalMigrationStrategy.
33
+ :type request: :class:`tencentcloud.vod.v20240718.models.CreateIncrementalMigrationStrategyRequest`
34
+ :rtype: :class:`tencentcloud.vod.v20240718.models.CreateIncrementalMigrationStrategyResponse`
35
+
36
+ """
37
+ try:
38
+ params = request._serialize()
39
+ headers = request.headers
40
+ body = self.call("CreateIncrementalMigrationStrategy", params, headers=headers)
41
+ response = json.loads(body)
42
+ model = models.CreateIncrementalMigrationStrategyResponse()
43
+ model._deserialize(response["Response"])
44
+ return model
45
+ except Exception as e:
46
+ if isinstance(e, TencentCloudSDKException):
47
+ raise
48
+ else:
49
+ raise TencentCloudSDKException(type(e).__name__, str(e))
50
+
51
+
52
+ def CreateStorage(self, request):
53
+ """This API is used to create storage for professional applications.
54
+
55
+ Note:
56
+ - This API is exclusively for professional applications.
57
+ - When a customer creates a VOD professional application, the system automatically enables storage in certain regions by default. If the customer needs to enable storage in other regions, they can do so using this API.
58
+ - All storage regions and the regions where storage have already been enabled can be queried using the [DescribeStorageRegions](https://cloud.tencent.com/document/product/266/72480) API.
59
+
60
+ :param request: Request instance for CreateStorage.
61
+ :type request: :class:`tencentcloud.vod.v20240718.models.CreateStorageRequest`
62
+ :rtype: :class:`tencentcloud.vod.v20240718.models.CreateStorageResponse`
63
+
64
+ """
65
+ try:
66
+ params = request._serialize()
67
+ headers = request.headers
68
+ body = self.call("CreateStorage", params, headers=headers)
69
+ response = json.loads(body)
70
+ model = models.CreateStorageResponse()
71
+ model._deserialize(response["Response"])
72
+ return model
73
+ except Exception as e:
74
+ if isinstance(e, TencentCloudSDKException):
75
+ raise
76
+ else:
77
+ raise TencentCloudSDKException(type(e).__name__, str(e))
78
+
79
+
80
+ def CreateStorageCredentials(self, request):
81
+ """The API is used to generate access credentials for VOD professional applications, such as generating credentials for client uploads.
82
+
83
+ :param request: Request instance for CreateStorageCredentials.
84
+ :type request: :class:`tencentcloud.vod.v20240718.models.CreateStorageCredentialsRequest`
85
+ :rtype: :class:`tencentcloud.vod.v20240718.models.CreateStorageCredentialsResponse`
86
+
87
+ """
88
+ try:
89
+ params = request._serialize()
90
+ headers = request.headers
91
+ body = self.call("CreateStorageCredentials", params, headers=headers)
92
+ response = json.loads(body)
93
+ model = models.CreateStorageCredentialsResponse()
94
+ model._deserialize(response["Response"])
95
+ return model
96
+ except Exception as e:
97
+ if isinstance(e, TencentCloudSDKException):
98
+ raise
99
+ else:
100
+ raise TencentCloudSDKException(type(e).__name__, str(e))
101
+
102
+
103
+ def DeleteIncrementalMigrationStrategy(self, request):
104
+ """Delete the incremental migration strategy.
105
+
106
+ :param request: Request instance for DeleteIncrementalMigrationStrategy.
107
+ :type request: :class:`tencentcloud.vod.v20240718.models.DeleteIncrementalMigrationStrategyRequest`
108
+ :rtype: :class:`tencentcloud.vod.v20240718.models.DeleteIncrementalMigrationStrategyResponse`
109
+
110
+ """
111
+ try:
112
+ params = request._serialize()
113
+ headers = request.headers
114
+ body = self.call("DeleteIncrementalMigrationStrategy", params, headers=headers)
115
+ response = json.loads(body)
116
+ model = models.DeleteIncrementalMigrationStrategyResponse()
117
+ model._deserialize(response["Response"])
118
+ return model
119
+ except Exception as e:
120
+ if isinstance(e, TencentCloudSDKException):
121
+ raise
122
+ else:
123
+ raise TencentCloudSDKException(type(e).__name__, str(e))
124
+
125
+
126
+ def DescribeIncrementalMigrationStrategyInfos(self, request):
127
+ """Describe the information of the incremental migration strategy.
128
+
129
+ :param request: Request instance for DescribeIncrementalMigrationStrategyInfos.
130
+ :type request: :class:`tencentcloud.vod.v20240718.models.DescribeIncrementalMigrationStrategyInfosRequest`
131
+ :rtype: :class:`tencentcloud.vod.v20240718.models.DescribeIncrementalMigrationStrategyInfosResponse`
132
+
133
+ """
134
+ try:
135
+ params = request._serialize()
136
+ headers = request.headers
137
+ body = self.call("DescribeIncrementalMigrationStrategyInfos", params, headers=headers)
138
+ response = json.loads(body)
139
+ model = models.DescribeIncrementalMigrationStrategyInfosResponse()
140
+ model._deserialize(response["Response"])
141
+ return model
142
+ except Exception as e:
143
+ if isinstance(e, TencentCloudSDKException):
144
+ raise
145
+ else:
146
+ raise TencentCloudSDKException(type(e).__name__, str(e))
147
+
148
+
149
+ def DescribeStorage(self, request):
150
+ """This API is used to query bucket information in the professional application, and it also supports paginated queries.
151
+ Note:
152
+ - This API is exclusively for use in the professional application.
153
+
154
+ :param request: Request instance for DescribeStorage.
155
+ :type request: :class:`tencentcloud.vod.v20240718.models.DescribeStorageRequest`
156
+ :rtype: :class:`tencentcloud.vod.v20240718.models.DescribeStorageResponse`
157
+
158
+ """
159
+ try:
160
+ params = request._serialize()
161
+ headers = request.headers
162
+ body = self.call("DescribeStorage", params, headers=headers)
163
+ response = json.loads(body)
164
+ model = models.DescribeStorageResponse()
165
+ model._deserialize(response["Response"])
166
+ return model
167
+ except Exception as e:
168
+ if isinstance(e, TencentCloudSDKException):
169
+ raise
170
+ else:
171
+ raise TencentCloudSDKException(type(e).__name__, str(e))
172
+
173
+
174
+ def ModifyIncrementalMigrationStrategy(self, request):
175
+ """Modify the information of incremental migration strategy.
176
+
177
+ :param request: Request instance for ModifyIncrementalMigrationStrategy.
178
+ :type request: :class:`tencentcloud.vod.v20240718.models.ModifyIncrementalMigrationStrategyRequest`
179
+ :rtype: :class:`tencentcloud.vod.v20240718.models.ModifyIncrementalMigrationStrategyResponse`
180
+
181
+ """
182
+ try:
183
+ params = request._serialize()
184
+ headers = request.headers
185
+ body = self.call("ModifyIncrementalMigrationStrategy", params, headers=headers)
186
+ response = json.loads(body)
187
+ model = models.ModifyIncrementalMigrationStrategyResponse()
188
+ model._deserialize(response["Response"])
189
+ return model
190
+ except Exception as e:
191
+ if isinstance(e, TencentCloudSDKException):
192
+ raise
193
+ else:
194
+ raise TencentCloudSDKException(type(e).__name__, str(e))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1228
3
+ Version: 3.0.1230
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=UdCmVmwtYEQrAUQLg8st6OoQNn7dDWU5d_gKsDRwf7I,630
1
+ tencentcloud/__init__.py,sha256=2LgxM-zvycdXt7mMcJgH__x1P1Ts4vdjMR9JzYOeMGg,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=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
@@ -71,9 +71,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=spsaD0VnuuaveSdTgfgwcGUpYYi5hkRy
71
71
  tencentcloud/cbs/v20170312/models.py,sha256=IDfQMTM-fKTnwUCwrRr7LPchEVrcuZOgFCbWjSSZv3Q,296697
72
72
  tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- tencentcloud/ccc/v20200210/ccc_client.py,sha256=RtQ0oJgorRjfytzlr72smuY46CByu5en_Jwz9jHqHRk,56050
75
- tencentcloud/ccc/v20200210/errorcodes.py,sha256=i74j8T3ckfevGP_B5-bmhi2sjIMVM1w-7Nq7Eo3og80,6187
76
- tencentcloud/ccc/v20200210/models.py,sha256=T7A7v_5H0-nUkpYZ8zT8x2aIeHcZuQbK8gYpDGw0uec,424789
74
+ tencentcloud/ccc/v20200210/ccc_client.py,sha256=vLkpa6zJ-ohhAWyD1AYaDxr7LUQmVF992jCXuCKpC1k,61292
75
+ tencentcloud/ccc/v20200210/errorcodes.py,sha256=TiMZZGOy_tls_VnwoHi1EapSeKcpTGtySXZ_OIwR6ks,6777
76
+ tencentcloud/ccc/v20200210/models.py,sha256=w8STvXh-rexxUyig39fq-_vj8Z-CBKyYMApGcojfYLM,455766
77
77
  tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
78
  tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
79
  tencentcloud/cdb/v20170320/cdb_client.py,sha256=OEW_0OLDArqOUegIDrz7sQoxxnGu_0UUJ4zDpACJcUQ,137219
@@ -338,13 +338,13 @@ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WD
338
338
  tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
339
  tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
340
  tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=ob6XjXp7Alcx0kON4shg4STrhKSTTomJjKjifRV3jJg,8738
341
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=igrhuf-hY3O6zEtbi97Nx30MkwF_8FmQicsjGcYiXVM,45369
341
+ tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=eAx-GR6p5wEQegzAGIz8WWXbV-mGMUMD_47wFunMZyY,45375
342
342
  tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=dXQAAIyyUhSLrU2TB20mT6Ba1i8-Z1xuJTKJhPyToT4,256362
343
343
  tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
344
  tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
345
  tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
346
346
  tencentcloud/iotcloud/v20210408/iotcloud_client.py,sha256=ZDU7SdCFpHojiQd-TfjZqxCzdwtALjecNrtEw4HMtko,19397
347
- tencentcloud/iotcloud/v20210408/models.py,sha256=ojsq-EnaTR7V-wrlsdzhHWIHbjIpAJ3ebRcwTaRjHOg,110161
347
+ tencentcloud/iotcloud/v20210408/models.py,sha256=WMdm3hU-qbqRfzJ9LJH2CSwruxiHXDegNbdM8AConRc,112033
348
348
  tencentcloud/ip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
349
  tencentcloud/ip/v20210409/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
350
  tencentcloud/ip/v20210409/errorcodes.py,sha256=8jvhxoRpHkM9eR0ZG5iC4jbTXMwDxnBHBoCB3JzP1iw,3069
@@ -368,8 +368,8 @@ tencentcloud/lighthouse/v20200324/models.py,sha256=kTpp4-Cr0x6R4EJ-AkDylF9uWUnAS
368
368
  tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
369
  tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
370
  tencentcloud/live/v20180801/errorcodes.py,sha256=XsTBTC0aAv3BCwGBPJOs5RY9zhhwhttOpMO0wV3KSAk,20330
371
- tencentcloud/live/v20180801/live_client.py,sha256=A9wK3hIqclbv2a0U2jDPmau4QsQvfhS7a0mbMHzI-Ws,129155
372
- tencentcloud/live/v20180801/models.py,sha256=GFEBN49GTGfI4vrRfK3g9zxd8y0rTWqwdW5_JQdRmXc,775207
371
+ tencentcloud/live/v20180801/live_client.py,sha256=RONJb_xqOsPea3wwYvY4vMNVIhq6NQm3yKwtxA8aVLQ,130076
372
+ tencentcloud/live/v20180801/models.py,sha256=lFpW-JAhjFz0nUeRrtU7GJkgi2y1KfWjNmI4CWdWoV0,778453
373
373
  tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
374
  tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
375
  tencentcloud/lke/v20231130/errorcodes.py,sha256=y7H_M6RNSIgLcT5NTA68UOkiG0ux5HyGlmHyQgJPuEE,1946
@@ -389,7 +389,7 @@ tencentcloud/mdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
389
389
  tencentcloud/mdl/v20200326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
390
  tencentcloud/mdl/v20200326/errorcodes.py,sha256=UrwmJD3pUUir_wADh17-T-gweDNkYkXPTVuEs4LsMGM,3178
391
391
  tencentcloud/mdl/v20200326/mdl_client.py,sha256=ro3UE9TgUFta27ALvot7xwxrSqVs5VxrRrWnrv8Lc-Q,32730
392
- tencentcloud/mdl/v20200326/models.py,sha256=I09MiFFiTTCU2RsPK1rfiHa7zHGJ3HUDbI-f_IEuGMQ,414150
392
+ tencentcloud/mdl/v20200326/models.py,sha256=68J-9C1PzU8M7lnRkuSnKVQvdcuGmrFKQbyWBPW9Wqg,429951
393
393
  tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
394
  tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
395
395
  tencentcloud/mdp/v20200527/errorcodes.py,sha256=O-b8jxiEAa2BWaMCv-Wl1gWTikqX5kIAFUq7bGaswpE,2124
@@ -573,9 +573,9 @@ tencentcloud/teo/v20220106/errorcodes.py,sha256=rbR15SA5lWz2Bfvn2Qb_33J7jDVaoBB1
573
573
  tencentcloud/teo/v20220106/models.py,sha256=O7LYEZTTKjloNI2BuDHcaBdEpxjHezVYck_xkVhQse8,777923
574
574
  tencentcloud/teo/v20220106/teo_client.py,sha256=WqbKWMCSVc-Ey-oHXwtzs9bVefmD0B_Up0e1B5vC8OM,82907
575
575
  tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
576
- tencentcloud/teo/v20220901/errorcodes.py,sha256=1TLhna8MLSCt74G25lFKLjLNMgBQivezJy9DlXokTXE,60712
577
- tencentcloud/teo/v20220901/models.py,sha256=9Xbat71hgNni7gCBZxx6emAWniFUZj4h3zlRZse8KZk,1622956
578
- tencentcloud/teo/v20220901/teo_client.py,sha256=zARs4NDLF3YBhZEcFtKD4PAKyGmw6Mp9Ue3UAmyuxwI,150139
576
+ tencentcloud/teo/v20220901/errorcodes.py,sha256=9Bgh2gbHNCC83kMVV99jT4bUf1goC6PvjiAALKsr1lM,61426
577
+ tencentcloud/teo/v20220901/models.py,sha256=u9rejqgMmcSRqX2pWsZ4mwHuyflzBtkD_7OxtuLOebE,1658816
578
+ tencentcloud/teo/v20220901/teo_client.py,sha256=w_jl3tLlOvHkrH5jByW5TBTx1WUzIPjQR_jszdGzhq8,157870
579
579
  tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
580
580
  tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
581
581
  tencentcloud/tiw/v20190919/errorcodes.py,sha256=SWlIppzLafoknDCajqvlAdh2a83rRm07aksn1EUGVAc,6361
@@ -639,6 +639,10 @@ tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
639
639
  tencentcloud/vod/v20180717/errorcodes.py,sha256=T1qEKCUfUBM4sHDxCxnfjIpHIm5GMGuiAXh_rhmGZRs,27980
640
640
  tencentcloud/vod/v20180717/models.py,sha256=z9UqnMeJnhYwkKO5uzB1DkjRvkex11zhENKyVorZ3jo,2931769
641
641
  tencentcloud/vod/v20180717/vod_client.py,sha256=DMxebnzLEsU2E6nf1j4WZxEQu_D8kHOgqT9W8g9dTG8,201269
642
+ tencentcloud/vod/v20240718/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
643
+ tencentcloud/vod/v20240718/errorcodes.py,sha256=eWeInu1UiA8_IeRNhwgXF8Er07pwUr7PQrR9RODA-DQ,1961
644
+ tencentcloud/vod/v20240718/models.py,sha256=VxziwbhYKlDvtU2Ti3rgGVlnW5tzK_Bro7N9YA0xc44,71997
645
+ tencentcloud/vod/v20240718/vod_client.py,sha256=Xvt7OT_mHUybmFIq1eYLEbBGyIiL19rQtvu8T99VmLA,8571
642
646
  tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
643
647
  tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
644
648
  tencentcloud/vpc/v20170312/errorcodes.py,sha256=TjeuZ8IFlK9geQvCmmbnZfdqyIE4siI44dQMXYp5Qh8,48176
@@ -659,7 +663,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
659
663
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
660
664
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
661
665
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
662
- tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/METADATA,sha256=B3RGu6wXYvBdW4j5h_46l5yq-cHqzsq1dwEfKLsrvNY,1628
663
- tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
664
- tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
665
- tencentcloud_sdk_python_intl_en-3.0.1228.dist-info/RECORD,,
666
+ tencentcloud_sdk_python_intl_en-3.0.1230.dist-info/METADATA,sha256=VTRLYbJIJp7XRScrJws-Lon3jxjo-crLv0tAVLYaEk4,1628
667
+ tencentcloud_sdk_python_intl_en-3.0.1230.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
668
+ tencentcloud_sdk_python_intl_en-3.0.1230.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
669
+ tencentcloud_sdk_python_intl_en-3.0.1230.dist-info/RECORD,,