tencentcloud-sdk-nodejs-intl-en 3.0.352 → 3.0.356
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/antiddos/v20200309/models.js +2 -1
- package/tencentcloud/apigateway/v20180808/models.js +30 -2
- package/tencentcloud/cdn/v20180606/cdn_client.js +1 -0
- package/tencentcloud/cdn/v20180606/models.js +94 -3
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +1 -0
- package/tencentcloud/ckafka/v20190819/models.js +89 -11
- package/tencentcloud/cls/v20201016/cls_client.js +75 -21
- package/tencentcloud/cls/v20201016/models.js +564 -120
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/emr/v20190103/models.js +70 -0
- package/tencentcloud/faceid/v20180301/faceid_client.js +13 -0
- package/tencentcloud/faceid/v20180301/models.js +114 -0
- package/tencentcloud/gaap/v20180529/models.js +7 -0
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/lighthouse/v20200324/models.js +11 -5
- package/tencentcloud/mariadb/v20170312/mariadb_client.js +13 -0
- package/tencentcloud/mariadb/v20170312/models.js +72 -0
- package/tencentcloud/mongodb/v20190725/models.js +501 -43
- package/tencentcloud/mongodb/v20190725/mongodb_client.js +18 -1
- package/tencentcloud/postgres/v20170312/models.js +51 -14
- package/tencentcloud/privatedns/v20201028/models.js +344 -59
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +43 -3
- package/tencentcloud/tdmq/index.js +3 -0
- package/tencentcloud/tdmq/v20200217/index.js +4 -0
- package/tencentcloud/tdmq/v20200217/models.js +9546 -0
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +1003 -0
- package/tencentcloud/tke/v20180525/models.js +1 -1
- package/tencentcloud/vod/v20180717/models.js +333 -24
- package/tencentcloud/vod/v20180717/vod_client.js +3 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.356";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -627,6 +627,16 @@ class InquiryPriceCreateInstanceRequest extends AbstractModel {
|
|
|
627
627
|
*/
|
|
628
628
|
this.ProductId = null;
|
|
629
629
|
|
|
630
|
+
/**
|
|
631
|
+
* Scenario-based values:
|
|
632
|
+
Hadoop-Kudu
|
|
633
|
+
Hadoop-Zookeeper
|
|
634
|
+
Hadoop-Presto
|
|
635
|
+
Hadoop-Hbase
|
|
636
|
+
* @type {string || null}
|
|
637
|
+
*/
|
|
638
|
+
this.SceneName = null;
|
|
639
|
+
|
|
630
640
|
}
|
|
631
641
|
|
|
632
642
|
/**
|
|
@@ -669,6 +679,7 @@ class InquiryPriceCreateInstanceRequest extends AbstractModel {
|
|
|
669
679
|
this.MetaDBInfo = obj;
|
|
670
680
|
}
|
|
671
681
|
this.ProductId = 'ProductId' in params ? params.ProductId : null;
|
|
682
|
+
this.SceneName = 'SceneName' in params ? params.SceneName : null;
|
|
672
683
|
|
|
673
684
|
}
|
|
674
685
|
}
|
|
@@ -1670,6 +1681,16 @@ This parameter can be obtained in the `SecurityGroupId` field in the return valu
|
|
|
1670
1681
|
*/
|
|
1671
1682
|
this.ApplicationRole = null;
|
|
1672
1683
|
|
|
1684
|
+
/**
|
|
1685
|
+
* Scenario-based values:
|
|
1686
|
+
Hadoop-Kudu
|
|
1687
|
+
Hadoop-Zookeeper
|
|
1688
|
+
Hadoop-Presto
|
|
1689
|
+
Hadoop-Hbase
|
|
1690
|
+
* @type {string || null}
|
|
1691
|
+
*/
|
|
1692
|
+
this.SceneName = null;
|
|
1693
|
+
|
|
1673
1694
|
}
|
|
1674
1695
|
|
|
1675
1696
|
/**
|
|
@@ -1752,6 +1773,7 @@ This parameter can be obtained in the `SecurityGroupId` field in the return valu
|
|
|
1752
1773
|
this.MetaDBInfo = obj;
|
|
1753
1774
|
}
|
|
1754
1775
|
this.ApplicationRole = 'ApplicationRole' in params ? params.ApplicationRole : null;
|
|
1776
|
+
this.SceneName = 'SceneName' in params ? params.SceneName : null;
|
|
1755
1777
|
|
|
1756
1778
|
}
|
|
1757
1779
|
}
|
|
@@ -2661,6 +2683,48 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
2661
2683
|
*/
|
|
2662
2684
|
this.Zone = null;
|
|
2663
2685
|
|
|
2686
|
+
/**
|
|
2687
|
+
* Scenario name
|
|
2688
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2689
|
+
* @type {string || null}
|
|
2690
|
+
*/
|
|
2691
|
+
this.SceneName = null;
|
|
2692
|
+
|
|
2693
|
+
/**
|
|
2694
|
+
* Scenario-based cluster type
|
|
2695
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2696
|
+
* @type {string || null}
|
|
2697
|
+
*/
|
|
2698
|
+
this.SceneServiceClass = null;
|
|
2699
|
+
|
|
2700
|
+
/**
|
|
2701
|
+
* Scenario-based EMR version
|
|
2702
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2703
|
+
* @type {string || null}
|
|
2704
|
+
*/
|
|
2705
|
+
this.SceneEmrVersion = null;
|
|
2706
|
+
|
|
2707
|
+
/**
|
|
2708
|
+
* Scenario-based cluster type
|
|
2709
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2710
|
+
* @type {string || null}
|
|
2711
|
+
*/
|
|
2712
|
+
this.DisplayName = null;
|
|
2713
|
+
|
|
2714
|
+
/**
|
|
2715
|
+
* VPC name
|
|
2716
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2717
|
+
* @type {string || null}
|
|
2718
|
+
*/
|
|
2719
|
+
this.VpcName = null;
|
|
2720
|
+
|
|
2721
|
+
/**
|
|
2722
|
+
* Subnet name
|
|
2723
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
2724
|
+
* @type {string || null}
|
|
2725
|
+
*/
|
|
2726
|
+
this.SubnetName = null;
|
|
2727
|
+
|
|
2664
2728
|
}
|
|
2665
2729
|
|
|
2666
2730
|
/**
|
|
@@ -2713,6 +2777,12 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
2713
2777
|
this.AliasInfo = 'AliasInfo' in params ? params.AliasInfo : null;
|
|
2714
2778
|
this.ProductId = 'ProductId' in params ? params.ProductId : null;
|
|
2715
2779
|
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
2780
|
+
this.SceneName = 'SceneName' in params ? params.SceneName : null;
|
|
2781
|
+
this.SceneServiceClass = 'SceneServiceClass' in params ? params.SceneServiceClass : null;
|
|
2782
|
+
this.SceneEmrVersion = 'SceneEmrVersion' in params ? params.SceneEmrVersion : null;
|
|
2783
|
+
this.DisplayName = 'DisplayName' in params ? params.DisplayName : null;
|
|
2784
|
+
this.VpcName = 'VpcName' in params ? params.VpcName : null;
|
|
2785
|
+
this.SubnetName = 'SubnetName' in params ? params.SubnetName : null;
|
|
2716
2786
|
|
|
2717
2787
|
}
|
|
2718
2788
|
}
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
+
const DetectReflectLivenessAndCompareRequest = models.DetectReflectLivenessAndCompareRequest;
|
|
19
20
|
const LivenessCompareResponse = models.LivenessCompareResponse;
|
|
21
|
+
const DetectReflectLivenessAndCompareResponse = models.DetectReflectLivenessAndCompareResponse;
|
|
20
22
|
const LivenessCompareRequest = models.LivenessCompareRequest;
|
|
21
23
|
|
|
22
24
|
|
|
@@ -30,6 +32,17 @@ class FaceidClient extends AbstractClient {
|
|
|
30
32
|
super("faceid.tencentcloudapi.com", "2018-03-01", credential, region, profile);
|
|
31
33
|
}
|
|
32
34
|
|
|
35
|
+
/**
|
|
36
|
+
* This API is used to detect liveness with the package generated by the Updated E-KYC SDK, and to compare the person detected with that in the image passed in.
|
|
37
|
+
* @param {DetectReflectLivenessAndCompareRequest} req
|
|
38
|
+
* @param {function(string, DetectReflectLivenessAndCompareResponse):void} cb
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
DetectReflectLivenessAndCompare(req, cb) {
|
|
42
|
+
let resp = new DetectReflectLivenessAndCompareResponse();
|
|
43
|
+
this.request("DetectReflectLivenessAndCompare", req, resp, cb);
|
|
44
|
+
}
|
|
45
|
+
|
|
33
46
|
/**
|
|
34
47
|
* This API is used to pass in a video and a photo, determine whether the person in the video is real, and if yes, then determine whether the person in the video is the same as that in the photo.
|
|
35
48
|
* @param {LivenessCompareRequest} req
|
|
@@ -16,6 +16,55 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const AbstractModel = require("../../common/abstract_model");
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* DetectReflectLivenessAndCompare request structure.
|
|
21
|
+
* @class
|
|
22
|
+
*/
|
|
23
|
+
class DetectReflectLivenessAndCompareRequest extends AbstractModel {
|
|
24
|
+
constructor(){
|
|
25
|
+
super();
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* URL of the liveness data package generated by the SDK
|
|
29
|
+
* @type {string || null}
|
|
30
|
+
*/
|
|
31
|
+
this.LiveDataUrl = null;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* MD5 hash value of the liveness data package generated by the SDK
|
|
35
|
+
* @type {string || null}
|
|
36
|
+
*/
|
|
37
|
+
this.LiveDataMd5 = null;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* URL of the target image for comparison
|
|
41
|
+
* @type {string || null}
|
|
42
|
+
*/
|
|
43
|
+
this.ImageUrl = null;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* MD5 hash value of the target image for comparison
|
|
47
|
+
* @type {string || null}
|
|
48
|
+
*/
|
|
49
|
+
this.ImageMd5 = null;
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @private
|
|
55
|
+
*/
|
|
56
|
+
deserialize(params) {
|
|
57
|
+
if (!params) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
this.LiveDataUrl = 'LiveDataUrl' in params ? params.LiveDataUrl : null;
|
|
61
|
+
this.LiveDataMd5 = 'LiveDataMd5' in params ? params.LiveDataMd5 : null;
|
|
62
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
63
|
+
this.ImageMd5 = 'ImageMd5' in params ? params.ImageMd5 : null;
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
19
68
|
/**
|
|
20
69
|
* LivenessCompare response structure.
|
|
21
70
|
* @class
|
|
@@ -79,6 +128,69 @@ class LivenessCompareResponse extends AbstractModel {
|
|
|
79
128
|
}
|
|
80
129
|
}
|
|
81
130
|
|
|
131
|
+
/**
|
|
132
|
+
* DetectReflectLivenessAndCompare response structure.
|
|
133
|
+
* @class
|
|
134
|
+
*/
|
|
135
|
+
class DetectReflectLivenessAndCompareResponse extends AbstractModel {
|
|
136
|
+
constructor(){
|
|
137
|
+
super();
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* URL of the best screenshot (in JPG format) of the video after successful verification
|
|
141
|
+
* @type {string || null}
|
|
142
|
+
*/
|
|
143
|
+
this.BestFrameUrl = null;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* MD5 hash value of the best screenshot of the video after successful verification
|
|
147
|
+
* @type {string || null}
|
|
148
|
+
*/
|
|
149
|
+
this.BestFrameMd5 = null;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* Service error code. `Success` will be returned for success. For error information, please see the `FailedOperation` section in the error code list below.
|
|
153
|
+
* @type {string || null}
|
|
154
|
+
*/
|
|
155
|
+
this.Result = null;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Service result description
|
|
159
|
+
* @type {string || null}
|
|
160
|
+
*/
|
|
161
|
+
this.Description = null;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Similarity. Value range: [0.00, 100.00]. As a recommendation, when the similarity is greater than or equal to 70, it can be determined that the two faces are of the same person. You can adjust the threshold according to your specific scenario (the FAR at the threshold of 70 is 0.1%, and FAR at the threshold of 80 is 0.01%).
|
|
165
|
+
* @type {number || null}
|
|
166
|
+
*/
|
|
167
|
+
this.Sim = null;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
171
|
+
* @type {string || null}
|
|
172
|
+
*/
|
|
173
|
+
this.RequestId = null;
|
|
174
|
+
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* @private
|
|
179
|
+
*/
|
|
180
|
+
deserialize(params) {
|
|
181
|
+
if (!params) {
|
|
182
|
+
return;
|
|
183
|
+
}
|
|
184
|
+
this.BestFrameUrl = 'BestFrameUrl' in params ? params.BestFrameUrl : null;
|
|
185
|
+
this.BestFrameMd5 = 'BestFrameMd5' in params ? params.BestFrameMd5 : null;
|
|
186
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
187
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
188
|
+
this.Sim = 'Sim' in params ? params.Sim : null;
|
|
189
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
190
|
+
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
82
194
|
/**
|
|
83
195
|
* LivenessCompare request structure.
|
|
84
196
|
* @class
|
|
@@ -172,7 +284,9 @@ We recommend you store the video in Tencent Cloud, as a Tencent Cloud URL can gu
|
|
|
172
284
|
}
|
|
173
285
|
|
|
174
286
|
module.exports = {
|
|
287
|
+
DetectReflectLivenessAndCompareRequest: DetectReflectLivenessAndCompareRequest,
|
|
175
288
|
LivenessCompareResponse: LivenessCompareResponse,
|
|
289
|
+
DetectReflectLivenessAndCompareResponse: DetectReflectLivenessAndCompareResponse,
|
|
176
290
|
LivenessCompareRequest: LivenessCompareRequest,
|
|
177
291
|
|
|
178
292
|
}
|
|
@@ -9030,6 +9030,12 @@ Time range: <= 30 days, supported minimum granularity: 86,400 seconds;
|
|
|
9030
9030
|
*/
|
|
9031
9031
|
this.Granularity = null;
|
|
9032
9032
|
|
|
9033
|
+
/**
|
|
9034
|
+
* Specifies the ISP. Valid values: `CMCC`, `CUCC`, and `CTCC`. If it is not specified, all ISP data will be returned. Note that this field is valid only when a non-BGP connection is used.
|
|
9035
|
+
* @type {string || null}
|
|
9036
|
+
*/
|
|
9037
|
+
this.Isp = null;
|
|
9038
|
+
|
|
9033
9039
|
}
|
|
9034
9040
|
|
|
9035
9041
|
/**
|
|
@@ -9044,6 +9050,7 @@ Time range: <= 30 days, supported minimum granularity: 86,400 seconds;
|
|
|
9044
9050
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
9045
9051
|
this.MetricNames = 'MetricNames' in params ? params.MetricNames : null;
|
|
9046
9052
|
this.Granularity = 'Granularity' in params ? params.Granularity : null;
|
|
9053
|
+
this.Isp = 'Isp' in params ? params.Isp : null;
|
|
9047
9054
|
|
|
9048
9055
|
}
|
|
9049
9056
|
}
|
package/tencentcloud/index.js
CHANGED
|
@@ -3811,17 +3811,23 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
3811
3811
|
this.InstanceIds = null;
|
|
3812
3812
|
|
|
3813
3813
|
/**
|
|
3814
|
-
* Filter list
|
|
3815
|
-
<li>instance-name</li>Filter by
|
|
3814
|
+
* Filter list
|
|
3815
|
+
<li>instance-name</li>Filter by the instance name
|
|
3816
|
+
Type: String
|
|
3817
|
+
Required: no
|
|
3818
|
+
<li>private-ip-address</li>Filter by the private IP of instance primary ENI
|
|
3819
|
+
Type: String
|
|
3820
|
+
Required: no
|
|
3821
|
+
<li>public-ip-address</li>Filter by the public IP of instance primary ENI
|
|
3816
3822
|
Type: String
|
|
3817
3823
|
Required: no
|
|
3818
|
-
<li>
|
|
3824
|
+
<li>zone</li>Filter by the availability zone
|
|
3819
3825
|
Type: String
|
|
3820
3826
|
Required: no
|
|
3821
|
-
<li>
|
|
3827
|
+
<li>instance-state</li>Filter by **instance status**.
|
|
3822
3828
|
Type: String
|
|
3823
3829
|
Required: no
|
|
3824
|
-
Each request can contain up to 10
|
|
3830
|
+
Each request can contain up to 10 filters, each of which can have 5 values. You cannot specify both `InstanceIds` and `Filters` at the same time.
|
|
3825
3831
|
* @type {Array.<Filter> || null}
|
|
3826
3832
|
*/
|
|
3827
3833
|
this.Filters = null;
|
|
@@ -26,6 +26,7 @@ const DestroyHourDBInstanceRequest = models.DestroyHourDBInstanceRequest;
|
|
|
26
26
|
const AssociateSecurityGroupsRequest = models.AssociateSecurityGroupsRequest;
|
|
27
27
|
const DescribeDBSecurityGroupsResponse = models.DescribeDBSecurityGroupsResponse;
|
|
28
28
|
const CancelDcnJobResponse = models.CancelDcnJobResponse;
|
|
29
|
+
const DescribeFileDownloadUrlRequest = models.DescribeFileDownloadUrlRequest;
|
|
29
30
|
const DescribeDBResourceUsageDetailsResponse = models.DescribeDBResourceUsageDetailsResponse;
|
|
30
31
|
const DestroyHourDBInstanceResponse = models.DestroyHourDBInstanceResponse;
|
|
31
32
|
const Account = models.Account;
|
|
@@ -63,6 +64,7 @@ const DBParamValue = models.DBParamValue;
|
|
|
63
64
|
const ModifyDBParametersRequest = models.ModifyDBParametersRequest;
|
|
64
65
|
const ModifyDBInstanceSecurityGroupsRequest = models.ModifyDBInstanceSecurityGroupsRequest;
|
|
65
66
|
const DescribeDcnDetailRequest = models.DescribeDcnDetailRequest;
|
|
67
|
+
const DescribeFileDownloadUrlResponse = models.DescribeFileDownloadUrlResponse;
|
|
66
68
|
const ModifyDBParametersResponse = models.ModifyDBParametersResponse;
|
|
67
69
|
const CopyAccountPrivilegesRequest = models.CopyAccountPrivilegesRequest;
|
|
68
70
|
const SecurityGroup = models.SecurityGroup;
|
|
@@ -170,6 +172,17 @@ Note: accounts with the same username but different hosts are different accounts
|
|
|
170
172
|
this.request("ModifyAccountDescription", req, resp, cb);
|
|
171
173
|
}
|
|
172
174
|
|
|
175
|
+
/**
|
|
176
|
+
* This API is used to get the download URL of a specific backup or log file of a database.
|
|
177
|
+
* @param {DescribeFileDownloadUrlRequest} req
|
|
178
|
+
* @param {function(string, DescribeFileDownloadUrlResponse):void} cb
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
DescribeFileDownloadUrl(req, cb) {
|
|
182
|
+
let resp = new DescribeFileDownloadUrlResponse();
|
|
183
|
+
this.request("DescribeFileDownloadUrl", req, resp, cb);
|
|
184
|
+
}
|
|
185
|
+
|
|
173
186
|
/**
|
|
174
187
|
* This API is used to get the backup time of a TencentDB instance. The backend system will perform instance backup regularly according to this configuration.
|
|
175
188
|
* @param {DescribeBackupTimeRequest} req
|
|
@@ -431,6 +431,41 @@ class CancelDcnJobResponse extends AbstractModel {
|
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
433
|
|
|
434
|
+
/**
|
|
435
|
+
* DescribeFileDownloadUrl request structure.
|
|
436
|
+
* @class
|
|
437
|
+
*/
|
|
438
|
+
class DescribeFileDownloadUrlRequest extends AbstractModel {
|
|
439
|
+
constructor(){
|
|
440
|
+
super();
|
|
441
|
+
|
|
442
|
+
/**
|
|
443
|
+
* Instance ID
|
|
444
|
+
* @type {string || null}
|
|
445
|
+
*/
|
|
446
|
+
this.InstanceId = null;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Unsigned file path
|
|
450
|
+
* @type {string || null}
|
|
451
|
+
*/
|
|
452
|
+
this.FilePath = null;
|
|
453
|
+
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* @private
|
|
458
|
+
*/
|
|
459
|
+
deserialize(params) {
|
|
460
|
+
if (!params) {
|
|
461
|
+
return;
|
|
462
|
+
}
|
|
463
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
464
|
+
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
465
|
+
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
434
469
|
/**
|
|
435
470
|
* DescribeDBResourceUsageDetails response structure.
|
|
436
471
|
* @class
|
|
@@ -2232,6 +2267,41 @@ class DescribeDcnDetailRequest extends AbstractModel {
|
|
|
2232
2267
|
}
|
|
2233
2268
|
}
|
|
2234
2269
|
|
|
2270
|
+
/**
|
|
2271
|
+
* DescribeFileDownloadUrl response structure.
|
|
2272
|
+
* @class
|
|
2273
|
+
*/
|
|
2274
|
+
class DescribeFileDownloadUrlResponse extends AbstractModel {
|
|
2275
|
+
constructor(){
|
|
2276
|
+
super();
|
|
2277
|
+
|
|
2278
|
+
/**
|
|
2279
|
+
* Signed download URL
|
|
2280
|
+
* @type {string || null}
|
|
2281
|
+
*/
|
|
2282
|
+
this.PreSignedUrl = null;
|
|
2283
|
+
|
|
2284
|
+
/**
|
|
2285
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2286
|
+
* @type {string || null}
|
|
2287
|
+
*/
|
|
2288
|
+
this.RequestId = null;
|
|
2289
|
+
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
/**
|
|
2293
|
+
* @private
|
|
2294
|
+
*/
|
|
2295
|
+
deserialize(params) {
|
|
2296
|
+
if (!params) {
|
|
2297
|
+
return;
|
|
2298
|
+
}
|
|
2299
|
+
this.PreSignedUrl = 'PreSignedUrl' in params ? params.PreSignedUrl : null;
|
|
2300
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2301
|
+
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2235
2305
|
/**
|
|
2236
2306
|
* ModifyDBParameters response structure.
|
|
2237
2307
|
* @class
|
|
@@ -5684,6 +5754,7 @@ module.exports = {
|
|
|
5684
5754
|
AssociateSecurityGroupsRequest: AssociateSecurityGroupsRequest,
|
|
5685
5755
|
DescribeDBSecurityGroupsResponse: DescribeDBSecurityGroupsResponse,
|
|
5686
5756
|
CancelDcnJobResponse: CancelDcnJobResponse,
|
|
5757
|
+
DescribeFileDownloadUrlRequest: DescribeFileDownloadUrlRequest,
|
|
5687
5758
|
DescribeDBResourceUsageDetailsResponse: DescribeDBResourceUsageDetailsResponse,
|
|
5688
5759
|
DestroyHourDBInstanceResponse: DestroyHourDBInstanceResponse,
|
|
5689
5760
|
Account: Account,
|
|
@@ -5721,6 +5792,7 @@ module.exports = {
|
|
|
5721
5792
|
ModifyDBParametersRequest: ModifyDBParametersRequest,
|
|
5722
5793
|
ModifyDBInstanceSecurityGroupsRequest: ModifyDBInstanceSecurityGroupsRequest,
|
|
5723
5794
|
DescribeDcnDetailRequest: DescribeDcnDetailRequest,
|
|
5795
|
+
DescribeFileDownloadUrlResponse: DescribeFileDownloadUrlResponse,
|
|
5724
5796
|
ModifyDBParametersResponse: ModifyDBParametersResponse,
|
|
5725
5797
|
CopyAccountPrivilegesRequest: CopyAccountPrivilegesRequest,
|
|
5726
5798
|
SecurityGroup: SecurityGroup,
|