tencentcloud-sdk-nodejs-intl-en 3.0.1046 → 3.0.1047
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
CHANGED
|
@@ -15392,17 +15392,23 @@ class CreateApiKeyRequest extends AbstractModel {
|
|
|
15392
15392
|
this.AccessKeyType = null;
|
|
15393
15393
|
|
|
15394
15394
|
/**
|
|
15395
|
-
* Custom key ID, which is required if `AccessKeyType` is `manual`. It can contain 5
|
|
15395
|
+
* Custom key ID, which is required if `AccessKeyType` is `manual`. It can contain 5-50 letters, digits, and underscores.
|
|
15396
15396
|
* @type {string || null}
|
|
15397
15397
|
*/
|
|
15398
15398
|
this.AccessKeyId = null;
|
|
15399
15399
|
|
|
15400
15400
|
/**
|
|
15401
|
-
* Custom key, which is required if `AccessKeyType` is `manual`. It can contain 10
|
|
15401
|
+
* Custom key, which is required if `AccessKeyType` is `manual`. It can contain 10-50 letters, digits, and underscores.
|
|
15402
15402
|
* @type {string || null}
|
|
15403
15403
|
*/
|
|
15404
15404
|
this.AccessKeySecret = null;
|
|
15405
15405
|
|
|
15406
|
+
/**
|
|
15407
|
+
*
|
|
15408
|
+
* @type {Array.<Tag> || null}
|
|
15409
|
+
*/
|
|
15410
|
+
this.Tags = null;
|
|
15411
|
+
|
|
15406
15412
|
}
|
|
15407
15413
|
|
|
15408
15414
|
/**
|
|
@@ -15417,6 +15423,15 @@ class CreateApiKeyRequest extends AbstractModel {
|
|
|
15417
15423
|
this.AccessKeyId = 'AccessKeyId' in params ? params.AccessKeyId : null;
|
|
15418
15424
|
this.AccessKeySecret = 'AccessKeySecret' in params ? params.AccessKeySecret : null;
|
|
15419
15425
|
|
|
15426
|
+
if (params.Tags) {
|
|
15427
|
+
this.Tags = new Array();
|
|
15428
|
+
for (let z in params.Tags) {
|
|
15429
|
+
let obj = new Tag();
|
|
15430
|
+
obj.deserialize(params.Tags[z]);
|
|
15431
|
+
this.Tags.push(obj);
|
|
15432
|
+
}
|
|
15433
|
+
}
|
|
15434
|
+
|
|
15420
15435
|
}
|
|
15421
15436
|
}
|
|
15422
15437
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1047";
|
|
2
2
|
module.exports = sdkVersion
|