tencentcloud-sdk-nodejs-intl-en 3.0.1376 → 3.0.1378
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/cfs/v20190719/models.js +12 -5
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/iai/v20200303/iai_client.js +1 -1
- package/tencentcloud/monitor/v20180724/models.js +1151 -243
- package/tencentcloud/monitor/v20180724/monitor_client.js +101 -32
- package/tencentcloud/ocr/v20181119/models.js +5 -5
package/package.json
CHANGED
|
@@ -254,16 +254,16 @@ class CreateLifecycleDataTaskRequest extends AbstractModel {
|
|
|
254
254
|
this.Type = null;
|
|
255
255
|
|
|
256
256
|
/**
|
|
257
|
-
*
|
|
257
|
+
* Task name.
|
|
258
258
|
* @type {string || null}
|
|
259
259
|
*/
|
|
260
|
-
this.
|
|
260
|
+
this.TaskName = null;
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* The path or file to be settled supports passing only one path and cannot be empty.
|
|
264
264
|
* @type {string || null}
|
|
265
265
|
*/
|
|
266
|
-
this.
|
|
266
|
+
this.TaskPath = null;
|
|
267
267
|
|
|
268
268
|
/**
|
|
269
269
|
* Data flow ID. this api can be accessed through DescribeDataFlow.
|
|
@@ -288,8 +288,8 @@ class CreateLifecycleDataTaskRequest extends AbstractModel {
|
|
|
288
288
|
}
|
|
289
289
|
this.FileSystemId = 'FileSystemId' in params ? params.FileSystemId : null;
|
|
290
290
|
this.Type = 'Type' in params ? params.Type : null;
|
|
291
|
-
this.TaskPath = 'TaskPath' in params ? params.TaskPath : null;
|
|
292
291
|
this.TaskName = 'TaskName' in params ? params.TaskName : null;
|
|
292
|
+
this.TaskPath = 'TaskPath' in params ? params.TaskPath : null;
|
|
293
293
|
this.DataFlowId = 'DataFlowId' in params ? params.DataFlowId : null;
|
|
294
294
|
this.IsOverwrite = 'IsOverwrite' in params ? params.IsOverwrite : null;
|
|
295
295
|
|
|
@@ -4625,6 +4625,12 @@ class CreateCfsFileSystemRequest extends AbstractModel {
|
|
|
4625
4625
|
*/
|
|
4626
4626
|
this.FsName = null;
|
|
4627
4627
|
|
|
4628
|
+
/**
|
|
4629
|
+
*
|
|
4630
|
+
* @type {boolean || null}
|
|
4631
|
+
*/
|
|
4632
|
+
this.Encrypted = null;
|
|
4633
|
+
|
|
4628
4634
|
/**
|
|
4629
4635
|
* File system tag
|
|
4630
4636
|
* @type {Array.<TagInfo> || null}
|
|
@@ -4711,6 +4717,7 @@ Enhanced: creates enhanced metadata.
|
|
|
4711
4717
|
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
4712
4718
|
this.MountIP = 'MountIP' in params ? params.MountIP : null;
|
|
4713
4719
|
this.FsName = 'FsName' in params ? params.FsName : null;
|
|
4720
|
+
this.Encrypted = 'Encrypted' in params ? params.Encrypted : null;
|
|
4714
4721
|
|
|
4715
4722
|
if (params.ResourceTags) {
|
|
4716
4723
|
this.ResourceTags = new Array();
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1378";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -352,7 +352,7 @@ This API recognizes each face image of a person as an independent one. By contra
|
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
/**
|
|
355
|
-
* Compare the faces in the two pictures for similarity and return the face similarity score. If you need to determine "whether this person is someone", that is, to verify whether the person in a picture is someone with a known identity, such as a common face login scenario, it is recommended to use [VerifyFace](`https://www.tencentcloud.com/document/product/1059/36972`) or [VerifyPerson](`https://www.tencentcloud.com/document/product/1059/36971`) inferface.
|
|
355
|
+
* Compare the faces in the two pictures for similarity and return the face similarity score. If you need to determine "whether this person is someone", that is, to verify whether the person in a picture is someone with a known identity, such as a common face login scenario, it is recommended to use [VerifyFace](`https://www.tencentcloud.com/zh/document/product/1059/36972`) or [VerifyPerson](`https://www.tencentcloud.com/zh/document/product/1059/36971`) inferface.
|
|
356
356
|
Please use the V3 version for the signature method in the public parameters, that is, configure the SignatureMethod parameter to TC3-HMAC-SHA256
|
|
357
357
|
* @param {DetectFaceSimilarityRequest} req
|
|
358
358
|
* @param {function(string, DetectFaceSimilarityResponse):void} cb
|