tencentcloud-sdk-python 3.0.1399__py2.py3-none-any.whl → 3.0.1400__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1399'
17
+ __version__ = '3.0.1400'
@@ -28,8 +28,10 @@ import logging.handlers
28
28
 
29
29
  try:
30
30
  from urllib.parse import urlencode
31
+ from urllib.parse import urlparse
31
32
  except ImportError:
32
33
  from urllib import urlencode
34
+ from urlparse import urlparse
33
35
 
34
36
  import tencentcloud
35
37
  from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
@@ -133,11 +135,11 @@ class AbstractClient(object):
133
135
  elif self.profile.signMethod == "TC3-HMAC-SHA256" or options.get("IsMultipart") is True:
134
136
  self._build_req_with_tc3_signature(action, params, req_inter, options)
135
137
  elif self.profile.signMethod in ("HmacSHA1", "HmacSHA256"):
136
- self._build_req_with_old_signature(action, params, req_inter)
138
+ self._build_req_with_old_signature(action, params, req_inter, options)
137
139
  else:
138
140
  raise TencentCloudSDKException("ClientError", "Invalid signature method.")
139
141
 
140
- def _build_req_with_old_signature(self, action, params, req):
142
+ def _build_req_with_old_signature(self, action, params, req, options):
141
143
  params = copy.deepcopy(self._fix_params(params))
142
144
  params['Action'] = action[0].upper() + action[1:]
143
145
  params['RequestClient'] = self.request_client
@@ -160,7 +162,7 @@ class AbstractClient(object):
160
162
  if self.profile.language:
161
163
  params['Language'] = self.profile.language
162
164
 
163
- signInParam = self._format_sign_string(params)
165
+ signInParam = self._format_sign_string(params, options)
164
166
  params['Signature'] = Sign.sign(str(self.credential.secret_key),
165
167
  str(signInParam),
166
168
  str(self.profile.signMethod))
@@ -185,7 +187,7 @@ class AbstractClient(object):
185
187
  raise SDKError("ClientError",
186
188
  "Invalid request method GET for multipart.")
187
189
 
188
- endpoint = self._get_endpoint()
190
+ endpoint = self._get_endpoint(options=options)
189
191
  timestamp = int(time.time())
190
192
  req.header["Host"] = endpoint
191
193
  req.header["X-TC-Action"] = action[0].upper() + action[1:]
@@ -276,7 +278,7 @@ class AbstractClient(object):
276
278
  raise SDKError("ClientError",
277
279
  "Invalid request method GET for multipart.")
278
280
 
279
- endpoint = self._get_endpoint()
281
+ endpoint = self._get_endpoint(options=options)
280
282
  timestamp = int(time.time())
281
283
  req.header["Host"] = endpoint
282
284
  req.header["X-TC-Action"] = action[0].upper() + action[1:]
@@ -333,20 +335,23 @@ class AbstractClient(object):
333
335
  logger.debug("GetResponse: %s", ResponsePrettyFormatter(resp_inter))
334
336
  raise TencentCloudSDKException("ServerNetworkError", resp_inter.content)
335
337
 
336
- def _format_sign_string(self, params):
338
+ def _format_sign_string(self, params, options=None):
337
339
  formatParam = {}
338
340
  for k in params:
339
341
  formatParam[k.replace('_', '.')] = params[k]
340
342
  strParam = '&'.join('%s=%s' % (k, formatParam[k]) for k in sorted(formatParam))
341
- msg = '%s%s%s?%s' % (self.profile.httpProfile.reqMethod, self._get_endpoint(), self._requestPath, strParam)
343
+ msg = '%s%s%s?%s' % (
344
+ self.profile.httpProfile.reqMethod, self._get_endpoint(options=options), self._requestPath, strParam)
342
345
  return msg
343
346
 
344
347
  def _get_service_domain(self):
345
348
  rootDomain = self.profile.httpProfile.rootDomain
346
349
  return self._service + "." + rootDomain
347
350
 
348
- def _get_endpoint(self):
351
+ def _get_endpoint(self, options=None):
349
352
  endpoint = self.profile.httpProfile.endpoint
353
+ if not endpoint and options:
354
+ endpoint = urlparse(options.get("Endpoint", "")).hostname
350
355
  if endpoint is None:
351
356
  endpoint = self._get_service_domain()
352
357
  return endpoint
@@ -420,7 +425,7 @@ class AbstractClient(object):
420
425
  headers["X-TC-TraceId"] = str(uuid.uuid4())
421
426
  if not self.profile.disable_region_breaker:
422
427
  return self._call_with_region_breaker(action, params, options, headers)
423
- req = RequestInternal(self._get_endpoint(),
428
+ req = RequestInternal(self._get_endpoint(options=options),
424
429
  self.profile.httpProfile.reqMethod,
425
430
  self._requestPath,
426
431
  header=headers)
@@ -444,7 +449,7 @@ class AbstractClient(object):
444
449
  return retryer.send_request(_call_once).content
445
450
 
446
451
  def _call_with_region_breaker(self, action, params, options=None, headers=None):
447
- endpoint = self._get_endpoint()
452
+ endpoint = self._get_endpoint(options=options)
448
453
  generation, need_break = self.circuit_breaker.before_requests()
449
454
  if need_break:
450
455
  endpoint = self._service + "." + self.profile.region_breaker_profile.backup_endpoint
@@ -470,7 +475,7 @@ class AbstractClient(object):
470
475
  self._check_error(resp)
471
476
  return resp.content
472
477
 
473
- def call_octet_stream(self, action, headers, body):
478
+ def call_octet_stream(self, action, headers, body, options=None):
474
479
  """Invoke API with application/ocet-stream content-type.
475
480
 
476
481
  Note:
@@ -490,12 +495,14 @@ class AbstractClient(object):
490
495
  if self.profile.httpProfile.reqMethod != "POST":
491
496
  raise SDKError("ClientError", "Invalid request method.")
492
497
 
493
- req = RequestInternal(self._get_endpoint(),
498
+ if not options:
499
+ options = {}
500
+ req = RequestInternal(self._get_endpoint(options=options),
494
501
  self.profile.httpProfile.reqMethod,
495
502
  self._requestPath,
496
503
  header=headers)
497
504
  req.data = body
498
- options = {"IsOctetStream": True}
505
+ options["IsOctetStream"] = True
499
506
  self._build_req_inter(action, None, req, options)
500
507
 
501
508
  resp = self.request.send_request(req)
@@ -538,6 +545,7 @@ class AbstractClient(object):
538
545
  :param options: Request options, like {"SkipSign": False, "IsMultipart": False, "IsOctetStream": False, "BinaryParams": []}
539
546
  :type options: dict
540
547
  """
548
+
541
549
  def _call_once():
542
550
  resp = self._call(action, params, options, headers)
543
551
  self._check_status(resp)
@@ -37,7 +37,8 @@ class EsClient(AbstractClient):
37
37
  """
38
38
  try:
39
39
  params = request._serialize()
40
- return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers)
40
+ options = {"Endpoint": "%s://es.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
41
+ return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers, options=options)
41
42
  except Exception as e:
42
43
  if isinstance(e, TencentCloudSDKException):
43
44
  raise
@@ -174,7 +175,8 @@ class EsClient(AbstractClient):
174
175
  """
175
176
  try:
176
177
  params = request._serialize()
177
- return self._call_and_deserialize("ParseDocument", params, models.ParseDocumentResponse, headers=request.headers)
178
+ options = {"Endpoint": "%s://es.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
179
+ return self._call_and_deserialize("ParseDocument", params, models.ParseDocumentResponse, headers=request.headers, options=options)
178
180
  except Exception as e:
179
181
  if isinstance(e, TencentCloudSDKException):
180
182
  raise
@@ -66,7 +66,8 @@ class HunyuanClient(AbstractClient):
66
66
  """
67
67
  try:
68
68
  params = request._serialize()
69
- return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers)
69
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
70
+ return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers, options=options)
70
71
  except Exception as e:
71
72
  if isinstance(e, TencentCloudSDKException):
72
73
  raise
@@ -89,7 +90,8 @@ class HunyuanClient(AbstractClient):
89
90
  """
90
91
  try:
91
92
  params = request._serialize()
92
- return self._call_and_deserialize("ChatTranslations", params, models.ChatTranslationsResponse, headers=request.headers)
93
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
94
+ return self._call_and_deserialize("ChatTranslations", params, models.ChatTranslationsResponse, headers=request.headers, options=options)
93
95
  except Exception as e:
94
96
  if isinstance(e, TencentCloudSDKException):
95
97
  raise
@@ -112,7 +114,8 @@ class HunyuanClient(AbstractClient):
112
114
  """
113
115
  try:
114
116
  params = request._serialize()
115
- return self._call_and_deserialize("CreateThread", params, models.CreateThreadResponse, headers=request.headers)
117
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
118
+ return self._call_and_deserialize("CreateThread", params, models.CreateThreadResponse, headers=request.headers, options=options)
116
119
  except Exception as e:
117
120
  if isinstance(e, TencentCloudSDKException):
118
121
  raise
@@ -130,7 +133,8 @@ class HunyuanClient(AbstractClient):
130
133
  """
131
134
  try:
132
135
  params = request._serialize()
133
- return self._call_and_deserialize("FilesDeletions", params, models.FilesDeletionsResponse, headers=request.headers)
136
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
137
+ return self._call_and_deserialize("FilesDeletions", params, models.FilesDeletionsResponse, headers=request.headers, options=options)
134
138
  except Exception as e:
135
139
  if isinstance(e, TencentCloudSDKException):
136
140
  raise
@@ -148,7 +152,8 @@ class HunyuanClient(AbstractClient):
148
152
  """
149
153
  try:
150
154
  params = request._serialize()
151
- return self._call_and_deserialize("FilesList", params, models.FilesListResponse, headers=request.headers)
155
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
156
+ return self._call_and_deserialize("FilesList", params, models.FilesListResponse, headers=request.headers, options=options)
152
157
  except Exception as e:
153
158
  if isinstance(e, TencentCloudSDKException):
154
159
  raise
@@ -167,7 +172,8 @@ class HunyuanClient(AbstractClient):
167
172
  """
168
173
  try:
169
174
  params = request._serialize()
170
- return self._call_and_deserialize("FilesUploads", params, models.FilesUploadsResponse, headers=request.headers)
175
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
176
+ return self._call_and_deserialize("FilesUploads", params, models.FilesUploadsResponse, headers=request.headers, options=options)
171
177
  except Exception as e:
172
178
  if isinstance(e, TencentCloudSDKException):
173
179
  raise
@@ -213,7 +219,8 @@ class HunyuanClient(AbstractClient):
213
219
  """
214
220
  try:
215
221
  params = request._serialize()
216
- return self._call_and_deserialize("GetThread", params, models.GetThreadResponse, headers=request.headers)
222
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
223
+ return self._call_and_deserialize("GetThread", params, models.GetThreadResponse, headers=request.headers, options=options)
217
224
  except Exception as e:
218
225
  if isinstance(e, TencentCloudSDKException):
219
226
  raise
@@ -236,7 +243,8 @@ class HunyuanClient(AbstractClient):
236
243
  """
237
244
  try:
238
245
  params = request._serialize()
239
- return self._call_and_deserialize("GetThreadMessage", params, models.GetThreadMessageResponse, headers=request.headers)
246
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
247
+ return self._call_and_deserialize("GetThreadMessage", params, models.GetThreadMessageResponse, headers=request.headers, options=options)
240
248
  except Exception as e:
241
249
  if isinstance(e, TencentCloudSDKException):
242
250
  raise
@@ -259,7 +267,8 @@ class HunyuanClient(AbstractClient):
259
267
  """
260
268
  try:
261
269
  params = request._serialize()
262
- return self._call_and_deserialize("GetThreadMessageList", params, models.GetThreadMessageListResponse, headers=request.headers)
270
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
271
+ return self._call_and_deserialize("GetThreadMessageList", params, models.GetThreadMessageListResponse, headers=request.headers, options=options)
263
272
  except Exception as e:
264
273
  if isinstance(e, TencentCloudSDKException):
265
274
  raise
@@ -307,7 +316,8 @@ class HunyuanClient(AbstractClient):
307
316
  """
308
317
  try:
309
318
  params = request._serialize()
310
- return self._call_and_deserialize("GroupChatCompletions", params, models.GroupChatCompletionsResponse, headers=request.headers)
319
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
320
+ return self._call_and_deserialize("GroupChatCompletions", params, models.GroupChatCompletionsResponse, headers=request.headers, options=options)
311
321
  except Exception as e:
312
322
  if isinstance(e, TencentCloudSDKException):
313
323
  raise
@@ -332,7 +342,8 @@ class HunyuanClient(AbstractClient):
332
342
  """
333
343
  try:
334
344
  params = request._serialize()
335
- return self._call_and_deserialize("ImageQuestion", params, models.ImageQuestionResponse, headers=request.headers)
345
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
346
+ return self._call_and_deserialize("ImageQuestion", params, models.ImageQuestionResponse, headers=request.headers, options=options)
336
347
  except Exception as e:
337
348
  if isinstance(e, TencentCloudSDKException):
338
349
  raise
@@ -430,7 +441,8 @@ class HunyuanClient(AbstractClient):
430
441
  """
431
442
  try:
432
443
  params = request._serialize()
433
- return self._call_and_deserialize("RunThread", params, models.RunThreadResponse, headers=request.headers)
444
+ options = {"Endpoint": "%s://hunyuan.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
445
+ return self._call_and_deserialize("RunThread", params, models.RunThreadResponse, headers=request.headers, options=options)
434
446
  except Exception as e:
435
447
  if isinstance(e, TencentCloudSDKException):
436
448
  raise
@@ -148,7 +148,8 @@ class LkeapClient(AbstractClient):
148
148
  """
149
149
  try:
150
150
  params = request._serialize()
151
- return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers)
151
+ options = {"Endpoint": "%s://lkeap.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
152
+ return self._call_and_deserialize("ChatCompletions", params, models.ChatCompletionsResponse, headers=request.headers, options=options)
152
153
  except Exception as e:
153
154
  if isinstance(e, TencentCloudSDKException):
154
155
  raise
@@ -654,7 +655,8 @@ class LkeapClient(AbstractClient):
654
655
  """
655
656
  try:
656
657
  params = request._serialize()
657
- return self._call_and_deserialize("ReconstructDocumentSSE", params, models.ReconstructDocumentSSEResponse, headers=request.headers)
658
+ options = {"Endpoint": "%s://lkeap.ai.tencentcloudapi.com" % self.profile.httpProfile.scheme}
659
+ return self._call_and_deserialize("ReconstructDocumentSSE", params, models.ReconstructDocumentSSEResponse, headers=request.headers, options=options)
658
660
  except Exception as e:
659
661
  if isinstance(e, TencentCloudSDKException):
660
662
  raise
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1399
3
+ Version: 3.0.1400
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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=kaJ4RLABKUDPGJ_CtVSweAM5EoAMaNah4Yi_sOIqO94,631
53
+ tencentcloud/__init__.py,sha256=LqN0ndPTZccT-h8Q0XbdH8NKLR8KJkRmVGYMq-hMrQI,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
@@ -412,7 +412,7 @@ tencentcloud/cms/v20190321/cms_client.py,sha256=RtYxsysb2MhKn1MrAfxI5gss-d_b-8sp
412
412
  tencentcloud/cms/v20190321/errorcodes.py,sha256=1_B2Hyib6nnF1S9VKWoT2I14dZhnuvHC6Ecynzx450E,4152
413
413
  tencentcloud/cms/v20190321/models.py,sha256=KtdhiWJvfgfNqPoEmhOWLlV7By_2WBysk04JoPMRUUM,121226
414
414
  tencentcloud/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
- tencentcloud/common/abstract_client.py,sha256=W-kuyBPX23VbUV3sNpqhVMEivSg_Un7IRI_yk9IFCpQ,25100
415
+ tencentcloud/common/abstract_client.py,sha256=xJM9-JThhLv5_pnnqMie_RqZkSjnn_mVkaiy9phVLT0,25499
416
416
  tencentcloud/common/abstract_model.py,sha256=LJ9BkK1Djh_gdx3Cy3trEOtJRGtrM-ikeqRzO1PgwiY,2418
417
417
  tencentcloud/common/circuit_breaker.py,sha256=p_6ssklMRtR-YKNGcFLd3ClUvZPs8ZLnVkhjcOZA0DY,4301
418
418
  tencentcloud/common/common_client.py,sha256=1Dr96VCEoJgDPmnurI46ko_cSROtRQbcHef_qeOKZco,2043
@@ -601,7 +601,7 @@ tencentcloud/es/v20180416/es_client.py,sha256=0iuPNo4k9T41dv8hmV8KhXdWGgYGNT3BXm
601
601
  tencentcloud/es/v20180416/models.py,sha256=1svBYgb9e_r7Ip5JptOXJid4Uc7QSWVS4vpLqpXf5CI,639643
602
602
  tencentcloud/es/v20250101/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
603
603
  tencentcloud/es/v20250101/errorcodes.py,sha256=T6IbjK_z-u3GnF5VfZ5fMlrYWTfVchuk3K4P1dtBqc8,1303
604
- tencentcloud/es/v20250101/es_client.py,sha256=57J28VvoeElZtDThaVb_1N2ZIGoS2iW52MBwNgmG0lE,11052
604
+ tencentcloud/es/v20250101/es_client.py,sha256=c2dctODYBkv3QC97lASN-tVJ1o4K73DjymTDLMXHjrU,11292
605
605
  tencentcloud/es/v20250101/models.py,sha256=JJVMTJKYxsQJSG9mQQFFpHSKpxq8MLEUZaESmlaG8QY,65248
606
606
  tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
607
607
  tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -699,7 +699,7 @@ tencentcloud/hcm/v20181106/models.py,sha256=gjDHQZ4PJWOcWANfclnEJ70IDzq8Z8d6F3iL
699
699
  tencentcloud/hunyuan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
700
700
  tencentcloud/hunyuan/v20230901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
701
701
  tencentcloud/hunyuan/v20230901/errorcodes.py,sha256=_0YqSjGyjYE_ynqDLZdx3lKDVbh1lfWDls1YyA-5uXQ,4794
702
- tencentcloud/hunyuan/v20230901/hunyuan_client.py,sha256=adTQNFdqfFz_rSdRarSH73yi0CxgeVYRWJBzmJxzdrs,30903
702
+ tencentcloud/hunyuan/v20230901/hunyuan_client.py,sha256=g2fvGCujJoaFWs9d8ZJenb-_9Yh-4ousMx9PGWEEkS8,32403
703
703
  tencentcloud/hunyuan/v20230901/models.py,sha256=Ka3iJtXN7gpGxMu7VMOdxsbS1tnRT6ARaXM29im_b8s,265408
704
704
  tencentcloud/iai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
705
705
  tencentcloud/iai/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -853,7 +853,7 @@ tencentcloud/lke/v20231130/models.py,sha256=Zk5InWsERXd_qhXWK89AOCkUbyn4XUjFgzZg
853
853
  tencentcloud/lkeap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
854
854
  tencentcloud/lkeap/v20240522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
855
855
  tencentcloud/lkeap/v20240522/errorcodes.py,sha256=pSx0n_A6I_tVRJNr38UZIiklPU-CTx0v2g51OrUsnWM,2470
856
- tencentcloud/lkeap/v20240522/lkeap_client.py,sha256=BItZmeBjelGVaR24lZB8TYFrCzbznTCIhjTn6pxdJJs,36817
856
+ tencentcloud/lkeap/v20240522/lkeap_client.py,sha256=67_TOtUaKco8AbAdssiszmx8aOyqvPeXhs6WwE0BHIw,37063
857
857
  tencentcloud/lkeap/v20240522/models.py,sha256=xkAr4X6uD-0CwZ1zU0t7u9Jr-Yq0UsBUDRmsbi8iqaw,165696
858
858
  tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
859
859
  tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1502,8 +1502,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1502
1502
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1503
1503
  tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
1504
1504
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1505
- tencentcloud_sdk_python-3.0.1399.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1506
- tencentcloud_sdk_python-3.0.1399.dist-info/METADATA,sha256=oH4kpmlrpYukMZc5XbQmVJwMkCjQjJxdpbR0JR2hkso,1613
1507
- tencentcloud_sdk_python-3.0.1399.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1508
- tencentcloud_sdk_python-3.0.1399.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1509
- tencentcloud_sdk_python-3.0.1399.dist-info/RECORD,,
1505
+ tencentcloud_sdk_python-3.0.1400.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1506
+ tencentcloud_sdk_python-3.0.1400.dist-info/METADATA,sha256=0WD-ckvWaUJ-UaBmarfc7OG0ZEyViAHbNlt6BWBAkDI,1613
1507
+ tencentcloud_sdk_python-3.0.1400.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1508
+ tencentcloud_sdk_python-3.0.1400.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1509
+ tencentcloud_sdk_python-3.0.1400.dist-info/RECORD,,