tencentcloud-sdk-python 3.0.1417__py2.py3-none-any.whl → 3.0.1418__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.1417'
17
+ __version__ = '3.0.1418'
File without changes
File without changes
@@ -0,0 +1,74 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2025 Tencent. 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.ai3d.v20250513 import models
21
+
22
+
23
+ class Ai3dClient(AbstractClient):
24
+ _apiVersion = '2025-05-13'
25
+ _endpoint = 'ai3d.tencentcloudapi.com'
26
+ _service = 'ai3d'
27
+
28
+
29
+ def QueryHunyuanTo3DJob(self, request):
30
+ """混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
31
+ 默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
32
+
33
+ :param request: Request instance for QueryHunyuanTo3DJob.
34
+ :type request: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DJobRequest`
35
+ :rtype: :class:`tencentcloud.ai3d.v20250513.models.QueryHunyuanTo3DJobResponse`
36
+
37
+ """
38
+ try:
39
+ params = request._serialize()
40
+ headers = request.headers
41
+ body = self.call("QueryHunyuanTo3DJob", params, headers=headers)
42
+ response = json.loads(body)
43
+ model = models.QueryHunyuanTo3DJobResponse()
44
+ model._deserialize(response["Response"])
45
+ return model
46
+ except Exception as e:
47
+ if isinstance(e, TencentCloudSDKException):
48
+ raise
49
+ else:
50
+ raise TencentCloudSDKException(type(e).__name__, str(e))
51
+
52
+
53
+ def SubmitHunyuanTo3DJob(self, request):
54
+ """混元生3D接口,基于混元大模型,根据输入的文本描述/图片智能生成3D。
55
+ 默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
56
+
57
+ :param request: Request instance for SubmitHunyuanTo3DJob.
58
+ :type request: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DJobRequest`
59
+ :rtype: :class:`tencentcloud.ai3d.v20250513.models.SubmitHunyuanTo3DJobResponse`
60
+
61
+ """
62
+ try:
63
+ params = request._serialize()
64
+ headers = request.headers
65
+ body = self.call("SubmitHunyuanTo3DJob", params, headers=headers)
66
+ response = json.loads(body)
67
+ model = models.SubmitHunyuanTo3DJobResponse()
68
+ model._deserialize(response["Response"])
69
+ return model
70
+ except Exception as e:
71
+ if isinstance(e, TencentCloudSDKException):
72
+ raise
73
+ else:
74
+ raise TencentCloudSDKException(type(e).__name__, str(e))
@@ -0,0 +1,15 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2025 Tencent. 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
+
@@ -0,0 +1,461 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2025 Tencent. 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 warnings
17
+
18
+ from tencentcloud.common.abstract_model import AbstractModel
19
+
20
+
21
+ class File3D(AbstractModel):
22
+ """3D文件
23
+
24
+ """
25
+
26
+ def __init__(self):
27
+ r"""
28
+ :param _Type: 3D文件的格式。取值范围:OBJ
29
+ :type Type: str
30
+ :param _Url: 文件的Url(有效期24小时)
31
+ :type Url: str
32
+ :param _PreviewImageUrl: 预览图片Url
33
+ :type PreviewImageUrl: str
34
+ """
35
+ self._Type = None
36
+ self._Url = None
37
+ self._PreviewImageUrl = None
38
+
39
+ @property
40
+ def Type(self):
41
+ """3D文件的格式。取值范围:OBJ
42
+ :rtype: str
43
+ """
44
+ return self._Type
45
+
46
+ @Type.setter
47
+ def Type(self, Type):
48
+ self._Type = Type
49
+
50
+ @property
51
+ def Url(self):
52
+ """文件的Url(有效期24小时)
53
+ :rtype: str
54
+ """
55
+ return self._Url
56
+
57
+ @Url.setter
58
+ def Url(self, Url):
59
+ self._Url = Url
60
+
61
+ @property
62
+ def PreviewImageUrl(self):
63
+ """预览图片Url
64
+ :rtype: str
65
+ """
66
+ return self._PreviewImageUrl
67
+
68
+ @PreviewImageUrl.setter
69
+ def PreviewImageUrl(self, PreviewImageUrl):
70
+ self._PreviewImageUrl = PreviewImageUrl
71
+
72
+
73
+ def _deserialize(self, params):
74
+ self._Type = params.get("Type")
75
+ self._Url = params.get("Url")
76
+ self._PreviewImageUrl = params.get("PreviewImageUrl")
77
+ memeber_set = set(params.keys())
78
+ for name, value in vars(self).items():
79
+ property_name = name[1:]
80
+ if property_name in memeber_set:
81
+ memeber_set.remove(property_name)
82
+ if len(memeber_set) > 0:
83
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
84
+
85
+
86
+
87
+ class QueryHunyuanTo3DJobRequest(AbstractModel):
88
+ """QueryHunyuanTo3DJob请求参数结构体
89
+
90
+ """
91
+
92
+ def __init__(self):
93
+ r"""
94
+ :param _JobId: 任务ID。
95
+ :type JobId: str
96
+ """
97
+ self._JobId = None
98
+
99
+ @property
100
+ def JobId(self):
101
+ """任务ID。
102
+ :rtype: str
103
+ """
104
+ return self._JobId
105
+
106
+ @JobId.setter
107
+ def JobId(self, JobId):
108
+ self._JobId = JobId
109
+
110
+
111
+ def _deserialize(self, params):
112
+ self._JobId = params.get("JobId")
113
+ memeber_set = set(params.keys())
114
+ for name, value in vars(self).items():
115
+ property_name = name[1:]
116
+ if property_name in memeber_set:
117
+ memeber_set.remove(property_name)
118
+ if len(memeber_set) > 0:
119
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
120
+
121
+
122
+
123
+ class QueryHunyuanTo3DJobResponse(AbstractModel):
124
+ """QueryHunyuanTo3DJob返回参数结构体
125
+
126
+ """
127
+
128
+ def __init__(self):
129
+ r"""
130
+ :param _Status: 任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
131
+ :type Status: str
132
+ :param _ErrorCode: 错误码
133
+ :type ErrorCode: str
134
+ :param _ErrorMessage: 错误信息
135
+ :type ErrorMessage: str
136
+ :param _ResultFile3Ds: 生成的3D文件数组。
137
+ :type ResultFile3Ds: list of File3D
138
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
139
+ :type RequestId: str
140
+ """
141
+ self._Status = None
142
+ self._ErrorCode = None
143
+ self._ErrorMessage = None
144
+ self._ResultFile3Ds = None
145
+ self._RequestId = None
146
+
147
+ @property
148
+ def Status(self):
149
+ """任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功
150
+ :rtype: str
151
+ """
152
+ return self._Status
153
+
154
+ @Status.setter
155
+ def Status(self, Status):
156
+ self._Status = Status
157
+
158
+ @property
159
+ def ErrorCode(self):
160
+ """错误码
161
+ :rtype: str
162
+ """
163
+ return self._ErrorCode
164
+
165
+ @ErrorCode.setter
166
+ def ErrorCode(self, ErrorCode):
167
+ self._ErrorCode = ErrorCode
168
+
169
+ @property
170
+ def ErrorMessage(self):
171
+ """错误信息
172
+ :rtype: str
173
+ """
174
+ return self._ErrorMessage
175
+
176
+ @ErrorMessage.setter
177
+ def ErrorMessage(self, ErrorMessage):
178
+ self._ErrorMessage = ErrorMessage
179
+
180
+ @property
181
+ def ResultFile3Ds(self):
182
+ """生成的3D文件数组。
183
+ :rtype: list of File3D
184
+ """
185
+ return self._ResultFile3Ds
186
+
187
+ @ResultFile3Ds.setter
188
+ def ResultFile3Ds(self, ResultFile3Ds):
189
+ self._ResultFile3Ds = ResultFile3Ds
190
+
191
+ @property
192
+ def RequestId(self):
193
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
194
+ :rtype: str
195
+ """
196
+ return self._RequestId
197
+
198
+ @RequestId.setter
199
+ def RequestId(self, RequestId):
200
+ self._RequestId = RequestId
201
+
202
+
203
+ def _deserialize(self, params):
204
+ self._Status = params.get("Status")
205
+ self._ErrorCode = params.get("ErrorCode")
206
+ self._ErrorMessage = params.get("ErrorMessage")
207
+ if params.get("ResultFile3Ds") is not None:
208
+ self._ResultFile3Ds = []
209
+ for item in params.get("ResultFile3Ds"):
210
+ obj = File3D()
211
+ obj._deserialize(item)
212
+ self._ResultFile3Ds.append(obj)
213
+ self._RequestId = params.get("RequestId")
214
+
215
+
216
+ class SubmitHunyuanTo3DJobRequest(AbstractModel):
217
+ """SubmitHunyuanTo3DJob请求参数结构体
218
+
219
+ """
220
+
221
+ def __init__(self):
222
+ r"""
223
+ :param _Prompt: 文生3D,3D内容的描述,中文正向提示词。
224
+ 最多支持200个 utf-8 字符。
225
+ 文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
226
+ :type Prompt: str
227
+ :param _ImageBase64: 输入图 Base64 数据。
228
+ 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
229
+ 格式:jpg,png,jpeg,webp。
230
+ ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
231
+ :type ImageBase64: str
232
+ :param _ImageUrl: 输入图Url。
233
+ 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
234
+ 格式:jpg,png,jpeg,webp。
235
+ ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
236
+ :type ImageUrl: str
237
+ :param _MultiViewImages: 多视角的模型图片,视角参考值:
238
+ left:左视图;
239
+ right:右视图;
240
+ back:后视图;
241
+
242
+ 每个视角仅限制一张图片。
243
+ ●图片大小限制:编码后大小不可超过8M。
244
+ ●图片分辨率限制:单边分辨率小于5000且大于128。
245
+ ●支持图片格式:支持jpg或png
246
+ :type MultiViewImages: list of ViewImage
247
+ :param _ResultFormat: 生成模型的格式,仅限制生成一种格式。
248
+ 生成模型文件组默认返回obj格式。
249
+ 可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
250
+ :type ResultFormat: str
251
+ :param _EnablePBR: 是否开启 PBR材质生成,默认 false。
252
+ :type EnablePBR: bool
253
+ """
254
+ self._Prompt = None
255
+ self._ImageBase64 = None
256
+ self._ImageUrl = None
257
+ self._MultiViewImages = None
258
+ self._ResultFormat = None
259
+ self._EnablePBR = None
260
+
261
+ @property
262
+ def Prompt(self):
263
+ """文生3D,3D内容的描述,中文正向提示词。
264
+ 最多支持200个 utf-8 字符。
265
+ 文生3D, image、image_url和 prompt必填其一,且prompt和image/image_url不能同时存在。
266
+ :rtype: str
267
+ """
268
+ return self._Prompt
269
+
270
+ @Prompt.setter
271
+ def Prompt(self, Prompt):
272
+ self._Prompt = Prompt
273
+
274
+ @property
275
+ def ImageBase64(self):
276
+ """输入图 Base64 数据。
277
+ 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
278
+ 格式:jpg,png,jpeg,webp。
279
+ ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
280
+ :rtype: str
281
+ """
282
+ return self._ImageBase64
283
+
284
+ @ImageBase64.setter
285
+ def ImageBase64(self, ImageBase64):
286
+ self._ImageBase64 = ImageBase64
287
+
288
+ @property
289
+ def ImageUrl(self):
290
+ """输入图Url。
291
+ 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过6m)
292
+ 格式:jpg,png,jpeg,webp。
293
+ ImageBase64/ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
294
+ :rtype: str
295
+ """
296
+ return self._ImageUrl
297
+
298
+ @ImageUrl.setter
299
+ def ImageUrl(self, ImageUrl):
300
+ self._ImageUrl = ImageUrl
301
+
302
+ @property
303
+ def MultiViewImages(self):
304
+ """多视角的模型图片,视角参考值:
305
+ left:左视图;
306
+ right:右视图;
307
+ back:后视图;
308
+
309
+ 每个视角仅限制一张图片。
310
+ ●图片大小限制:编码后大小不可超过8M。
311
+ ●图片分辨率限制:单边分辨率小于5000且大于128。
312
+ ●支持图片格式:支持jpg或png
313
+ :rtype: list of ViewImage
314
+ """
315
+ return self._MultiViewImages
316
+
317
+ @MultiViewImages.setter
318
+ def MultiViewImages(self, MultiViewImages):
319
+ self._MultiViewImages = MultiViewImages
320
+
321
+ @property
322
+ def ResultFormat(self):
323
+ """生成模型的格式,仅限制生成一种格式。
324
+ 生成模型文件组默认返回obj格式。
325
+ 可选值:OBJ,GLB,STL,USDZ,FBX,MP4。
326
+ :rtype: str
327
+ """
328
+ return self._ResultFormat
329
+
330
+ @ResultFormat.setter
331
+ def ResultFormat(self, ResultFormat):
332
+ self._ResultFormat = ResultFormat
333
+
334
+ @property
335
+ def EnablePBR(self):
336
+ """是否开启 PBR材质生成,默认 false。
337
+ :rtype: bool
338
+ """
339
+ return self._EnablePBR
340
+
341
+ @EnablePBR.setter
342
+ def EnablePBR(self, EnablePBR):
343
+ self._EnablePBR = EnablePBR
344
+
345
+
346
+ def _deserialize(self, params):
347
+ self._Prompt = params.get("Prompt")
348
+ self._ImageBase64 = params.get("ImageBase64")
349
+ self._ImageUrl = params.get("ImageUrl")
350
+ if params.get("MultiViewImages") is not None:
351
+ self._MultiViewImages = []
352
+ for item in params.get("MultiViewImages"):
353
+ obj = ViewImage()
354
+ obj._deserialize(item)
355
+ self._MultiViewImages.append(obj)
356
+ self._ResultFormat = params.get("ResultFormat")
357
+ self._EnablePBR = params.get("EnablePBR")
358
+ memeber_set = set(params.keys())
359
+ for name, value in vars(self).items():
360
+ property_name = name[1:]
361
+ if property_name in memeber_set:
362
+ memeber_set.remove(property_name)
363
+ if len(memeber_set) > 0:
364
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
365
+
366
+
367
+
368
+ class SubmitHunyuanTo3DJobResponse(AbstractModel):
369
+ """SubmitHunyuanTo3DJob返回参数结构体
370
+
371
+ """
372
+
373
+ def __init__(self):
374
+ r"""
375
+ :param _JobId: 任务ID(有效期24小时)
376
+ :type JobId: str
377
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
378
+ :type RequestId: str
379
+ """
380
+ self._JobId = None
381
+ self._RequestId = None
382
+
383
+ @property
384
+ def JobId(self):
385
+ """任务ID(有效期24小时)
386
+ :rtype: str
387
+ """
388
+ return self._JobId
389
+
390
+ @JobId.setter
391
+ def JobId(self, JobId):
392
+ self._JobId = JobId
393
+
394
+ @property
395
+ def RequestId(self):
396
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
397
+ :rtype: str
398
+ """
399
+ return self._RequestId
400
+
401
+ @RequestId.setter
402
+ def RequestId(self, RequestId):
403
+ self._RequestId = RequestId
404
+
405
+
406
+ def _deserialize(self, params):
407
+ self._JobId = params.get("JobId")
408
+ self._RequestId = params.get("RequestId")
409
+
410
+
411
+ class ViewImage(AbstractModel):
412
+ """多视角图片
413
+
414
+ """
415
+
416
+ def __init__(self):
417
+ r"""
418
+ :param _ViewType: 视角类型。
419
+ 取值:back、left、right
420
+ :type ViewType: str
421
+ :param _ViewImageUrl: 图片Url地址
422
+ :type ViewImageUrl: str
423
+ """
424
+ self._ViewType = None
425
+ self._ViewImageUrl = None
426
+
427
+ @property
428
+ def ViewType(self):
429
+ """视角类型。
430
+ 取值:back、left、right
431
+ :rtype: str
432
+ """
433
+ return self._ViewType
434
+
435
+ @ViewType.setter
436
+ def ViewType(self, ViewType):
437
+ self._ViewType = ViewType
438
+
439
+ @property
440
+ def ViewImageUrl(self):
441
+ """图片Url地址
442
+ :rtype: str
443
+ """
444
+ return self._ViewImageUrl
445
+
446
+ @ViewImageUrl.setter
447
+ def ViewImageUrl(self, ViewImageUrl):
448
+ self._ViewImageUrl = ViewImageUrl
449
+
450
+
451
+ def _deserialize(self, params):
452
+ self._ViewType = params.get("ViewType")
453
+ self._ViewImageUrl = params.get("ViewImageUrl")
454
+ memeber_set = set(params.keys())
455
+ for name, value in vars(self).items():
456
+ property_name = name[1:]
457
+ if property_name in memeber_set:
458
+ memeber_set.remove(property_name)
459
+ if len(memeber_set) > 0:
460
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
461
+
@@ -13142,6 +13142,8 @@ class Instance(AbstractModel):
13142
13142
  :param _LatestOperationErrorMsg: 实例的最新操作错误信息。
13143
13143
  注意:此字段可能返回 null,表示取不到有效值。
13144
13144
  :type LatestOperationErrorMsg: str
13145
+ :param _PublicIPv6Addresses: 实例绑定的公网IPv6地址。
13146
+ :type PublicIPv6Addresses: list of str
13145
13147
  """
13146
13148
  self._Placement = None
13147
13149
  self._InstanceId = None
@@ -13184,6 +13186,7 @@ class Instance(AbstractModel):
13184
13186
  self._DefaultLoginUser = None
13185
13187
  self._DefaultLoginPort = None
13186
13188
  self._LatestOperationErrorMsg = None
13189
+ self._PublicIPv6Addresses = None
13187
13190
 
13188
13191
  @property
13189
13192
  def Placement(self):
@@ -13646,6 +13649,17 @@ class Instance(AbstractModel):
13646
13649
  def LatestOperationErrorMsg(self, LatestOperationErrorMsg):
13647
13650
  self._LatestOperationErrorMsg = LatestOperationErrorMsg
13648
13651
 
13652
+ @property
13653
+ def PublicIPv6Addresses(self):
13654
+ """实例绑定的公网IPv6地址。
13655
+ :rtype: list of str
13656
+ """
13657
+ return self._PublicIPv6Addresses
13658
+
13659
+ @PublicIPv6Addresses.setter
13660
+ def PublicIPv6Addresses(self, PublicIPv6Addresses):
13661
+ self._PublicIPv6Addresses = PublicIPv6Addresses
13662
+
13649
13663
 
13650
13664
  def _deserialize(self, params):
13651
13665
  if params.get("Placement") is not None:
@@ -13711,6 +13725,7 @@ class Instance(AbstractModel):
13711
13725
  self._DefaultLoginUser = params.get("DefaultLoginUser")
13712
13726
  self._DefaultLoginPort = params.get("DefaultLoginPort")
13713
13727
  self._LatestOperationErrorMsg = params.get("LatestOperationErrorMsg")
13728
+ self._PublicIPv6Addresses = params.get("PublicIPv6Addresses")
13714
13729
  memeber_set = set(params.keys())
13715
13730
  for name, value in vars(self).items():
13716
13731
  property_name = name[1:]
@@ -14648,11 +14663,53 @@ class InternetAccessible(AbstractModel):
14648
14663
  :type PublicIpAssigned: bool
14649
14664
  :param _BandwidthPackageId: 带宽包ID。可通过[ DescribeBandwidthPackages ](https://cloud.tencent.com/document/api/215/19209)接口返回值中的`BandwidthPackageId`获取。该参数仅在RunInstances接口中作为入参使用。
14650
14665
  :type BandwidthPackageId: str
14666
+ :param _InternetServiceProvider: 线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
14667
+
14668
+ - BGP:常规 BGP 线路
14669
+
14670
+ 已开通静态单线IP白名单的用户,可选值:
14671
+
14672
+ - CMCC:中国移动
14673
+ - CTCC:中国电信
14674
+ - CUCC:中国联通
14675
+
14676
+ 注意:仅部分地域支持静态单线IP。
14677
+ 示例值:BGP
14678
+ :type InternetServiceProvider: str
14679
+ :param _IPv4AddressType: 公网 IP 类型。
14680
+
14681
+ - WanIP:普通公网IP。
14682
+ - HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。
14683
+ - AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。
14684
+
14685
+ 如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
14686
+
14687
+ 示例值:WanIP
14688
+
14689
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14690
+ :type IPv4AddressType: str
14691
+ :param _IPv6AddressType: 弹性公网 IPv6 类型。
14692
+ - EIPv6:弹性公网 IPv6。
14693
+ - HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。
14694
+
14695
+ 如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
14696
+ 示例值:EIPv6
14697
+
14698
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14699
+ :type IPv6AddressType: str
14700
+ :param _AntiDDoSPackageId: 高防包唯一ID,申请高防IP时,该字段必传。
14701
+ 示例值:bgp-12345678
14702
+
14703
+ :type AntiDDoSPackageId: str
14651
14704
  """
14652
14705
  self._InternetChargeType = None
14653
14706
  self._InternetMaxBandwidthOut = None
14654
14707
  self._PublicIpAssigned = None
14655
14708
  self._BandwidthPackageId = None
14709
+ self._InternetServiceProvider = None
14710
+ self._IPv4AddressType = None
14711
+ self._IPv6AddressType = None
14712
+ self._AntiDDoSPackageId = None
14656
14713
 
14657
14714
  @property
14658
14715
  def InternetChargeType(self):
@@ -14698,12 +14755,90 @@ class InternetAccessible(AbstractModel):
14698
14755
  def BandwidthPackageId(self, BandwidthPackageId):
14699
14756
  self._BandwidthPackageId = BandwidthPackageId
14700
14757
 
14758
+ @property
14759
+ def InternetServiceProvider(self):
14760
+ """线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
14761
+
14762
+ - BGP:常规 BGP 线路
14763
+
14764
+ 已开通静态单线IP白名单的用户,可选值:
14765
+
14766
+ - CMCC:中国移动
14767
+ - CTCC:中国电信
14768
+ - CUCC:中国联通
14769
+
14770
+ 注意:仅部分地域支持静态单线IP。
14771
+ 示例值:BGP
14772
+ :rtype: str
14773
+ """
14774
+ return self._InternetServiceProvider
14775
+
14776
+ @InternetServiceProvider.setter
14777
+ def InternetServiceProvider(self, InternetServiceProvider):
14778
+ self._InternetServiceProvider = InternetServiceProvider
14779
+
14780
+ @property
14781
+ def IPv4AddressType(self):
14782
+ """公网 IP 类型。
14783
+
14784
+ - WanIP:普通公网IP。
14785
+ - HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。
14786
+ - AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。
14787
+
14788
+ 如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
14789
+
14790
+ 示例值:WanIP
14791
+
14792
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14793
+ :rtype: str
14794
+ """
14795
+ return self._IPv4AddressType
14796
+
14797
+ @IPv4AddressType.setter
14798
+ def IPv4AddressType(self, IPv4AddressType):
14799
+ self._IPv4AddressType = IPv4AddressType
14800
+
14801
+ @property
14802
+ def IPv6AddressType(self):
14803
+ """弹性公网 IPv6 类型。
14804
+ - EIPv6:弹性公网 IPv6。
14805
+ - HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。
14806
+
14807
+ 如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
14808
+ 示例值:EIPv6
14809
+
14810
+ 此功能仅部分地区灰度开发,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
14811
+ :rtype: str
14812
+ """
14813
+ return self._IPv6AddressType
14814
+
14815
+ @IPv6AddressType.setter
14816
+ def IPv6AddressType(self, IPv6AddressType):
14817
+ self._IPv6AddressType = IPv6AddressType
14818
+
14819
+ @property
14820
+ def AntiDDoSPackageId(self):
14821
+ """高防包唯一ID,申请高防IP时,该字段必传。
14822
+ 示例值:bgp-12345678
14823
+
14824
+ :rtype: str
14825
+ """
14826
+ return self._AntiDDoSPackageId
14827
+
14828
+ @AntiDDoSPackageId.setter
14829
+ def AntiDDoSPackageId(self, AntiDDoSPackageId):
14830
+ self._AntiDDoSPackageId = AntiDDoSPackageId
14831
+
14701
14832
 
14702
14833
  def _deserialize(self, params):
14703
14834
  self._InternetChargeType = params.get("InternetChargeType")
14704
14835
  self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
14705
14836
  self._PublicIpAssigned = params.get("PublicIpAssigned")
14706
14837
  self._BandwidthPackageId = params.get("BandwidthPackageId")
14838
+ self._InternetServiceProvider = params.get("InternetServiceProvider")
14839
+ self._IPv4AddressType = params.get("IPv4AddressType")
14840
+ self._IPv6AddressType = params.get("IPv6AddressType")
14841
+ self._AntiDDoSPackageId = params.get("AntiDDoSPackageId")
14707
14842
  memeber_set = set(params.keys())
14708
14843
  for name, value in vars(self).items():
14709
14844
  property_name = name[1:]
@@ -22923,11 +23058,17 @@ class TerminateInstancesRequest(AbstractModel):
22923
23058
  r"""
22924
23059
  :param _InstanceIds: 一个或多个待操作的实例ID。可通过 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) 接口返回值中的`InstanceId`获取。每次请求批量实例的上限为100。
22925
23060
  :type InstanceIds: list of str
23061
+ :param _ReleaseAddress: 释放弹性IP。EIP2.0下,仅提供主网卡下首个EIP,EIP类型限定在HighQualityEIP、AntiDDoSEIP、EIPv6、HighQualityEIPv6这几种类型。默认行为不释放。
23062
+
23063
+ 示例值:true
23064
+ 默认值:false
23065
+ :type ReleaseAddress: bool
22926
23066
  :param _ReleasePrepaidDataDisks: 释放实例挂载的包年包月数据盘。true表示销毁实例同时释放包年包月数据盘,false表示只销毁实例。
22927
23067
  默认值:false
22928
23068
  :type ReleasePrepaidDataDisks: bool
22929
23069
  """
22930
23070
  self._InstanceIds = None
23071
+ self._ReleaseAddress = None
22931
23072
  self._ReleasePrepaidDataDisks = None
22932
23073
 
22933
23074
  @property
@@ -22941,6 +23082,20 @@ class TerminateInstancesRequest(AbstractModel):
22941
23082
  def InstanceIds(self, InstanceIds):
22942
23083
  self._InstanceIds = InstanceIds
22943
23084
 
23085
+ @property
23086
+ def ReleaseAddress(self):
23087
+ """释放弹性IP。EIP2.0下,仅提供主网卡下首个EIP,EIP类型限定在HighQualityEIP、AntiDDoSEIP、EIPv6、HighQualityEIPv6这几种类型。默认行为不释放。
23088
+
23089
+ 示例值:true
23090
+ 默认值:false
23091
+ :rtype: bool
23092
+ """
23093
+ return self._ReleaseAddress
23094
+
23095
+ @ReleaseAddress.setter
23096
+ def ReleaseAddress(self, ReleaseAddress):
23097
+ self._ReleaseAddress = ReleaseAddress
23098
+
22944
23099
  @property
22945
23100
  def ReleasePrepaidDataDisks(self):
22946
23101
  """释放实例挂载的包年包月数据盘。true表示销毁实例同时释放包年包月数据盘,false表示只销毁实例。
@@ -22956,6 +23111,7 @@ class TerminateInstancesRequest(AbstractModel):
22956
23111
 
22957
23112
  def _deserialize(self, params):
22958
23113
  self._InstanceIds = params.get("InstanceIds")
23114
+ self._ReleaseAddress = params.get("ReleaseAddress")
22959
23115
  self._ReleasePrepaidDataDisks = params.get("ReleasePrepaidDataDisks")
22960
23116
  memeber_set = set(params.keys())
22961
23117
  for name, value in vars(self).items():
@@ -3499,12 +3499,20 @@ class CardWarnInfo(AbstractModel):
3499
3499
  0:正常
3500
3500
  1:有PS
3501
3501
  :type PSCheck: int
3502
+ :param _BlurCheck: 是否模糊:
3503
+ 0:正常
3504
+ 1:模糊
3505
+ :type BlurCheck: int
3506
+ :param _BlurScore: 模糊分数, 范围:0.0-1.0,分数越高越模糊,建议阈值为0.5
3507
+ :type BlurScore: float
3502
3508
  """
3503
3509
  self._BorderCheck = None
3504
3510
  self._OcclusionCheck = None
3505
3511
  self._CopyCheck = None
3506
3512
  self._ReshootCheck = None
3507
3513
  self._PSCheck = None
3514
+ self._BlurCheck = None
3515
+ self._BlurScore = None
3508
3516
 
3509
3517
  @property
3510
3518
  def BorderCheck(self):
@@ -3571,6 +3579,30 @@ class CardWarnInfo(AbstractModel):
3571
3579
  def PSCheck(self, PSCheck):
3572
3580
  self._PSCheck = PSCheck
3573
3581
 
3582
+ @property
3583
+ def BlurCheck(self):
3584
+ """是否模糊:
3585
+ 0:正常
3586
+ 1:模糊
3587
+ :rtype: int
3588
+ """
3589
+ return self._BlurCheck
3590
+
3591
+ @BlurCheck.setter
3592
+ def BlurCheck(self, BlurCheck):
3593
+ self._BlurCheck = BlurCheck
3594
+
3595
+ @property
3596
+ def BlurScore(self):
3597
+ """模糊分数, 范围:0.0-1.0,分数越高越模糊,建议阈值为0.5
3598
+ :rtype: float
3599
+ """
3600
+ return self._BlurScore
3601
+
3602
+ @BlurScore.setter
3603
+ def BlurScore(self, BlurScore):
3604
+ self._BlurScore = BlurScore
3605
+
3574
3606
 
3575
3607
  def _deserialize(self, params):
3576
3608
  self._BorderCheck = params.get("BorderCheck")
@@ -3578,6 +3610,8 @@ class CardWarnInfo(AbstractModel):
3578
3610
  self._CopyCheck = params.get("CopyCheck")
3579
3611
  self._ReshootCheck = params.get("ReshootCheck")
3580
3612
  self._PSCheck = params.get("PSCheck")
3613
+ self._BlurCheck = params.get("BlurCheck")
3614
+ self._BlurScore = params.get("BlurScore")
3581
3615
  memeber_set = set(params.keys())
3582
3616
  for name, value in vars(self).items():
3583
3617
  property_name = name[1:]
@@ -8481,6 +8515,9 @@ AirWayBill -- 航空运单识别模板
8481
8515
  Table -- 表格模版
8482
8516
  SteelLabel -- 实物标签识别模板
8483
8517
  CarInsurance -- 车辆保险单识别模板
8518
+ MultiRealEstateCertificate -- 房产材料识别模板
8519
+ MultiRealEstateMaterial -- 房产证明识别模板
8520
+ HongKongUtilityBill -- 香港水电煤单识别模板
8484
8521
  :type ConfigId: str
8485
8522
  :param _EnableCoord: 是否开启全文字段坐标值的识别
8486
8523
  :type EnableCoord: bool
@@ -8585,6 +8622,9 @@ AirWayBill -- 航空运单识别模板
8585
8622
  Table -- 表格模版
8586
8623
  SteelLabel -- 实物标签识别模板
8587
8624
  CarInsurance -- 车辆保险单识别模板
8625
+ MultiRealEstateCertificate -- 房产材料识别模板
8626
+ MultiRealEstateMaterial -- 房产证明识别模板
8627
+ HongKongUtilityBill -- 香港水电煤单识别模板
8588
8628
  :rtype: str
8589
8629
  """
8590
8630
  return self._ConfigId
@@ -26844,6 +26884,8 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
26844
26884
  :type EnablePSCheck: bool
26845
26885
  :param _EnableWordCheck: 默认值为false,打开返回字段级反光和字段级完整性告警。类型为:临时、港澳台居住证、外国人居住证失效
26846
26886
  :type EnableWordCheck: bool
26887
+ :param _EnableQualityCheck: 默认值为false,打开返回证件是否模糊。
26888
+ :type EnableQualityCheck: bool
26847
26889
  """
26848
26890
  self._ImageBase64 = None
26849
26891
  self._ImageUrl = None
@@ -26856,6 +26898,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
26856
26898
  self._EnableReshootCheck = None
26857
26899
  self._EnablePSCheck = None
26858
26900
  self._EnableWordCheck = None
26901
+ self._EnableQualityCheck = None
26859
26902
 
26860
26903
  @property
26861
26904
  def ImageBase64(self):
@@ -26991,6 +27034,17 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
26991
27034
  def EnableWordCheck(self, EnableWordCheck):
26992
27035
  self._EnableWordCheck = EnableWordCheck
26993
27036
 
27037
+ @property
27038
+ def EnableQualityCheck(self):
27039
+ """默认值为false,打开返回证件是否模糊。
27040
+ :rtype: bool
27041
+ """
27042
+ return self._EnableQualityCheck
27043
+
27044
+ @EnableQualityCheck.setter
27045
+ def EnableQualityCheck(self, EnableQualityCheck):
27046
+ self._EnableQualityCheck = EnableQualityCheck
27047
+
26994
27048
 
26995
27049
  def _deserialize(self, params):
26996
27050
  self._ImageBase64 = params.get("ImageBase64")
@@ -27004,6 +27058,7 @@ class RecognizeValidIDCardOCRRequest(AbstractModel):
27004
27058
  self._EnableReshootCheck = params.get("EnableReshootCheck")
27005
27059
  self._EnablePSCheck = params.get("EnablePSCheck")
27006
27060
  self._EnableWordCheck = params.get("EnableWordCheck")
27061
+ self._EnableQualityCheck = params.get("EnableQualityCheck")
27007
27062
  memeber_set = set(params.keys())
27008
27063
  for name, value in vars(self).items():
27009
27064
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1417
3
+ Version: 3.0.1418
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=erX4Mg5ab75ewqUBekh7-ZHlfJ3IVKhW0STP4m23F6U,631
53
+ tencentcloud/__init__.py,sha256=LXkY-q3bEKpkR2TeK6-uug-nKp6qzYVTJp-WA7qfGXI,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=TS0CfKHCyAf0JjZWSnoCkz26lWtT4jwp9-usOLcAJEE,5470
@@ -81,6 +81,11 @@ tencentcloud/afc/v20200226/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
81
81
  tencentcloud/afc/v20200226/afc_client.py,sha256=_A99SKvAw6XjQ1bbkjFcxlQuDj9vy6SPWDRxivKtXjc,3913
82
82
  tencentcloud/afc/v20200226/errorcodes.py,sha256=56-I0CLe0o39SSAe_HiXdLCfkdgyQnaO1h5vL_nSACk,3836
83
83
  tencentcloud/afc/v20200226/models.py,sha256=T2oA168tEvPzwb9708XVCcL1EAcnBydc5ICOJVhk0Iw,50834
84
+ tencentcloud/ai3d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
+ tencentcloud/ai3d/v20250513/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
+ tencentcloud/ai3d/v20250513/ai3d_client.py,sha256=tQxrn_PGhXtYzMiXL-1KPzTxQmV0kdSLfOJkhdLVFxM,3210
87
+ tencentcloud/ai3d/v20250513/errorcodes.py,sha256=KvHs6W2GONKBsXXCjJUx8q8sqMTR7e5vr5Gx01t5b24,625
88
+ tencentcloud/ai3d/v20250513/models.py,sha256=xZAxIMw7BsGqltbgPmBhIgUsTSjp_uiDR0QfsHfLKj8,14353
84
89
  tencentcloud/aiart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
90
  tencentcloud/aiart/v20221229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
91
  tencentcloud/aiart/v20221229/aiart_client.py,sha256=p-LxC4XorFIzRfqEultjekLXcc3bV55d-zxnNrJbaF8,30665
@@ -461,7 +466,7 @@ tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
461
466
  tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
462
467
  tencentcloud/cvm/v20170312/cvm_client.py,sha256=3DJXLCLB4JtP8hUEps64P5TwKI1A3E2t0aUnqomYBK0,128651
463
468
  tencentcloud/cvm/v20170312/errorcodes.py,sha256=-meKCBnmU24mhaEl46Q6S97nVTIuhzunEt8jhUpMamU,53359
464
- tencentcloud/cvm/v20170312/models.py,sha256=m2PrLN84uBuz1DlQ404yscTDC5_2EqVxCz8CdlAsSAI,937187
469
+ tencentcloud/cvm/v20170312/models.py,sha256=5Qp1veAMpPkynL7pBpj7bbii1D2vopzeiH3gwUsaGfQ,942995
465
470
  tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
466
471
  tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
467
472
  tencentcloud/cwp/v20180228/cwp_client.py,sha256=EMgP4odADt9hKjiA9GFdTcdAkPRV27lEIOjlY38bPp0,475001
@@ -975,7 +980,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=mcjQz-nr8E3LxYY4ZrIUDBi0
975
980
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
976
981
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
977
982
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=F14bbQDRi4P9JfBfjuTGaR08iiQkY3d3KcyBwscqAtk,6985
978
- tencentcloud/ocr/v20181119/models.py,sha256=wPHYZLb2mm2NcZxmAWOu2pAIHOrhu2E9i7zH3RvbQnQ,1364902
983
+ tencentcloud/ocr/v20181119/models.py,sha256=qL6rQ9epJLlumRgShRq8pLCIHsH-eZRW9GCdb8DmYIU,1366708
979
984
  tencentcloud/ocr/v20181119/ocr_client.py,sha256=Fzx5_ndb4zYO6XV6VfuOa6hF-hQolvpNw1p9LMni2mU,122127
980
985
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
981
986
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1517,8 +1522,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1517
1522
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
1518
1523
  tencentcloud/yunsou/v20191115/models.py,sha256=jTr6sa2LfXEBd7uOgC19JRTLBXZmLGyP3QjNfGqLPyo,27653
1519
1524
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=H2Kzv6ow4QKnLc63655ffyUZBaGSczEYf3R5UTjcjGA,2714
1520
- tencentcloud_sdk_python-3.0.1417.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1521
- tencentcloud_sdk_python-3.0.1417.dist-info/METADATA,sha256=NjVnWfU5T6J6NuTdB62GqXfalXhn0Zf1DI0PIp1zrLA,1613
1522
- tencentcloud_sdk_python-3.0.1417.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1523
- tencentcloud_sdk_python-3.0.1417.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1524
- tencentcloud_sdk_python-3.0.1417.dist-info/RECORD,,
1525
+ tencentcloud_sdk_python-3.0.1418.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1526
+ tencentcloud_sdk_python-3.0.1418.dist-info/METADATA,sha256=_aPCSrcbedNBjC9-zEQeFNYthLXUdrFaythQVlWIHwE,1613
1527
+ tencentcloud_sdk_python-3.0.1418.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1528
+ tencentcloud_sdk_python-3.0.1418.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1529
+ tencentcloud_sdk_python-3.0.1418.dist-info/RECORD,,