tencentcloud-sdk-nodejs-intl-en 3.0.1157 → 3.0.1158
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.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +2 -3
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +47 -8
- package/tencentcloud/kms/v20190118/models.js +48 -48
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vm/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1158";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -215,9 +215,8 @@ Callable roles: Reseller, Distributer, Second-level reseller
|
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
/**
|
|
218
|
-
* This API is used to query
|
|
219
|
-
|
|
220
|
-
Callable roles: Distributor, Reseller
|
|
218
|
+
* This API is used to query sub-customer information.
|
|
219
|
+
Invocation roles: reseller, first-level distributor.
|
|
221
220
|
* @param {DescribeCustomerInfoRequest} req
|
|
222
221
|
* @param {function(string, DescribeCustomerInfoResponse):void} cb
|
|
223
222
|
* @public
|
|
@@ -4776,8 +4776,7 @@ class DescribeCustomerInfoData extends AbstractModel {
|
|
|
4776
4776
|
this.BindTime = null;
|
|
4777
4777
|
|
|
4778
4778
|
/**
|
|
4779
|
-
* Account status
|
|
4780
|
-
.
|
|
4779
|
+
* Account status.
|
|
4781
4780
|
0: normal.
|
|
4782
4781
|
1: forcibly mandatory (this function is not supported yet).
|
|
4783
4782
|
2: mandatory arrears.
|
|
@@ -4786,16 +4785,51 @@ class DescribeCustomerInfoData extends AbstractModel {
|
|
|
4786
4785
|
this.AccountStatus = null;
|
|
4787
4786
|
|
|
4788
4787
|
/**
|
|
4789
|
-
*
|
|
4790
|
-
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4788
|
+
* Specifies the identity verification status.
|
|
4789
|
+
-999: account information not found.
|
|
4790
|
+
-1: file not uploaded.
|
|
4791
|
+
0: pending review.
|
|
4792
|
+
Under review.
|
|
4793
|
+
Error in review: 2.
|
|
4794
|
+
3: pass review.
|
|
4795
4795
|
* @type {string || null}
|
|
4796
4796
|
*/
|
|
4797
4797
|
this.AuthStatus = null;
|
|
4798
4798
|
|
|
4799
|
+
/**
|
|
4800
|
+
* Real-Name type.
|
|
4801
|
+
-1: default value. no such information.
|
|
4802
|
+
0: personal type.
|
|
4803
|
+
1: enterprise type.
|
|
4804
|
+
* @type {number || null}
|
|
4805
|
+
*/
|
|
4806
|
+
this.AuthType = null;
|
|
4807
|
+
|
|
4808
|
+
/**
|
|
4809
|
+
* Specifies the registration time of the cid.
|
|
4810
|
+
* @type {string || null}
|
|
4811
|
+
*/
|
|
4812
|
+
this.CidRegisterTime = null;
|
|
4813
|
+
|
|
4814
|
+
/**
|
|
4815
|
+
* Specifies the registration time of the uin.
|
|
4816
|
+
* @type {string || null}
|
|
4817
|
+
*/
|
|
4818
|
+
this.UinRegisterTime = null;
|
|
4819
|
+
|
|
4820
|
+
/**
|
|
4821
|
+
* Time when real-name authentication passed.
|
|
4822
|
+
* @type {string || null}
|
|
4823
|
+
*/
|
|
4824
|
+
this.AuthPassTime = null;
|
|
4825
|
+
|
|
4826
|
+
/**
|
|
4827
|
+
* Whether there is consumption.
|
|
4828
|
+
0: no consumption; 1: consumption.
|
|
4829
|
+
* @type {number || null}
|
|
4830
|
+
*/
|
|
4831
|
+
this.HasExpense = null;
|
|
4832
|
+
|
|
4799
4833
|
}
|
|
4800
4834
|
|
|
4801
4835
|
/**
|
|
@@ -4813,6 +4847,11 @@ class DescribeCustomerInfoData extends AbstractModel {
|
|
|
4813
4847
|
this.BindTime = 'BindTime' in params ? params.BindTime : null;
|
|
4814
4848
|
this.AccountStatus = 'AccountStatus' in params ? params.AccountStatus : null;
|
|
4815
4849
|
this.AuthStatus = 'AuthStatus' in params ? params.AuthStatus : null;
|
|
4850
|
+
this.AuthType = 'AuthType' in params ? params.AuthType : null;
|
|
4851
|
+
this.CidRegisterTime = 'CidRegisterTime' in params ? params.CidRegisterTime : null;
|
|
4852
|
+
this.UinRegisterTime = 'UinRegisterTime' in params ? params.UinRegisterTime : null;
|
|
4853
|
+
this.AuthPassTime = 'AuthPassTime' in params ? params.AuthPassTime : null;
|
|
4854
|
+
this.HasExpense = 'HasExpense' in params ? params.HasExpense : null;
|
|
4816
4855
|
|
|
4817
4856
|
}
|
|
4818
4857
|
}
|
|
@@ -178,7 +178,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
178
178
|
this.TotalCount = null;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
* The unique request ID,
|
|
181
|
+
* 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.
|
|
182
182
|
* @type {string || null}
|
|
183
183
|
*/
|
|
184
184
|
this.RequestId = null;
|
|
@@ -287,7 +287,7 @@ class DisableWhiteBoxKeyResponse extends AbstractModel {
|
|
|
287
287
|
super();
|
|
288
288
|
|
|
289
289
|
/**
|
|
290
|
-
* The unique request ID,
|
|
290
|
+
* 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.
|
|
291
291
|
* @type {string || null}
|
|
292
292
|
*/
|
|
293
293
|
this.RequestId = null;
|
|
@@ -315,7 +315,7 @@ class DisableKeyResponse extends AbstractModel {
|
|
|
315
315
|
super();
|
|
316
316
|
|
|
317
317
|
/**
|
|
318
|
-
* The unique request ID,
|
|
318
|
+
* 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.
|
|
319
319
|
* @type {string || null}
|
|
320
320
|
*/
|
|
321
321
|
this.RequestId = null;
|
|
@@ -572,7 +572,7 @@ class ListAlgorithmsResponse extends AbstractModel {
|
|
|
572
572
|
this.AsymmetricSignVerifyAlgorithms = null;
|
|
573
573
|
|
|
574
574
|
/**
|
|
575
|
-
* The unique request ID,
|
|
575
|
+
* 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.
|
|
576
576
|
* @type {string || null}
|
|
577
577
|
*/
|
|
578
578
|
this.RequestId = null;
|
|
@@ -627,7 +627,7 @@ class DisableKeysResponse extends AbstractModel {
|
|
|
627
627
|
super();
|
|
628
628
|
|
|
629
629
|
/**
|
|
630
|
-
* The unique request ID,
|
|
630
|
+
* 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.
|
|
631
631
|
* @type {string || null}
|
|
632
632
|
*/
|
|
633
633
|
this.RequestId = null;
|
|
@@ -661,7 +661,7 @@ class DescribeWhiteBoxKeyResponse extends AbstractModel {
|
|
|
661
661
|
this.KeyInfo = null;
|
|
662
662
|
|
|
663
663
|
/**
|
|
664
|
-
* The unique request ID,
|
|
664
|
+
* 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.
|
|
665
665
|
* @type {string || null}
|
|
666
666
|
*/
|
|
667
667
|
this.RequestId = null;
|
|
@@ -695,7 +695,7 @@ class UpdateKeyDescriptionResponse extends AbstractModel {
|
|
|
695
695
|
super();
|
|
696
696
|
|
|
697
697
|
/**
|
|
698
|
-
* The unique request ID,
|
|
698
|
+
* 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.
|
|
699
699
|
* @type {string || null}
|
|
700
700
|
*/
|
|
701
701
|
this.RequestId = null;
|
|
@@ -729,7 +729,7 @@ class DescribeWhiteBoxServiceStatusResponse extends AbstractModel {
|
|
|
729
729
|
this.ServiceEnabled = null;
|
|
730
730
|
|
|
731
731
|
/**
|
|
732
|
-
* The unique request ID,
|
|
732
|
+
* 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.
|
|
733
733
|
* @type {string || null}
|
|
734
734
|
*/
|
|
735
735
|
this.RequestId = null;
|
|
@@ -932,7 +932,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
932
932
|
this.KeyMetadatas = null;
|
|
933
933
|
|
|
934
934
|
/**
|
|
935
|
-
* The unique request ID,
|
|
935
|
+
* 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.
|
|
936
936
|
* @type {string || null}
|
|
937
937
|
*/
|
|
938
938
|
this.RequestId = null;
|
|
@@ -1033,7 +1033,7 @@ class UpdateAliasResponse extends AbstractModel {
|
|
|
1033
1033
|
super();
|
|
1034
1034
|
|
|
1035
1035
|
/**
|
|
1036
|
-
* The unique request ID,
|
|
1036
|
+
* 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.
|
|
1037
1037
|
* @type {string || null}
|
|
1038
1038
|
*/
|
|
1039
1039
|
this.RequestId = null;
|
|
@@ -1073,7 +1073,7 @@ class ScheduleKeyDeletionResponse extends AbstractModel {
|
|
|
1073
1073
|
this.KeyId = null;
|
|
1074
1074
|
|
|
1075
1075
|
/**
|
|
1076
|
-
* The unique request ID,
|
|
1076
|
+
* 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.
|
|
1077
1077
|
* @type {string || null}
|
|
1078
1078
|
*/
|
|
1079
1079
|
this.RequestId = null;
|
|
@@ -1151,7 +1151,7 @@ class GenerateRandomResponse extends AbstractModel {
|
|
|
1151
1151
|
this.Plaintext = null;
|
|
1152
1152
|
|
|
1153
1153
|
/**
|
|
1154
|
-
* The unique request ID,
|
|
1154
|
+
* 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.
|
|
1155
1155
|
* @type {string || null}
|
|
1156
1156
|
*/
|
|
1157
1157
|
this.RequestId = null;
|
|
@@ -1257,7 +1257,7 @@ class EnableWhiteBoxKeysResponse extends AbstractModel {
|
|
|
1257
1257
|
super();
|
|
1258
1258
|
|
|
1259
1259
|
/**
|
|
1260
|
-
* The unique request ID,
|
|
1260
|
+
* 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 {string || null}
|
|
1262
1262
|
*/
|
|
1263
1263
|
this.RequestId = null;
|
|
@@ -1319,7 +1319,7 @@ class VerifyByAsymmetricKeyResponse extends AbstractModel {
|
|
|
1319
1319
|
this.SignatureValid = null;
|
|
1320
1320
|
|
|
1321
1321
|
/**
|
|
1322
|
-
* The unique request ID,
|
|
1322
|
+
* 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.
|
|
1323
1323
|
* @type {string || null}
|
|
1324
1324
|
*/
|
|
1325
1325
|
this.RequestId = null;
|
|
@@ -1400,7 +1400,7 @@ class GetParametersForImportResponse extends AbstractModel {
|
|
|
1400
1400
|
this.ParametersValidTo = null;
|
|
1401
1401
|
|
|
1402
1402
|
/**
|
|
1403
|
-
* The unique request ID,
|
|
1403
|
+
* 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.
|
|
1404
1404
|
* @type {string || null}
|
|
1405
1405
|
*/
|
|
1406
1406
|
this.RequestId = null;
|
|
@@ -1445,7 +1445,7 @@ If `EncryptionPublicKey` is specified, this field will return the Base64-encoded
|
|
|
1445
1445
|
this.Plaintext = null;
|
|
1446
1446
|
|
|
1447
1447
|
/**
|
|
1448
|
-
* The unique request ID,
|
|
1448
|
+
* 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.
|
|
1449
1449
|
* @type {string || null}
|
|
1450
1450
|
*/
|
|
1451
1451
|
this.RequestId = null;
|
|
@@ -1505,7 +1505,7 @@ class CreateWhiteBoxKeyResponse extends AbstractModel {
|
|
|
1505
1505
|
this.TagMsg = null;
|
|
1506
1506
|
|
|
1507
1507
|
/**
|
|
1508
|
-
* The unique request ID,
|
|
1508
|
+
* 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.
|
|
1509
1509
|
* @type {string || null}
|
|
1510
1510
|
*/
|
|
1511
1511
|
this.RequestId = null;
|
|
@@ -1566,7 +1566,7 @@ class DeleteImportedKeyMaterialResponse extends AbstractModel {
|
|
|
1566
1566
|
super();
|
|
1567
1567
|
|
|
1568
1568
|
/**
|
|
1569
|
-
* The unique request ID,
|
|
1569
|
+
* 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.
|
|
1570
1570
|
* @type {string || null}
|
|
1571
1571
|
*/
|
|
1572
1572
|
this.RequestId = null;
|
|
@@ -1662,7 +1662,7 @@ class EncryptByWhiteBoxResponse extends AbstractModel {
|
|
|
1662
1662
|
this.CipherText = null;
|
|
1663
1663
|
|
|
1664
1664
|
/**
|
|
1665
|
-
* The unique request ID,
|
|
1665
|
+
* 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.
|
|
1666
1666
|
* @type {string || null}
|
|
1667
1667
|
*/
|
|
1668
1668
|
this.RequestId = null;
|
|
@@ -1699,7 +1699,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1699
1699
|
this.KeyMetadatas = null;
|
|
1700
1700
|
|
|
1701
1701
|
/**
|
|
1702
|
-
* The unique request ID,
|
|
1702
|
+
* 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.
|
|
1703
1703
|
* @type {string || null}
|
|
1704
1704
|
*/
|
|
1705
1705
|
this.RequestId = null;
|
|
@@ -1736,7 +1736,7 @@ class EnableWhiteBoxKeyResponse extends AbstractModel {
|
|
|
1736
1736
|
super();
|
|
1737
1737
|
|
|
1738
1738
|
/**
|
|
1739
|
-
* The unique request ID,
|
|
1739
|
+
* 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.
|
|
1740
1740
|
* @type {string || null}
|
|
1741
1741
|
*/
|
|
1742
1742
|
this.RequestId = null;
|
|
@@ -1825,7 +1825,7 @@ class ListKeysResponse extends AbstractModel {
|
|
|
1825
1825
|
this.TotalCount = null;
|
|
1826
1826
|
|
|
1827
1827
|
/**
|
|
1828
|
-
* The unique request ID,
|
|
1828
|
+
* 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.
|
|
1829
1829
|
* @type {string || null}
|
|
1830
1830
|
*/
|
|
1831
1831
|
this.RequestId = null;
|
|
@@ -1875,7 +1875,7 @@ class AsymmetricSm2DecryptResponse extends AbstractModel {
|
|
|
1875
1875
|
this.Plaintext = null;
|
|
1876
1876
|
|
|
1877
1877
|
/**
|
|
1878
|
-
* The unique request ID,
|
|
1878
|
+
* 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.
|
|
1879
1879
|
* @type {string || null}
|
|
1880
1880
|
*/
|
|
1881
1881
|
this.RequestId = null;
|
|
@@ -1905,7 +1905,7 @@ class DisableKeyRotationResponse extends AbstractModel {
|
|
|
1905
1905
|
super();
|
|
1906
1906
|
|
|
1907
1907
|
/**
|
|
1908
|
-
* The unique request ID,
|
|
1908
|
+
* 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.
|
|
1909
1909
|
* @type {string || null}
|
|
1910
1910
|
*/
|
|
1911
1911
|
this.RequestId = null;
|
|
@@ -2130,7 +2130,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2130
2130
|
this.Regions = null;
|
|
2131
2131
|
|
|
2132
2132
|
/**
|
|
2133
|
-
* The unique request ID,
|
|
2133
|
+
* 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.
|
|
2134
2134
|
* @type {string || null}
|
|
2135
2135
|
*/
|
|
2136
2136
|
this.RequestId = null;
|
|
@@ -2178,7 +2178,7 @@ If `EncryptionPublicKey` is specified, this field will return the Base64-encoded
|
|
|
2178
2178
|
this.CiphertextBlob = null;
|
|
2179
2179
|
|
|
2180
2180
|
/**
|
|
2181
|
-
* The unique request ID,
|
|
2181
|
+
* 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.
|
|
2182
2182
|
* @type {string || null}
|
|
2183
2183
|
*/
|
|
2184
2184
|
this.RequestId = null;
|
|
@@ -2266,7 +2266,7 @@ class OverwriteWhiteBoxDeviceFingerprintsResponse extends AbstractModel {
|
|
|
2266
2266
|
super();
|
|
2267
2267
|
|
|
2268
2268
|
/**
|
|
2269
|
-
* The unique request ID,
|
|
2269
|
+
* 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.
|
|
2270
2270
|
* @type {string || null}
|
|
2271
2271
|
*/
|
|
2272
2272
|
this.RequestId = null;
|
|
@@ -2294,7 +2294,7 @@ class DisableWhiteBoxKeysResponse extends AbstractModel {
|
|
|
2294
2294
|
super();
|
|
2295
2295
|
|
|
2296
2296
|
/**
|
|
2297
|
-
* The unique request ID,
|
|
2297
|
+
* 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.
|
|
2298
2298
|
* @type {string || null}
|
|
2299
2299
|
*/
|
|
2300
2300
|
this.RequestId = null;
|
|
@@ -2447,7 +2447,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
2447
2447
|
this.HsmClusterId = null;
|
|
2448
2448
|
|
|
2449
2449
|
/**
|
|
2450
|
-
* The unique request ID,
|
|
2450
|
+
* 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.
|
|
2451
2451
|
* @type {string || null}
|
|
2452
2452
|
*/
|
|
2453
2453
|
this.RequestId = null;
|
|
@@ -2508,7 +2508,7 @@ class ReEncryptResponse extends AbstractModel {
|
|
|
2508
2508
|
this.ReEncrypted = null;
|
|
2509
2509
|
|
|
2510
2510
|
/**
|
|
2511
|
-
* The unique request ID,
|
|
2511
|
+
* 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.
|
|
2512
2512
|
* @type {string || null}
|
|
2513
2513
|
*/
|
|
2514
2514
|
this.RequestId = null;
|
|
@@ -2552,7 +2552,7 @@ class EncryptResponse extends AbstractModel {
|
|
|
2552
2552
|
this.KeyId = null;
|
|
2553
2553
|
|
|
2554
2554
|
/**
|
|
2555
|
-
* The unique request ID,
|
|
2555
|
+
* 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.
|
|
2556
2556
|
* @type {string || null}
|
|
2557
2557
|
*/
|
|
2558
2558
|
this.RequestId = null;
|
|
@@ -2638,7 +2638,7 @@ class EnableKeyResponse extends AbstractModel {
|
|
|
2638
2638
|
super();
|
|
2639
2639
|
|
|
2640
2640
|
/**
|
|
2641
|
-
* The unique request ID,
|
|
2641
|
+
* 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.
|
|
2642
2642
|
* @type {string || null}
|
|
2643
2643
|
*/
|
|
2644
2644
|
this.RequestId = null;
|
|
@@ -2726,7 +2726,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2726
2726
|
this.SubscriptionInfo = null;
|
|
2727
2727
|
|
|
2728
2728
|
/**
|
|
2729
|
-
* The unique request ID,
|
|
2729
|
+
* 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.
|
|
2730
2730
|
* @type {string || null}
|
|
2731
2731
|
*/
|
|
2732
2732
|
this.RequestId = null;
|
|
@@ -2805,7 +2805,7 @@ class GetKeyRotationStatusResponse extends AbstractModel {
|
|
|
2805
2805
|
this.KeyRotationEnabled = null;
|
|
2806
2806
|
|
|
2807
2807
|
/**
|
|
2808
|
-
* The unique request ID,
|
|
2808
|
+
* 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.
|
|
2809
2809
|
* @type {string || null}
|
|
2810
2810
|
*/
|
|
2811
2811
|
this.RequestId = null;
|
|
@@ -2911,7 +2911,7 @@ class DeleteWhiteBoxKeyResponse extends AbstractModel {
|
|
|
2911
2911
|
super();
|
|
2912
2912
|
|
|
2913
2913
|
/**
|
|
2914
|
-
* The unique request ID,
|
|
2914
|
+
* 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.
|
|
2915
2915
|
* @type {string || null}
|
|
2916
2916
|
*/
|
|
2917
2917
|
this.RequestId = null;
|
|
@@ -3152,7 +3152,7 @@ class CancelKeyArchiveResponse extends AbstractModel {
|
|
|
3152
3152
|
super();
|
|
3153
3153
|
|
|
3154
3154
|
/**
|
|
3155
|
-
* The unique request ID,
|
|
3155
|
+
* 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.
|
|
3156
3156
|
* @type {string || null}
|
|
3157
3157
|
*/
|
|
3158
3158
|
this.RequestId = null;
|
|
@@ -3375,7 +3375,7 @@ class AsymmetricRsaDecryptResponse extends AbstractModel {
|
|
|
3375
3375
|
this.Plaintext = null;
|
|
3376
3376
|
|
|
3377
3377
|
/**
|
|
3378
|
-
* The unique request ID,
|
|
3378
|
+
* 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.
|
|
3379
3379
|
* @type {string || null}
|
|
3380
3380
|
*/
|
|
3381
3381
|
this.RequestId = null;
|
|
@@ -3411,7 +3411,7 @@ class CancelKeyDeletionResponse extends AbstractModel {
|
|
|
3411
3411
|
this.KeyId = null;
|
|
3412
3412
|
|
|
3413
3413
|
/**
|
|
3414
|
-
* The unique request ID,
|
|
3414
|
+
* 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.
|
|
3415
3415
|
* @type {string || null}
|
|
3416
3416
|
*/
|
|
3417
3417
|
this.RequestId = null;
|
|
@@ -3581,7 +3581,7 @@ class EnableKeyRotationResponse extends AbstractModel {
|
|
|
3581
3581
|
super();
|
|
3582
3582
|
|
|
3583
3583
|
/**
|
|
3584
|
-
* The unique request ID,
|
|
3584
|
+
* 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.
|
|
3585
3585
|
* @type {string || null}
|
|
3586
3586
|
*/
|
|
3587
3587
|
this.RequestId = null;
|
|
@@ -3609,7 +3609,7 @@ class BindCloudResourceResponse extends AbstractModel {
|
|
|
3609
3609
|
super();
|
|
3610
3610
|
|
|
3611
3611
|
/**
|
|
3612
|
-
* The unique request ID,
|
|
3612
|
+
* 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.
|
|
3613
3613
|
* @type {string || null}
|
|
3614
3614
|
*/
|
|
3615
3615
|
this.RequestId = null;
|
|
@@ -3637,7 +3637,7 @@ class EnableKeysResponse extends AbstractModel {
|
|
|
3637
3637
|
super();
|
|
3638
3638
|
|
|
3639
3639
|
/**
|
|
3640
|
-
* The unique request ID,
|
|
3640
|
+
* 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.
|
|
3641
3641
|
* @type {string || null}
|
|
3642
3642
|
*/
|
|
3643
3643
|
this.RequestId = null;
|
|
@@ -3973,7 +3973,7 @@ class ImportKeyMaterialResponse extends AbstractModel {
|
|
|
3973
3973
|
super();
|
|
3974
3974
|
|
|
3975
3975
|
/**
|
|
3976
|
-
* The unique request ID,
|
|
3976
|
+
* 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.
|
|
3977
3977
|
* @type {string || null}
|
|
3978
3978
|
*/
|
|
3979
3979
|
this.RequestId = null;
|
|
@@ -4019,7 +4019,7 @@ class GetPublicKeyResponse extends AbstractModel {
|
|
|
4019
4019
|
this.PublicKeyPem = null;
|
|
4020
4020
|
|
|
4021
4021
|
/**
|
|
4022
|
-
* The unique request ID,
|
|
4022
|
+
* 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.
|
|
4023
4023
|
* @type {string || null}
|
|
4024
4024
|
*/
|
|
4025
4025
|
this.RequestId = null;
|
|
@@ -4168,7 +4168,7 @@ class SignByAsymmetricKeyResponse extends AbstractModel {
|
|
|
4168
4168
|
this.Signature = null;
|
|
4169
4169
|
|
|
4170
4170
|
/**
|
|
4171
|
-
* The unique request ID,
|
|
4171
|
+
* 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.
|
|
4172
4172
|
* @type {string || null}
|
|
4173
4173
|
*/
|
|
4174
4174
|
this.RequestId = null;
|
|
@@ -4238,7 +4238,7 @@ class DescribeWhiteBoxDecryptKeyResponse extends AbstractModel {
|
|
|
4238
4238
|
this.DecryptKey = null;
|
|
4239
4239
|
|
|
4240
4240
|
/**
|
|
4241
|
-
* The unique request ID,
|
|
4241
|
+
* 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.
|
|
4242
4242
|
* @type {string || null}
|
|
4243
4243
|
*/
|
|
4244
4244
|
this.RequestId = null;
|
|
@@ -4273,7 +4273,7 @@ class DescribeWhiteBoxDeviceFingerprintsResponse extends AbstractModel {
|
|
|
4273
4273
|
this.DeviceFingerprints = null;
|
|
4274
4274
|
|
|
4275
4275
|
/**
|
|
4276
|
-
* The unique request ID,
|
|
4276
|
+
* 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.
|
|
4277
4277
|
* @type {string || null}
|
|
4278
4278
|
*/
|
|
4279
4279
|
this.RequestId = null;
|
|
@@ -4388,7 +4388,7 @@ class UnbindCloudResourceResponse extends AbstractModel {
|
|
|
4388
4388
|
super();
|
|
4389
4389
|
|
|
4390
4390
|
/**
|
|
4391
|
-
* The unique request ID,
|
|
4391
|
+
* 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.
|
|
4392
4392
|
* @type {string || null}
|
|
4393
4393
|
*/
|
|
4394
4394
|
this.RequestId = null;
|
|
@@ -4423,7 +4423,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4423
4423
|
this.KeyMetadata = null;
|
|
4424
4424
|
|
|
4425
4425
|
/**
|
|
4426
|
-
* The unique request ID,
|
|
4426
|
+
* 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.
|
|
4427
4427
|
* @type {string || null}
|
|
4428
4428
|
*/
|
|
4429
4429
|
this.RequestId = null;
|
package/tencentcloud/vm/index.js
CHANGED