tencentcloud-sdk-python-intl-en 3.0.1174__py2.py3-none-any.whl → 3.0.1176__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/intlpartnersmgt/v20220928/errorcodes.py +3 -0
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +24 -0
- tencentcloud/intlpartnersmgt/v20220928/models.py +257 -0
- {tencentcloud_sdk_python_intl_en-3.0.1174.dist-info → tencentcloud_sdk_python_intl_en-3.0.1176.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1174.dist-info → tencentcloud_sdk_python_intl_en-3.0.1176.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1174.dist-info → tencentcloud_sdk_python_intl_en-3.0.1176.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1174.dist-info → tencentcloud_sdk_python_intl_en-3.0.1176.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -44,6 +44,9 @@ FAILEDOPERATION_CLIENTNOTAPPLY = 'FailedOperation.ClientNotApply'
|
|
|
44
44
|
#
|
|
45
45
|
FAILEDOPERATION_EXCEEDMAXBINDCOUNT = 'FailedOperation.ExceedMaxBindCount'
|
|
46
46
|
|
|
47
|
+
# The uin of the second-level reseller is invalid.
|
|
48
|
+
FAILEDOPERATION_INVALIDSUBAGENTUIN = 'FailedOperation.InvalidSubAgentUin'
|
|
49
|
+
|
|
47
50
|
# FailedOperation.MailIsRegistered
|
|
48
51
|
FAILEDOPERATION_MAILISREGISTERED = 'FailedOperation.MailIsRegistered'
|
|
49
52
|
|
|
@@ -769,6 +769,30 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
769
769
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
770
770
|
|
|
771
771
|
|
|
772
|
+
def QueryT1IndirectCustomersDetail(self, request):
|
|
773
|
+
"""This API is used to query the indirect sub-customers of a first-level distributor.
|
|
774
|
+
Invokable role type: first-level reseller.
|
|
775
|
+
|
|
776
|
+
:param request: Request instance for QueryT1IndirectCustomersDetail.
|
|
777
|
+
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryT1IndirectCustomersDetailRequest`
|
|
778
|
+
:rtype: :class:`tencentcloud.intlpartnersmgt.v20220928.models.QueryT1IndirectCustomersDetailResponse`
|
|
779
|
+
|
|
780
|
+
"""
|
|
781
|
+
try:
|
|
782
|
+
params = request._serialize()
|
|
783
|
+
headers = request.headers
|
|
784
|
+
body = self.call("QueryT1IndirectCustomersDetail", params, headers=headers)
|
|
785
|
+
response = json.loads(body)
|
|
786
|
+
model = models.QueryT1IndirectCustomersDetailResponse()
|
|
787
|
+
model._deserialize(response["Response"])
|
|
788
|
+
return model
|
|
789
|
+
except Exception as e:
|
|
790
|
+
if isinstance(e, TencentCloudSDKException):
|
|
791
|
+
raise
|
|
792
|
+
else:
|
|
793
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
794
|
+
|
|
795
|
+
|
|
772
796
|
def QueryVoucherAmountByUin(self, request):
|
|
773
797
|
"""This API is used by primary/secondary resellers to query the voucher quota based on the customer UIN.
|
|
774
798
|
Callable roles: Reseller, Distributor, Second-level reseller
|
|
@@ -234,9 +234,12 @@ class AllocateCustomerCreditRequest(AbstractModel):
|
|
|
234
234
|
:type AddedCredit: float
|
|
235
235
|
:param _ClientUin: Customer UIN
|
|
236
236
|
:type ClientUin: int
|
|
237
|
+
:param _Remark: Remark
|
|
238
|
+
:type Remark: str
|
|
237
239
|
"""
|
|
238
240
|
self._AddedCredit = None
|
|
239
241
|
self._ClientUin = None
|
|
242
|
+
self._Remark = None
|
|
240
243
|
|
|
241
244
|
@property
|
|
242
245
|
def AddedCredit(self):
|
|
@@ -260,10 +263,22 @@ class AllocateCustomerCreditRequest(AbstractModel):
|
|
|
260
263
|
def ClientUin(self, ClientUin):
|
|
261
264
|
self._ClientUin = ClientUin
|
|
262
265
|
|
|
266
|
+
@property
|
|
267
|
+
def Remark(self):
|
|
268
|
+
"""Remark
|
|
269
|
+
:rtype: str
|
|
270
|
+
"""
|
|
271
|
+
return self._Remark
|
|
272
|
+
|
|
273
|
+
@Remark.setter
|
|
274
|
+
def Remark(self, Remark):
|
|
275
|
+
self._Remark = Remark
|
|
276
|
+
|
|
263
277
|
|
|
264
278
|
def _deserialize(self, params):
|
|
265
279
|
self._AddedCredit = params.get("AddedCredit")
|
|
266
280
|
self._ClientUin = params.get("ClientUin")
|
|
281
|
+
self._Remark = params.get("Remark")
|
|
267
282
|
memeber_set = set(params.keys())
|
|
268
283
|
for name, value in vars(self).items():
|
|
269
284
|
property_name = name[1:]
|
|
@@ -4435,12 +4450,15 @@ class QueryCreditAllocationHistoryData(AbstractModel):
|
|
|
4435
4450
|
:type AllocatedCredit: float
|
|
4436
4451
|
:param _ClientCreditAfter: Available credits after allocation.
|
|
4437
4452
|
:type ClientCreditAfter: float
|
|
4453
|
+
:param _Remark: Remark
|
|
4454
|
+
:type Remark: str
|
|
4438
4455
|
"""
|
|
4439
4456
|
self._AllocatedTime = None
|
|
4440
4457
|
self._Operator = None
|
|
4441
4458
|
self._Credit = None
|
|
4442
4459
|
self._AllocatedCredit = None
|
|
4443
4460
|
self._ClientCreditAfter = None
|
|
4461
|
+
self._Remark = None
|
|
4444
4462
|
|
|
4445
4463
|
@property
|
|
4446
4464
|
def AllocatedTime(self):
|
|
@@ -4497,6 +4515,17 @@ class QueryCreditAllocationHistoryData(AbstractModel):
|
|
|
4497
4515
|
def ClientCreditAfter(self, ClientCreditAfter):
|
|
4498
4516
|
self._ClientCreditAfter = ClientCreditAfter
|
|
4499
4517
|
|
|
4518
|
+
@property
|
|
4519
|
+
def Remark(self):
|
|
4520
|
+
"""Remark
|
|
4521
|
+
:rtype: str
|
|
4522
|
+
"""
|
|
4523
|
+
return self._Remark
|
|
4524
|
+
|
|
4525
|
+
@Remark.setter
|
|
4526
|
+
def Remark(self, Remark):
|
|
4527
|
+
self._Remark = Remark
|
|
4528
|
+
|
|
4500
4529
|
|
|
4501
4530
|
def _deserialize(self, params):
|
|
4502
4531
|
self._AllocatedTime = params.get("AllocatedTime")
|
|
@@ -4504,6 +4533,7 @@ class QueryCreditAllocationHistoryData(AbstractModel):
|
|
|
4504
4533
|
self._Credit = params.get("Credit")
|
|
4505
4534
|
self._AllocatedCredit = params.get("AllocatedCredit")
|
|
4506
4535
|
self._ClientCreditAfter = params.get("ClientCreditAfter")
|
|
4536
|
+
self._Remark = params.get("Remark")
|
|
4507
4537
|
memeber_set = set(params.keys())
|
|
4508
4538
|
for name, value in vars(self).items():
|
|
4509
4539
|
property_name = name[1:]
|
|
@@ -6212,6 +6242,233 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
|
|
|
6212
6242
|
self._RequestId = params.get("RequestId")
|
|
6213
6243
|
|
|
6214
6244
|
|
|
6245
|
+
class QueryT1IndirectCustomersDetailRequest(AbstractModel):
|
|
6246
|
+
"""QueryT1IndirectCustomersDetail request structure.
|
|
6247
|
+
|
|
6248
|
+
"""
|
|
6249
|
+
|
|
6250
|
+
def __init__(self):
|
|
6251
|
+
r"""
|
|
6252
|
+
:param _SubAgentUin: Second-level reseller UIN.
|
|
6253
|
+
:type SubAgentUin: int
|
|
6254
|
+
:param _Page: Pagination parameter: current page number. it starts from 1.
|
|
6255
|
+
:type Page: int
|
|
6256
|
+
:param _PageSize: Pagination parameter, indicates the number of entries per page. supports [1, 100] data entries per request.
|
|
6257
|
+
:type PageSize: int
|
|
6258
|
+
"""
|
|
6259
|
+
self._SubAgentUin = None
|
|
6260
|
+
self._Page = None
|
|
6261
|
+
self._PageSize = None
|
|
6262
|
+
|
|
6263
|
+
@property
|
|
6264
|
+
def SubAgentUin(self):
|
|
6265
|
+
"""Second-level reseller UIN.
|
|
6266
|
+
:rtype: int
|
|
6267
|
+
"""
|
|
6268
|
+
return self._SubAgentUin
|
|
6269
|
+
|
|
6270
|
+
@SubAgentUin.setter
|
|
6271
|
+
def SubAgentUin(self, SubAgentUin):
|
|
6272
|
+
self._SubAgentUin = SubAgentUin
|
|
6273
|
+
|
|
6274
|
+
@property
|
|
6275
|
+
def Page(self):
|
|
6276
|
+
"""Pagination parameter: current page number. it starts from 1.
|
|
6277
|
+
:rtype: int
|
|
6278
|
+
"""
|
|
6279
|
+
return self._Page
|
|
6280
|
+
|
|
6281
|
+
@Page.setter
|
|
6282
|
+
def Page(self, Page):
|
|
6283
|
+
self._Page = Page
|
|
6284
|
+
|
|
6285
|
+
@property
|
|
6286
|
+
def PageSize(self):
|
|
6287
|
+
"""Pagination parameter, indicates the number of entries per page. supports [1, 100] data entries per request.
|
|
6288
|
+
:rtype: int
|
|
6289
|
+
"""
|
|
6290
|
+
return self._PageSize
|
|
6291
|
+
|
|
6292
|
+
@PageSize.setter
|
|
6293
|
+
def PageSize(self, PageSize):
|
|
6294
|
+
self._PageSize = PageSize
|
|
6295
|
+
|
|
6296
|
+
|
|
6297
|
+
def _deserialize(self, params):
|
|
6298
|
+
self._SubAgentUin = params.get("SubAgentUin")
|
|
6299
|
+
self._Page = params.get("Page")
|
|
6300
|
+
self._PageSize = params.get("PageSize")
|
|
6301
|
+
memeber_set = set(params.keys())
|
|
6302
|
+
for name, value in vars(self).items():
|
|
6303
|
+
property_name = name[1:]
|
|
6304
|
+
if property_name in memeber_set:
|
|
6305
|
+
memeber_set.remove(property_name)
|
|
6306
|
+
if len(memeber_set) > 0:
|
|
6307
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6308
|
+
|
|
6309
|
+
|
|
6310
|
+
|
|
6311
|
+
class QueryT1IndirectCustomersDetailResponse(AbstractModel):
|
|
6312
|
+
"""QueryT1IndirectCustomersDetail response structure.
|
|
6313
|
+
|
|
6314
|
+
"""
|
|
6315
|
+
|
|
6316
|
+
def __init__(self):
|
|
6317
|
+
r"""
|
|
6318
|
+
:param _Total: The number of indirect sub-customers of a first-level distributor.
|
|
6319
|
+
:type Total: int
|
|
6320
|
+
:param _SubAgentUin: Second-level reseller UIN.
|
|
6321
|
+
:type SubAgentUin: int
|
|
6322
|
+
:param _SubAgentName: Second-Level reseller name.
|
|
6323
|
+
:type SubAgentName: str
|
|
6324
|
+
:param _Data: Indirect sub-customer information.
|
|
6325
|
+
:type Data: list of QueryT1IndirectCustomersDetailResponseData
|
|
6326
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6327
|
+
:type RequestId: str
|
|
6328
|
+
"""
|
|
6329
|
+
self._Total = None
|
|
6330
|
+
self._SubAgentUin = None
|
|
6331
|
+
self._SubAgentName = None
|
|
6332
|
+
self._Data = None
|
|
6333
|
+
self._RequestId = None
|
|
6334
|
+
|
|
6335
|
+
@property
|
|
6336
|
+
def Total(self):
|
|
6337
|
+
"""The number of indirect sub-customers of a first-level distributor.
|
|
6338
|
+
:rtype: int
|
|
6339
|
+
"""
|
|
6340
|
+
return self._Total
|
|
6341
|
+
|
|
6342
|
+
@Total.setter
|
|
6343
|
+
def Total(self, Total):
|
|
6344
|
+
self._Total = Total
|
|
6345
|
+
|
|
6346
|
+
@property
|
|
6347
|
+
def SubAgentUin(self):
|
|
6348
|
+
"""Second-level reseller UIN.
|
|
6349
|
+
:rtype: int
|
|
6350
|
+
"""
|
|
6351
|
+
return self._SubAgentUin
|
|
6352
|
+
|
|
6353
|
+
@SubAgentUin.setter
|
|
6354
|
+
def SubAgentUin(self, SubAgentUin):
|
|
6355
|
+
self._SubAgentUin = SubAgentUin
|
|
6356
|
+
|
|
6357
|
+
@property
|
|
6358
|
+
def SubAgentName(self):
|
|
6359
|
+
"""Second-Level reseller name.
|
|
6360
|
+
:rtype: str
|
|
6361
|
+
"""
|
|
6362
|
+
return self._SubAgentName
|
|
6363
|
+
|
|
6364
|
+
@SubAgentName.setter
|
|
6365
|
+
def SubAgentName(self, SubAgentName):
|
|
6366
|
+
self._SubAgentName = SubAgentName
|
|
6367
|
+
|
|
6368
|
+
@property
|
|
6369
|
+
def Data(self):
|
|
6370
|
+
"""Indirect sub-customer information.
|
|
6371
|
+
:rtype: list of QueryT1IndirectCustomersDetailResponseData
|
|
6372
|
+
"""
|
|
6373
|
+
return self._Data
|
|
6374
|
+
|
|
6375
|
+
@Data.setter
|
|
6376
|
+
def Data(self, Data):
|
|
6377
|
+
self._Data = Data
|
|
6378
|
+
|
|
6379
|
+
@property
|
|
6380
|
+
def RequestId(self):
|
|
6381
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6382
|
+
:rtype: str
|
|
6383
|
+
"""
|
|
6384
|
+
return self._RequestId
|
|
6385
|
+
|
|
6386
|
+
@RequestId.setter
|
|
6387
|
+
def RequestId(self, RequestId):
|
|
6388
|
+
self._RequestId = RequestId
|
|
6389
|
+
|
|
6390
|
+
|
|
6391
|
+
def _deserialize(self, params):
|
|
6392
|
+
self._Total = params.get("Total")
|
|
6393
|
+
self._SubAgentUin = params.get("SubAgentUin")
|
|
6394
|
+
self._SubAgentName = params.get("SubAgentName")
|
|
6395
|
+
if params.get("Data") is not None:
|
|
6396
|
+
self._Data = []
|
|
6397
|
+
for item in params.get("Data"):
|
|
6398
|
+
obj = QueryT1IndirectCustomersDetailResponseData()
|
|
6399
|
+
obj._deserialize(item)
|
|
6400
|
+
self._Data.append(obj)
|
|
6401
|
+
self._RequestId = params.get("RequestId")
|
|
6402
|
+
|
|
6403
|
+
|
|
6404
|
+
class QueryT1IndirectCustomersDetailResponseData(AbstractModel):
|
|
6405
|
+
"""Query data of indirect sub-customers of a first-level distributor.
|
|
6406
|
+
|
|
6407
|
+
Callable roles: Distributor
|
|
6408
|
+
|
|
6409
|
+
"""
|
|
6410
|
+
|
|
6411
|
+
def __init__(self):
|
|
6412
|
+
r"""
|
|
6413
|
+
:param _ClientUin: Customer uin.
|
|
6414
|
+
:type ClientUin: int
|
|
6415
|
+
:param _ClientName: Customer name.
|
|
6416
|
+
:type ClientName: str
|
|
6417
|
+
:param _ClientBindTime: The time when a sub-customer binds a second-level reseller, time zone: UTC+08:00.
|
|
6418
|
+
:type ClientBindTime: str
|
|
6419
|
+
"""
|
|
6420
|
+
self._ClientUin = None
|
|
6421
|
+
self._ClientName = None
|
|
6422
|
+
self._ClientBindTime = None
|
|
6423
|
+
|
|
6424
|
+
@property
|
|
6425
|
+
def ClientUin(self):
|
|
6426
|
+
"""Customer uin.
|
|
6427
|
+
:rtype: int
|
|
6428
|
+
"""
|
|
6429
|
+
return self._ClientUin
|
|
6430
|
+
|
|
6431
|
+
@ClientUin.setter
|
|
6432
|
+
def ClientUin(self, ClientUin):
|
|
6433
|
+
self._ClientUin = ClientUin
|
|
6434
|
+
|
|
6435
|
+
@property
|
|
6436
|
+
def ClientName(self):
|
|
6437
|
+
"""Customer name.
|
|
6438
|
+
:rtype: str
|
|
6439
|
+
"""
|
|
6440
|
+
return self._ClientName
|
|
6441
|
+
|
|
6442
|
+
@ClientName.setter
|
|
6443
|
+
def ClientName(self, ClientName):
|
|
6444
|
+
self._ClientName = ClientName
|
|
6445
|
+
|
|
6446
|
+
@property
|
|
6447
|
+
def ClientBindTime(self):
|
|
6448
|
+
"""The time when a sub-customer binds a second-level reseller, time zone: UTC+08:00.
|
|
6449
|
+
:rtype: str
|
|
6450
|
+
"""
|
|
6451
|
+
return self._ClientBindTime
|
|
6452
|
+
|
|
6453
|
+
@ClientBindTime.setter
|
|
6454
|
+
def ClientBindTime(self, ClientBindTime):
|
|
6455
|
+
self._ClientBindTime = ClientBindTime
|
|
6456
|
+
|
|
6457
|
+
|
|
6458
|
+
def _deserialize(self, params):
|
|
6459
|
+
self._ClientUin = params.get("ClientUin")
|
|
6460
|
+
self._ClientName = params.get("ClientName")
|
|
6461
|
+
self._ClientBindTime = params.get("ClientBindTime")
|
|
6462
|
+
memeber_set = set(params.keys())
|
|
6463
|
+
for name, value in vars(self).items():
|
|
6464
|
+
property_name = name[1:]
|
|
6465
|
+
if property_name in memeber_set:
|
|
6466
|
+
memeber_set.remove(property_name)
|
|
6467
|
+
if len(memeber_set) > 0:
|
|
6468
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6469
|
+
|
|
6470
|
+
|
|
6471
|
+
|
|
6215
6472
|
class QueryVoucherAmountByUinItem(AbstractModel):
|
|
6216
6473
|
"""Customer voucher quota
|
|
6217
6474
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=OQlLfgsZjtQQUfTwYmnrEZW6cxN1EP5QiwBWZF8irQ4,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
|
|
@@ -337,9 +337,9 @@ tencentcloud/ims/v20201229/ims_client.py,sha256=ZmR0I2iPbMjN061B3IXs9e5RYWns4Enn
|
|
|
337
337
|
tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WDxxD5F10,89276
|
|
338
338
|
tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
340
|
+
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=f9sXktgBjr7zMgXP7ggnhZPC2w4q4dsfo8QuCj_881I,7590
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=ytIS6aoOGb5lxqFY4LUNX2G8qf1U1X5xR_SIO9fRr6w,39945
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=AymgWW6iMxPuTczIJUfwqMCp4CMjDqk8rVWuv4zmnxw,224929
|
|
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
|
|
@@ -644,7 +644,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
644
644
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
645
645
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
646
646
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
647
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
648
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
649
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
650
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
647
|
+
tencentcloud_sdk_python_intl_en-3.0.1176.dist-info/METADATA,sha256=OU-DroCeZx60ACKxgFaFBLtUhJGNxQYeN2lrBYxSCSk,1628
|
|
648
|
+
tencentcloud_sdk_python_intl_en-3.0.1176.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
649
|
+
tencentcloud_sdk_python_intl_en-3.0.1176.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
650
|
+
tencentcloud_sdk_python_intl_en-3.0.1176.dist-info/RECORD,,
|
|
File without changes
|