tencentcloud-sdk-nodejs-intl-en 3.0.334 → 3.0.338
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/models.js +27 -3
- package/tencentcloud/billing/v20180709/models.js +37 -1
- package/tencentcloud/cls/v20201016/cls_client.js +32 -47
- package/tencentcloud/cls/v20201016/models.js +26 -3
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/lighthouse/v20200324/lighthouse_client.js +4 -2
- package/tencentcloud/lighthouse/v20200324/models.js +8 -2
- package/tencentcloud/mariadb/v20170312/mariadb_client.js +26 -0
- package/tencentcloud/mariadb/v20170312/models.js +158 -14
- package/tencentcloud/mps/v20190612/models.js +8 -0
- package/tencentcloud/scf/v20180416/models.js +85 -1
- package/tencentcloud/scf/v20180416/scf_client.js +1 -0
- package/tencentcloud/vpc/v20170312/models.js +239 -23
- package/tencentcloud/vpc/v20170312/vpc_client.js +5 -2
|
@@ -463,11 +463,17 @@ class CreateServiceTemplateRequest extends AbstractModel {
|
|
|
463
463
|
this.ServiceTemplateName = null;
|
|
464
464
|
|
|
465
465
|
/**
|
|
466
|
-
*
|
|
466
|
+
* Supported ports inlcude single port, multiple ports, consecutive ports and all ports. Supported protocols include TCP, UDP, ICMP and GRE. Either Services or ServicesExtra is required.
|
|
467
467
|
* @type {Array.<string> || null}
|
|
468
468
|
*/
|
|
469
469
|
this.Services = null;
|
|
470
470
|
|
|
471
|
+
/**
|
|
472
|
+
* You can add remarks. Supported ports include single port, multiple ports, consecutive ports and all ports. Supported protocols include TCP, UDP, ICMP and GRE. Either Services or ServicesExtra is required.
|
|
473
|
+
* @type {Array.<ServicesInfo> || null}
|
|
474
|
+
*/
|
|
475
|
+
this.ServicesExtra = null;
|
|
476
|
+
|
|
471
477
|
}
|
|
472
478
|
|
|
473
479
|
/**
|
|
@@ -480,6 +486,15 @@ class CreateServiceTemplateRequest extends AbstractModel {
|
|
|
480
486
|
this.ServiceTemplateName = 'ServiceTemplateName' in params ? params.ServiceTemplateName : null;
|
|
481
487
|
this.Services = 'Services' in params ? params.Services : null;
|
|
482
488
|
|
|
489
|
+
if (params.ServicesExtra) {
|
|
490
|
+
this.ServicesExtra = new Array();
|
|
491
|
+
for (let z in params.ServicesExtra) {
|
|
492
|
+
let obj = new ServicesInfo();
|
|
493
|
+
obj.deserialize(params.ServicesExtra[z]);
|
|
494
|
+
this.ServicesExtra.push(obj);
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
483
498
|
}
|
|
484
499
|
}
|
|
485
500
|
|
|
@@ -1162,6 +1177,12 @@ class ModifyServiceTemplateAttributeRequest extends AbstractModel {
|
|
|
1162
1177
|
*/
|
|
1163
1178
|
this.Services = null;
|
|
1164
1179
|
|
|
1180
|
+
/**
|
|
1181
|
+
* Protocol port information with remarks. Supported ports include single port, multiple ports, consecutive ports and other ports. Supported protocols include TCP, UDP, ICMP, and GRE.
|
|
1182
|
+
* @type {Array.<ServicesInfo> || null}
|
|
1183
|
+
*/
|
|
1184
|
+
this.ServicesExtra = null;
|
|
1185
|
+
|
|
1165
1186
|
}
|
|
1166
1187
|
|
|
1167
1188
|
/**
|
|
@@ -1175,6 +1196,15 @@ class ModifyServiceTemplateAttributeRequest extends AbstractModel {
|
|
|
1175
1196
|
this.ServiceTemplateName = 'ServiceTemplateName' in params ? params.ServiceTemplateName : null;
|
|
1176
1197
|
this.Services = 'Services' in params ? params.Services : null;
|
|
1177
1198
|
|
|
1199
|
+
if (params.ServicesExtra) {
|
|
1200
|
+
this.ServicesExtra = new Array();
|
|
1201
|
+
for (let z in params.ServicesExtra) {
|
|
1202
|
+
let obj = new ServicesInfo();
|
|
1203
|
+
obj.deserialize(params.ServicesExtra[z]);
|
|
1204
|
+
this.ServicesExtra.push(obj);
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1178
1208
|
}
|
|
1179
1209
|
}
|
|
1180
1210
|
|
|
@@ -1187,13 +1217,13 @@ class DescribeIpGeolocationInfosRequest extends AbstractModel {
|
|
|
1187
1217
|
super();
|
|
1188
1218
|
|
|
1189
1219
|
/**
|
|
1190
|
-
* IP addresses
|
|
1220
|
+
* The list of IP addresses (only IPv4 addresses are available currently) to be queried; upper limit: 100
|
|
1191
1221
|
* @type {Array.<string> || null}
|
|
1192
1222
|
*/
|
|
1193
1223
|
this.AddressIps = null;
|
|
1194
1224
|
|
|
1195
1225
|
/**
|
|
1196
|
-
* Fields of the IP addresses to be queried
|
|
1226
|
+
* Fields of the IP addresses to be queried.
|
|
1197
1227
|
* @type {IpField || null}
|
|
1198
1228
|
*/
|
|
1199
1229
|
this.Fields = null;
|
|
@@ -2106,6 +2136,12 @@ class AddressTemplate extends AbstractModel {
|
|
|
2106
2136
|
*/
|
|
2107
2137
|
this.CreatedTime = null;
|
|
2108
2138
|
|
|
2139
|
+
/**
|
|
2140
|
+
* IP address information with remarks
|
|
2141
|
+
* @type {Array.<AddressInfo> || null}
|
|
2142
|
+
*/
|
|
2143
|
+
this.AddressExtraSet = null;
|
|
2144
|
+
|
|
2109
2145
|
}
|
|
2110
2146
|
|
|
2111
2147
|
/**
|
|
@@ -2120,6 +2156,15 @@ class AddressTemplate extends AbstractModel {
|
|
|
2120
2156
|
this.AddressSet = 'AddressSet' in params ? params.AddressSet : null;
|
|
2121
2157
|
this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
|
|
2122
2158
|
|
|
2159
|
+
if (params.AddressExtraSet) {
|
|
2160
|
+
this.AddressExtraSet = new Array();
|
|
2161
|
+
for (let z in params.AddressExtraSet) {
|
|
2162
|
+
let obj = new AddressInfo();
|
|
2163
|
+
obj.deserialize(params.AddressExtraSet[z]);
|
|
2164
|
+
this.AddressExtraSet.push(obj);
|
|
2165
|
+
}
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2123
2168
|
}
|
|
2124
2169
|
}
|
|
2125
2170
|
|
|
@@ -2602,6 +2647,12 @@ class ModifyBandwidthPackageAttributeRequest extends AbstractModel {
|
|
|
2602
2647
|
*/
|
|
2603
2648
|
this.ChargeType = null;
|
|
2604
2649
|
|
|
2650
|
+
/**
|
|
2651
|
+
* When a monthly-subscribed bandwidth package is returned, whether to convert it to a pay-as-you-go bandwidth packages. Default value: `No`
|
|
2652
|
+
* @type {boolean || null}
|
|
2653
|
+
*/
|
|
2654
|
+
this.MigrateOnRefund = null;
|
|
2655
|
+
|
|
2605
2656
|
}
|
|
2606
2657
|
|
|
2607
2658
|
/**
|
|
@@ -2614,6 +2665,7 @@ class ModifyBandwidthPackageAttributeRequest extends AbstractModel {
|
|
|
2614
2665
|
this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
|
|
2615
2666
|
this.BandwidthPackageName = 'BandwidthPackageName' in params ? params.BandwidthPackageName : null;
|
|
2616
2667
|
this.ChargeType = 'ChargeType' in params ? params.ChargeType : null;
|
|
2668
|
+
this.MigrateOnRefund = 'MigrateOnRefund' in params ? params.MigrateOnRefund : null;
|
|
2617
2669
|
|
|
2618
2670
|
}
|
|
2619
2671
|
}
|
|
@@ -3394,6 +3446,12 @@ class ServiceTemplate extends AbstractModel {
|
|
|
3394
3446
|
*/
|
|
3395
3447
|
this.CreatedTime = null;
|
|
3396
3448
|
|
|
3449
|
+
/**
|
|
3450
|
+
* Protocol port template information with remarks
|
|
3451
|
+
* @type {Array.<ServicesInfo> || null}
|
|
3452
|
+
*/
|
|
3453
|
+
this.ServiceExtraSet = null;
|
|
3454
|
+
|
|
3397
3455
|
}
|
|
3398
3456
|
|
|
3399
3457
|
/**
|
|
@@ -3408,6 +3466,15 @@ class ServiceTemplate extends AbstractModel {
|
|
|
3408
3466
|
this.ServiceSet = 'ServiceSet' in params ? params.ServiceSet : null;
|
|
3409
3467
|
this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
|
|
3410
3468
|
|
|
3469
|
+
if (params.ServiceExtraSet) {
|
|
3470
|
+
this.ServiceExtraSet = new Array();
|
|
3471
|
+
for (let z in params.ServiceExtraSet) {
|
|
3472
|
+
let obj = new ServicesInfo();
|
|
3473
|
+
obj.deserialize(params.ServiceExtraSet[z]);
|
|
3474
|
+
this.ServiceExtraSet.push(obj);
|
|
3475
|
+
}
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3411
3478
|
}
|
|
3412
3479
|
}
|
|
3413
3480
|
|
|
@@ -6181,6 +6248,12 @@ class ModifyAddressTemplateAttributeRequest extends AbstractModel {
|
|
|
6181
6248
|
*/
|
|
6182
6249
|
this.Addresses = null;
|
|
6183
6250
|
|
|
6251
|
+
/**
|
|
6252
|
+
* Address information with remarks, including the IP, CIDR block or IP address range.
|
|
6253
|
+
* @type {Array.<AddressInfo> || null}
|
|
6254
|
+
*/
|
|
6255
|
+
this.AddressesExtra = null;
|
|
6256
|
+
|
|
6184
6257
|
}
|
|
6185
6258
|
|
|
6186
6259
|
/**
|
|
@@ -6194,6 +6267,15 @@ class ModifyAddressTemplateAttributeRequest extends AbstractModel {
|
|
|
6194
6267
|
this.AddressTemplateName = 'AddressTemplateName' in params ? params.AddressTemplateName : null;
|
|
6195
6268
|
this.Addresses = 'Addresses' in params ? params.Addresses : null;
|
|
6196
6269
|
|
|
6270
|
+
if (params.AddressesExtra) {
|
|
6271
|
+
this.AddressesExtra = new Array();
|
|
6272
|
+
for (let z in params.AddressesExtra) {
|
|
6273
|
+
let obj = new AddressInfo();
|
|
6274
|
+
obj.deserialize(params.AddressesExtra[z]);
|
|
6275
|
+
this.AddressesExtra.push(obj);
|
|
6276
|
+
}
|
|
6277
|
+
}
|
|
6278
|
+
|
|
6197
6279
|
}
|
|
6198
6280
|
}
|
|
6199
6281
|
|
|
@@ -18067,13 +18149,13 @@ class ModifyCcnAttributeRequest extends AbstractModel {
|
|
|
18067
18149
|
this.CcnId = null;
|
|
18068
18150
|
|
|
18069
18151
|
/**
|
|
18070
|
-
* The name of
|
|
18152
|
+
* The name of CCN instance. Up to 60 characters allowed. It can contain up to 60 bytes. Either `CcnName` or `CcnDescription` must be specified.
|
|
18071
18153
|
* @type {string || null}
|
|
18072
18154
|
*/
|
|
18073
18155
|
this.CcnName = null;
|
|
18074
18156
|
|
|
18075
18157
|
/**
|
|
18076
|
-
* The description of
|
|
18158
|
+
* The description of CCN instance. Up to 100 characters allowed. It can contain up to 60 bytes. Either `CcnName` or `CcnDescription` must be specified.
|
|
18077
18159
|
* @type {string || null}
|
|
18078
18160
|
*/
|
|
18079
18161
|
this.CcnDescription = null;
|
|
@@ -18602,6 +18684,18 @@ class VpnGateway extends AbstractModel {
|
|
|
18602
18684
|
*/
|
|
18603
18685
|
this.NetworkInstanceId = null;
|
|
18604
18686
|
|
|
18687
|
+
/**
|
|
18688
|
+
* CDC instance ID
|
|
18689
|
+
* @type {string || null}
|
|
18690
|
+
*/
|
|
18691
|
+
this.CdcId = null;
|
|
18692
|
+
|
|
18693
|
+
/**
|
|
18694
|
+
* Maximum number of connected clients allowed for the SSL VPN gateway.
|
|
18695
|
+
* @type {number || null}
|
|
18696
|
+
*/
|
|
18697
|
+
this.MaxConnection = null;
|
|
18698
|
+
|
|
18605
18699
|
}
|
|
18606
18700
|
|
|
18607
18701
|
/**
|
|
@@ -18637,6 +18731,8 @@ class VpnGateway extends AbstractModel {
|
|
|
18637
18731
|
}
|
|
18638
18732
|
this.Version = 'Version' in params ? params.Version : null;
|
|
18639
18733
|
this.NetworkInstanceId = 'NetworkInstanceId' in params ? params.NetworkInstanceId : null;
|
|
18734
|
+
this.CdcId = 'CdcId' in params ? params.CdcId : null;
|
|
18735
|
+
this.MaxConnection = 'MaxConnection' in params ? params.MaxConnection : null;
|
|
18640
18736
|
|
|
18641
18737
|
}
|
|
18642
18738
|
}
|
|
@@ -20979,6 +21075,42 @@ class CreateLocalGatewayResponse extends AbstractModel {
|
|
|
20979
21075
|
}
|
|
20980
21076
|
}
|
|
20981
21077
|
|
|
21078
|
+
/**
|
|
21079
|
+
* Protocol port template information
|
|
21080
|
+
* @class
|
|
21081
|
+
*/
|
|
21082
|
+
class ServicesInfo extends AbstractModel {
|
|
21083
|
+
constructor(){
|
|
21084
|
+
super();
|
|
21085
|
+
|
|
21086
|
+
/**
|
|
21087
|
+
* Protocol port
|
|
21088
|
+
* @type {string || null}
|
|
21089
|
+
*/
|
|
21090
|
+
this.Service = null;
|
|
21091
|
+
|
|
21092
|
+
/**
|
|
21093
|
+
* Remarks
|
|
21094
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
21095
|
+
* @type {string || null}
|
|
21096
|
+
*/
|
|
21097
|
+
this.Description = null;
|
|
21098
|
+
|
|
21099
|
+
}
|
|
21100
|
+
|
|
21101
|
+
/**
|
|
21102
|
+
* @private
|
|
21103
|
+
*/
|
|
21104
|
+
deserialize(params) {
|
|
21105
|
+
if (!params) {
|
|
21106
|
+
return;
|
|
21107
|
+
}
|
|
21108
|
+
this.Service = 'Service' in params ? params.Service : null;
|
|
21109
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
21110
|
+
|
|
21111
|
+
}
|
|
21112
|
+
}
|
|
21113
|
+
|
|
20982
21114
|
/**
|
|
20983
21115
|
* MigratePrivateIpAddress request structure.
|
|
20984
21116
|
* @class
|
|
@@ -21030,9 +21162,10 @@ class DescribeServiceTemplatesRequest extends AbstractModel {
|
|
|
21030
21162
|
super();
|
|
21031
21163
|
|
|
21032
21164
|
/**
|
|
21033
|
-
*
|
|
21034
|
-
<li>service-template-name -
|
|
21035
|
-
<li>service-template-id -
|
|
21165
|
+
* Filters
|
|
21166
|
+
<li>service-template-name - Protocol port template name.</li>
|
|
21167
|
+
<li>service-template-id - Protocol port template ID, such as `ppm-e6dy460g`.</li>
|
|
21168
|
+
<li>service-port-Protocol port.</li>
|
|
21036
21169
|
* @type {Array.<Filter> || null}
|
|
21037
21170
|
*/
|
|
21038
21171
|
this.Filters = null;
|
|
@@ -21146,7 +21279,7 @@ class CreateVpnGatewayRequest extends AbstractModel {
|
|
|
21146
21279
|
this.Zone = null;
|
|
21147
21280
|
|
|
21148
21281
|
/**
|
|
21149
|
-
* VPN gateway type.
|
|
21282
|
+
* VPN gateway type. Values: `CCN` (CCN VPN gateway), `SSL` (SSL VPN gateway)
|
|
21150
21283
|
* @type {string || null}
|
|
21151
21284
|
*/
|
|
21152
21285
|
this.Type = null;
|
|
@@ -21157,6 +21290,18 @@ class CreateVpnGatewayRequest extends AbstractModel {
|
|
|
21157
21290
|
*/
|
|
21158
21291
|
this.Tags = null;
|
|
21159
21292
|
|
|
21293
|
+
/**
|
|
21294
|
+
* CDC instance ID
|
|
21295
|
+
* @type {string || null}
|
|
21296
|
+
*/
|
|
21297
|
+
this.CdcId = null;
|
|
21298
|
+
|
|
21299
|
+
/**
|
|
21300
|
+
* Maximum number of connected clients allowed for the SSL VPN gateway. Valid values: [5, 10, 20, 50, 100]. This parameter is only required for SSL VPN gateways.
|
|
21301
|
+
* @type {number || null}
|
|
21302
|
+
*/
|
|
21303
|
+
this.MaxConnection = null;
|
|
21304
|
+
|
|
21160
21305
|
}
|
|
21161
21306
|
|
|
21162
21307
|
/**
|
|
@@ -21187,6 +21332,8 @@ class CreateVpnGatewayRequest extends AbstractModel {
|
|
|
21187
21332
|
this.Tags.push(obj);
|
|
21188
21333
|
}
|
|
21189
21334
|
}
|
|
21335
|
+
this.CdcId = 'CdcId' in params ? params.CdcId : null;
|
|
21336
|
+
this.MaxConnection = 'MaxConnection' in params ? params.MaxConnection : null;
|
|
21190
21337
|
|
|
21191
21338
|
}
|
|
21192
21339
|
}
|
|
@@ -22238,11 +22385,17 @@ class CreateAddressTemplateRequest extends AbstractModel {
|
|
|
22238
22385
|
this.AddressTemplateName = null;
|
|
22239
22386
|
|
|
22240
22387
|
/**
|
|
22241
|
-
*
|
|
22388
|
+
* The address information can be presented by the IP, CIDR block or IP address range. Either Addresses or AddressesExtra is required.
|
|
22242
22389
|
* @type {Array.<string> || null}
|
|
22243
22390
|
*/
|
|
22244
22391
|
this.Addresses = null;
|
|
22245
22392
|
|
|
22393
|
+
/**
|
|
22394
|
+
* The address information can contain remarks and be presented by the IP, CIDR block or IP address range. Either Addresses or AddressesExtra is required.
|
|
22395
|
+
* @type {Array.<AddressInfo> || null}
|
|
22396
|
+
*/
|
|
22397
|
+
this.AddressesExtra = null;
|
|
22398
|
+
|
|
22246
22399
|
}
|
|
22247
22400
|
|
|
22248
22401
|
/**
|
|
@@ -22255,6 +22408,15 @@ class CreateAddressTemplateRequest extends AbstractModel {
|
|
|
22255
22408
|
this.AddressTemplateName = 'AddressTemplateName' in params ? params.AddressTemplateName : null;
|
|
22256
22409
|
this.Addresses = 'Addresses' in params ? params.Addresses : null;
|
|
22257
22410
|
|
|
22411
|
+
if (params.AddressesExtra) {
|
|
22412
|
+
this.AddressesExtra = new Array();
|
|
22413
|
+
for (let z in params.AddressesExtra) {
|
|
22414
|
+
let obj = new AddressInfo();
|
|
22415
|
+
obj.deserialize(params.AddressesExtra[z]);
|
|
22416
|
+
this.AddressesExtra.push(obj);
|
|
22417
|
+
}
|
|
22418
|
+
}
|
|
22419
|
+
|
|
22258
22420
|
}
|
|
22259
22421
|
}
|
|
22260
22422
|
|
|
@@ -22600,6 +22762,13 @@ class SecurityGroup extends AbstractModel {
|
|
|
22600
22762
|
*/
|
|
22601
22763
|
this.TagSet = null;
|
|
22602
22764
|
|
|
22765
|
+
/**
|
|
22766
|
+
* Security group update time.
|
|
22767
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
22768
|
+
* @type {string || null}
|
|
22769
|
+
*/
|
|
22770
|
+
this.UpdateTime = null;
|
|
22771
|
+
|
|
22603
22772
|
}
|
|
22604
22773
|
|
|
22605
22774
|
/**
|
|
@@ -22624,6 +22793,7 @@ class SecurityGroup extends AbstractModel {
|
|
|
22624
22793
|
this.TagSet.push(obj);
|
|
22625
22794
|
}
|
|
22626
22795
|
}
|
|
22796
|
+
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
22627
22797
|
|
|
22628
22798
|
}
|
|
22629
22799
|
}
|
|
@@ -23312,6 +23482,12 @@ class UnassignPrivateIpAddressesRequest extends AbstractModel {
|
|
|
23312
23482
|
*/
|
|
23313
23483
|
this.PrivateIpAddresses = null;
|
|
23314
23484
|
|
|
23485
|
+
/**
|
|
23486
|
+
* Instance ID of the server bound with this IP. This parameter is only applicable when you need to return an IP and unbind the related servers.
|
|
23487
|
+
* @type {string || null}
|
|
23488
|
+
*/
|
|
23489
|
+
this.InstanceId = null;
|
|
23490
|
+
|
|
23315
23491
|
}
|
|
23316
23492
|
|
|
23317
23493
|
/**
|
|
@@ -23331,6 +23507,7 @@ class UnassignPrivateIpAddressesRequest extends AbstractModel {
|
|
|
23331
23507
|
this.PrivateIpAddresses.push(obj);
|
|
23332
23508
|
}
|
|
23333
23509
|
}
|
|
23510
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
23334
23511
|
|
|
23335
23512
|
}
|
|
23336
23513
|
}
|
|
@@ -24513,9 +24690,10 @@ class DescribeAddressTemplatesRequest extends AbstractModel {
|
|
|
24513
24690
|
super();
|
|
24514
24691
|
|
|
24515
24692
|
/**
|
|
24516
|
-
*
|
|
24517
|
-
<li>address-template-name -
|
|
24518
|
-
<li>address-template-id -
|
|
24693
|
+
* Filters
|
|
24694
|
+
<li>address-template-name - IP address template name.</li>
|
|
24695
|
+
<li>address-template-id - IP address template ID, such as `ipm-mdunqeb6`.</li>
|
|
24696
|
+
<li>address-ip - IP address.</li>
|
|
24519
24697
|
* @type {Array.<Filter> || null}
|
|
24520
24698
|
*/
|
|
24521
24699
|
this.Filters = null;
|
|
@@ -25405,6 +25583,41 @@ class DeleteVpcResponse extends AbstractModel {
|
|
|
25405
25583
|
}
|
|
25406
25584
|
}
|
|
25407
25585
|
|
|
25586
|
+
/**
|
|
25587
|
+
* Prepaid (monthly subscription) billing object.
|
|
25588
|
+
* @class
|
|
25589
|
+
*/
|
|
25590
|
+
class InstanceChargePrepaid extends AbstractModel {
|
|
25591
|
+
constructor(){
|
|
25592
|
+
super();
|
|
25593
|
+
|
|
25594
|
+
/**
|
|
25595
|
+
* Purchased usage period (in month). Value range: [1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36].
|
|
25596
|
+
* @type {number || null}
|
|
25597
|
+
*/
|
|
25598
|
+
this.Period = null;
|
|
25599
|
+
|
|
25600
|
+
/**
|
|
25601
|
+
* Auto-renewal ID. Value range: NOTIFY_AND_AUTO_RENEW: notify expiry and renew automatically, NOTIFY_AND_MANUAL_RENEW: notify expiry but do not renew automatically. The default is NOTIFY_AND_MANUAL_RENEW
|
|
25602
|
+
* @type {string || null}
|
|
25603
|
+
*/
|
|
25604
|
+
this.RenewFlag = null;
|
|
25605
|
+
|
|
25606
|
+
}
|
|
25607
|
+
|
|
25608
|
+
/**
|
|
25609
|
+
* @private
|
|
25610
|
+
*/
|
|
25611
|
+
deserialize(params) {
|
|
25612
|
+
if (!params) {
|
|
25613
|
+
return;
|
|
25614
|
+
}
|
|
25615
|
+
this.Period = 'Period' in params ? params.Period : null;
|
|
25616
|
+
this.RenewFlag = 'RenewFlag' in params ? params.RenewFlag : null;
|
|
25617
|
+
|
|
25618
|
+
}
|
|
25619
|
+
}
|
|
25620
|
+
|
|
25408
25621
|
/**
|
|
25409
25622
|
* DescribeVpcEndPointServiceWhiteList response structure.
|
|
25410
25623
|
* @class
|
|
@@ -25484,24 +25697,25 @@ class AcceptAttachCcnInstancesResponse extends AbstractModel {
|
|
|
25484
25697
|
}
|
|
25485
25698
|
|
|
25486
25699
|
/**
|
|
25487
|
-
*
|
|
25700
|
+
* IP address template information
|
|
25488
25701
|
* @class
|
|
25489
25702
|
*/
|
|
25490
|
-
class
|
|
25703
|
+
class AddressInfo extends AbstractModel {
|
|
25491
25704
|
constructor(){
|
|
25492
25705
|
super();
|
|
25493
25706
|
|
|
25494
25707
|
/**
|
|
25495
|
-
*
|
|
25496
|
-
* @type {
|
|
25708
|
+
* IP address
|
|
25709
|
+
* @type {string || null}
|
|
25497
25710
|
*/
|
|
25498
|
-
this.
|
|
25711
|
+
this.Address = null;
|
|
25499
25712
|
|
|
25500
25713
|
/**
|
|
25501
|
-
*
|
|
25714
|
+
* Remarks
|
|
25715
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
25502
25716
|
* @type {string || null}
|
|
25503
25717
|
*/
|
|
25504
|
-
this.
|
|
25718
|
+
this.Description = null;
|
|
25505
25719
|
|
|
25506
25720
|
}
|
|
25507
25721
|
|
|
@@ -25512,8 +25726,8 @@ class InstanceChargePrepaid extends AbstractModel {
|
|
|
25512
25726
|
if (!params) {
|
|
25513
25727
|
return;
|
|
25514
25728
|
}
|
|
25515
|
-
this.
|
|
25516
|
-
this.
|
|
25729
|
+
this.Address = 'Address' in params ? params.Address : null;
|
|
25730
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
25517
25731
|
|
|
25518
25732
|
}
|
|
25519
25733
|
}
|
|
@@ -26050,6 +26264,7 @@ module.exports = {
|
|
|
26050
26264
|
DirectConnectGatewayCcnRoute: DirectConnectGatewayCcnRoute,
|
|
26051
26265
|
DeleteHaVipRequest: DeleteHaVipRequest,
|
|
26052
26266
|
CreateLocalGatewayResponse: CreateLocalGatewayResponse,
|
|
26267
|
+
ServicesInfo: ServicesInfo,
|
|
26053
26268
|
MigratePrivateIpAddressRequest: MigratePrivateIpAddressRequest,
|
|
26054
26269
|
DescribeServiceTemplatesRequest: DescribeServiceTemplatesRequest,
|
|
26055
26270
|
DeleteRouteTableRequest: DeleteRouteTableRequest,
|
|
@@ -26151,9 +26366,10 @@ module.exports = {
|
|
|
26151
26366
|
ModifySubnetAttributeRequest: ModifySubnetAttributeRequest,
|
|
26152
26367
|
DescribeBandwidthPackageQuotaRequest: DescribeBandwidthPackageQuotaRequest,
|
|
26153
26368
|
DeleteVpcResponse: DeleteVpcResponse,
|
|
26369
|
+
InstanceChargePrepaid: InstanceChargePrepaid,
|
|
26154
26370
|
DescribeVpcEndPointServiceWhiteListResponse: DescribeVpcEndPointServiceWhiteListResponse,
|
|
26155
26371
|
AcceptAttachCcnInstancesResponse: AcceptAttachCcnInstancesResponse,
|
|
26156
|
-
|
|
26372
|
+
AddressInfo: AddressInfo,
|
|
26157
26373
|
AuditCrossBorderComplianceRequest: AuditCrossBorderComplianceRequest,
|
|
26158
26374
|
DescribeNetDetectsResponse: DescribeNetDetectsResponse,
|
|
26159
26375
|
|
|
@@ -453,6 +453,7 @@ const ModifyLocalGatewayRequest = models.ModifyLocalGatewayRequest;
|
|
|
453
453
|
const DirectConnectGatewayCcnRoute = models.DirectConnectGatewayCcnRoute;
|
|
454
454
|
const DeleteHaVipRequest = models.DeleteHaVipRequest;
|
|
455
455
|
const CreateLocalGatewayResponse = models.CreateLocalGatewayResponse;
|
|
456
|
+
const ServicesInfo = models.ServicesInfo;
|
|
456
457
|
const MigratePrivateIpAddressRequest = models.MigratePrivateIpAddressRequest;
|
|
457
458
|
const DescribeServiceTemplatesRequest = models.DescribeServiceTemplatesRequest;
|
|
458
459
|
const DeleteRouteTableRequest = models.DeleteRouteTableRequest;
|
|
@@ -554,9 +555,10 @@ const Route = models.Route;
|
|
|
554
555
|
const ModifySubnetAttributeRequest = models.ModifySubnetAttributeRequest;
|
|
555
556
|
const DescribeBandwidthPackageQuotaRequest = models.DescribeBandwidthPackageQuotaRequest;
|
|
556
557
|
const DeleteVpcResponse = models.DeleteVpcResponse;
|
|
558
|
+
const InstanceChargePrepaid = models.InstanceChargePrepaid;
|
|
557
559
|
const DescribeVpcEndPointServiceWhiteListResponse = models.DescribeVpcEndPointServiceWhiteListResponse;
|
|
558
560
|
const AcceptAttachCcnInstancesResponse = models.AcceptAttachCcnInstancesResponse;
|
|
559
|
-
const
|
|
561
|
+
const AddressInfo = models.AddressInfo;
|
|
560
562
|
const AuditCrossBorderComplianceRequest = models.AuditCrossBorderComplianceRequest;
|
|
561
563
|
const DescribeNetDetectsResponse = models.DescribeNetDetectsResponse;
|
|
562
564
|
|
|
@@ -2453,7 +2455,8 @@ This API is completed asynchronously. If you need to query the execution result
|
|
|
2453
2455
|
}
|
|
2454
2456
|
|
|
2455
2457
|
/**
|
|
2456
|
-
* This API is used to query the
|
|
2458
|
+
* This API is used to query the location and network information of one or more IP addresses.
|
|
2459
|
+
This API is currently in beta test. To use it, please [submit a ticket](https://console.cloud.tencent.com/workorder/category?level1_id=6&level2_id=660&source=0&data_title=%E5%BC%B9%E6%80%A7%E5%85%AC%E7%BD%91%20EIP&level3_id=662&queue=96&scene_code=16400&step=2).
|
|
2457
2460
|
* @param {DescribeIpGeolocationInfosRequest} req
|
|
2458
2461
|
* @param {function(string, DescribeIpGeolocationInfosResponse):void} cb
|
|
2459
2462
|
* @public
|