tencentcloud-sdk-nodejs-intl-en 3.0.366 → 3.0.370
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/apigateway/v20180808/apigateway_client.js +3 -2
- package/tencentcloud/apigateway/v20180808/models.js +105 -41
- package/tencentcloud/billing/v20180709/models.js +12 -11
- package/tencentcloud/cam/v20190116/cam_client.js +16 -1
- package/tencentcloud/cam/v20190116/models.js +264 -17
- package/tencentcloud/cbs/v20170312/models.js +15 -1
- package/tencentcloud/cdb/v20170320/cdb_client.js +1 -1
- package/tencentcloud/cdb/v20170320/models.js +21 -0
- package/tencentcloud/cdn/v20180606/models.js +54 -3
- package/tencentcloud/ckafka/v20190819/models.js +41 -3
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/v20210527/dbbrain_client.js +30 -4
- package/tencentcloud/dbbrain/v20210527/models.js +309 -116
- package/tencentcloud/dcdb/v20180411/dcdb_client.js +14 -0
- package/tencentcloud/dcdb/v20180411/models.js +144 -7
- package/tencentcloud/emr/v20190103/emr_client.js +2 -0
- package/tencentcloud/emr/v20190103/models.js +109 -0
- package/tencentcloud/gaap/v20180529/gaap_client.js +1 -1
- package/tencentcloud/gaap/v20180529/models.js +50 -6
- package/tencentcloud/live/v20180801/live_client.js +29 -11
- package/tencentcloud/live/v20180801/models.js +200 -24
- package/tencentcloud/redis/v20180412/models.js +7 -0
- package/tencentcloud/redis/v20180412/redis_client.js +1 -1
- package/tencentcloud/ses/v20201002/models.js +610 -29
- package/tencentcloud/ses/v20201002/ses_client.js +157 -103
- package/tencentcloud/tke/v20180525/models.js +61 -0
|
@@ -25,6 +25,7 @@ const DescribeAccountsRequest = models.DescribeAccountsRequest;
|
|
|
25
25
|
const AssociateSecurityGroupsRequest = models.AssociateSecurityGroupsRequest;
|
|
26
26
|
const DescribeDBSecurityGroupsResponse = models.DescribeDBSecurityGroupsResponse;
|
|
27
27
|
const CancelDcnJobResponse = models.CancelDcnJobResponse;
|
|
28
|
+
const DescribeFileDownloadUrlRequest = models.DescribeFileDownloadUrlRequest;
|
|
28
29
|
const DescribeDBSyncModeResponse = models.DescribeDBSyncModeResponse;
|
|
29
30
|
const DescribeProjectSecurityGroupsRequest = models.DescribeProjectSecurityGroupsRequest;
|
|
30
31
|
const CreateAccountRequest = models.CreateAccountRequest;
|
|
@@ -59,6 +60,7 @@ const ModifyDBParametersRequest = models.ModifyDBParametersRequest;
|
|
|
59
60
|
const DCDBInstanceInfo = models.DCDBInstanceInfo;
|
|
60
61
|
const ModifyDBInstanceSecurityGroupsRequest = models.ModifyDBInstanceSecurityGroupsRequest;
|
|
61
62
|
const DescribeDcnDetailRequest = models.DescribeDcnDetailRequest;
|
|
63
|
+
const DescribeFileDownloadUrlResponse = models.DescribeFileDownloadUrlResponse;
|
|
62
64
|
const ModifyDBParametersResponse = models.ModifyDBParametersResponse;
|
|
63
65
|
const DCDBShardInfo = models.DCDBShardInfo;
|
|
64
66
|
const CopyAccountPrivilegesRequest = models.CopyAccountPrivilegesRequest;
|
|
@@ -86,6 +88,7 @@ const DescribeDatabasesResponse = models.DescribeDatabasesResponse;
|
|
|
86
88
|
const DestroyDCDBInstanceResponse = models.DestroyDCDBInstanceResponse;
|
|
87
89
|
const CloseDBExtranetAccessRequest = models.CloseDBExtranetAccessRequest;
|
|
88
90
|
const InitDCDBInstancesRequest = models.InitDCDBInstancesRequest;
|
|
91
|
+
const ResourceTag = models.ResourceTag;
|
|
89
92
|
const DeleteAccountRequest = models.DeleteAccountRequest;
|
|
90
93
|
const DescribeDCDBInstancesResponse = models.DescribeDCDBInstancesResponse;
|
|
91
94
|
const DescribeFlowRequest = models.DescribeFlowRequest;
|
|
@@ -154,6 +157,17 @@ If no filter is specified, 10 instances will be returned by default. Up to 100 i
|
|
|
154
157
|
this.request("DescribeDCDBInstances", req, resp, cb);
|
|
155
158
|
}
|
|
156
159
|
|
|
160
|
+
/**
|
|
161
|
+
* This API is used to get the download URL of a specific backup or log file of a database.
|
|
162
|
+
* @param {DescribeFileDownloadUrlRequest} req
|
|
163
|
+
* @param {function(string, DescribeFileDownloadUrlResponse):void} cb
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
DescribeFileDownloadUrl(req, cb) {
|
|
167
|
+
let resp = new DescribeFileDownloadUrlResponse();
|
|
168
|
+
this.request("DescribeFileDownloadUrl", req, resp, cb);
|
|
169
|
+
}
|
|
170
|
+
|
|
157
171
|
/**
|
|
158
172
|
* This API is used to modify the remarks of a TencentDB account.
|
|
159
173
|
Note: accounts with the same username but different hosts are different accounts.
|
|
@@ -403,6 +403,48 @@ class CancelDcnJobResponse extends AbstractModel {
|
|
|
403
403
|
}
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
+
/**
|
|
407
|
+
* DescribeFileDownloadUrl request structure.
|
|
408
|
+
* @class
|
|
409
|
+
*/
|
|
410
|
+
class DescribeFileDownloadUrlRequest extends AbstractModel {
|
|
411
|
+
constructor(){
|
|
412
|
+
super();
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* Instance ID
|
|
416
|
+
* @type {string || null}
|
|
417
|
+
*/
|
|
418
|
+
this.InstanceId = null;
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* Shard ID
|
|
422
|
+
* @type {string || null}
|
|
423
|
+
*/
|
|
424
|
+
this.ShardId = null;
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Unsigned file path
|
|
428
|
+
* @type {string || null}
|
|
429
|
+
*/
|
|
430
|
+
this.FilePath = null;
|
|
431
|
+
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* @private
|
|
436
|
+
*/
|
|
437
|
+
deserialize(params) {
|
|
438
|
+
if (!params) {
|
|
439
|
+
return;
|
|
440
|
+
}
|
|
441
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
442
|
+
this.ShardId = 'ShardId' in params ? params.ShardId : null;
|
|
443
|
+
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
444
|
+
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
|
|
406
448
|
/**
|
|
407
449
|
* DescribeDBSyncMode response structure.
|
|
408
450
|
* @class
|
|
@@ -514,7 +556,7 @@ class CreateAccountRequest extends AbstractModel {
|
|
|
514
556
|
this.Host = null;
|
|
515
557
|
|
|
516
558
|
/**
|
|
517
|
-
* Account password
|
|
559
|
+
* Account password. It must contain 8-32 characters in all of the following four types: lowercase letters, uppercase letters, digits, and symbols (()~!@#$%^&*-+=_|{}[]:<>,.?/), and cannot start with a slash (/).
|
|
518
560
|
* @type {string || null}
|
|
519
561
|
*/
|
|
520
562
|
this.Password = null;
|
|
@@ -1335,6 +1377,12 @@ class DescribeProjectSecurityGroupsResponse extends AbstractModel {
|
|
|
1335
1377
|
*/
|
|
1336
1378
|
this.Groups = null;
|
|
1337
1379
|
|
|
1380
|
+
/**
|
|
1381
|
+
* Number of security groups.
|
|
1382
|
+
* @type {number || null}
|
|
1383
|
+
*/
|
|
1384
|
+
this.Total = null;
|
|
1385
|
+
|
|
1338
1386
|
/**
|
|
1339
1387
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1340
1388
|
* @type {string || null}
|
|
@@ -1359,6 +1407,7 @@ class DescribeProjectSecurityGroupsResponse extends AbstractModel {
|
|
|
1359
1407
|
this.Groups.push(obj);
|
|
1360
1408
|
}
|
|
1361
1409
|
}
|
|
1410
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
1362
1411
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1363
1412
|
|
|
1364
1413
|
}
|
|
@@ -1643,17 +1692,16 @@ class GrantAccountPrivilegesRequest extends AbstractModel {
|
|
|
1643
1692
|
this.DbName = null;
|
|
1644
1693
|
|
|
1645
1694
|
/**
|
|
1646
|
-
* Global permission. Valid values: SELECT
|
|
1647
|
-
Database permission. Valid values: SELECT
|
|
1648
|
-
Table
|
|
1649
|
-
|
|
1650
|
-
Field permission. Valid values: INSERT; REFERENCES; SELECT; UPDATE
|
|
1695
|
+
* Global permission. Valid values: `SELECT`, `INSERT`, `UPDATE`, `DELETE`, `CREATE`, `DROP`, `REFERENCES`, `INDEX`, `ALTER`, `CREATE TEMPORARY TABLES`, `LOCK TABLES`, `EXECUTE`, `CREATE VIEW`, `SHOW VIEW`, `CREATE ROUTINE`, `ALTER ROUTINE`, `EVENT`, `TRIGGER`, `SHOW DATABASES`, `REPLICATION CLIENT`, `REPLICATION SLAVE`.
|
|
1696
|
+
Database permission. Valid values: `SELECT`, `INSERT`, `UPDATE`, `DELETE`, `CREATE`, `DROP`, `REFERENCES`, `INDEX`, `ALTER`, `CREATE TEMPORARY TABLES`, `LOCK TABLES`, `EXECUTE`, `CREATE VIEW`, `SHOW VIEW`, `CREATE ROUTINE`, `ALTER ROUTINE`, `EVENT`, `TRIGGER`.
|
|
1697
|
+
Table permission. Valid values: `SELECT`, `INSERT`, `UPDATE`, `DELETE`, `CREATE`, `DROP`, `REFERENCES`, `INDEX`, `ALTER`, `CREATE VIEW`, `SHOW VIEW`, `TRIGGER`.
|
|
1698
|
+
Field permission. Valid values: `INSERT`, `REFERENCES`, `SELECT`, `UPDATE`.
|
|
1651
1699
|
* @type {Array.<string> || null}
|
|
1652
1700
|
*/
|
|
1653
1701
|
this.Privileges = null;
|
|
1654
1702
|
|
|
1655
1703
|
/**
|
|
1656
|
-
* Type. Valid values: table
|
|
1704
|
+
* Type. Valid values: `table`, `\*`. If `DbName` is a specific database name and `Type` is `\*`, the permissions of the database will be set (i.e., `db.\*`), in which case the `Object` parameter will be ignored
|
|
1657
1705
|
* @type {string || null}
|
|
1658
1706
|
*/
|
|
1659
1707
|
this.Type = null;
|
|
@@ -2138,6 +2186,13 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2138
2186
|
*/
|
|
2139
2187
|
this.InstanceType = null;
|
|
2140
2188
|
|
|
2189
|
+
/**
|
|
2190
|
+
* Instance tag information
|
|
2191
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
2192
|
+
* @type {Array.<ResourceTag> || null}
|
|
2193
|
+
*/
|
|
2194
|
+
this.ResourceTags = null;
|
|
2195
|
+
|
|
2141
2196
|
}
|
|
2142
2197
|
|
|
2143
2198
|
/**
|
|
@@ -2204,6 +2259,15 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
2204
2259
|
this.DcnDstNum = 'DcnDstNum' in params ? params.DcnDstNum : null;
|
|
2205
2260
|
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
2206
2261
|
|
|
2262
|
+
if (params.ResourceTags) {
|
|
2263
|
+
this.ResourceTags = new Array();
|
|
2264
|
+
for (let z in params.ResourceTags) {
|
|
2265
|
+
let obj = new ResourceTag();
|
|
2266
|
+
obj.deserialize(params.ResourceTags[z]);
|
|
2267
|
+
this.ResourceTags.push(obj);
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2207
2271
|
}
|
|
2208
2272
|
}
|
|
2209
2273
|
|
|
@@ -2277,6 +2341,41 @@ class DescribeDcnDetailRequest extends AbstractModel {
|
|
|
2277
2341
|
}
|
|
2278
2342
|
}
|
|
2279
2343
|
|
|
2344
|
+
/**
|
|
2345
|
+
* DescribeFileDownloadUrl response structure.
|
|
2346
|
+
* @class
|
|
2347
|
+
*/
|
|
2348
|
+
class DescribeFileDownloadUrlResponse extends AbstractModel {
|
|
2349
|
+
constructor(){
|
|
2350
|
+
super();
|
|
2351
|
+
|
|
2352
|
+
/**
|
|
2353
|
+
* Signed download URL
|
|
2354
|
+
* @type {string || null}
|
|
2355
|
+
*/
|
|
2356
|
+
this.PreSignedUrl = null;
|
|
2357
|
+
|
|
2358
|
+
/**
|
|
2359
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2360
|
+
* @type {string || null}
|
|
2361
|
+
*/
|
|
2362
|
+
this.RequestId = null;
|
|
2363
|
+
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
/**
|
|
2367
|
+
* @private
|
|
2368
|
+
*/
|
|
2369
|
+
deserialize(params) {
|
|
2370
|
+
if (!params) {
|
|
2371
|
+
return;
|
|
2372
|
+
}
|
|
2373
|
+
this.PreSignedUrl = 'PreSignedUrl' in params ? params.PreSignedUrl : null;
|
|
2374
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2375
|
+
|
|
2376
|
+
}
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2280
2379
|
/**
|
|
2281
2380
|
* ModifyDBParameters response structure.
|
|
2282
2381
|
* @class
|
|
@@ -3658,6 +3757,41 @@ class InitDCDBInstancesRequest extends AbstractModel {
|
|
|
3658
3757
|
}
|
|
3659
3758
|
}
|
|
3660
3759
|
|
|
3760
|
+
/**
|
|
3761
|
+
* Tag object, including tag key and tag value
|
|
3762
|
+
* @class
|
|
3763
|
+
*/
|
|
3764
|
+
class ResourceTag extends AbstractModel {
|
|
3765
|
+
constructor(){
|
|
3766
|
+
super();
|
|
3767
|
+
|
|
3768
|
+
/**
|
|
3769
|
+
* Tag key
|
|
3770
|
+
* @type {string || null}
|
|
3771
|
+
*/
|
|
3772
|
+
this.TagKey = null;
|
|
3773
|
+
|
|
3774
|
+
/**
|
|
3775
|
+
* Tag value
|
|
3776
|
+
* @type {string || null}
|
|
3777
|
+
*/
|
|
3778
|
+
this.TagValue = null;
|
|
3779
|
+
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3782
|
+
/**
|
|
3783
|
+
* @private
|
|
3784
|
+
*/
|
|
3785
|
+
deserialize(params) {
|
|
3786
|
+
if (!params) {
|
|
3787
|
+
return;
|
|
3788
|
+
}
|
|
3789
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
3790
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
3791
|
+
|
|
3792
|
+
}
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3661
3795
|
/**
|
|
3662
3796
|
* DeleteAccount request structure.
|
|
3663
3797
|
* @class
|
|
@@ -4745,6 +4879,7 @@ module.exports = {
|
|
|
4745
4879
|
AssociateSecurityGroupsRequest: AssociateSecurityGroupsRequest,
|
|
4746
4880
|
DescribeDBSecurityGroupsResponse: DescribeDBSecurityGroupsResponse,
|
|
4747
4881
|
CancelDcnJobResponse: CancelDcnJobResponse,
|
|
4882
|
+
DescribeFileDownloadUrlRequest: DescribeFileDownloadUrlRequest,
|
|
4748
4883
|
DescribeDBSyncModeResponse: DescribeDBSyncModeResponse,
|
|
4749
4884
|
DescribeProjectSecurityGroupsRequest: DescribeProjectSecurityGroupsRequest,
|
|
4750
4885
|
CreateAccountRequest: CreateAccountRequest,
|
|
@@ -4779,6 +4914,7 @@ module.exports = {
|
|
|
4779
4914
|
DCDBInstanceInfo: DCDBInstanceInfo,
|
|
4780
4915
|
ModifyDBInstanceSecurityGroupsRequest: ModifyDBInstanceSecurityGroupsRequest,
|
|
4781
4916
|
DescribeDcnDetailRequest: DescribeDcnDetailRequest,
|
|
4917
|
+
DescribeFileDownloadUrlResponse: DescribeFileDownloadUrlResponse,
|
|
4782
4918
|
ModifyDBParametersResponse: ModifyDBParametersResponse,
|
|
4783
4919
|
DCDBShardInfo: DCDBShardInfo,
|
|
4784
4920
|
CopyAccountPrivilegesRequest: CopyAccountPrivilegesRequest,
|
|
@@ -4806,6 +4942,7 @@ module.exports = {
|
|
|
4806
4942
|
DestroyDCDBInstanceResponse: DestroyDCDBInstanceResponse,
|
|
4807
4943
|
CloseDBExtranetAccessRequest: CloseDBExtranetAccessRequest,
|
|
4808
4944
|
InitDCDBInstancesRequest: InitDCDBInstancesRequest,
|
|
4945
|
+
ResourceTag: ResourceTag,
|
|
4809
4946
|
DeleteAccountRequest: DeleteAccountRequest,
|
|
4810
4947
|
DescribeDCDBInstancesResponse: DescribeDCDBInstancesResponse,
|
|
4811
4948
|
DescribeFlowRequest: DescribeFlowRequest,
|
|
@@ -23,6 +23,7 @@ const VPCSettings = models.VPCSettings;
|
|
|
23
23
|
const PriceResource = models.PriceResource;
|
|
24
24
|
const ScaleOutInstanceResponse = models.ScaleOutInstanceResponse;
|
|
25
25
|
const InquiryPriceCreateInstanceRequest = models.InquiryPriceCreateInstanceRequest;
|
|
26
|
+
const CustomServiceDefine = models.CustomServiceDefine;
|
|
26
27
|
const Resource = models.Resource;
|
|
27
28
|
const TerminateInstanceRequest = models.TerminateInstanceRequest;
|
|
28
29
|
const PodVolume = models.PodVolume;
|
|
@@ -33,6 +34,7 @@ const InquiryPriceRenewInstanceResponse = models.InquiryPriceRenewInstanceRespon
|
|
|
33
34
|
const TerminateTasksRequest = models.TerminateTasksRequest;
|
|
34
35
|
const InquiryPriceCreateInstanceResponse = models.InquiryPriceCreateInstanceResponse;
|
|
35
36
|
const HostVolumeContext = models.HostVolumeContext;
|
|
37
|
+
const ExternalService = models.ExternalService;
|
|
36
38
|
const DescribeClusterNodesRequest = models.DescribeClusterNodesRequest;
|
|
37
39
|
const PreExecuteFileSettings = models.PreExecuteFileSettings;
|
|
38
40
|
const CreateInstanceRequest = models.CreateInstanceRequest;
|
|
@@ -637,6 +637,12 @@ Hadoop-Hbase
|
|
|
637
637
|
*/
|
|
638
638
|
this.SceneName = null;
|
|
639
639
|
|
|
640
|
+
/**
|
|
641
|
+
* Shared component information
|
|
642
|
+
* @type {Array.<ExternalService> || null}
|
|
643
|
+
*/
|
|
644
|
+
this.ExternalService = null;
|
|
645
|
+
|
|
640
646
|
}
|
|
641
647
|
|
|
642
648
|
/**
|
|
@@ -681,6 +687,50 @@ Hadoop-Hbase
|
|
|
681
687
|
this.ProductId = 'ProductId' in params ? params.ProductId : null;
|
|
682
688
|
this.SceneName = 'SceneName' in params ? params.SceneName : null;
|
|
683
689
|
|
|
690
|
+
if (params.ExternalService) {
|
|
691
|
+
this.ExternalService = new Array();
|
|
692
|
+
for (let z in params.ExternalService) {
|
|
693
|
+
let obj = new ExternalService();
|
|
694
|
+
obj.deserialize(params.ExternalService[z]);
|
|
695
|
+
this.ExternalService.push(obj);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Shared self-built component parameters
|
|
704
|
+
* @class
|
|
705
|
+
*/
|
|
706
|
+
class CustomServiceDefine extends AbstractModel {
|
|
707
|
+
constructor(){
|
|
708
|
+
super();
|
|
709
|
+
|
|
710
|
+
/**
|
|
711
|
+
* Custom parameter key
|
|
712
|
+
* @type {string || null}
|
|
713
|
+
*/
|
|
714
|
+
this.Name = null;
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* Custom parameter value
|
|
718
|
+
* @type {string || null}
|
|
719
|
+
*/
|
|
720
|
+
this.Value = null;
|
|
721
|
+
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* @private
|
|
726
|
+
*/
|
|
727
|
+
deserialize(params) {
|
|
728
|
+
if (!params) {
|
|
729
|
+
return;
|
|
730
|
+
}
|
|
731
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
732
|
+
this.Value = 'Value' in params ? params.Value : null;
|
|
733
|
+
|
|
684
734
|
}
|
|
685
735
|
}
|
|
686
736
|
|
|
@@ -1287,6 +1337,63 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1287
1337
|
}
|
|
1288
1338
|
}
|
|
1289
1339
|
|
|
1340
|
+
/**
|
|
1341
|
+
* Shared component information
|
|
1342
|
+
* @class
|
|
1343
|
+
*/
|
|
1344
|
+
class ExternalService extends AbstractModel {
|
|
1345
|
+
constructor(){
|
|
1346
|
+
super();
|
|
1347
|
+
|
|
1348
|
+
/**
|
|
1349
|
+
* Shared component type, which can be EMR or CUSTOM
|
|
1350
|
+
* @type {string || null}
|
|
1351
|
+
*/
|
|
1352
|
+
this.ShareType = null;
|
|
1353
|
+
|
|
1354
|
+
/**
|
|
1355
|
+
* Custom parameters
|
|
1356
|
+
* @type {Array.<CustomServiceDefine> || null}
|
|
1357
|
+
*/
|
|
1358
|
+
this.CustomServiceDefineList = null;
|
|
1359
|
+
|
|
1360
|
+
/**
|
|
1361
|
+
* Shared component name
|
|
1362
|
+
* @type {string || null}
|
|
1363
|
+
*/
|
|
1364
|
+
this.Service = null;
|
|
1365
|
+
|
|
1366
|
+
/**
|
|
1367
|
+
* Shared component cluster
|
|
1368
|
+
* @type {string || null}
|
|
1369
|
+
*/
|
|
1370
|
+
this.InstanceId = null;
|
|
1371
|
+
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
/**
|
|
1375
|
+
* @private
|
|
1376
|
+
*/
|
|
1377
|
+
deserialize(params) {
|
|
1378
|
+
if (!params) {
|
|
1379
|
+
return;
|
|
1380
|
+
}
|
|
1381
|
+
this.ShareType = 'ShareType' in params ? params.ShareType : null;
|
|
1382
|
+
|
|
1383
|
+
if (params.CustomServiceDefineList) {
|
|
1384
|
+
this.CustomServiceDefineList = new Array();
|
|
1385
|
+
for (let z in params.CustomServiceDefineList) {
|
|
1386
|
+
let obj = new CustomServiceDefine();
|
|
1387
|
+
obj.deserialize(params.CustomServiceDefineList[z]);
|
|
1388
|
+
this.CustomServiceDefineList.push(obj);
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
this.Service = 'Service' in params ? params.Service : null;
|
|
1392
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1393
|
+
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1290
1397
|
/**
|
|
1291
1398
|
* DescribeClusterNodes request structure.
|
|
1292
1399
|
* @class
|
|
@@ -4168,6 +4275,7 @@ module.exports = {
|
|
|
4168
4275
|
PriceResource: PriceResource,
|
|
4169
4276
|
ScaleOutInstanceResponse: ScaleOutInstanceResponse,
|
|
4170
4277
|
InquiryPriceCreateInstanceRequest: InquiryPriceCreateInstanceRequest,
|
|
4278
|
+
CustomServiceDefine: CustomServiceDefine,
|
|
4171
4279
|
Resource: Resource,
|
|
4172
4280
|
TerminateInstanceRequest: TerminateInstanceRequest,
|
|
4173
4281
|
PodVolume: PodVolume,
|
|
@@ -4178,6 +4286,7 @@ module.exports = {
|
|
|
4178
4286
|
TerminateTasksRequest: TerminateTasksRequest,
|
|
4179
4287
|
InquiryPriceCreateInstanceResponse: InquiryPriceCreateInstanceResponse,
|
|
4180
4288
|
HostVolumeContext: HostVolumeContext,
|
|
4289
|
+
ExternalService: ExternalService,
|
|
4181
4290
|
DescribeClusterNodesRequest: DescribeClusterNodesRequest,
|
|
4182
4291
|
PreExecuteFileSettings: PreExecuteFileSettings,
|
|
4183
4292
|
CreateInstanceRequest: CreateInstanceRequest,
|
|
@@ -544,7 +544,7 @@ Note: This API unbinds the previously bound origin servers, and binds the origin
|
|
|
544
544
|
}
|
|
545
545
|
|
|
546
546
|
/**
|
|
547
|
-
* This API
|
|
547
|
+
* This API is used to query the available accelerator region based on the origin server region.
|
|
548
548
|
* @param {DescribeAccessRegionsByDestRegionRequest} req
|
|
549
549
|
* @param {function(string, DescribeAccessRegionsByDestRegionResponse):void} cb
|
|
550
550
|
* @public
|
|
@@ -3770,6 +3770,7 @@ AccessRegion - String - Required: No - Filter by access region.
|
|
|
3770
3770
|
RealServerRegion - String - Required: No - Filter by origin server region.
|
|
3771
3771
|
GroupId - String - Required: No - Filter by connection group ID.
|
|
3772
3772
|
IPAddressVersion - String - Required: No - Filter by IP version.
|
|
3773
|
+
PackageType - String - Required: No - Filter by package type of connection groups.
|
|
3773
3774
|
* @type {Array.<Filter> || null}
|
|
3774
3775
|
*/
|
|
3775
3776
|
this.Filters = null;
|
|
@@ -5472,7 +5473,7 @@ class DescribeAccessRegionsByDestRegionRequest extends AbstractModel {
|
|
|
5472
5473
|
this.IPAddressVersion = null;
|
|
5473
5474
|
|
|
5474
5475
|
/**
|
|
5475
|
-
* Package type of connection groups. Valid values: `Thunder` (general
|
|
5476
|
+
* Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games), and `CrossBorder` (cross-MLC-border connection).
|
|
5476
5477
|
* @type {string || null}
|
|
5477
5478
|
*/
|
|
5478
5479
|
this.PackageType = null;
|
|
@@ -6250,11 +6251,23 @@ The connection is to be replicated if this parameter is set.
|
|
|
6250
6251
|
this.IPAddressVersion = null;
|
|
6251
6252
|
|
|
6252
6253
|
/**
|
|
6253
|
-
* Network type.
|
|
6254
|
+
* Network type. `normal`: general BGP; `cn2`: dedicated BGP; `triple`: Non-BGP (provided by the top 3 ISPs in the Chinese mainland).
|
|
6254
6255
|
* @type {string || null}
|
|
6255
6256
|
*/
|
|
6256
6257
|
this.NetworkType = null;
|
|
6257
6258
|
|
|
6259
|
+
/**
|
|
6260
|
+
* Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games), and `CrossBorder` (cross-MLC-border connection).
|
|
6261
|
+
* @type {string || null}
|
|
6262
|
+
*/
|
|
6263
|
+
this.PackageType = null;
|
|
6264
|
+
|
|
6265
|
+
/**
|
|
6266
|
+
*
|
|
6267
|
+
* @type {number || null}
|
|
6268
|
+
*/
|
|
6269
|
+
this.Http3Supported = null;
|
|
6270
|
+
|
|
6258
6271
|
}
|
|
6259
6272
|
|
|
6260
6273
|
/**
|
|
@@ -6285,6 +6298,8 @@ The connection is to be replicated if this parameter is set.
|
|
|
6285
6298
|
this.BillingType = 'BillingType' in params ? params.BillingType : null;
|
|
6286
6299
|
this.IPAddressVersion = 'IPAddressVersion' in params ? params.IPAddressVersion : null;
|
|
6287
6300
|
this.NetworkType = 'NetworkType' in params ? params.NetworkType : null;
|
|
6301
|
+
this.PackageType = 'PackageType' in params ? params.PackageType : null;
|
|
6302
|
+
this.Http3Supported = 'Http3Supported' in params ? params.Http3Supported : null;
|
|
6288
6303
|
|
|
6289
6304
|
}
|
|
6290
6305
|
}
|
|
@@ -8133,6 +8148,12 @@ class AccessRegionDetial extends AbstractModel {
|
|
|
8133
8148
|
*/
|
|
8134
8149
|
this.IDCType = null;
|
|
8135
8150
|
|
|
8151
|
+
/**
|
|
8152
|
+
*
|
|
8153
|
+
* @type {number || null}
|
|
8154
|
+
*/
|
|
8155
|
+
this.FeatureBitmap = null;
|
|
8156
|
+
|
|
8136
8157
|
}
|
|
8137
8158
|
|
|
8138
8159
|
/**
|
|
@@ -8149,6 +8170,7 @@ class AccessRegionDetial extends AbstractModel {
|
|
|
8149
8170
|
this.RegionArea = 'RegionArea' in params ? params.RegionArea : null;
|
|
8150
8171
|
this.RegionAreaName = 'RegionAreaName' in params ? params.RegionAreaName : null;
|
|
8151
8172
|
this.IDCType = 'IDCType' in params ? params.IDCType : null;
|
|
8173
|
+
this.FeatureBitmap = 'FeatureBitmap' in params ? params.FeatureBitmap : null;
|
|
8152
8174
|
|
|
8153
8175
|
}
|
|
8154
8176
|
}
|
|
@@ -9712,11 +9734,17 @@ class CheckProxyCreateRequest extends AbstractModel {
|
|
|
9712
9734
|
this.NetworkType = null;
|
|
9713
9735
|
|
|
9714
9736
|
/**
|
|
9715
|
-
* Package type of connection groups. Valid values: `Thunder` (general connection group)
|
|
9737
|
+
* Package type of connection groups. Valid values: `Thunder` (general connection group), `Accelerator` (game accelerator connection group), and `CrossBorder` (cross-border connection group).
|
|
9716
9738
|
* @type {string || null}
|
|
9717
9739
|
*/
|
|
9718
9740
|
this.PackageType = null;
|
|
9719
9741
|
|
|
9742
|
+
/**
|
|
9743
|
+
*
|
|
9744
|
+
* @type {number || null}
|
|
9745
|
+
*/
|
|
9746
|
+
this.Http3Supported = null;
|
|
9747
|
+
|
|
9720
9748
|
}
|
|
9721
9749
|
|
|
9722
9750
|
/**
|
|
@@ -9734,6 +9762,7 @@ class CheckProxyCreateRequest extends AbstractModel {
|
|
|
9734
9762
|
this.IPAddressVersion = 'IPAddressVersion' in params ? params.IPAddressVersion : null;
|
|
9735
9763
|
this.NetworkType = 'NetworkType' in params ? params.NetworkType : null;
|
|
9736
9764
|
this.PackageType = 'PackageType' in params ? params.PackageType : null;
|
|
9765
|
+
this.Http3Supported = 'Http3Supported' in params ? params.Http3Supported : null;
|
|
9737
9766
|
|
|
9738
9767
|
}
|
|
9739
9768
|
}
|
|
@@ -9753,7 +9782,7 @@ class DescribeRegionAndPriceRequest extends AbstractModel {
|
|
|
9753
9782
|
this.IPAddressVersion = null;
|
|
9754
9783
|
|
|
9755
9784
|
/**
|
|
9756
|
-
* Package type of connection groups. Valid values: `Thunder` (general
|
|
9785
|
+
* Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games), and `CrossBorder` (cross-MLC-border connection).
|
|
9757
9786
|
* @type {string || null}
|
|
9758
9787
|
*/
|
|
9759
9788
|
this.PackageType = null;
|
|
@@ -10408,11 +10437,17 @@ class InquiryPriceCreateProxyRequest extends AbstractModel {
|
|
|
10408
10437
|
this.NetworkType = null;
|
|
10409
10438
|
|
|
10410
10439
|
/**
|
|
10411
|
-
* Package type of connection groups. Valid values: `Thunder` (general
|
|
10440
|
+
* Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games), and `CrossBorder` (cross-MLC-border connection).
|
|
10412
10441
|
* @type {string || null}
|
|
10413
10442
|
*/
|
|
10414
10443
|
this.PackageType = null;
|
|
10415
10444
|
|
|
10445
|
+
/**
|
|
10446
|
+
*
|
|
10447
|
+
* @type {number || null}
|
|
10448
|
+
*/
|
|
10449
|
+
this.Http3Supported = null;
|
|
10450
|
+
|
|
10416
10451
|
}
|
|
10417
10452
|
|
|
10418
10453
|
/**
|
|
@@ -10432,6 +10467,7 @@ class InquiryPriceCreateProxyRequest extends AbstractModel {
|
|
|
10432
10467
|
this.IPAddressVersion = 'IPAddressVersion' in params ? params.IPAddressVersion : null;
|
|
10433
10468
|
this.NetworkType = 'NetworkType' in params ? params.NetworkType : null;
|
|
10434
10469
|
this.PackageType = 'PackageType' in params ? params.PackageType : null;
|
|
10470
|
+
this.Http3Supported = 'Http3Supported' in params ? params.Http3Supported : null;
|
|
10435
10471
|
|
|
10436
10472
|
}
|
|
10437
10473
|
}
|
|
@@ -10832,7 +10868,8 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
10832
10868
|
this.NetworkType = null;
|
|
10833
10869
|
|
|
10834
10870
|
/**
|
|
10835
|
-
* Package type of connection groups. Valid values: `Thunder` (general
|
|
10871
|
+
* Package type of connection groups. Valid values: `Thunder` (general), `Accelerator` (specific for games),
|
|
10872
|
+
and `CrossBorder` (cross-MLC-border connection).
|
|
10836
10873
|
Note: this field may return `null`, indicating that no valid value can be obtained.
|
|
10837
10874
|
* @type {string || null}
|
|
10838
10875
|
*/
|
|
@@ -10851,6 +10888,12 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
10851
10888
|
*/
|
|
10852
10889
|
this.IPList = null;
|
|
10853
10890
|
|
|
10891
|
+
/**
|
|
10892
|
+
*
|
|
10893
|
+
* @type {number || null}
|
|
10894
|
+
*/
|
|
10895
|
+
this.Http3Supported = null;
|
|
10896
|
+
|
|
10854
10897
|
}
|
|
10855
10898
|
|
|
10856
10899
|
/**
|
|
@@ -10918,6 +10961,7 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
10918
10961
|
this.IPList.push(obj);
|
|
10919
10962
|
}
|
|
10920
10963
|
}
|
|
10964
|
+
this.Http3Supported = 'Http3Supported' in params ? params.Http3Supported : null;
|
|
10921
10965
|
|
|
10922
10966
|
}
|
|
10923
10967
|
}
|