tencentcloud-sdk-nodejs-intl-en 3.0.1079 → 3.0.1081

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1079",
3
+ "version": "3.0.1081",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1079";
1
+ const sdkVersion = "3.0.1081";
2
2
  module.exports = sdkVersion
@@ -3380,6 +3380,22 @@ Default value: false.
3380
3380
  */
3381
3381
  this.ImageSetRequired = null;
3382
3382
 
3383
+ /**
3384
+ * Whether to synchronize as an encrypted custom image.
3385
+ Default value is `false`.
3386
+ Synchronization to an encrypted custom image is only supported within the same region.
3387
+ * @type {boolean || null}
3388
+ */
3389
+ this.Encrypt = null;
3390
+
3391
+ /**
3392
+ * KMS key ID used when synchronizing to an encrypted custom image.
3393
+ This parameter is valid only synchronizing to an encrypted image.
3394
+ If KmsKeyId is not specified, the default CBS cloud product KMS key is used.
3395
+ * @type {string || null}
3396
+ */
3397
+ this.KmsKeyId = null;
3398
+
3383
3399
  }
3384
3400
 
3385
3401
  /**
@@ -3394,6 +3410,8 @@ Default value: false.
3394
3410
  this.DryRun = 'DryRun' in params ? params.DryRun : null;
3395
3411
  this.ImageName = 'ImageName' in params ? params.ImageName : null;
3396
3412
  this.ImageSetRequired = 'ImageSetRequired' in params ? params.ImageSetRequired : null;
3413
+ this.Encrypt = 'Encrypt' in params ? params.Encrypt : null;
3414
+ this.KmsKeyId = 'KmsKeyId' in params ? params.KmsKeyId : null;
3397
3415
 
3398
3416
  }
3399
3417
  }
@@ -3219,6 +3219,7 @@ Example value: false
3219
3219
  1: OCR+living detection & face comparison;
3220
3220
  2: Living detection & face comparison;
3221
3221
  3: Living detection;
3222
+ 4: OCR;
3222
3223
  The default value is 2.
3223
3224
  Example value: 3
3224
3225
  * @type {number || null}