tencentcloud-sdk-nodejs-intl-en 3.0.1255 → 3.0.1257
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/cdz/index.js +3 -0
- package/tencentcloud/cdz/v20221123/cdz_client.js +49 -0
- package/tencentcloud/cdz/v20221123/index.js +4 -0
- package/tencentcloud/cdz/v20221123/models.js +285 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +63 -31
- package/tencentcloud/cvm/v20170312/models.js +205 -18
- package/tencentcloud/dnspod/v20210323/dnspod_client.js +34 -7
- package/tencentcloud/dnspod/v20210323/models.js +225 -11
- package/tencentcloud/faceid/v20180301/faceid_client.js +2 -2
- package/tencentcloud/faceid/v20180301/models.js +1 -2
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/mps/v20190612/models.js +1642 -485
- package/tencentcloud/mps/v20190612/mps_client.js +51 -29
- package/tencentcloud/teo/v20220901/models.js +7 -7
- package/tencentcloud/teo/v20220901/teo_client.js +4 -4
|
@@ -2845,24 +2845,24 @@ class DescribeSubdomainAnalyticsResponse extends AbstractModel {
|
|
|
2845
2845
|
}
|
|
2846
2846
|
|
|
2847
2847
|
/**
|
|
2848
|
-
*
|
|
2848
|
+
* DescribeRecordLineCategoryList request structure.
|
|
2849
2849
|
* @class
|
|
2850
2850
|
*/
|
|
2851
|
-
class
|
|
2851
|
+
class DescribeRecordLineCategoryListRequest extends AbstractModel {
|
|
2852
2852
|
constructor(){
|
|
2853
2853
|
super();
|
|
2854
2854
|
|
|
2855
2855
|
/**
|
|
2856
|
-
*
|
|
2857
|
-
* @type {
|
|
2856
|
+
* Specifies the domain name to query the line list.
|
|
2857
|
+
* @type {string || null}
|
|
2858
2858
|
*/
|
|
2859
|
-
this.
|
|
2859
|
+
this.Domain = null;
|
|
2860
2860
|
|
|
2861
2861
|
/**
|
|
2862
|
-
*
|
|
2863
|
-
* @type {
|
|
2862
|
+
* Domain ID for querying the route list. parameter DomainId has higher priority than parameter Domain. if you pass parameter DomainId, it will ignore parameter Domain.
|
|
2863
|
+
* @type {number || null}
|
|
2864
2864
|
*/
|
|
2865
|
-
this.
|
|
2865
|
+
this.DomainId = null;
|
|
2866
2866
|
|
|
2867
2867
|
}
|
|
2868
2868
|
|
|
@@ -2873,8 +2873,8 @@ class ModifyRecordResponse extends AbstractModel {
|
|
|
2873
2873
|
if (!params) {
|
|
2874
2874
|
return;
|
|
2875
2875
|
}
|
|
2876
|
-
this.
|
|
2877
|
-
this.
|
|
2876
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
2877
|
+
this.DomainId = 'DomainId' in params ? params.DomainId : null;
|
|
2878
2878
|
|
|
2879
2879
|
}
|
|
2880
2880
|
}
|
|
@@ -3231,6 +3231,49 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3231
3231
|
}
|
|
3232
3232
|
}
|
|
3233
3233
|
|
|
3234
|
+
/**
|
|
3235
|
+
* DescribeRecordLineCategoryList response structure.
|
|
3236
|
+
* @class
|
|
3237
|
+
*/
|
|
3238
|
+
class DescribeRecordLineCategoryListResponse extends AbstractModel {
|
|
3239
|
+
constructor(){
|
|
3240
|
+
super();
|
|
3241
|
+
|
|
3242
|
+
/**
|
|
3243
|
+
* Lists lines by category.
|
|
3244
|
+
* @type {Array.<LineItem> || null}
|
|
3245
|
+
*/
|
|
3246
|
+
this.LineList = null;
|
|
3247
|
+
|
|
3248
|
+
/**
|
|
3249
|
+
* 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.
|
|
3250
|
+
* @type {string || null}
|
|
3251
|
+
*/
|
|
3252
|
+
this.RequestId = null;
|
|
3253
|
+
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
/**
|
|
3257
|
+
* @private
|
|
3258
|
+
*/
|
|
3259
|
+
deserialize(params) {
|
|
3260
|
+
if (!params) {
|
|
3261
|
+
return;
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
if (params.LineList) {
|
|
3265
|
+
this.LineList = new Array();
|
|
3266
|
+
for (let z in params.LineList) {
|
|
3267
|
+
let obj = new LineItem();
|
|
3268
|
+
obj.deserialize(params.LineList[z]);
|
|
3269
|
+
this.LineList.push(obj);
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3273
|
+
|
|
3274
|
+
}
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3234
3277
|
/**
|
|
3235
3278
|
* CreateDomain response structure.
|
|
3236
3279
|
* @class
|
|
@@ -4002,6 +4045,41 @@ class CreateDomainRequest extends AbstractModel {
|
|
|
4002
4045
|
}
|
|
4003
4046
|
}
|
|
4004
4047
|
|
|
4048
|
+
/**
|
|
4049
|
+
* ModifyRecord response structure.
|
|
4050
|
+
* @class
|
|
4051
|
+
*/
|
|
4052
|
+
class ModifyRecordResponse extends AbstractModel {
|
|
4053
|
+
constructor(){
|
|
4054
|
+
super();
|
|
4055
|
+
|
|
4056
|
+
/**
|
|
4057
|
+
* Record ID
|
|
4058
|
+
* @type {number || null}
|
|
4059
|
+
*/
|
|
4060
|
+
this.RecordId = null;
|
|
4061
|
+
|
|
4062
|
+
/**
|
|
4063
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4064
|
+
* @type {string || null}
|
|
4065
|
+
*/
|
|
4066
|
+
this.RequestId = null;
|
|
4067
|
+
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
/**
|
|
4071
|
+
* @private
|
|
4072
|
+
*/
|
|
4073
|
+
deserialize(params) {
|
|
4074
|
+
if (!params) {
|
|
4075
|
+
return;
|
|
4076
|
+
}
|
|
4077
|
+
this.RecordId = 'RecordId' in params ? params.RecordId : null;
|
|
4078
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4079
|
+
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
4082
|
+
|
|
4005
4083
|
/**
|
|
4006
4084
|
* DescribeDomainShareInfo response structure.
|
|
4007
4085
|
* @class
|
|
@@ -5180,6 +5258,109 @@ class ModifyDomainLockResponse extends AbstractModel {
|
|
|
5180
5258
|
}
|
|
5181
5259
|
}
|
|
5182
5260
|
|
|
5261
|
+
/**
|
|
5262
|
+
* DeletePackageOrder response structure.
|
|
5263
|
+
* @class
|
|
5264
|
+
*/
|
|
5265
|
+
class DeletePackageOrderResponse extends AbstractModel {
|
|
5266
|
+
constructor(){
|
|
5267
|
+
super();
|
|
5268
|
+
|
|
5269
|
+
/**
|
|
5270
|
+
* 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.
|
|
5271
|
+
* @type {string || null}
|
|
5272
|
+
*/
|
|
5273
|
+
this.RequestId = null;
|
|
5274
|
+
|
|
5275
|
+
}
|
|
5276
|
+
|
|
5277
|
+
/**
|
|
5278
|
+
* @private
|
|
5279
|
+
*/
|
|
5280
|
+
deserialize(params) {
|
|
5281
|
+
if (!params) {
|
|
5282
|
+
return;
|
|
5283
|
+
}
|
|
5284
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5285
|
+
|
|
5286
|
+
}
|
|
5287
|
+
}
|
|
5288
|
+
|
|
5289
|
+
/**
|
|
5290
|
+
* Describes the line information of dns records.
|
|
5291
|
+
* @class
|
|
5292
|
+
*/
|
|
5293
|
+
class LineItem extends AbstractModel {
|
|
5294
|
+
constructor(){
|
|
5295
|
+
super();
|
|
5296
|
+
|
|
5297
|
+
/**
|
|
5298
|
+
* Parses the line name.
|
|
5299
|
+
* @type {string || null}
|
|
5300
|
+
*/
|
|
5301
|
+
this.LineName = null;
|
|
5302
|
+
|
|
5303
|
+
/**
|
|
5304
|
+
* Resolution route ID.
|
|
5305
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5306
|
+
* @type {string || null}
|
|
5307
|
+
*/
|
|
5308
|
+
this.LineId = null;
|
|
5309
|
+
|
|
5310
|
+
/**
|
|
5311
|
+
* Indicates whether the current line is available under the current domain.
|
|
5312
|
+
* @type {boolean || null}
|
|
5313
|
+
*/
|
|
5314
|
+
this.Useful = null;
|
|
5315
|
+
|
|
5316
|
+
/**
|
|
5317
|
+
* Current line min plan level requirement.
|
|
5318
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5319
|
+
* @type {string || null}
|
|
5320
|
+
*/
|
|
5321
|
+
this.Grade = null;
|
|
5322
|
+
|
|
5323
|
+
/**
|
|
5324
|
+
* Describes the sub-line list under the current line category.
|
|
5325
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5326
|
+
* @type {Array.<LineItem> || null}
|
|
5327
|
+
*/
|
|
5328
|
+
this.SubGroup = null;
|
|
5329
|
+
|
|
5330
|
+
/**
|
|
5331
|
+
* Specifies the lines included in the custom line grouping.
|
|
5332
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5333
|
+
* @type {Array.<string> || null}
|
|
5334
|
+
*/
|
|
5335
|
+
this.Lines = null;
|
|
5336
|
+
|
|
5337
|
+
}
|
|
5338
|
+
|
|
5339
|
+
/**
|
|
5340
|
+
* @private
|
|
5341
|
+
*/
|
|
5342
|
+
deserialize(params) {
|
|
5343
|
+
if (!params) {
|
|
5344
|
+
return;
|
|
5345
|
+
}
|
|
5346
|
+
this.LineName = 'LineName' in params ? params.LineName : null;
|
|
5347
|
+
this.LineId = 'LineId' in params ? params.LineId : null;
|
|
5348
|
+
this.Useful = 'Useful' in params ? params.Useful : null;
|
|
5349
|
+
this.Grade = 'Grade' in params ? params.Grade : null;
|
|
5350
|
+
|
|
5351
|
+
if (params.SubGroup) {
|
|
5352
|
+
this.SubGroup = new Array();
|
|
5353
|
+
for (let z in params.SubGroup) {
|
|
5354
|
+
let obj = new LineItem();
|
|
5355
|
+
obj.deserialize(params.SubGroup[z]);
|
|
5356
|
+
this.SubGroup.push(obj);
|
|
5357
|
+
}
|
|
5358
|
+
}
|
|
5359
|
+
this.Lines = 'Lines' in params ? params.Lines : null;
|
|
5360
|
+
|
|
5361
|
+
}
|
|
5362
|
+
}
|
|
5363
|
+
|
|
5183
5364
|
/**
|
|
5184
5365
|
* Domain lock information
|
|
5185
5366
|
* @class
|
|
@@ -5257,6 +5438,34 @@ class CreateRecordGroupResponse extends AbstractModel {
|
|
|
5257
5438
|
}
|
|
5258
5439
|
}
|
|
5259
5440
|
|
|
5441
|
+
/**
|
|
5442
|
+
* DeletePackageOrder request structure.
|
|
5443
|
+
* @class
|
|
5444
|
+
*/
|
|
5445
|
+
class DeletePackageOrderRequest extends AbstractModel {
|
|
5446
|
+
constructor(){
|
|
5447
|
+
super();
|
|
5448
|
+
|
|
5449
|
+
/**
|
|
5450
|
+
* Specifies the domain name of the package to be terminated.
|
|
5451
|
+
* @type {string || null}
|
|
5452
|
+
*/
|
|
5453
|
+
this.Domain = null;
|
|
5454
|
+
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
/**
|
|
5458
|
+
* @private
|
|
5459
|
+
*/
|
|
5460
|
+
deserialize(params) {
|
|
5461
|
+
if (!params) {
|
|
5462
|
+
return;
|
|
5463
|
+
}
|
|
5464
|
+
this.Domain = 'Domain' in params ? params.Domain : null;
|
|
5465
|
+
|
|
5466
|
+
}
|
|
5467
|
+
}
|
|
5468
|
+
|
|
5260
5469
|
/**
|
|
5261
5470
|
* DescribeDomainShareInfo request structure.
|
|
5262
5471
|
* @class
|
|
@@ -5344,7 +5553,7 @@ module.exports = {
|
|
|
5344
5553
|
RecordInfo: RecordInfo,
|
|
5345
5554
|
CreateRecordBatchDetail: CreateRecordBatchDetail,
|
|
5346
5555
|
DescribeSubdomainAnalyticsResponse: DescribeSubdomainAnalyticsResponse,
|
|
5347
|
-
|
|
5556
|
+
DescribeRecordLineCategoryListRequest: DescribeRecordLineCategoryListRequest,
|
|
5348
5557
|
ModifyRecordToGroupResponse: ModifyRecordToGroupResponse,
|
|
5349
5558
|
ModifyDomainUnlockResponse: ModifyDomainUnlockResponse,
|
|
5350
5559
|
DescribeDomainLogListRequest: DescribeDomainLogListRequest,
|
|
@@ -5352,6 +5561,7 @@ module.exports = {
|
|
|
5352
5561
|
ModifyRecordBatchRequest: ModifyRecordBatchRequest,
|
|
5353
5562
|
DeleteRecordResponse: DeleteRecordResponse,
|
|
5354
5563
|
CreateRecordBatchRecord: CreateRecordBatchRecord,
|
|
5564
|
+
DescribeRecordLineCategoryListResponse: DescribeRecordLineCategoryListResponse,
|
|
5355
5565
|
CreateDomainResponse: CreateDomainResponse,
|
|
5356
5566
|
DomainCountInfo: DomainCountInfo,
|
|
5357
5567
|
ModifyRecordBatchResponse: ModifyRecordBatchResponse,
|
|
@@ -5365,6 +5575,7 @@ module.exports = {
|
|
|
5365
5575
|
ModifyRecordBatchDetail: ModifyRecordBatchDetail,
|
|
5366
5576
|
DeleteDomainBatchDetail: DeleteDomainBatchDetail,
|
|
5367
5577
|
CreateDomainRequest: CreateDomainRequest,
|
|
5578
|
+
ModifyRecordResponse: ModifyRecordResponse,
|
|
5368
5579
|
DescribeDomainShareInfoResponse: DescribeDomainShareInfoResponse,
|
|
5369
5580
|
ModifyDomainRemarkRequest: ModifyDomainRemarkRequest,
|
|
5370
5581
|
CreateDomainAliasResponse: CreateDomainAliasResponse,
|
|
@@ -5392,8 +5603,11 @@ module.exports = {
|
|
|
5392
5603
|
CreateDomainBatchDetail: CreateDomainBatchDetail,
|
|
5393
5604
|
ModifyDomainUnlockRequest: ModifyDomainUnlockRequest,
|
|
5394
5605
|
ModifyDomainLockResponse: ModifyDomainLockResponse,
|
|
5606
|
+
DeletePackageOrderResponse: DeletePackageOrderResponse,
|
|
5607
|
+
LineItem: LineItem,
|
|
5395
5608
|
LockInfo: LockInfo,
|
|
5396
5609
|
CreateRecordGroupResponse: CreateRecordGroupResponse,
|
|
5610
|
+
DeletePackageOrderRequest: DeletePackageOrderRequest,
|
|
5397
5611
|
DescribeDomainShareInfoRequest: DescribeDomainShareInfoRequest,
|
|
5398
5612
|
|
|
5399
5613
|
}
|
|
@@ -200,7 +200,7 @@ The data generated with the SDK must be stored in COS, and the region of the COS
|
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
|
-
* This API is used to
|
|
203
|
+
* This API is used to obtain a BizToken before each call to the Web verification service. Save the BizToken to initiate the verification process and retrieve the result upon completion. The BizToken is valid for 10 minutes.
|
|
204
204
|
* @param {ApplyWebVerificationBizTokenIntlRequest} req
|
|
205
205
|
* @param {function(string, ApplyWebVerificationBizTokenIntlResponse):void} cb
|
|
206
206
|
* @public
|
|
@@ -211,7 +211,7 @@ The data generated with the SDK must be stored in COS, and the region of the COS
|
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
|
-
* This API is used to get the verification result with the corresponding SDK token after the identity verification process is completed. The SDK token is valid for
|
|
214
|
+
* This API is used to get the verification result with the corresponding SDK token after the identity verification process is completed. The SDK token is valid for 72 hours (72*3600s) after generation and can be called multiple times.
|
|
215
215
|
* @param {GetFaceIdResultIntlRequest} req
|
|
216
216
|
* @param {function(string, GetFaceIdResultIntlResponse):void} cb
|
|
217
217
|
* @public
|
|
@@ -2956,8 +2956,7 @@ Example: https://intl.faceid.qq.com/reflect/?token=81EEF678-28EE-4759-A82E-6CBBB
|
|
|
2956
2956
|
this.VerificationUrl = null;
|
|
2957
2957
|
|
|
2958
2958
|
/**
|
|
2959
|
-
*
|
|
2960
|
-
Example: 81EEF678-28EE-4759-A82E-6CBBBE6BC442
|
|
2959
|
+
* A token that identifies a Web verification process, with a validity time of 10 minutes. after the process is complete, the token can be used to obtain the verification result.
|
|
2961
2960
|
* @type {string || null}
|
|
2962
2961
|
*/
|
|
2963
2962
|
this.BizToken = null;
|