tencentcloud-sdk-nodejs-intl-en 3.0.1049 → 3.0.1051
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/cynosdb/v20190107/models.js +4 -4
- package/tencentcloud/es/v20180416/models.js +2 -2
- package/tencentcloud/facefusion/v20220927/facefusion_client.js +32 -3
- package/tencentcloud/facefusion/v20220927/models.js +491 -28
- package/tencentcloud/mps/v20190612/models.js +428 -99
- package/tencentcloud/mps/v20190612/mps_client.js +1 -0
- package/tencentcloud/sqlserver/v20180328/models.js +96 -2
- package/tencentcloud/sqlserver/v20180328/sqlserver_client.js +1 -0
- package/tencentcloud/vod/v20180717/models.js +572 -90
- package/tencentcloud/vod/v20180717/vod_client.js +34 -4
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1051";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -15710,7 +15710,7 @@ class TradePrice extends AbstractModel {
|
|
|
15710
15710
|
super();
|
|
15711
15711
|
|
|
15712
15712
|
/**
|
|
15713
|
-
* The non-discounted total price of monthly subscribed resources (unit:
|
|
15713
|
+
* The non-discounted total price of monthly subscribed resources (unit: 0.000001 cent)
|
|
15714
15714
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
15715
15715
|
* @type {number || null}
|
|
15716
15716
|
*/
|
|
@@ -15723,21 +15723,21 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
15723
15723
|
this.Discount = null;
|
|
15724
15724
|
|
|
15725
15725
|
/**
|
|
15726
|
-
* The discounted total price of monthly subscribed resources (unit:
|
|
15726
|
+
* The discounted total price of monthly subscribed resources (unit: 0.000001 cent). If a discount is applied, `TotalPriceDiscount` will be the product of `TotalPrice` and `Discount`.
|
|
15727
15727
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
15728
15728
|
* @type {number || null}
|
|
15729
15729
|
*/
|
|
15730
15730
|
this.TotalPriceDiscount = null;
|
|
15731
15731
|
|
|
15732
15732
|
/**
|
|
15733
|
-
* The non-discounted unit price of pay-as-you-go resources (unit:
|
|
15733
|
+
* The non-discounted unit price of pay-as-you-go resources (unit: 0.000001 cent)
|
|
15734
15734
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
15735
15735
|
* @type {number || null}
|
|
15736
15736
|
*/
|
|
15737
15737
|
this.UnitPrice = null;
|
|
15738
15738
|
|
|
15739
15739
|
/**
|
|
15740
|
-
* The discounted unit price of pay-as-you-go resources (unit:
|
|
15740
|
+
* The discounted unit price of pay-as-you-go resources (unit: 0.000001 cent). If a discount is applied, `UnitPriceDiscount` will be the product of `UnitPrice` and `Discount`.
|
|
15741
15741
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
15742
15742
|
* @type {number || null}
|
|
15743
15743
|
*/
|
|
@@ -499,7 +499,7 @@ class CreateIndexResponse extends AbstractModel {
|
|
|
499
499
|
super();
|
|
500
500
|
|
|
501
501
|
/**
|
|
502
|
-
* The unique request ID,
|
|
502
|
+
* 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.
|
|
503
503
|
* @type {string || null}
|
|
504
504
|
*/
|
|
505
505
|
this.RequestId = null;
|
|
@@ -2678,7 +2678,7 @@ class DescribeInstanceLogsResponse extends AbstractModel {
|
|
|
2678
2678
|
this.InstanceLogList = null;
|
|
2679
2679
|
|
|
2680
2680
|
/**
|
|
2681
|
-
* The unique request ID,
|
|
2681
|
+
* 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.
|
|
2682
2682
|
* @type {string || null}
|
|
2683
2683
|
*/
|
|
2684
2684
|
this.RequestId = null;
|
|
@@ -16,14 +16,21 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
+
const MetaData = models.MetaData;
|
|
19
20
|
const LogoParam = models.LogoParam;
|
|
20
|
-
const
|
|
21
|
+
const QueryVideoFaceFusionJobResponse = models.QueryVideoFaceFusionJobResponse;
|
|
22
|
+
const QueryVideoFaceFusionJobRequest = models.QueryVideoFaceFusionJobRequest;
|
|
23
|
+
const SubmitVideoFaceFusionJobResponse = models.SubmitVideoFaceFusionJobResponse;
|
|
24
|
+
const FuseFaceReviewDetail = models.FuseFaceReviewDetail;
|
|
25
|
+
const VideoFaceFusionOutput = models.VideoFaceFusionOutput;
|
|
21
26
|
const ImageCodecParam = models.ImageCodecParam;
|
|
22
27
|
const MergeInfo = models.MergeInfo;
|
|
23
|
-
const
|
|
28
|
+
const FuseFaceReviewResult = models.FuseFaceReviewResult;
|
|
24
29
|
const FuseFaceRequest = models.FuseFaceRequest;
|
|
25
30
|
const FaceRect = models.FaceRect;
|
|
26
|
-
const
|
|
31
|
+
const FuseParam = models.FuseParam;
|
|
32
|
+
const SubmitVideoFaceFusionJobRequest = models.SubmitVideoFaceFusionJobRequest;
|
|
33
|
+
const FuseFaceResponse = models.FuseFaceResponse;
|
|
27
34
|
|
|
28
35
|
|
|
29
36
|
/**
|
|
@@ -36,6 +43,28 @@ class FacefusionClient extends AbstractClient {
|
|
|
36
43
|
super("facefusion.tencentcloudapi.com", "2022-09-27", credential, region, profile);
|
|
37
44
|
}
|
|
38
45
|
|
|
46
|
+
/**
|
|
47
|
+
* This API is used to query the progress and status of video face fusion tasks by Job ID.
|
|
48
|
+
* @param {QueryVideoFaceFusionJobRequest} req
|
|
49
|
+
* @param {function(string, QueryVideoFaceFusionJobResponse):void} cb
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
QueryVideoFaceFusionJob(req, cb) {
|
|
53
|
+
let resp = new QueryVideoFaceFusionJobResponse();
|
|
54
|
+
this.request("QueryVideoFaceFusionJob", req, resp, cb);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* This API is used to submit asynchronous processing tasks of video face fusion. After a task is submitted, the Job ID, estimated completion time, and current queue length will be returned.
|
|
59
|
+
* @param {SubmitVideoFaceFusionJobRequest} req
|
|
60
|
+
* @param {function(string, SubmitVideoFaceFusionJobResponse):void} cb
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
SubmitVideoFaceFusionJob(req, cb) {
|
|
64
|
+
let resp = new SubmitVideoFaceFusionJobResponse();
|
|
65
|
+
this.request("SubmitVideoFaceFusionJob", req, resp, cb);
|
|
66
|
+
}
|
|
67
|
+
|
|
39
68
|
/**
|
|
40
69
|
* This API is used to perform the fusion of a single face, multiple faces, and specified faces with the material template by uploading face images. Users can add logos to generated images. See <a href="https://intl.cloud.tencent.com/document/product/670/38247?from_cn_redirect=1" target="_blank">Fusion Access Guide</a>.
|
|
41
70
|
|