tencentcloud-sdk-nodejs-intl-en 3.0.1046 → 3.0.1048
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.1048";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -648,6 +648,21 @@ Default value: `4`.
|
|
|
648
648
|
*/
|
|
649
649
|
this.Extra = null;
|
|
650
650
|
|
|
651
|
+
/**
|
|
652
|
+
* This interface is used to control th action sequences.
|
|
653
|
+
Action types are as follows:
|
|
654
|
+
"blink"
|
|
655
|
+
"mouth"
|
|
656
|
+
"nod"
|
|
657
|
+
"shake"
|
|
658
|
+
You can choose 1-2 actions out of the four.
|
|
659
|
+
Single action example: "blink"
|
|
660
|
+
Multiple action example: "blink,mouth"
|
|
661
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2 or 4; otherwise, the interface reports an error.
|
|
662
|
+
* @type {string || null}
|
|
663
|
+
*/
|
|
664
|
+
this.ActionList = null;
|
|
665
|
+
|
|
651
666
|
}
|
|
652
667
|
|
|
653
668
|
/**
|
|
@@ -661,6 +676,7 @@ Default value: `4`.
|
|
|
661
676
|
this.SecureLevel = 'SecureLevel' in params ? params.SecureLevel : null;
|
|
662
677
|
this.Image = 'Image' in params ? params.Image : null;
|
|
663
678
|
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
679
|
+
this.ActionList = 'ActionList' in params ? params.ActionList : null;
|
|
664
680
|
|
|
665
681
|
}
|
|
666
682
|
}
|
|
@@ -2052,6 +2068,21 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
2052
2068
|
*/
|
|
2053
2069
|
this.Extra = null;
|
|
2054
2070
|
|
|
2071
|
+
/**
|
|
2072
|
+
* This interface is used to control th action sequences.
|
|
2073
|
+
Action types are as follows:
|
|
2074
|
+
"blink"
|
|
2075
|
+
"mouth"
|
|
2076
|
+
"nod"
|
|
2077
|
+
"shake"
|
|
2078
|
+
You can choose 1-2 actions out of the four.
|
|
2079
|
+
Single action example: "blink"
|
|
2080
|
+
Multiple action example: "blink,mouth"
|
|
2081
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2 or 4; otherwise, the interface reports an error.
|
|
2082
|
+
* @type {string || null}
|
|
2083
|
+
*/
|
|
2084
|
+
this.ActionList = null;
|
|
2085
|
+
|
|
2055
2086
|
}
|
|
2056
2087
|
|
|
2057
2088
|
/**
|
|
@@ -2069,6 +2100,7 @@ This feature applies only to Hong Kong (China) identity cards, Malaysian identit
|
|
|
2069
2100
|
this.DisableChangeOcrResult = 'DisableChangeOcrResult' in params ? params.DisableChangeOcrResult : null;
|
|
2070
2101
|
this.DisableCheckOcrWarnings = 'DisableCheckOcrWarnings' in params ? params.DisableCheckOcrWarnings : null;
|
|
2071
2102
|
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
2103
|
+
this.ActionList = 'ActionList' in params ? params.ActionList : null;
|
|
2072
2104
|
|
|
2073
2105
|
}
|
|
2074
2106
|
}
|
|
@@ -3262,6 +3294,21 @@ Example: HKIDCard
|
|
|
3262
3294
|
*/
|
|
3263
3295
|
this.AutoDowngrade = null;
|
|
3264
3296
|
|
|
3297
|
+
/**
|
|
3298
|
+
* This interface is used to control th action sequences.
|
|
3299
|
+
Action types are as follows:
|
|
3300
|
+
"blink"
|
|
3301
|
+
"mouth"
|
|
3302
|
+
"nod"
|
|
3303
|
+
"shake"
|
|
3304
|
+
You can choose 1-2 actions out of the four.
|
|
3305
|
+
Single action example: "blink"
|
|
3306
|
+
Multiple action example: "blink,mouth"
|
|
3307
|
+
The default value is blink. The different action types passed in this parameter take effect only when the SecurityLevel is 2, 4, or 5; otherwise, the interface reports an error.
|
|
3308
|
+
* @type {string || null}
|
|
3309
|
+
*/
|
|
3310
|
+
this.ActionList = null;
|
|
3311
|
+
|
|
3265
3312
|
}
|
|
3266
3313
|
|
|
3267
3314
|
/**
|
|
@@ -3282,6 +3329,7 @@ Example: HKIDCard
|
|
|
3282
3329
|
this.ThemeColor = 'ThemeColor' in params ? params.ThemeColor : null;
|
|
3283
3330
|
this.Language = 'Language' in params ? params.Language : null;
|
|
3284
3331
|
this.AutoDowngrade = 'AutoDowngrade' in params ? params.AutoDowngrade : null;
|
|
3332
|
+
this.ActionList = 'ActionList' in params ? params.ActionList : null;
|
|
3285
3333
|
|
|
3286
3334
|
}
|
|
3287
3335
|
}
|
|
@@ -46097,7 +46097,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
46097
46097
|
this.DownloadUrl = null;
|
|
46098
46098
|
|
|
46099
46099
|
/**
|
|
46100
|
-
* The unique request ID,
|
|
46100
|
+
* 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.
|
|
46101
46101
|
* @type {string || null}
|
|
46102
46102
|
*/
|
|
46103
46103
|
this.RequestId = null;
|