tencentcloud-sdk-python-intl-en 3.0.1181__py2.py3-none-any.whl → 3.0.1182__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/intlpartnersmgt_client.py +2 -3
- tencentcloud/intlpartnersmgt/v20220928/models.py +99 -16
- tencentcloud/kms/v20190118/models.py +96 -96
- {tencentcloud_sdk_python_intl_en-3.0.1181.dist-info → tencentcloud_sdk_python_intl_en-3.0.1182.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1181.dist-info → tencentcloud_sdk_python_intl_en-3.0.1182.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1181.dist-info → tencentcloud_sdk_python_intl_en-3.0.1182.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1181.dist-info → tencentcloud_sdk_python_intl_en-3.0.1182.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -380,9 +380,8 @@ class IntlpartnersmgtClient(AbstractClient):
|
|
|
380
380
|
|
|
381
381
|
|
|
382
382
|
def DescribeCustomerInfo(self, request):
|
|
383
|
-
"""This API is used to query
|
|
384
|
-
|
|
385
|
-
Callable roles: Distributor, Reseller
|
|
383
|
+
"""This API is used to query sub-customer information.
|
|
384
|
+
Invocation roles: reseller, first-level distributor.
|
|
386
385
|
|
|
387
386
|
:param request: Request instance for DescribeCustomerInfo.
|
|
388
387
|
:type request: :class:`tencentcloud.intlpartnersmgt.v20220928.models.DescribeCustomerInfoRequest`
|
|
@@ -3359,19 +3359,33 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3359
3359
|
:type Name: str
|
|
3360
3360
|
:param _BindTime: Binding time.
|
|
3361
3361
|
:type BindTime: str
|
|
3362
|
-
:param _AccountStatus: Account status
|
|
3363
|
-
.
|
|
3362
|
+
:param _AccountStatus: Account status.
|
|
3364
3363
|
0: normal.
|
|
3365
3364
|
1: forcibly mandatory (this function is not supported yet).
|
|
3366
3365
|
2: mandatory arrears.
|
|
3367
3366
|
:type AccountStatus: str
|
|
3368
|
-
:param _AuthStatus:
|
|
3369
|
-
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3367
|
+
:param _AuthStatus: Specifies the identity verification status.
|
|
3368
|
+
-999: account information not found.
|
|
3369
|
+
-1: file not uploaded.
|
|
3370
|
+
0: pending review.
|
|
3371
|
+
Under review.
|
|
3372
|
+
Error in review: 2.
|
|
3373
|
+
3: pass review.
|
|
3374
3374
|
:type AuthStatus: str
|
|
3375
|
+
:param _AuthType: Real-Name type.
|
|
3376
|
+
-1: default value. no such information.
|
|
3377
|
+
0: personal type.
|
|
3378
|
+
1: enterprise type.
|
|
3379
|
+
:type AuthType: int
|
|
3380
|
+
:param _CidRegisterTime: Specifies the registration time of the cid.
|
|
3381
|
+
:type CidRegisterTime: str
|
|
3382
|
+
:param _UinRegisterTime: Specifies the registration time of the uin.
|
|
3383
|
+
:type UinRegisterTime: str
|
|
3384
|
+
:param _AuthPassTime: Time when real-name authentication passed.
|
|
3385
|
+
:type AuthPassTime: str
|
|
3386
|
+
:param _HasExpense: Whether there is consumption.
|
|
3387
|
+
0: no consumption; 1: consumption.
|
|
3388
|
+
:type HasExpense: int
|
|
3375
3389
|
"""
|
|
3376
3390
|
self._CustomerUin = None
|
|
3377
3391
|
self._Email = None
|
|
@@ -3381,6 +3395,11 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3381
3395
|
self._BindTime = None
|
|
3382
3396
|
self._AccountStatus = None
|
|
3383
3397
|
self._AuthStatus = None
|
|
3398
|
+
self._AuthType = None
|
|
3399
|
+
self._CidRegisterTime = None
|
|
3400
|
+
self._UinRegisterTime = None
|
|
3401
|
+
self._AuthPassTime = None
|
|
3402
|
+
self._HasExpense = None
|
|
3384
3403
|
|
|
3385
3404
|
@property
|
|
3386
3405
|
def CustomerUin(self):
|
|
@@ -3450,8 +3469,7 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3450
3469
|
|
|
3451
3470
|
@property
|
|
3452
3471
|
def AccountStatus(self):
|
|
3453
|
-
"""Account status
|
|
3454
|
-
.
|
|
3472
|
+
"""Account status.
|
|
3455
3473
|
0: normal.
|
|
3456
3474
|
1: forcibly mandatory (this function is not supported yet).
|
|
3457
3475
|
2: mandatory arrears.
|
|
@@ -3465,12 +3483,13 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3465
3483
|
|
|
3466
3484
|
@property
|
|
3467
3485
|
def AuthStatus(self):
|
|
3468
|
-
"""
|
|
3469
|
-
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3486
|
+
"""Specifies the identity verification status.
|
|
3487
|
+
-999: account information not found.
|
|
3488
|
+
-1: file not uploaded.
|
|
3489
|
+
0: pending review.
|
|
3490
|
+
Under review.
|
|
3491
|
+
Error in review: 2.
|
|
3492
|
+
3: pass review.
|
|
3474
3493
|
:rtype: str
|
|
3475
3494
|
"""
|
|
3476
3495
|
return self._AuthStatus
|
|
@@ -3479,6 +3498,65 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3479
3498
|
def AuthStatus(self, AuthStatus):
|
|
3480
3499
|
self._AuthStatus = AuthStatus
|
|
3481
3500
|
|
|
3501
|
+
@property
|
|
3502
|
+
def AuthType(self):
|
|
3503
|
+
"""Real-Name type.
|
|
3504
|
+
-1: default value. no such information.
|
|
3505
|
+
0: personal type.
|
|
3506
|
+
1: enterprise type.
|
|
3507
|
+
:rtype: int
|
|
3508
|
+
"""
|
|
3509
|
+
return self._AuthType
|
|
3510
|
+
|
|
3511
|
+
@AuthType.setter
|
|
3512
|
+
def AuthType(self, AuthType):
|
|
3513
|
+
self._AuthType = AuthType
|
|
3514
|
+
|
|
3515
|
+
@property
|
|
3516
|
+
def CidRegisterTime(self):
|
|
3517
|
+
"""Specifies the registration time of the cid.
|
|
3518
|
+
:rtype: str
|
|
3519
|
+
"""
|
|
3520
|
+
return self._CidRegisterTime
|
|
3521
|
+
|
|
3522
|
+
@CidRegisterTime.setter
|
|
3523
|
+
def CidRegisterTime(self, CidRegisterTime):
|
|
3524
|
+
self._CidRegisterTime = CidRegisterTime
|
|
3525
|
+
|
|
3526
|
+
@property
|
|
3527
|
+
def UinRegisterTime(self):
|
|
3528
|
+
"""Specifies the registration time of the uin.
|
|
3529
|
+
:rtype: str
|
|
3530
|
+
"""
|
|
3531
|
+
return self._UinRegisterTime
|
|
3532
|
+
|
|
3533
|
+
@UinRegisterTime.setter
|
|
3534
|
+
def UinRegisterTime(self, UinRegisterTime):
|
|
3535
|
+
self._UinRegisterTime = UinRegisterTime
|
|
3536
|
+
|
|
3537
|
+
@property
|
|
3538
|
+
def AuthPassTime(self):
|
|
3539
|
+
"""Time when real-name authentication passed.
|
|
3540
|
+
:rtype: str
|
|
3541
|
+
"""
|
|
3542
|
+
return self._AuthPassTime
|
|
3543
|
+
|
|
3544
|
+
@AuthPassTime.setter
|
|
3545
|
+
def AuthPassTime(self, AuthPassTime):
|
|
3546
|
+
self._AuthPassTime = AuthPassTime
|
|
3547
|
+
|
|
3548
|
+
@property
|
|
3549
|
+
def HasExpense(self):
|
|
3550
|
+
"""Whether there is consumption.
|
|
3551
|
+
0: no consumption; 1: consumption.
|
|
3552
|
+
:rtype: int
|
|
3553
|
+
"""
|
|
3554
|
+
return self._HasExpense
|
|
3555
|
+
|
|
3556
|
+
@HasExpense.setter
|
|
3557
|
+
def HasExpense(self, HasExpense):
|
|
3558
|
+
self._HasExpense = HasExpense
|
|
3559
|
+
|
|
3482
3560
|
|
|
3483
3561
|
def _deserialize(self, params):
|
|
3484
3562
|
self._CustomerUin = params.get("CustomerUin")
|
|
@@ -3489,6 +3567,11 @@ class DescribeCustomerInfoData(AbstractModel):
|
|
|
3489
3567
|
self._BindTime = params.get("BindTime")
|
|
3490
3568
|
self._AccountStatus = params.get("AccountStatus")
|
|
3491
3569
|
self._AuthStatus = params.get("AuthStatus")
|
|
3570
|
+
self._AuthType = params.get("AuthType")
|
|
3571
|
+
self._CidRegisterTime = params.get("CidRegisterTime")
|
|
3572
|
+
self._UinRegisterTime = params.get("UinRegisterTime")
|
|
3573
|
+
self._AuthPassTime = params.get("AuthPassTime")
|
|
3574
|
+
self._HasExpense = params.get("HasExpense")
|
|
3492
3575
|
memeber_set = set(params.keys())
|
|
3493
3576
|
for name, value in vars(self).items():
|
|
3494
3577
|
property_name = name[1:]
|
|
@@ -210,7 +210,7 @@ class AsymmetricRsaDecryptResponse(AbstractModel):
|
|
|
210
210
|
:type KeyId: str
|
|
211
211
|
:param _Plaintext: Base64-encoded plaintext after decryption
|
|
212
212
|
:type Plaintext: str
|
|
213
|
-
:param _RequestId: The unique request ID,
|
|
213
|
+
: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.
|
|
214
214
|
:type RequestId: str
|
|
215
215
|
"""
|
|
216
216
|
self._KeyId = None
|
|
@@ -241,7 +241,7 @@ class AsymmetricRsaDecryptResponse(AbstractModel):
|
|
|
241
241
|
|
|
242
242
|
@property
|
|
243
243
|
def RequestId(self):
|
|
244
|
-
"""The unique request ID,
|
|
244
|
+
"""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.
|
|
245
245
|
:rtype: str
|
|
246
246
|
"""
|
|
247
247
|
return self._RequestId
|
|
@@ -319,7 +319,7 @@ class AsymmetricSm2DecryptResponse(AbstractModel):
|
|
|
319
319
|
:type KeyId: str
|
|
320
320
|
:param _Plaintext: Base64-encoded plaintext after decryption
|
|
321
321
|
:type Plaintext: str
|
|
322
|
-
:param _RequestId: The unique request ID,
|
|
322
|
+
: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.
|
|
323
323
|
:type RequestId: str
|
|
324
324
|
"""
|
|
325
325
|
self._KeyId = None
|
|
@@ -350,7 +350,7 @@ class AsymmetricSm2DecryptResponse(AbstractModel):
|
|
|
350
350
|
|
|
351
351
|
@property
|
|
352
352
|
def RequestId(self):
|
|
353
|
-
"""The unique request ID,
|
|
353
|
+
"""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.
|
|
354
354
|
:rtype: str
|
|
355
355
|
"""
|
|
356
356
|
return self._RequestId
|
|
@@ -439,14 +439,14 @@ class BindCloudResourceResponse(AbstractModel):
|
|
|
439
439
|
|
|
440
440
|
def __init__(self):
|
|
441
441
|
r"""
|
|
442
|
-
:param _RequestId: The unique request ID,
|
|
442
|
+
: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.
|
|
443
443
|
:type RequestId: str
|
|
444
444
|
"""
|
|
445
445
|
self._RequestId = None
|
|
446
446
|
|
|
447
447
|
@property
|
|
448
448
|
def RequestId(self):
|
|
449
|
-
"""The unique request ID,
|
|
449
|
+
"""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.
|
|
450
450
|
:rtype: str
|
|
451
451
|
"""
|
|
452
452
|
return self._RequestId
|
|
@@ -503,14 +503,14 @@ class CancelKeyArchiveResponse(AbstractModel):
|
|
|
503
503
|
|
|
504
504
|
def __init__(self):
|
|
505
505
|
r"""
|
|
506
|
-
:param _RequestId: The unique request ID,
|
|
506
|
+
: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.
|
|
507
507
|
:type RequestId: str
|
|
508
508
|
"""
|
|
509
509
|
self._RequestId = None
|
|
510
510
|
|
|
511
511
|
@property
|
|
512
512
|
def RequestId(self):
|
|
513
|
-
"""The unique request ID,
|
|
513
|
+
"""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.
|
|
514
514
|
:rtype: str
|
|
515
515
|
"""
|
|
516
516
|
return self._RequestId
|
|
@@ -569,7 +569,7 @@ class CancelKeyDeletionResponse(AbstractModel):
|
|
|
569
569
|
r"""
|
|
570
570
|
:param _KeyId: Unique ID of the CMK for which the schedule deletion is canceled
|
|
571
571
|
:type KeyId: str
|
|
572
|
-
:param _RequestId: The unique request ID,
|
|
572
|
+
: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.
|
|
573
573
|
:type RequestId: str
|
|
574
574
|
"""
|
|
575
575
|
self._KeyId = None
|
|
@@ -588,7 +588,7 @@ class CancelKeyDeletionResponse(AbstractModel):
|
|
|
588
588
|
|
|
589
589
|
@property
|
|
590
590
|
def RequestId(self):
|
|
591
|
-
"""The unique request ID,
|
|
591
|
+
"""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.
|
|
592
592
|
:rtype: str
|
|
593
593
|
"""
|
|
594
594
|
return self._RequestId
|
|
@@ -745,7 +745,7 @@ class CreateKeyResponse(AbstractModel):
|
|
|
745
745
|
:param _HsmClusterId: ID of the HSM cluster. This field is only valid for Exclusive and Managed KMS instances.
|
|
746
746
|
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
747
747
|
:type HsmClusterId: str
|
|
748
|
-
:param _RequestId: The unique request ID,
|
|
748
|
+
: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.
|
|
749
749
|
:type RequestId: str
|
|
750
750
|
"""
|
|
751
751
|
self._KeyId = None
|
|
@@ -861,7 +861,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
861
861
|
|
|
862
862
|
@property
|
|
863
863
|
def RequestId(self):
|
|
864
|
-
"""The unique request ID,
|
|
864
|
+
"""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.
|
|
865
865
|
:rtype: str
|
|
866
866
|
"""
|
|
867
867
|
return self._RequestId
|
|
@@ -987,7 +987,7 @@ class CreateWhiteBoxKeyResponse(AbstractModel):
|
|
|
987
987
|
:type TagCode: int
|
|
988
988
|
:param _TagMsg: Tag operation return message
|
|
989
989
|
:type TagMsg: str
|
|
990
|
-
:param _RequestId: The unique request ID,
|
|
990
|
+
: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.
|
|
991
991
|
:type RequestId: str
|
|
992
992
|
"""
|
|
993
993
|
self._EncryptKey = None
|
|
@@ -1054,7 +1054,7 @@ class CreateWhiteBoxKeyResponse(AbstractModel):
|
|
|
1054
1054
|
|
|
1055
1055
|
@property
|
|
1056
1056
|
def RequestId(self):
|
|
1057
|
-
"""The unique request ID,
|
|
1057
|
+
"""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.
|
|
1058
1058
|
:rtype: str
|
|
1059
1059
|
"""
|
|
1060
1060
|
return self._RequestId
|
|
@@ -1166,7 +1166,7 @@ class DecryptResponse(AbstractModel):
|
|
|
1166
1166
|
:param _Plaintext: If `EncryptionPublicKey` is left empty, a Base64-encoded ciphertext will be returned. To get the plaintext, you need to decode the ciphertext first.
|
|
1167
1167
|
If `EncryptionPublicKey` is specified, this field will return the Base64-encoded ciphertext encrypted with the specified public key. To get the plaintext, you need to decode the ciphertext and upload the corresponding private key.
|
|
1168
1168
|
:type Plaintext: str
|
|
1169
|
-
:param _RequestId: The unique request ID,
|
|
1169
|
+
: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.
|
|
1170
1170
|
:type RequestId: str
|
|
1171
1171
|
"""
|
|
1172
1172
|
self._KeyId = None
|
|
@@ -1198,7 +1198,7 @@ If `EncryptionPublicKey` is specified, this field will return the Base64-encoded
|
|
|
1198
1198
|
|
|
1199
1199
|
@property
|
|
1200
1200
|
def RequestId(self):
|
|
1201
|
-
"""The unique request ID,
|
|
1201
|
+
"""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.
|
|
1202
1202
|
:rtype: str
|
|
1203
1203
|
"""
|
|
1204
1204
|
return self._RequestId
|
|
@@ -1257,14 +1257,14 @@ class DeleteImportedKeyMaterialResponse(AbstractModel):
|
|
|
1257
1257
|
|
|
1258
1258
|
def __init__(self):
|
|
1259
1259
|
r"""
|
|
1260
|
-
:param _RequestId: The unique request ID,
|
|
1260
|
+
: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.
|
|
1261
1261
|
:type RequestId: str
|
|
1262
1262
|
"""
|
|
1263
1263
|
self._RequestId = None
|
|
1264
1264
|
|
|
1265
1265
|
@property
|
|
1266
1266
|
def RequestId(self):
|
|
1267
|
-
"""The unique request ID,
|
|
1267
|
+
"""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.
|
|
1268
1268
|
:rtype: str
|
|
1269
1269
|
"""
|
|
1270
1270
|
return self._RequestId
|
|
@@ -1321,14 +1321,14 @@ class DeleteWhiteBoxKeyResponse(AbstractModel):
|
|
|
1321
1321
|
|
|
1322
1322
|
def __init__(self):
|
|
1323
1323
|
r"""
|
|
1324
|
-
:param _RequestId: The unique request ID,
|
|
1324
|
+
: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.
|
|
1325
1325
|
:type RequestId: str
|
|
1326
1326
|
"""
|
|
1327
1327
|
self._RequestId = None
|
|
1328
1328
|
|
|
1329
1329
|
@property
|
|
1330
1330
|
def RequestId(self):
|
|
1331
|
-
"""The unique request ID,
|
|
1331
|
+
"""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.
|
|
1332
1332
|
:rtype: str
|
|
1333
1333
|
"""
|
|
1334
1334
|
return self._RequestId
|
|
@@ -1388,7 +1388,7 @@ class DescribeKeyResponse(AbstractModel):
|
|
|
1388
1388
|
:param _KeyMetadata: Key attribute information
|
|
1389
1389
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1390
1390
|
:type KeyMetadata: :class:`tencentcloud.kms.v20190118.models.KeyMetadata`
|
|
1391
|
-
:param _RequestId: The unique request ID,
|
|
1391
|
+
: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.
|
|
1392
1392
|
:type RequestId: str
|
|
1393
1393
|
"""
|
|
1394
1394
|
self._KeyMetadata = None
|
|
@@ -1408,7 +1408,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1408
1408
|
|
|
1409
1409
|
@property
|
|
1410
1410
|
def RequestId(self):
|
|
1411
|
-
"""The unique request ID,
|
|
1411
|
+
"""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.
|
|
1412
1412
|
:rtype: str
|
|
1413
1413
|
"""
|
|
1414
1414
|
return self._RequestId
|
|
@@ -1471,7 +1471,7 @@ class DescribeKeysResponse(AbstractModel):
|
|
|
1471
1471
|
:param _KeyMetadatas: List of returned attribute information
|
|
1472
1472
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1473
1473
|
:type KeyMetadatas: list of KeyMetadata
|
|
1474
|
-
:param _RequestId: The unique request ID,
|
|
1474
|
+
: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.
|
|
1475
1475
|
:type RequestId: str
|
|
1476
1476
|
"""
|
|
1477
1477
|
self._KeyMetadatas = None
|
|
@@ -1491,7 +1491,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1491
1491
|
|
|
1492
1492
|
@property
|
|
1493
1493
|
def RequestId(self):
|
|
1494
|
-
"""The unique request ID,
|
|
1494
|
+
"""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.
|
|
1495
1495
|
:rtype: str
|
|
1496
1496
|
"""
|
|
1497
1497
|
return self._RequestId
|
|
@@ -1556,7 +1556,7 @@ class DescribeWhiteBoxDecryptKeyResponse(AbstractModel):
|
|
|
1556
1556
|
r"""
|
|
1557
1557
|
:param _DecryptKey: Base64-encoded white-box decryption key
|
|
1558
1558
|
:type DecryptKey: str
|
|
1559
|
-
:param _RequestId: The unique request ID,
|
|
1559
|
+
: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.
|
|
1560
1560
|
:type RequestId: str
|
|
1561
1561
|
"""
|
|
1562
1562
|
self._DecryptKey = None
|
|
@@ -1575,7 +1575,7 @@ class DescribeWhiteBoxDecryptKeyResponse(AbstractModel):
|
|
|
1575
1575
|
|
|
1576
1576
|
@property
|
|
1577
1577
|
def RequestId(self):
|
|
1578
|
-
"""The unique request ID,
|
|
1578
|
+
"""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.
|
|
1579
1579
|
:rtype: str
|
|
1580
1580
|
"""
|
|
1581
1581
|
return self._RequestId
|
|
@@ -1635,7 +1635,7 @@ class DescribeWhiteBoxDeviceFingerprintsResponse(AbstractModel):
|
|
|
1635
1635
|
r"""
|
|
1636
1636
|
:param _DeviceFingerprints: Device fingerprint list
|
|
1637
1637
|
:type DeviceFingerprints: list of DeviceFingerprint
|
|
1638
|
-
:param _RequestId: The unique request ID,
|
|
1638
|
+
: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.
|
|
1639
1639
|
:type RequestId: str
|
|
1640
1640
|
"""
|
|
1641
1641
|
self._DeviceFingerprints = None
|
|
@@ -1654,7 +1654,7 @@ class DescribeWhiteBoxDeviceFingerprintsResponse(AbstractModel):
|
|
|
1654
1654
|
|
|
1655
1655
|
@property
|
|
1656
1656
|
def RequestId(self):
|
|
1657
|
-
"""The unique request ID,
|
|
1657
|
+
"""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.
|
|
1658
1658
|
:rtype: str
|
|
1659
1659
|
"""
|
|
1660
1660
|
return self._RequestId
|
|
@@ -1772,7 +1772,7 @@ class DescribeWhiteBoxKeyDetailsResponse(AbstractModel):
|
|
|
1772
1772
|
:param _TotalCount: Total white-box keys.
|
|
1773
1773
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1774
1774
|
:type TotalCount: int
|
|
1775
|
-
:param _RequestId: The unique request ID,
|
|
1775
|
+
: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.
|
|
1776
1776
|
:type RequestId: str
|
|
1777
1777
|
"""
|
|
1778
1778
|
self._KeyInfos = None
|
|
@@ -1804,7 +1804,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1804
1804
|
|
|
1805
1805
|
@property
|
|
1806
1806
|
def RequestId(self):
|
|
1807
|
-
"""The unique request ID,
|
|
1807
|
+
"""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.
|
|
1808
1808
|
:rtype: str
|
|
1809
1809
|
"""
|
|
1810
1810
|
return self._RequestId
|
|
@@ -1870,7 +1870,7 @@ class DescribeWhiteBoxKeyResponse(AbstractModel):
|
|
|
1870
1870
|
r"""
|
|
1871
1871
|
:param _KeyInfo: White-box key information
|
|
1872
1872
|
:type KeyInfo: :class:`tencentcloud.kms.v20190118.models.WhiteboxKeyInfo`
|
|
1873
|
-
:param _RequestId: The unique request ID,
|
|
1873
|
+
: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.
|
|
1874
1874
|
:type RequestId: str
|
|
1875
1875
|
"""
|
|
1876
1876
|
self._KeyInfo = None
|
|
@@ -1889,7 +1889,7 @@ class DescribeWhiteBoxKeyResponse(AbstractModel):
|
|
|
1889
1889
|
|
|
1890
1890
|
@property
|
|
1891
1891
|
def RequestId(self):
|
|
1892
|
-
"""The unique request ID,
|
|
1892
|
+
"""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.
|
|
1893
1893
|
:rtype: str
|
|
1894
1894
|
"""
|
|
1895
1895
|
return self._RequestId
|
|
@@ -1921,7 +1921,7 @@ class DescribeWhiteBoxServiceStatusResponse(AbstractModel):
|
|
|
1921
1921
|
r"""
|
|
1922
1922
|
:param _ServiceEnabled: Whether the user's white-box key service is available
|
|
1923
1923
|
:type ServiceEnabled: bool
|
|
1924
|
-
:param _RequestId: The unique request ID,
|
|
1924
|
+
: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.
|
|
1925
1925
|
:type RequestId: str
|
|
1926
1926
|
"""
|
|
1927
1927
|
self._ServiceEnabled = None
|
|
@@ -1940,7 +1940,7 @@ class DescribeWhiteBoxServiceStatusResponse(AbstractModel):
|
|
|
1940
1940
|
|
|
1941
1941
|
@property
|
|
1942
1942
|
def RequestId(self):
|
|
1943
|
-
"""The unique request ID,
|
|
1943
|
+
"""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.
|
|
1944
1944
|
:rtype: str
|
|
1945
1945
|
"""
|
|
1946
1946
|
return self._RequestId
|
|
@@ -2051,14 +2051,14 @@ class DisableKeyResponse(AbstractModel):
|
|
|
2051
2051
|
|
|
2052
2052
|
def __init__(self):
|
|
2053
2053
|
r"""
|
|
2054
|
-
:param _RequestId: The unique request ID,
|
|
2054
|
+
: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.
|
|
2055
2055
|
:type RequestId: str
|
|
2056
2056
|
"""
|
|
2057
2057
|
self._RequestId = None
|
|
2058
2058
|
|
|
2059
2059
|
@property
|
|
2060
2060
|
def RequestId(self):
|
|
2061
|
-
"""The unique request ID,
|
|
2061
|
+
"""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.
|
|
2062
2062
|
:rtype: str
|
|
2063
2063
|
"""
|
|
2064
2064
|
return self._RequestId
|
|
@@ -2115,14 +2115,14 @@ class DisableKeyRotationResponse(AbstractModel):
|
|
|
2115
2115
|
|
|
2116
2116
|
def __init__(self):
|
|
2117
2117
|
r"""
|
|
2118
|
-
:param _RequestId: The unique request ID,
|
|
2118
|
+
: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.
|
|
2119
2119
|
:type RequestId: str
|
|
2120
2120
|
"""
|
|
2121
2121
|
self._RequestId = None
|
|
2122
2122
|
|
|
2123
2123
|
@property
|
|
2124
2124
|
def RequestId(self):
|
|
2125
|
-
"""The unique request ID,
|
|
2125
|
+
"""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.
|
|
2126
2126
|
:rtype: str
|
|
2127
2127
|
"""
|
|
2128
2128
|
return self._RequestId
|
|
@@ -2179,14 +2179,14 @@ class DisableKeysResponse(AbstractModel):
|
|
|
2179
2179
|
|
|
2180
2180
|
def __init__(self):
|
|
2181
2181
|
r"""
|
|
2182
|
-
:param _RequestId: The unique request ID,
|
|
2182
|
+
: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.
|
|
2183
2183
|
:type RequestId: str
|
|
2184
2184
|
"""
|
|
2185
2185
|
self._RequestId = None
|
|
2186
2186
|
|
|
2187
2187
|
@property
|
|
2188
2188
|
def RequestId(self):
|
|
2189
|
-
"""The unique request ID,
|
|
2189
|
+
"""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.
|
|
2190
2190
|
:rtype: str
|
|
2191
2191
|
"""
|
|
2192
2192
|
return self._RequestId
|
|
@@ -2243,14 +2243,14 @@ class DisableWhiteBoxKeyResponse(AbstractModel):
|
|
|
2243
2243
|
|
|
2244
2244
|
def __init__(self):
|
|
2245
2245
|
r"""
|
|
2246
|
-
:param _RequestId: The unique request ID,
|
|
2246
|
+
: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.
|
|
2247
2247
|
:type RequestId: str
|
|
2248
2248
|
"""
|
|
2249
2249
|
self._RequestId = None
|
|
2250
2250
|
|
|
2251
2251
|
@property
|
|
2252
2252
|
def RequestId(self):
|
|
2253
|
-
"""The unique request ID,
|
|
2253
|
+
"""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.
|
|
2254
2254
|
:rtype: str
|
|
2255
2255
|
"""
|
|
2256
2256
|
return self._RequestId
|
|
@@ -2307,14 +2307,14 @@ class DisableWhiteBoxKeysResponse(AbstractModel):
|
|
|
2307
2307
|
|
|
2308
2308
|
def __init__(self):
|
|
2309
2309
|
r"""
|
|
2310
|
-
:param _RequestId: The unique request ID,
|
|
2310
|
+
: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.
|
|
2311
2311
|
:type RequestId: str
|
|
2312
2312
|
"""
|
|
2313
2313
|
self._RequestId = None
|
|
2314
2314
|
|
|
2315
2315
|
@property
|
|
2316
2316
|
def RequestId(self):
|
|
2317
|
-
"""The unique request ID,
|
|
2317
|
+
"""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.
|
|
2318
2318
|
:rtype: str
|
|
2319
2319
|
"""
|
|
2320
2320
|
return self._RequestId
|
|
@@ -2371,14 +2371,14 @@ class EnableKeyResponse(AbstractModel):
|
|
|
2371
2371
|
|
|
2372
2372
|
def __init__(self):
|
|
2373
2373
|
r"""
|
|
2374
|
-
:param _RequestId: The unique request ID,
|
|
2374
|
+
: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.
|
|
2375
2375
|
:type RequestId: str
|
|
2376
2376
|
"""
|
|
2377
2377
|
self._RequestId = None
|
|
2378
2378
|
|
|
2379
2379
|
@property
|
|
2380
2380
|
def RequestId(self):
|
|
2381
|
-
"""The unique request ID,
|
|
2381
|
+
"""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.
|
|
2382
2382
|
:rtype: str
|
|
2383
2383
|
"""
|
|
2384
2384
|
return self._RequestId
|
|
@@ -2450,14 +2450,14 @@ class EnableKeyRotationResponse(AbstractModel):
|
|
|
2450
2450
|
|
|
2451
2451
|
def __init__(self):
|
|
2452
2452
|
r"""
|
|
2453
|
-
:param _RequestId: The unique request ID,
|
|
2453
|
+
: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.
|
|
2454
2454
|
:type RequestId: str
|
|
2455
2455
|
"""
|
|
2456
2456
|
self._RequestId = None
|
|
2457
2457
|
|
|
2458
2458
|
@property
|
|
2459
2459
|
def RequestId(self):
|
|
2460
|
-
"""The unique request ID,
|
|
2460
|
+
"""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.
|
|
2461
2461
|
:rtype: str
|
|
2462
2462
|
"""
|
|
2463
2463
|
return self._RequestId
|
|
@@ -2514,14 +2514,14 @@ class EnableKeysResponse(AbstractModel):
|
|
|
2514
2514
|
|
|
2515
2515
|
def __init__(self):
|
|
2516
2516
|
r"""
|
|
2517
|
-
:param _RequestId: The unique request ID,
|
|
2517
|
+
: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.
|
|
2518
2518
|
:type RequestId: str
|
|
2519
2519
|
"""
|
|
2520
2520
|
self._RequestId = None
|
|
2521
2521
|
|
|
2522
2522
|
@property
|
|
2523
2523
|
def RequestId(self):
|
|
2524
|
-
"""The unique request ID,
|
|
2524
|
+
"""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.
|
|
2525
2525
|
:rtype: str
|
|
2526
2526
|
"""
|
|
2527
2527
|
return self._RequestId
|
|
@@ -2578,14 +2578,14 @@ class EnableWhiteBoxKeyResponse(AbstractModel):
|
|
|
2578
2578
|
|
|
2579
2579
|
def __init__(self):
|
|
2580
2580
|
r"""
|
|
2581
|
-
:param _RequestId: The unique request ID,
|
|
2581
|
+
: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.
|
|
2582
2582
|
:type RequestId: str
|
|
2583
2583
|
"""
|
|
2584
2584
|
self._RequestId = None
|
|
2585
2585
|
|
|
2586
2586
|
@property
|
|
2587
2587
|
def RequestId(self):
|
|
2588
|
-
"""The unique request ID,
|
|
2588
|
+
"""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.
|
|
2589
2589
|
:rtype: str
|
|
2590
2590
|
"""
|
|
2591
2591
|
return self._RequestId
|
|
@@ -2642,14 +2642,14 @@ class EnableWhiteBoxKeysResponse(AbstractModel):
|
|
|
2642
2642
|
|
|
2643
2643
|
def __init__(self):
|
|
2644
2644
|
r"""
|
|
2645
|
-
:param _RequestId: The unique request ID,
|
|
2645
|
+
: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.
|
|
2646
2646
|
:type RequestId: str
|
|
2647
2647
|
"""
|
|
2648
2648
|
self._RequestId = None
|
|
2649
2649
|
|
|
2650
2650
|
@property
|
|
2651
2651
|
def RequestId(self):
|
|
2652
|
-
"""The unique request ID,
|
|
2652
|
+
"""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.
|
|
2653
2653
|
:rtype: str
|
|
2654
2654
|
"""
|
|
2655
2655
|
return self._RequestId
|
|
@@ -2740,7 +2740,7 @@ class EncryptByWhiteBoxResponse(AbstractModel):
|
|
|
2740
2740
|
:type InitializationVector: str
|
|
2741
2741
|
:param _CipherText: Base64-encoded ciphertext after encryption
|
|
2742
2742
|
:type CipherText: str
|
|
2743
|
-
:param _RequestId: The unique request ID,
|
|
2743
|
+
: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.
|
|
2744
2744
|
:type RequestId: str
|
|
2745
2745
|
"""
|
|
2746
2746
|
self._InitializationVector = None
|
|
@@ -2771,7 +2771,7 @@ class EncryptByWhiteBoxResponse(AbstractModel):
|
|
|
2771
2771
|
|
|
2772
2772
|
@property
|
|
2773
2773
|
def RequestId(self):
|
|
2774
|
-
"""The unique request ID,
|
|
2774
|
+
"""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.
|
|
2775
2775
|
:rtype: str
|
|
2776
2776
|
"""
|
|
2777
2777
|
return self._RequestId
|
|
@@ -2864,7 +2864,7 @@ class EncryptResponse(AbstractModel):
|
|
|
2864
2864
|
:type CiphertextBlob: str
|
|
2865
2865
|
:param _KeyId: Globally unique ID of the CMK used for encryption
|
|
2866
2866
|
:type KeyId: str
|
|
2867
|
-
:param _RequestId: The unique request ID,
|
|
2867
|
+
: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.
|
|
2868
2868
|
:type RequestId: str
|
|
2869
2869
|
"""
|
|
2870
2870
|
self._CiphertextBlob = None
|
|
@@ -2895,7 +2895,7 @@ class EncryptResponse(AbstractModel):
|
|
|
2895
2895
|
|
|
2896
2896
|
@property
|
|
2897
2897
|
def RequestId(self):
|
|
2898
|
-
"""The unique request ID,
|
|
2898
|
+
"""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.
|
|
2899
2899
|
:rtype: str
|
|
2900
2900
|
"""
|
|
2901
2901
|
return self._RequestId
|
|
@@ -3036,7 +3036,7 @@ If `EncryptionPublicKey` is specified, this field will return the Base64-encoded
|
|
|
3036
3036
|
:type Plaintext: str
|
|
3037
3037
|
:param _CiphertextBlob: Ciphertext of the data key, which should be kept by yourself. KMS does not host user data keys. You can call the `Decrypt` API to get the plaintext of the data key from `CiphertextBlob`.
|
|
3038
3038
|
:type CiphertextBlob: str
|
|
3039
|
-
:param _RequestId: The unique request ID,
|
|
3039
|
+
: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.
|
|
3040
3040
|
:type RequestId: str
|
|
3041
3041
|
"""
|
|
3042
3042
|
self._KeyId = None
|
|
@@ -3080,7 +3080,7 @@ If `EncryptionPublicKey` is specified, this field will return the Base64-encoded
|
|
|
3080
3080
|
|
|
3081
3081
|
@property
|
|
3082
3082
|
def RequestId(self):
|
|
3083
|
-
"""The unique request ID,
|
|
3083
|
+
"""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.
|
|
3084
3084
|
:rtype: str
|
|
3085
3085
|
"""
|
|
3086
3086
|
return self._RequestId
|
|
@@ -3142,7 +3142,7 @@ class GenerateRandomResponse(AbstractModel):
|
|
|
3142
3142
|
r"""
|
|
3143
3143
|
:param _Plaintext: Base64-encoded plaintext of the randomly generated number. You need to Base64-decode it to get the plaintext.
|
|
3144
3144
|
:type Plaintext: str
|
|
3145
|
-
:param _RequestId: The unique request ID,
|
|
3145
|
+
: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.
|
|
3146
3146
|
:type RequestId: str
|
|
3147
3147
|
"""
|
|
3148
3148
|
self._Plaintext = None
|
|
@@ -3161,7 +3161,7 @@ class GenerateRandomResponse(AbstractModel):
|
|
|
3161
3161
|
|
|
3162
3162
|
@property
|
|
3163
3163
|
def RequestId(self):
|
|
3164
|
-
"""The unique request ID,
|
|
3164
|
+
"""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.
|
|
3165
3165
|
:rtype: str
|
|
3166
3166
|
"""
|
|
3167
3167
|
return self._RequestId
|
|
@@ -3221,7 +3221,7 @@ class GetKeyRotationStatusResponse(AbstractModel):
|
|
|
3221
3221
|
r"""
|
|
3222
3222
|
:param _KeyRotationEnabled: Whether key rotation is enabled
|
|
3223
3223
|
:type KeyRotationEnabled: bool
|
|
3224
|
-
:param _RequestId: The unique request ID,
|
|
3224
|
+
: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.
|
|
3225
3225
|
:type RequestId: str
|
|
3226
3226
|
"""
|
|
3227
3227
|
self._KeyRotationEnabled = None
|
|
@@ -3240,7 +3240,7 @@ class GetKeyRotationStatusResponse(AbstractModel):
|
|
|
3240
3240
|
|
|
3241
3241
|
@property
|
|
3242
3242
|
def RequestId(self):
|
|
3243
|
-
"""The unique request ID,
|
|
3243
|
+
"""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.
|
|
3244
3244
|
:rtype: str
|
|
3245
3245
|
"""
|
|
3246
3246
|
return self._RequestId
|
|
@@ -3336,7 +3336,7 @@ class GetParametersForImportResponse(AbstractModel):
|
|
|
3336
3336
|
:type PublicKey: str
|
|
3337
3337
|
:param _ParametersValidTo: Validity period of the token and public key. A token and public key can only be imported when they are valid. If they are expired, you will need to call the `GetParametersForImport` API again to get a new token and public key.
|
|
3338
3338
|
:type ParametersValidTo: int
|
|
3339
|
-
:param _RequestId: The unique request ID,
|
|
3339
|
+
: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.
|
|
3340
3340
|
:type RequestId: str
|
|
3341
3341
|
"""
|
|
3342
3342
|
self._KeyId = None
|
|
@@ -3391,7 +3391,7 @@ class GetParametersForImportResponse(AbstractModel):
|
|
|
3391
3391
|
|
|
3392
3392
|
@property
|
|
3393
3393
|
def RequestId(self):
|
|
3394
|
-
"""The unique request ID,
|
|
3394
|
+
"""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.
|
|
3395
3395
|
:rtype: str
|
|
3396
3396
|
"""
|
|
3397
3397
|
return self._RequestId
|
|
@@ -3458,7 +3458,7 @@ class GetPublicKeyResponse(AbstractModel):
|
|
|
3458
3458
|
:type PublicKey: str
|
|
3459
3459
|
:param _PublicKeyPem: Public key content in PEM format.
|
|
3460
3460
|
:type PublicKeyPem: str
|
|
3461
|
-
:param _RequestId: The unique request ID,
|
|
3461
|
+
: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.
|
|
3462
3462
|
:type RequestId: str
|
|
3463
3463
|
"""
|
|
3464
3464
|
self._KeyId = None
|
|
@@ -3501,7 +3501,7 @@ class GetPublicKeyResponse(AbstractModel):
|
|
|
3501
3501
|
|
|
3502
3502
|
@property
|
|
3503
3503
|
def RequestId(self):
|
|
3504
|
-
"""The unique request ID,
|
|
3504
|
+
"""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.
|
|
3505
3505
|
:rtype: str
|
|
3506
3506
|
"""
|
|
3507
3507
|
return self._RequestId
|
|
@@ -3534,7 +3534,7 @@ class GetRegionsResponse(AbstractModel):
|
|
|
3534
3534
|
:param _Regions: The list of supported regions
|
|
3535
3535
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3536
3536
|
:type Regions: list of str
|
|
3537
|
-
:param _RequestId: The unique request ID,
|
|
3537
|
+
: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.
|
|
3538
3538
|
:type RequestId: str
|
|
3539
3539
|
"""
|
|
3540
3540
|
self._Regions = None
|
|
@@ -3554,7 +3554,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3554
3554
|
|
|
3555
3555
|
@property
|
|
3556
3556
|
def RequestId(self):
|
|
3557
|
-
"""The unique request ID,
|
|
3557
|
+
"""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.
|
|
3558
3558
|
:rtype: str
|
|
3559
3559
|
"""
|
|
3560
3560
|
return self._RequestId
|
|
@@ -3606,7 +3606,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
3606
3606
|
:param _SubscriptionInfo: KMS subscription information.
|
|
3607
3607
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3608
3608
|
:type SubscriptionInfo: str
|
|
3609
|
-
:param _RequestId: The unique request ID,
|
|
3609
|
+
: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.
|
|
3610
3610
|
:type RequestId: str
|
|
3611
3611
|
"""
|
|
3612
3612
|
self._ServiceEnabled = None
|
|
@@ -3727,7 +3727,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3727
3727
|
|
|
3728
3728
|
@property
|
|
3729
3729
|
def RequestId(self):
|
|
3730
|
-
"""The unique request ID,
|
|
3730
|
+
"""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.
|
|
3731
3731
|
:rtype: str
|
|
3732
3732
|
"""
|
|
3733
3733
|
return self._RequestId
|
|
@@ -3838,14 +3838,14 @@ class ImportKeyMaterialResponse(AbstractModel):
|
|
|
3838
3838
|
|
|
3839
3839
|
def __init__(self):
|
|
3840
3840
|
r"""
|
|
3841
|
-
:param _RequestId: The unique request ID,
|
|
3841
|
+
: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.
|
|
3842
3842
|
:type RequestId: str
|
|
3843
3843
|
"""
|
|
3844
3844
|
self._RequestId = None
|
|
3845
3845
|
|
|
3846
3846
|
@property
|
|
3847
3847
|
def RequestId(self):
|
|
3848
|
-
"""The unique request ID,
|
|
3848
|
+
"""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.
|
|
3849
3849
|
:rtype: str
|
|
3850
3850
|
"""
|
|
3851
3851
|
return self._RequestId
|
|
@@ -4181,7 +4181,7 @@ class ListAlgorithmsResponse(AbstractModel):
|
|
|
4181
4181
|
:type AsymmetricAlgorithms: list of AlgorithmInfo
|
|
4182
4182
|
:param _AsymmetricSignVerifyAlgorithms: Asymmetric signature verification algorithms supported in the current region
|
|
4183
4183
|
:type AsymmetricSignVerifyAlgorithms: list of AlgorithmInfo
|
|
4184
|
-
:param _RequestId: The unique request ID,
|
|
4184
|
+
: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.
|
|
4185
4185
|
:type RequestId: str
|
|
4186
4186
|
"""
|
|
4187
4187
|
self._SymmetricAlgorithms = None
|
|
@@ -4224,7 +4224,7 @@ class ListAlgorithmsResponse(AbstractModel):
|
|
|
4224
4224
|
|
|
4225
4225
|
@property
|
|
4226
4226
|
def RequestId(self):
|
|
4227
|
-
"""The unique request ID,
|
|
4227
|
+
"""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.
|
|
4228
4228
|
:rtype: str
|
|
4229
4229
|
"""
|
|
4230
4230
|
return self._RequestId
|
|
@@ -4444,7 +4444,7 @@ class ListKeyDetailResponse(AbstractModel):
|
|
|
4444
4444
|
:param _KeyMetadatas: List of returned attribute information.
|
|
4445
4445
|
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4446
4446
|
:type KeyMetadatas: list of KeyMetadata
|
|
4447
|
-
:param _RequestId: The unique request ID,
|
|
4447
|
+
: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.
|
|
4448
4448
|
:type RequestId: str
|
|
4449
4449
|
"""
|
|
4450
4450
|
self._TotalCount = None
|
|
@@ -4476,7 +4476,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4476
4476
|
|
|
4477
4477
|
@property
|
|
4478
4478
|
def RequestId(self):
|
|
4479
|
-
"""The unique request ID,
|
|
4479
|
+
"""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.
|
|
4480
4480
|
:rtype: str
|
|
4481
4481
|
"""
|
|
4482
4482
|
return self._RequestId
|
|
@@ -4589,7 +4589,7 @@ class ListKeysResponse(AbstractModel):
|
|
|
4589
4589
|
:type Keys: list of Key
|
|
4590
4590
|
:param _TotalCount: Total number of CMKs
|
|
4591
4591
|
:type TotalCount: int
|
|
4592
|
-
:param _RequestId: The unique request ID,
|
|
4592
|
+
: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.
|
|
4593
4593
|
:type RequestId: str
|
|
4594
4594
|
"""
|
|
4595
4595
|
self._Keys = None
|
|
@@ -4620,7 +4620,7 @@ class ListKeysResponse(AbstractModel):
|
|
|
4620
4620
|
|
|
4621
4621
|
@property
|
|
4622
4622
|
def RequestId(self):
|
|
4623
|
-
"""The unique request ID,
|
|
4623
|
+
"""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.
|
|
4624
4624
|
:rtype: str
|
|
4625
4625
|
"""
|
|
4626
4626
|
return self._RequestId
|
|
@@ -4704,14 +4704,14 @@ class OverwriteWhiteBoxDeviceFingerprintsResponse(AbstractModel):
|
|
|
4704
4704
|
|
|
4705
4705
|
def __init__(self):
|
|
4706
4706
|
r"""
|
|
4707
|
-
:param _RequestId: The unique request ID,
|
|
4707
|
+
: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.
|
|
4708
4708
|
:type RequestId: str
|
|
4709
4709
|
"""
|
|
4710
4710
|
self._RequestId = None
|
|
4711
4711
|
|
|
4712
4712
|
@property
|
|
4713
4713
|
def RequestId(self):
|
|
4714
|
-
"""The unique request ID,
|
|
4714
|
+
"""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.
|
|
4715
4715
|
:rtype: str
|
|
4716
4716
|
"""
|
|
4717
4717
|
return self._RequestId
|
|
@@ -5259,7 +5259,7 @@ class ReEncryptResponse(AbstractModel):
|
|
|
5259
5259
|
:type SourceKeyId: str
|
|
5260
5260
|
:param _ReEncrypted: `true` indicates that the ciphertext has been re-encrypted. When re-encryption is initiated by using the same CMK, as long as the CMK is not rotated, no actual re-encryption will be performed, and the original ciphertext will be returned
|
|
5261
5261
|
:type ReEncrypted: bool
|
|
5262
|
-
:param _RequestId: The unique request ID,
|
|
5262
|
+
: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.
|
|
5263
5263
|
:type RequestId: str
|
|
5264
5264
|
"""
|
|
5265
5265
|
self._CiphertextBlob = None
|
|
@@ -5314,7 +5314,7 @@ class ReEncryptResponse(AbstractModel):
|
|
|
5314
5314
|
|
|
5315
5315
|
@property
|
|
5316
5316
|
def RequestId(self):
|
|
5317
|
-
"""The unique request ID,
|
|
5317
|
+
"""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.
|
|
5318
5318
|
:rtype: str
|
|
5319
5319
|
"""
|
|
5320
5320
|
return self._RequestId
|
|
@@ -5394,7 +5394,7 @@ class ScheduleKeyDeletionResponse(AbstractModel):
|
|
|
5394
5394
|
:type DeletionDate: int
|
|
5395
5395
|
:param _KeyId: Unique ID of the CMK scheduled for deletion
|
|
5396
5396
|
:type KeyId: str
|
|
5397
|
-
:param _RequestId: The unique request ID,
|
|
5397
|
+
: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.
|
|
5398
5398
|
:type RequestId: str
|
|
5399
5399
|
"""
|
|
5400
5400
|
self._DeletionDate = None
|
|
@@ -5425,7 +5425,7 @@ class ScheduleKeyDeletionResponse(AbstractModel):
|
|
|
5425
5425
|
|
|
5426
5426
|
@property
|
|
5427
5427
|
def RequestId(self):
|
|
5428
|
-
"""The unique request ID,
|
|
5428
|
+
"""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.
|
|
5429
5429
|
:rtype: str
|
|
5430
5430
|
"""
|
|
5431
5431
|
return self._RequestId
|
|
@@ -5531,7 +5531,7 @@ class SignByAsymmetricKeyResponse(AbstractModel):
|
|
|
5531
5531
|
r"""
|
|
5532
5532
|
:param _Signature: Base64-encoded signature
|
|
5533
5533
|
:type Signature: str
|
|
5534
|
-
:param _RequestId: The unique request ID,
|
|
5534
|
+
: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.
|
|
5535
5535
|
:type RequestId: str
|
|
5536
5536
|
"""
|
|
5537
5537
|
self._Signature = None
|
|
@@ -5550,7 +5550,7 @@ class SignByAsymmetricKeyResponse(AbstractModel):
|
|
|
5550
5550
|
|
|
5551
5551
|
@property
|
|
5552
5552
|
def RequestId(self):
|
|
5553
|
-
"""The unique request ID,
|
|
5553
|
+
"""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.
|
|
5554
5554
|
:rtype: str
|
|
5555
5555
|
"""
|
|
5556
5556
|
return self._RequestId
|
|
@@ -5740,14 +5740,14 @@ class UnbindCloudResourceResponse(AbstractModel):
|
|
|
5740
5740
|
|
|
5741
5741
|
def __init__(self):
|
|
5742
5742
|
r"""
|
|
5743
|
-
:param _RequestId: The unique request ID,
|
|
5743
|
+
: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.
|
|
5744
5744
|
:type RequestId: str
|
|
5745
5745
|
"""
|
|
5746
5746
|
self._RequestId = None
|
|
5747
5747
|
|
|
5748
5748
|
@property
|
|
5749
5749
|
def RequestId(self):
|
|
5750
|
-
"""The unique request ID,
|
|
5750
|
+
"""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.
|
|
5751
5751
|
:rtype: str
|
|
5752
5752
|
"""
|
|
5753
5753
|
return self._RequestId
|
|
@@ -5819,14 +5819,14 @@ class UpdateAliasResponse(AbstractModel):
|
|
|
5819
5819
|
|
|
5820
5820
|
def __init__(self):
|
|
5821
5821
|
r"""
|
|
5822
|
-
:param _RequestId: The unique request ID,
|
|
5822
|
+
: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.
|
|
5823
5823
|
:type RequestId: str
|
|
5824
5824
|
"""
|
|
5825
5825
|
self._RequestId = None
|
|
5826
5826
|
|
|
5827
5827
|
@property
|
|
5828
5828
|
def RequestId(self):
|
|
5829
|
-
"""The unique request ID,
|
|
5829
|
+
"""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.
|
|
5830
5830
|
:rtype: str
|
|
5831
5831
|
"""
|
|
5832
5832
|
return self._RequestId
|
|
@@ -5898,14 +5898,14 @@ class UpdateKeyDescriptionResponse(AbstractModel):
|
|
|
5898
5898
|
|
|
5899
5899
|
def __init__(self):
|
|
5900
5900
|
r"""
|
|
5901
|
-
:param _RequestId: The unique request ID,
|
|
5901
|
+
: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.
|
|
5902
5902
|
:type RequestId: str
|
|
5903
5903
|
"""
|
|
5904
5904
|
self._RequestId = None
|
|
5905
5905
|
|
|
5906
5906
|
@property
|
|
5907
5907
|
def RequestId(self):
|
|
5908
|
-
"""The unique request ID,
|
|
5908
|
+
"""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.
|
|
5909
5909
|
:rtype: str
|
|
5910
5910
|
"""
|
|
5911
5911
|
return self._RequestId
|
|
@@ -6024,7 +6024,7 @@ class VerifyByAsymmetricKeyResponse(AbstractModel):
|
|
|
6024
6024
|
r"""
|
|
6025
6025
|
:param _SignatureValid: Whether the signature is valid. `true`: the signature is valid; `false`: the signature is invalid.
|
|
6026
6026
|
:type SignatureValid: bool
|
|
6027
|
-
:param _RequestId: The unique request ID,
|
|
6027
|
+
: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.
|
|
6028
6028
|
:type RequestId: str
|
|
6029
6029
|
"""
|
|
6030
6030
|
self._SignatureValid = None
|
|
@@ -6043,7 +6043,7 @@ class VerifyByAsymmetricKeyResponse(AbstractModel):
|
|
|
6043
6043
|
|
|
6044
6044
|
@property
|
|
6045
6045
|
def RequestId(self):
|
|
6046
|
-
"""The unique request ID,
|
|
6046
|
+
"""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.
|
|
6047
6047
|
:rtype: str
|
|
6048
6048
|
"""
|
|
6049
6049
|
return self._RequestId
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=T_sPI5CKDIEkruU9aI9sJ6abhYpiDV8RoHz2Zfm9bfQ,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
|
|
@@ -338,8 +338,8 @@ 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=f9sXktgBjr7zMgXP7ggnhZPC2w4q4dsfo8QuCj_881I,7590
|
|
341
|
-
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
341
|
+
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=fEAaZnN3AwElKcvd83nsnKJPDy8HGj8IkMQaFsOek_g,39959
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=cL9n7V9E382NoHBqXn6eisltMVSb6eztmrcjtVhpXxw,227507
|
|
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
|
|
@@ -354,7 +354,7 @@ tencentcloud/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
354
354
|
tencentcloud/kms/v20190118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
355
|
tencentcloud/kms/v20190118/errorcodes.py,sha256=oPx2K-S9eHuhJm5eJGHZw_LMF9kfq8KeIIqZyoZ-DqM,5717
|
|
356
356
|
tencentcloud/kms/v20190118/kms_client.py,sha256=Ys-MLu3_FEZR7hZ0UqQbLcgKxQNHPrx0vrrATnmGPbc,52331
|
|
357
|
-
tencentcloud/kms/v20190118/models.py,sha256=
|
|
357
|
+
tencentcloud/kms/v20190118/models.py,sha256=dUq5fUGdfLalAKzWL2IfLZMqB-p3_wLAmzIMVxITS-s,212264
|
|
358
358
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=PYKhl5BSZ9afW4HiUf539p933Wnw9eMpgR0tQG1hXoI,4709
|
|
@@ -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.1182.dist-info/METADATA,sha256=LgzXog149Zbguy8CaxIHv_CI08d-vrLdoLl6azPJnA4,1628
|
|
648
|
+
tencentcloud_sdk_python_intl_en-3.0.1182.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
649
|
+
tencentcloud_sdk_python_intl_en-3.0.1182.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
650
|
+
tencentcloud_sdk_python_intl_en-3.0.1182.dist-info/RECORD,,
|
|
File without changes
|