tencentcloud-sdk-nodejs-intl-en 3.0.588 → 3.0.590
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/cdn/v20180606/cdn_client.js +1 -1
- package/tencentcloud/cdn/v20180606/models.js +17 -3
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/emr/v20190103/emr_client.js +6 -5
- package/tencentcloud/emr/v20190103/models.js +317 -228
- package/tencentcloud/lighthouse/v20200324/lighthouse_client.js +46 -16
- package/tencentcloud/lighthouse/v20200324/models.js +527 -105
- package/tencentcloud/postgres/v20170312/models.js +215 -11
- package/tencentcloud/postgres/v20170312/postgres_client.js +2 -0
- package/tencentcloud/tms/v20201229/models.js +93 -2
- package/tencentcloud/tms/v20201229/tms_client.js +1 -0
- package/tencentcloud/vod/v20180717/models.js +1012 -137
- package/tencentcloud/vod/v20180717/vod_client.js +53 -14
package/package.json
CHANGED
|
@@ -282,7 +282,7 @@ class CdnClient extends AbstractClient {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
/**
|
|
285
|
-
* This API is used to query the
|
|
285
|
+
* This API is used to query the IP details of edge nodes (available soon) and intermediate nodes. Note that there is a certain delay in data availability.
|
|
286
286
|
|
|
287
287
|
>? If you have migrated your ECDN service to CDN, you can use the <a href="https://intl.cloud.tencent.com/document/api/228/41954?from_cn_redirect=1">corresponding CDN API</a>.
|
|
288
288
|
* @param {DescribeIpStatusRequest} req
|
|
@@ -4942,7 +4942,7 @@ class UpdateDomainConfigRequest extends AbstractModel {
|
|
|
4942
4942
|
this.Cache = null;
|
|
4943
4943
|
|
|
4944
4944
|
/**
|
|
4945
|
-
* Cross-border linkage optimization
|
|
4945
|
+
* (Disused) Cross-border linkage optimization\
|
|
4946
4946
|
* @type {OriginPullOptimization || null}
|
|
4947
4947
|
*/
|
|
4948
4948
|
this.OriginPullOptimization = null;
|
|
@@ -7239,6 +7239,18 @@ If this parameter is left empty, edge server information will be returned by def
|
|
|
7239
7239
|
*/
|
|
7240
7240
|
this.Segment = null;
|
|
7241
7241
|
|
|
7242
|
+
/**
|
|
7243
|
+
*
|
|
7244
|
+
* @type {boolean || null}
|
|
7245
|
+
*/
|
|
7246
|
+
this.ShowIpv6 = null;
|
|
7247
|
+
|
|
7248
|
+
/**
|
|
7249
|
+
* Whether to abbreviate the IPv6 address.
|
|
7250
|
+
* @type {boolean || null}
|
|
7251
|
+
*/
|
|
7252
|
+
this.AbbreviationIpv6 = null;
|
|
7253
|
+
|
|
7242
7254
|
}
|
|
7243
7255
|
|
|
7244
7256
|
/**
|
|
@@ -7252,6 +7264,8 @@ If this parameter is left empty, edge server information will be returned by def
|
|
|
7252
7264
|
this.Layer = 'Layer' in params ? params.Layer : null;
|
|
7253
7265
|
this.Area = 'Area' in params ? params.Area : null;
|
|
7254
7266
|
this.Segment = 'Segment' in params ? params.Segment : null;
|
|
7267
|
+
this.ShowIpv6 = 'ShowIpv6' in params ? params.ShowIpv6 : null;
|
|
7268
|
+
this.AbbreviationIpv6 = 'AbbreviationIpv6' in params ? params.AbbreviationIpv6 : null;
|
|
7255
7269
|
|
|
7256
7270
|
}
|
|
7257
7271
|
}
|
|
@@ -12637,7 +12651,7 @@ The specified purging region should match the domain name acceleration region.
|
|
|
12637
12651
|
}
|
|
12638
12652
|
|
|
12639
12653
|
/**
|
|
12640
|
-
* Cross-border origin-pull optimization
|
|
12654
|
+
* (Disused) Cross-border origin-pull optimization
|
|
12641
12655
|
* @class
|
|
12642
12656
|
*/
|
|
12643
12657
|
class OriginPullOptimization extends AbstractModel {
|
|
@@ -14669,7 +14683,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
14669
14683
|
this.ConnectTimeout = null;
|
|
14670
14684
|
|
|
14671
14685
|
/**
|
|
14672
|
-
* The origin-pull receipt timeout (in seconds). Valid range: 10-
|
|
14686
|
+
* The origin-pull receipt timeout (in seconds). Valid range: 10-300.
|
|
14673
14687
|
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
14674
14688
|
* @type {number || null}
|
|
14675
14689
|
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.590";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
+
const ScaleOutInstanceRequest = models.ScaleOutInstanceRequest;
|
|
19
20
|
const MultiDiskMC = models.MultiDiskMC;
|
|
20
21
|
const AddUsersForUserManagerRequest = models.AddUsersForUserManagerRequest;
|
|
21
22
|
const ModifyResourceSchedulerRequest = models.ModifyResourceSchedulerRequest;
|
|
@@ -87,7 +88,7 @@ const EmrListInstance = models.EmrListInstance;
|
|
|
87
88
|
const InquiryPriceRenewInstanceRequest = models.InquiryPriceRenewInstanceRequest;
|
|
88
89
|
const DescribeResourceScheduleResponse = models.DescribeResourceScheduleResponse;
|
|
89
90
|
const CdbInfo = models.CdbInfo;
|
|
90
|
-
const
|
|
91
|
+
const PriceDetail = models.PriceDetail;
|
|
91
92
|
|
|
92
93
|
|
|
93
94
|
/**
|
|
@@ -112,7 +113,7 @@ class EmrClient extends AbstractClient {
|
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
/**
|
|
115
|
-
* This API is used to query
|
|
116
|
+
* This API is used to query the information of instances in a cluster.
|
|
116
117
|
* @param {DescribeInstancesRequest} req
|
|
117
118
|
* @param {function(string, DescribeInstancesResponse):void} cb
|
|
118
119
|
* @public
|
|
@@ -134,7 +135,7 @@ class EmrClient extends AbstractClient {
|
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
/**
|
|
137
|
-
* This API is used to query the information of a
|
|
138
|
+
* This API is used to query the information of nodes in a cluster.
|
|
138
139
|
* @param {DescribeClusterNodesRequest} req
|
|
139
140
|
* @param {function(string, DescribeClusterNodesResponse):void} cb
|
|
140
141
|
* @public
|
|
@@ -157,7 +158,7 @@ This API is used to export users in batches. For a Kerberos cluster, set `NeedKe
|
|
|
157
158
|
}
|
|
158
159
|
|
|
159
160
|
/**
|
|
160
|
-
* This API is used to query
|
|
161
|
+
* This API is used to query the cluster list.
|
|
161
162
|
* @param {DescribeInstancesListRequest} req
|
|
162
163
|
* @param {function(string, DescribeInstancesListResponse):void} cb
|
|
163
164
|
* @public
|
|
@@ -201,7 +202,7 @@ This API is used to export users in batches. For a Kerberos cluster, set `NeedKe
|
|
|
201
202
|
}
|
|
202
203
|
|
|
203
204
|
/**
|
|
204
|
-
* This API is used to
|
|
205
|
+
* This API is used to query the data of YARN Resource Scheduling.
|
|
205
206
|
* @param {DescribeResourceScheduleRequest} req
|
|
206
207
|
* @param {function(string, DescribeResourceScheduleResponse):void} cb
|
|
207
208
|
* @public
|