tencentcloud-sdk-nodejs-intl-en 3.0.1112 → 3.0.1113

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.
@@ -863,6 +863,41 @@ class DescribeNetworkInterfacesRequest extends AbstractModel {
863
863
  }
864
864
  }
865
865
 
866
+ /**
867
+ * ReleaseIp6AddressesBandwidth response structure.
868
+ * @class
869
+ */
870
+ class ReleaseIp6AddressesBandwidthResponse extends AbstractModel {
871
+ constructor(){
872
+ super();
873
+
874
+ /**
875
+ * Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
876
+ * @type {string || null}
877
+ */
878
+ this.TaskId = null;
879
+
880
+ /**
881
+ * 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.
882
+ * @type {string || null}
883
+ */
884
+ this.RequestId = null;
885
+
886
+ }
887
+
888
+ /**
889
+ * @private
890
+ */
891
+ deserialize(params) {
892
+ if (!params) {
893
+ return;
894
+ }
895
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
896
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
897
+
898
+ }
899
+ }
900
+
866
901
  /**
867
902
  * DescribeVpcIpv6Addresses request structure.
868
903
  * @class
@@ -1321,6 +1356,115 @@ class ModifyServiceTemplateAttributeRequest extends AbstractModel {
1321
1356
  }
1322
1357
  }
1323
1358
 
1359
+ /**
1360
+ * Security group policy object
1361
+ * @class
1362
+ */
1363
+ class SecurityGroupPolicy extends AbstractModel {
1364
+ constructor(){
1365
+ super();
1366
+
1367
+ /**
1368
+ * The index number of security group rules, which dynamically changes with the rules. This parameter can be obtained via the `DescribeSecurityGroupPolicies` API and used with the `Version` field in the returned value of the API.
1369
+ * @type {number || null}
1370
+ */
1371
+ this.PolicyIndex = null;
1372
+
1373
+ /**
1374
+ * Protocol. Valid values: TCP, UDP, ICMP, ICMPv6, ALL.
1375
+ * @type {string || null}
1376
+ */
1377
+ this.Protocol = null;
1378
+
1379
+ /**
1380
+ * Port (`all`, a single port, or a port range).
1381
+ Note: If the `Protocol` value is set to `ALL`, the `Port` value also needs to be set to `all`.
1382
+ * @type {string || null}
1383
+ */
1384
+ this.Port = null;
1385
+
1386
+ /**
1387
+ * Protocol port ID or protocol port group ID. ServiceTemplate and Protocol+Port are mutually exclusive.
1388
+ * @type {ServiceTemplateSpecification || null}
1389
+ */
1390
+ this.ServiceTemplate = null;
1391
+
1392
+ /**
1393
+ * Either `CidrBlock` or `Ipv6CidrBlock can be specified. Note that if `0.0.0.0/n` is entered, it is mapped to 0.0.0.0/0.
1394
+ * @type {string || null}
1395
+ */
1396
+ this.CidrBlock = null;
1397
+
1398
+ /**
1399
+ * The CIDR block or IPv6 (mutually exclusive).
1400
+ * @type {string || null}
1401
+ */
1402
+ this.Ipv6CidrBlock = null;
1403
+
1404
+ /**
1405
+ * The security group instance ID, such as `sg-ohuuioma`.
1406
+ * @type {string || null}
1407
+ */
1408
+ this.SecurityGroupId = null;
1409
+
1410
+ /**
1411
+ * IP address ID or IP address group ID.
1412
+ * @type {AddressTemplateSpecification || null}
1413
+ */
1414
+ this.AddressTemplate = null;
1415
+
1416
+ /**
1417
+ * ACCEPT or DROP.
1418
+ * @type {string || null}
1419
+ */
1420
+ this.Action = null;
1421
+
1422
+ /**
1423
+ * Security group policy description.
1424
+ * @type {string || null}
1425
+ */
1426
+ this.PolicyDescription = null;
1427
+
1428
+ /**
1429
+ * The last modification time of the security group.
1430
+ * @type {string || null}
1431
+ */
1432
+ this.ModifyTime = null;
1433
+
1434
+ }
1435
+
1436
+ /**
1437
+ * @private
1438
+ */
1439
+ deserialize(params) {
1440
+ if (!params) {
1441
+ return;
1442
+ }
1443
+ this.PolicyIndex = 'PolicyIndex' in params ? params.PolicyIndex : null;
1444
+ this.Protocol = 'Protocol' in params ? params.Protocol : null;
1445
+ this.Port = 'Port' in params ? params.Port : null;
1446
+
1447
+ if (params.ServiceTemplate) {
1448
+ let obj = new ServiceTemplateSpecification();
1449
+ obj.deserialize(params.ServiceTemplate)
1450
+ this.ServiceTemplate = obj;
1451
+ }
1452
+ this.CidrBlock = 'CidrBlock' in params ? params.CidrBlock : null;
1453
+ this.Ipv6CidrBlock = 'Ipv6CidrBlock' in params ? params.Ipv6CidrBlock : null;
1454
+ this.SecurityGroupId = 'SecurityGroupId' in params ? params.SecurityGroupId : null;
1455
+
1456
+ if (params.AddressTemplate) {
1457
+ let obj = new AddressTemplateSpecification();
1458
+ obj.deserialize(params.AddressTemplate)
1459
+ this.AddressTemplate = obj;
1460
+ }
1461
+ this.Action = 'Action' in params ? params.Action : null;
1462
+ this.PolicyDescription = 'PolicyDescription' in params ? params.PolicyDescription : null;
1463
+ this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
1464
+
1465
+ }
1466
+ }
1467
+
1324
1468
  /**
1325
1469
  * DescribeIpGeolocationInfos request structure.
1326
1470
  * @class
@@ -4383,6 +4527,56 @@ class DisassociateVpcEndPointSecurityGroupsRequest extends AbstractModel {
4383
4527
  }
4384
4528
  }
4385
4529
 
4530
+ /**
4531
+ * DescribeIPv6Addresses response structure.
4532
+ * @class
4533
+ */
4534
+ class DescribeIPv6AddressesResponse extends AbstractModel {
4535
+ constructor(){
4536
+ super();
4537
+
4538
+ /**
4539
+ * Number of IPv6 meeting conditions.
4540
+ * @type {number || null}
4541
+ */
4542
+ this.TotalCount = null;
4543
+
4544
+ /**
4545
+ * IPv6 detailed information list.
4546
+ * @type {Array.<Address> || null}
4547
+ */
4548
+ this.AddressSet = null;
4549
+
4550
+ /**
4551
+ * 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.
4552
+ * @type {string || null}
4553
+ */
4554
+ this.RequestId = null;
4555
+
4556
+ }
4557
+
4558
+ /**
4559
+ * @private
4560
+ */
4561
+ deserialize(params) {
4562
+ if (!params) {
4563
+ return;
4564
+ }
4565
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
4566
+
4567
+ if (params.AddressSet) {
4568
+ this.AddressSet = new Array();
4569
+ for (let z in params.AddressSet) {
4570
+ let obj = new Address();
4571
+ obj.deserialize(params.AddressSet[z]);
4572
+ this.AddressSet.push(obj);
4573
+ }
4574
+ }
4575
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
4576
+
4577
+ }
4578
+ }
4579
+
4386
4580
  /**
4387
4581
  * AttachSnapshotInstances request structure.
4388
4582
  * @class
@@ -5101,6 +5295,41 @@ class UnassignIpv6SubnetCidrBlockRequest extends AbstractModel {
5101
5295
  }
5102
5296
  }
5103
5297
 
5298
+ /**
5299
+ * ModifyIPv6AddressesBandwidth request structure.
5300
+ * @class
5301
+ */
5302
+ class ModifyIPv6AddressesBandwidthRequest extends AbstractModel {
5303
+ constructor(){
5304
+ super();
5305
+
5306
+ /**
5307
+ * Unique ID of the EIPv6 address
5308
+ * @type {Array.<string> || null}
5309
+ */
5310
+ this.IPv6AddressIds = null;
5311
+
5312
+ /**
5313
+ * Network bandwidth of the EIPv6 address
5314
+ * @type {number || null}
5315
+ */
5316
+ this.InternetMaxBandwidthOut = null;
5317
+
5318
+ }
5319
+
5320
+ /**
5321
+ * @private
5322
+ */
5323
+ deserialize(params) {
5324
+ if (!params) {
5325
+ return;
5326
+ }
5327
+ this.IPv6AddressIds = 'IPv6AddressIds' in params ? params.IPv6AddressIds : null;
5328
+ this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
5329
+
5330
+ }
5331
+ }
5332
+
5104
5333
  /**
5105
5334
  * DeleteVpcEndPointService response structure.
5106
5335
  * @class
@@ -5852,24 +6081,38 @@ class DescribeFlowLogRequest extends AbstractModel {
5852
6081
  }
5853
6082
 
5854
6083
  /**
5855
- * DescribeAccountAttributes response structure.
6084
+ * DescribeIp6Addresses request structure.
5856
6085
  * @class
5857
6086
  */
5858
- class DescribeAccountAttributesResponse extends AbstractModel {
6087
+ class DescribeIp6AddressesRequest extends AbstractModel {
5859
6088
  constructor(){
5860
6089
  super();
5861
6090
 
5862
6091
  /**
5863
- * User account attribute object
5864
- * @type {Array.<AccountAttribute> || null}
6092
+ * List of unique IDs that identify IPv6 instances. The unique ID of an IPv6 instance is in the format of `eip-11112222`. Parameters `Ip6AddressIds` and `Filters` cannot be specified at the same time.
6093
+ * @type {Array.<string> || null}
5865
6094
  */
5866
- this.AccountAttributeSet = null;
6095
+ this.Ip6AddressIds = null;
5867
6096
 
5868
6097
  /**
5869
- * 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.
5870
- * @type {string || null}
6098
+ * Each request can have up to 10 `Filters` values and 100 `Filter.Values` values. Parameters `AddressIds` and `Filters` cannot be specified at the same time. The specific filter conditions are as follows:
6099
+ <li>address-ip - String - Required: No - (Filter condition) Filter by the IP address of IPv6 instances.</li>
6100
+ <li>network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of ENIs.</li>
6101
+ * @type {Array.<Filter> || null}
5871
6102
  */
5872
- this.RequestId = null;
6103
+ this.Filters = null;
6104
+
6105
+ /**
6106
+ * Offset. Default value: 0. For more information on `Offset`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
6107
+ * @type {number || null}
6108
+ */
6109
+ this.Offset = null;
6110
+
6111
+ /**
6112
+ * Number of returned results. Default value: 20. Maximum value: 100. For more information on `Limit`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
6113
+ * @type {number || null}
6114
+ */
6115
+ this.Limit = null;
5873
6116
 
5874
6117
  }
5875
6118
 
@@ -5880,25 +6123,70 @@ class DescribeAccountAttributesResponse extends AbstractModel {
5880
6123
  if (!params) {
5881
6124
  return;
5882
6125
  }
6126
+ this.Ip6AddressIds = 'Ip6AddressIds' in params ? params.Ip6AddressIds : null;
5883
6127
 
5884
- if (params.AccountAttributeSet) {
5885
- this.AccountAttributeSet = new Array();
5886
- for (let z in params.AccountAttributeSet) {
5887
- let obj = new AccountAttribute();
5888
- obj.deserialize(params.AccountAttributeSet[z]);
5889
- this.AccountAttributeSet.push(obj);
6128
+ if (params.Filters) {
6129
+ this.Filters = new Array();
6130
+ for (let z in params.Filters) {
6131
+ let obj = new Filter();
6132
+ obj.deserialize(params.Filters[z]);
6133
+ this.Filters.push(obj);
5890
6134
  }
5891
6135
  }
5892
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
6136
+ this.Offset = 'Offset' in params ? params.Offset : null;
6137
+ this.Limit = 'Limit' in params ? params.Limit : null;
5893
6138
 
5894
6139
  }
5895
6140
  }
5896
6141
 
5897
6142
  /**
5898
- * ModifyAddressesRenewFlag request structure.
6143
+ * DescribeAccountAttributes response structure.
5899
6144
  * @class
5900
6145
  */
5901
- class ModifyAddressesRenewFlagRequest extends AbstractModel {
6146
+ class DescribeAccountAttributesResponse extends AbstractModel {
6147
+ constructor(){
6148
+ super();
6149
+
6150
+ /**
6151
+ * User account attribute object
6152
+ * @type {Array.<AccountAttribute> || null}
6153
+ */
6154
+ this.AccountAttributeSet = null;
6155
+
6156
+ /**
6157
+ * 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.
6158
+ * @type {string || null}
6159
+ */
6160
+ this.RequestId = null;
6161
+
6162
+ }
6163
+
6164
+ /**
6165
+ * @private
6166
+ */
6167
+ deserialize(params) {
6168
+ if (!params) {
6169
+ return;
6170
+ }
6171
+
6172
+ if (params.AccountAttributeSet) {
6173
+ this.AccountAttributeSet = new Array();
6174
+ for (let z in params.AccountAttributeSet) {
6175
+ let obj = new AccountAttribute();
6176
+ obj.deserialize(params.AccountAttributeSet[z]);
6177
+ this.AccountAttributeSet.push(obj);
6178
+ }
6179
+ }
6180
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6181
+
6182
+ }
6183
+ }
6184
+
6185
+ /**
6186
+ * ModifyAddressesRenewFlag request structure.
6187
+ * @class
6188
+ */
6189
+ class ModifyAddressesRenewFlagRequest extends AbstractModel {
5902
6190
  constructor(){
5903
6191
  super();
5904
6192
 
@@ -6377,6 +6665,48 @@ class ModifyAddressInternetChargeTypeRequest extends AbstractModel {
6377
6665
  }
6378
6666
  }
6379
6667
 
6668
+ /**
6669
+ * ModifyIp6AddressesBandwidth request structure.
6670
+ * @class
6671
+ */
6672
+ class ModifyIp6AddressesBandwidthRequest extends AbstractModel {
6673
+ constructor(){
6674
+ super();
6675
+
6676
+ /**
6677
+ * Modified target bandwidth, in Mbps.
6678
+ * @type {number || null}
6679
+ */
6680
+ this.InternetMaxBandwidthOut = null;
6681
+
6682
+ /**
6683
+ * IPv6 addresses. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
6684
+ * @type {Array.<string> || null}
6685
+ */
6686
+ this.Ip6Addresses = null;
6687
+
6688
+ /**
6689
+ * Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
6690
+ * @type {Array.<string> || null}
6691
+ */
6692
+ this.Ip6AddressIds = null;
6693
+
6694
+ }
6695
+
6696
+ /**
6697
+ * @private
6698
+ */
6699
+ deserialize(params) {
6700
+ if (!params) {
6701
+ return;
6702
+ }
6703
+ this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
6704
+ this.Ip6Addresses = 'Ip6Addresses' in params ? params.Ip6Addresses : null;
6705
+ this.Ip6AddressIds = 'Ip6AddressIds' in params ? params.Ip6AddressIds : null;
6706
+
6707
+ }
6708
+ }
6709
+
6380
6710
  /**
6381
6711
  * CreateLocalGateway request structure.
6382
6712
  * @class
@@ -7567,6 +7897,48 @@ class DescribeVpcResourceDashboardResponse extends AbstractModel {
7567
7897
  }
7568
7898
  }
7569
7899
 
7900
+ /**
7901
+ * AllocateIp6AddressesBandwidth response structure.
7902
+ * @class
7903
+ */
7904
+ class AllocateIp6AddressesBandwidthResponse extends AbstractModel {
7905
+ constructor(){
7906
+ super();
7907
+
7908
+ /**
7909
+ * List of unique IDs of Classic elastic Public IPv6 instances.
7910
+ * @type {Array.<string> || null}
7911
+ */
7912
+ this.AddressSet = null;
7913
+
7914
+ /**
7915
+ * Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
7916
+ * @type {string || null}
7917
+ */
7918
+ this.TaskId = null;
7919
+
7920
+ /**
7921
+ * 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.
7922
+ * @type {string || null}
7923
+ */
7924
+ this.RequestId = null;
7925
+
7926
+ }
7927
+
7928
+ /**
7929
+ * @private
7930
+ */
7931
+ deserialize(params) {
7932
+ if (!params) {
7933
+ return;
7934
+ }
7935
+ this.AddressSet = 'AddressSet' in params ? params.AddressSet : null;
7936
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
7937
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7938
+
7939
+ }
7940
+ }
7941
+
7570
7942
  /**
7571
7943
  * DescribeNetDetectStates request structure.
7572
7944
  * @class
@@ -8826,36 +9198,30 @@ class CreateAddressTemplateGroupRequest extends AbstractModel {
8826
9198
  }
8827
9199
 
8828
9200
  /**
8829
- * DescribeNatGatewayDirectConnectGatewayRoute request structure.
9201
+ * AssociateIPv6Address request structure.
8830
9202
  * @class
8831
9203
  */
8832
- class DescribeNatGatewayDirectConnectGatewayRouteRequest extends AbstractModel {
9204
+ class AssociateIPv6AddressRequest extends AbstractModel {
8833
9205
  constructor(){
8834
9206
  super();
8835
9207
 
8836
9208
  /**
8837
- * Unique ID of the NAT gateway
9209
+ * Unique ID of the EIPv6, such as eipv6-11112222.
8838
9210
  * @type {string || null}
8839
9211
  */
8840
- this.NatGatewayId = null;
9212
+ this.IPv6AddressId = null;
8841
9213
 
8842
9214
  /**
8843
- * Unique ID of VPC
9215
+ * ID of the ENI to be bound, such as eni-11112222. NetworkInterfaceId and InstanceId cannot be specified at the same time. The ENI ID can be queried by logging in to the console or obtained from the networkInterfaceId field in the returned value of the DescribeNetworkInterfaces API.
8844
9216
  * @type {string || null}
8845
9217
  */
8846
- this.VpcId = null;
8847
-
8848
- /**
8849
- * Valid range: 0-200
8850
- * @type {number || null}
8851
- */
8852
- this.Limit = null;
9218
+ this.NetworkInterfaceId = null;
8853
9219
 
8854
9220
  /**
8855
- * Greater than 0
8856
- * @type {number || null}
9221
+ * Private IPv6 to be bound. If NetworkInterfaceId is specified, PrivateIPv6Address must also be specified, which indicates that the EIP will be bound to the specified private IPv6 of the specified ENI. At the same time, it shall be ensured that the specified PrivateIPv6Address is a private IPv6 on the specified NetworkInterfaceId. The specified ENI's private IPv6 can be queried by logging in to the console or obtained from the Ipv6AddressSet.Address field in the returned value of the DescribeNetworkInterfaces API.
9222
+ * @type {string || null}
8857
9223
  */
8858
- this.Offset = null;
9224
+ this.PrivateIPv6Address = null;
8859
9225
 
8860
9226
  }
8861
9227
 
@@ -8866,10 +9232,9 @@ class DescribeNatGatewayDirectConnectGatewayRouteRequest extends AbstractModel
8866
9232
  if (!params) {
8867
9233
  return;
8868
9234
  }
8869
- this.NatGatewayId = 'NatGatewayId' in params ? params.NatGatewayId : null;
8870
- this.VpcId = 'VpcId' in params ? params.VpcId : null;
8871
- this.Limit = 'Limit' in params ? params.Limit : null;
8872
- this.Offset = 'Offset' in params ? params.Offset : null;
9235
+ this.IPv6AddressId = 'IPv6AddressId' in params ? params.IPv6AddressId : null;
9236
+ this.NetworkInterfaceId = 'NetworkInterfaceId' in params ? params.NetworkInterfaceId : null;
9237
+ this.PrivateIPv6Address = 'PrivateIPv6Address' in params ? params.PrivateIPv6Address : null;
8873
9238
 
8874
9239
  }
8875
9240
  }
@@ -9576,24 +9941,30 @@ class AssociateNetworkAclSubnetsRequest extends AbstractModel {
9576
9941
  }
9577
9942
 
9578
9943
  /**
9579
- * AdjustPublicAddress response structure.
9944
+ * CheckAssistantCidr request structure.
9580
9945
  * @class
9581
9946
  */
9582
- class AdjustPublicAddressResponse extends AbstractModel {
9947
+ class CheckAssistantCidrRequest extends AbstractModel {
9583
9948
  constructor(){
9584
9949
  super();
9585
9950
 
9586
9951
  /**
9587
- * The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
9588
- * @type {number || null}
9952
+ * `VPC` instance `ID`, e.g. `vpc-6v2ht8q5`.
9953
+ * @type {string || null}
9589
9954
  */
9590
- this.TaskId = null;
9955
+ this.VpcId = null;
9591
9956
 
9592
9957
  /**
9593
- * 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.
9594
- * @type {string || null}
9958
+ * Load CIDR blocks to add. CIDR block set; format: e.g. ["10.0.0.0/16", "172.16.0.0/16"]
9959
+ * @type {Array.<string> || null}
9595
9960
  */
9596
- this.RequestId = null;
9961
+ this.NewCidrBlocks = null;
9962
+
9963
+ /**
9964
+ * Load CIDR blocks to delete. CIDR block set; Format: e.g. ["10.0.0.0/16", "172.16.0.0/16"]
9965
+ * @type {Array.<string> || null}
9966
+ */
9967
+ this.OldCidrBlocks = null;
9597
9968
 
9598
9969
  }
9599
9970
 
@@ -9604,8 +9975,9 @@ class AdjustPublicAddressResponse extends AbstractModel {
9604
9975
  if (!params) {
9605
9976
  return;
9606
9977
  }
9607
- this.TaskId = 'TaskId' in params ? params.TaskId : null;
9608
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
9978
+ this.VpcId = 'VpcId' in params ? params.VpcId : null;
9979
+ this.NewCidrBlocks = 'NewCidrBlocks' in params ? params.NewCidrBlocks : null;
9980
+ this.OldCidrBlocks = 'OldCidrBlocks' in params ? params.OldCidrBlocks : null;
9609
9981
 
9610
9982
  }
9611
9983
  }
@@ -9651,79 +10023,18 @@ class RenewVpnGatewayRequest extends AbstractModel {
9651
10023
  }
9652
10024
 
9653
10025
  /**
9654
- * Security group policy object
10026
+ * AssociateIPv6Address response structure.
9655
10027
  * @class
9656
10028
  */
9657
- class SecurityGroupPolicy extends AbstractModel {
10029
+ class AssociateIPv6AddressResponse extends AbstractModel {
9658
10030
  constructor(){
9659
10031
  super();
9660
10032
 
9661
10033
  /**
9662
- * The index number of security group rules, which dynamically changes with the rules. This parameter can be obtained via the `DescribeSecurityGroupPolicies` API and used with the `Version` field in the returned value of the API.
9663
- * @type {number || null}
9664
- */
9665
- this.PolicyIndex = null;
9666
-
9667
- /**
9668
- * Protocol. Valid values: TCP, UDP, ICMP, ICMPv6, ALL.
9669
- * @type {string || null}
9670
- */
9671
- this.Protocol = null;
9672
-
9673
- /**
9674
- * Port (`all`, a single port, or a port range).
9675
- Note: If the `Protocol` value is set to `ALL`, the `Port` value also needs to be set to `all`.
9676
- * @type {string || null}
9677
- */
9678
- this.Port = null;
9679
-
9680
- /**
9681
- * Protocol port ID or protocol port group ID. ServiceTemplate and Protocol+Port are mutually exclusive.
9682
- * @type {ServiceTemplateSpecification || null}
9683
- */
9684
- this.ServiceTemplate = null;
9685
-
9686
- /**
9687
- * Either `CidrBlock` or `Ipv6CidrBlock can be specified. Note that if `0.0.0.0/n` is entered, it is mapped to 0.0.0.0/0.
9688
- * @type {string || null}
9689
- */
9690
- this.CidrBlock = null;
9691
-
9692
- /**
9693
- * The CIDR block or IPv6 (mutually exclusive).
9694
- * @type {string || null}
9695
- */
9696
- this.Ipv6CidrBlock = null;
9697
-
9698
- /**
9699
- * The security group instance ID, such as `sg-ohuuioma`.
9700
- * @type {string || null}
9701
- */
9702
- this.SecurityGroupId = null;
9703
-
9704
- /**
9705
- * IP address ID or IP address group ID.
9706
- * @type {AddressTemplateSpecification || null}
9707
- */
9708
- this.AddressTemplate = null;
9709
-
9710
- /**
9711
- * ACCEPT or DROP.
9712
- * @type {string || null}
9713
- */
9714
- this.Action = null;
9715
-
9716
- /**
9717
- * Security group policy description.
9718
- * @type {string || null}
9719
- */
9720
- this.PolicyDescription = null;
9721
-
9722
- /**
9723
- * The last modification time of the security group.
10034
+ * 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.
9724
10035
  * @type {string || null}
9725
10036
  */
9726
- this.ModifyTime = null;
10037
+ this.RequestId = null;
9727
10038
 
9728
10039
  }
9729
10040
 
@@ -9734,27 +10045,7 @@ Note: If the `Protocol` value is set to `ALL`, the `Port` value also needs to be
9734
10045
  if (!params) {
9735
10046
  return;
9736
10047
  }
9737
- this.PolicyIndex = 'PolicyIndex' in params ? params.PolicyIndex : null;
9738
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
9739
- this.Port = 'Port' in params ? params.Port : null;
9740
-
9741
- if (params.ServiceTemplate) {
9742
- let obj = new ServiceTemplateSpecification();
9743
- obj.deserialize(params.ServiceTemplate)
9744
- this.ServiceTemplate = obj;
9745
- }
9746
- this.CidrBlock = 'CidrBlock' in params ? params.CidrBlock : null;
9747
- this.Ipv6CidrBlock = 'Ipv6CidrBlock' in params ? params.Ipv6CidrBlock : null;
9748
- this.SecurityGroupId = 'SecurityGroupId' in params ? params.SecurityGroupId : null;
9749
-
9750
- if (params.AddressTemplate) {
9751
- let obj = new AddressTemplateSpecification();
9752
- obj.deserialize(params.AddressTemplate)
9753
- this.AddressTemplate = obj;
9754
- }
9755
- this.Action = 'Action' in params ? params.Action : null;
9756
- this.PolicyDescription = 'PolicyDescription' in params ? params.PolicyDescription : null;
9757
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
10048
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
9758
10049
 
9759
10050
  }
9760
10051
  }
@@ -11079,15 +11370,43 @@ class DeleteVpnConnectionResponse extends AbstractModel {
11079
11370
  }
11080
11371
 
11081
11372
  /**
11082
- * DescribeBandwidthPackageResources request structure.
11373
+ * ReleaseIPv6Addresses response structure.
11083
11374
  * @class
11084
11375
  */
11085
- class DescribeBandwidthPackageResourcesRequest extends AbstractModel {
11376
+ class ReleaseIPv6AddressesResponse extends AbstractModel {
11086
11377
  constructor(){
11087
11378
  super();
11088
11379
 
11089
11380
  /**
11090
- * Unique ID of the bandwidth package in the form of `bwp-11112222`.
11381
+ * 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.
11382
+ * @type {string || null}
11383
+ */
11384
+ this.RequestId = null;
11385
+
11386
+ }
11387
+
11388
+ /**
11389
+ * @private
11390
+ */
11391
+ deserialize(params) {
11392
+ if (!params) {
11393
+ return;
11394
+ }
11395
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
11396
+
11397
+ }
11398
+ }
11399
+
11400
+ /**
11401
+ * DescribeBandwidthPackageResources request structure.
11402
+ * @class
11403
+ */
11404
+ class DescribeBandwidthPackageResourcesRequest extends AbstractModel {
11405
+ constructor(){
11406
+ super();
11407
+
11408
+ /**
11409
+ * Unique ID of the bandwidth package in the form of `bwp-11112222`.
11091
11410
  * @type {string || null}
11092
11411
  */
11093
11412
  this.BandwidthPackageId = null;
@@ -11210,24 +11529,18 @@ Note: This field may return null, indicating no valid value.
11210
11529
  }
11211
11530
 
11212
11531
  /**
11213
- * DescribeCcnAttachedInstances response structure.
11532
+ * CreateFlowLog response structure.
11214
11533
  * @class
11215
11534
  */
11216
- class DescribeCcnAttachedInstancesResponse extends AbstractModel {
11535
+ class CreateFlowLogResponse extends AbstractModel {
11217
11536
  constructor(){
11218
11537
  super();
11219
11538
 
11220
11539
  /**
11221
- * The number of objects meeting the condition.
11222
- * @type {number || null}
11223
- */
11224
- this.TotalCount = null;
11225
-
11226
- /**
11227
- * The list of associated instances.
11228
- * @type {Array.<CcnAttachedInstance> || null}
11540
+ * The information of the flow log created.
11541
+ * @type {Array.<FlowLog> || null}
11229
11542
  */
11230
- this.InstanceSet = null;
11543
+ this.FlowLog = null;
11231
11544
 
11232
11545
  /**
11233
11546
  * 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.
@@ -11244,14 +11557,13 @@ class DescribeCcnAttachedInstancesResponse extends AbstractModel {
11244
11557
  if (!params) {
11245
11558
  return;
11246
11559
  }
11247
- this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
11248
11560
 
11249
- if (params.InstanceSet) {
11250
- this.InstanceSet = new Array();
11251
- for (let z in params.InstanceSet) {
11252
- let obj = new CcnAttachedInstance();
11253
- obj.deserialize(params.InstanceSet[z]);
11254
- this.InstanceSet.push(obj);
11561
+ if (params.FlowLog) {
11562
+ this.FlowLog = new Array();
11563
+ for (let z in params.FlowLog) {
11564
+ let obj = new FlowLog();
11565
+ obj.deserialize(params.FlowLog[z]);
11566
+ this.FlowLog.push(obj);
11255
11567
  }
11256
11568
  }
11257
11569
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
@@ -11533,6 +11845,41 @@ class DetachNetworkInterfaceResponse extends AbstractModel {
11533
11845
  }
11534
11846
  }
11535
11847
 
11848
+ /**
11849
+ * DisassociateIPv6Address request structure.
11850
+ * @class
11851
+ */
11852
+ class DisassociateIPv6AddressRequest extends AbstractModel {
11853
+ constructor(){
11854
+ super();
11855
+
11856
+ /**
11857
+ * Indicates the unique ID of the EIPv6, such as eipv6-11112222.
11858
+ * @type {string || null}
11859
+ */
11860
+ this.IPv6AddressId = null;
11861
+
11862
+ /**
11863
+ * Indicates whether to keep the ENI bound when unbinding.
11864
+ * @type {boolean || null}
11865
+ */
11866
+ this.KeepBindWithEni = null;
11867
+
11868
+ }
11869
+
11870
+ /**
11871
+ * @private
11872
+ */
11873
+ deserialize(params) {
11874
+ if (!params) {
11875
+ return;
11876
+ }
11877
+ this.IPv6AddressId = 'IPv6AddressId' in params ? params.IPv6AddressId : null;
11878
+ this.KeepBindWithEni = 'KeepBindWithEni' in params ? params.KeepBindWithEni : null;
11879
+
11880
+ }
11881
+ }
11882
+
11536
11883
  /**
11537
11884
  * ResetRoutes response structure.
11538
11885
  * @class
@@ -12374,18 +12721,24 @@ class DescribeSnapshotFilesResponse extends AbstractModel {
12374
12721
  }
12375
12722
 
12376
12723
  /**
12377
- * DescribeVpcPrivateIpAddresses response structure.
12724
+ * DescribeCcnAttachedInstances response structure.
12378
12725
  * @class
12379
12726
  */
12380
- class DescribeVpcPrivateIpAddressesResponse extends AbstractModel {
12727
+ class DescribeCcnAttachedInstancesResponse extends AbstractModel {
12381
12728
  constructor(){
12382
12729
  super();
12383
12730
 
12384
12731
  /**
12385
- * The list of private `IP` address information.
12386
- * @type {Array.<VpcPrivateIpAddress> || null}
12732
+ * The number of objects meeting the condition.
12733
+ * @type {number || null}
12387
12734
  */
12388
- this.VpcPrivateIpAddressSet = null;
12735
+ this.TotalCount = null;
12736
+
12737
+ /**
12738
+ * The list of associated instances.
12739
+ * @type {Array.<CcnAttachedInstance> || null}
12740
+ */
12741
+ this.InstanceSet = null;
12389
12742
 
12390
12743
  /**
12391
12744
  * 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.
@@ -12402,13 +12755,14 @@ class DescribeVpcPrivateIpAddressesResponse extends AbstractModel {
12402
12755
  if (!params) {
12403
12756
  return;
12404
12757
  }
12758
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
12405
12759
 
12406
- if (params.VpcPrivateIpAddressSet) {
12407
- this.VpcPrivateIpAddressSet = new Array();
12408
- for (let z in params.VpcPrivateIpAddressSet) {
12409
- let obj = new VpcPrivateIpAddress();
12410
- obj.deserialize(params.VpcPrivateIpAddressSet[z]);
12411
- this.VpcPrivateIpAddressSet.push(obj);
12760
+ if (params.InstanceSet) {
12761
+ this.InstanceSet = new Array();
12762
+ for (let z in params.InstanceSet) {
12763
+ let obj = new CcnAttachedInstance();
12764
+ obj.deserialize(params.InstanceSet[z]);
12765
+ this.InstanceSet.push(obj);
12412
12766
  }
12413
12767
  }
12414
12768
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
@@ -12813,6 +13167,56 @@ class CreateBandwidthPackageRequest extends AbstractModel {
12813
13167
  }
12814
13168
  }
12815
13169
 
13170
+ /**
13171
+ * DescribeIp6Addresses response structure.
13172
+ * @class
13173
+ */
13174
+ class DescribeIp6AddressesResponse extends AbstractModel {
13175
+ constructor(){
13176
+ super();
13177
+
13178
+ /**
13179
+ * Number of IPv6 meeting conditions.
13180
+ * @type {number || null}
13181
+ */
13182
+ this.TotalCount = null;
13183
+
13184
+ /**
13185
+ * IPv6 detailed information list.
13186
+ * @type {Array.<Address> || null}
13187
+ */
13188
+ this.AddressSet = null;
13189
+
13190
+ /**
13191
+ * 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.
13192
+ * @type {string || null}
13193
+ */
13194
+ this.RequestId = null;
13195
+
13196
+ }
13197
+
13198
+ /**
13199
+ * @private
13200
+ */
13201
+ deserialize(params) {
13202
+ if (!params) {
13203
+ return;
13204
+ }
13205
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
13206
+
13207
+ if (params.AddressSet) {
13208
+ this.AddressSet = new Array();
13209
+ for (let z in params.AddressSet) {
13210
+ let obj = new Address();
13211
+ obj.deserialize(params.AddressSet[z]);
13212
+ this.AddressSet.push(obj);
13213
+ }
13214
+ }
13215
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13216
+
13217
+ }
13218
+ }
13219
+
12816
13220
  /**
12817
13221
  * ModifyRouteTableAttribute request structure.
12818
13222
  * @class
@@ -13027,6 +13431,41 @@ class InternetPrice extends AbstractModel {
13027
13431
  }
13028
13432
  }
13029
13433
 
13434
+ /**
13435
+ * ModifyIp6AddressesBandwidth response structure.
13436
+ * @class
13437
+ */
13438
+ class ModifyIp6AddressesBandwidthResponse extends AbstractModel {
13439
+ constructor(){
13440
+ super();
13441
+
13442
+ /**
13443
+ * Task ID.
13444
+ * @type {string || null}
13445
+ */
13446
+ this.TaskId = null;
13447
+
13448
+ /**
13449
+ * 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.
13450
+ * @type {string || null}
13451
+ */
13452
+ this.RequestId = null;
13453
+
13454
+ }
13455
+
13456
+ /**
13457
+ * @private
13458
+ */
13459
+ deserialize(params) {
13460
+ if (!params) {
13461
+ return;
13462
+ }
13463
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
13464
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
13465
+
13466
+ }
13467
+ }
13468
+
13030
13469
  /**
13031
13470
  * CreateSubnets request structure.
13032
13471
  * @class
@@ -14204,36 +14643,62 @@ class DeleteDirectConnectGatewayResponse extends AbstractModel {
14204
14643
  }
14205
14644
 
14206
14645
  /**
14207
- * ModifyAddressesBandwidth request structure.
14646
+ * DescribeIPv6Addresses request structure.
14208
14647
  * @class
14209
14648
  */
14210
- class ModifyAddressesBandwidthRequest extends AbstractModel {
14649
+ class DescribeIPv6AddressesRequest extends AbstractModel {
14211
14650
  constructor(){
14212
14651
  super();
14213
14652
 
14214
14653
  /**
14215
- * List of EIP IDs, such as “eip-xxxx”.
14654
+ * Unique ID column identifying IPv6.
14655
+
14656
+ - Unique ID of the traditional EIPv6, such as `eip-11112222`
14657
+ - Unique ID of the EIPv6, such as `eipv6-11112222`
14658
+
14659
+ Note: `IPv6AddressIds` and `Filters` cannot be specified at the same time.
14216
14660
  * @type {Array.<string> || null}
14217
14661
  */
14218
- this.AddressIds = null;
14662
+ this.IPv6AddressIds = null;
14663
+
14664
+ /**
14665
+ * Each request can have up to 10 `Filters` and 100 `Filter.Values`. `IPv6AddressIds` and `Filters` cannot be specified at the same time. The detailed filter conditions are as follows:
14666
+
14667
+ - address-id - String - Required: No - (Filter condition) Filter by the unique ID of the EIPv6.
14668
+ - public-ipv6-address - String - Required: No - (Filter condition) Filter by the public IPv6 address.
14669
+ - network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of the ENI.
14670
+ - instance-id - String - Required: No - (Filter condition) Filter by the unique ID of the bound instance.
14671
+ - charge-type - String - Required: No - (Filter condition) Filter by the billing type.
14672
+ - private-ipv6-address - String - Required: No - (Filter condition) Filter by the bound private IPv6 address.
14673
+ - egress - String - Required: No - (Filter condition) Filter by the egress.
14674
+ - address-type - String - Required: No - (Filter condition) Filter by the IPv6 type. Valid values: 'EIP6', 'EIPv6', 'WanIPv6', and 'HighQualityEIPv6'. Default: 'EIPv6'.
14675
+ - address-isp - String - Required: No - (Filter condition) Filter by the ISP type. Valid values: 'BGP', 'CMCC', 'CUCC', and 'CTCC'.
14676
+ - address-status - String - Required: No - (Filter condition) Filter by the EIP status. Valid values: 'CREATING', 'BINDING', 'BIND', 'UNBINDING', 'UNBIND', 'OFFLINING', 'BIND_ENI', and 'PRIVATE'.
14677
+ - address-name - String - Required: No - (Filter condition) Filter by the EIP name. Fuzzy filtering is not supported.
14678
+ - tag-key - String - Required: No - (Filter condition) Filter by the tag key.
14679
+ - tag-value - String - Required: No - (Filter condition) Filter by the tag value.
14680
+ - tag:tag-key - String - Required: No - (Filter condition) Filter by the tag-key - value pair. Replace tag-key with a specific tag key.
14681
+ * @type {Array.<Filter> || null}
14682
+ */
14683
+ this.Filters = null;
14219
14684
 
14220
14685
  /**
14221
- * Target bandwidth value adjustment
14222
- * @type {number || null}
14686
+ * Indicates whether to query the traditional IPv6 address information.
14687
+ * @type {boolean || null}
14223
14688
  */
14224
- this.InternetMaxBandwidthOut = null;
14689
+ this.Traditional = null;
14225
14690
 
14226
14691
  /**
14227
- * (Disused) The start time of the monthly bandwidth subscription
14228
- * @type {string || null}
14692
+ * Offset. Default: 0. For more information on Offset, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
14693
+ * @type {number || null}
14229
14694
  */
14230
- this.StartTime = null;
14695
+ this.Offset = null;
14231
14696
 
14232
14697
  /**
14233
- * (Disused) The end time of the monthly bandwidth subscription
14234
- * @type {string || null}
14698
+ * Number of returned results. Default: 20. Maximum: 100. For more information on Limit, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
14699
+ * @type {number || null}
14235
14700
  */
14236
- this.EndTime = null;
14701
+ this.Limit = null;
14237
14702
 
14238
14703
  }
14239
14704
 
@@ -14244,10 +14709,19 @@ class ModifyAddressesBandwidthRequest extends AbstractModel {
14244
14709
  if (!params) {
14245
14710
  return;
14246
14711
  }
14247
- this.AddressIds = 'AddressIds' in params ? params.AddressIds : null;
14248
- this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
14249
- this.StartTime = 'StartTime' in params ? params.StartTime : null;
14250
- this.EndTime = 'EndTime' in params ? params.EndTime : null;
14712
+ this.IPv6AddressIds = 'IPv6AddressIds' in params ? params.IPv6AddressIds : null;
14713
+
14714
+ if (params.Filters) {
14715
+ this.Filters = new Array();
14716
+ for (let z in params.Filters) {
14717
+ let obj = new Filter();
14718
+ obj.deserialize(params.Filters[z]);
14719
+ this.Filters.push(obj);
14720
+ }
14721
+ }
14722
+ this.Traditional = 'Traditional' in params ? params.Traditional : null;
14723
+ this.Offset = 'Offset' in params ? params.Offset : null;
14724
+ this.Limit = 'Limit' in params ? params.Limit : null;
14251
14725
 
14252
14726
  }
14253
14727
  }
@@ -14858,6 +15332,130 @@ class ModifyVpnGatewayAttributeResponse extends AbstractModel {
14858
15332
  }
14859
15333
  }
14860
15334
 
15335
+ /**
15336
+ * AllocateIPv6Addresses request structure.
15337
+ * @class
15338
+ */
15339
+ class AllocateIPv6AddressesRequest extends AbstractModel {
15340
+ constructor(){
15341
+ super();
15342
+
15343
+ /**
15344
+ * EIPv6 name, which is the custom EIPv6 name given by the user when the user applies for the EIPv6. Default: not named.
15345
+ * @type {string || null}
15346
+ */
15347
+ this.AddressName = null;
15348
+
15349
+ /**
15350
+ * Indicates the type of EIPv6. Valid values:
15351
+
15352
+ - EIPv6: common IPv6
15353
+ - HighQualityEIPv6: dedicated IPv6
15354
+ Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
15355
+
15356
+ Default: EIPv6.
15357
+ * @type {string || null}
15358
+ */
15359
+ this.AddressType = null;
15360
+
15361
+ /**
15362
+ * Number of applied EIPv6 addresses. Default: 1.
15363
+ * @type {number || null}
15364
+ */
15365
+ this.AddressCount = null;
15366
+
15367
+ /**
15368
+ * Indicates the billing method of EIPv6. Valid values:
15369
+
15370
+ - BANDWIDTH_PACKAGE: billed by [Bandwidth Package](https://intl.cloud.tencent.com/document/product/684/15255?from_cn_redirect=1)
15371
+ - TRAFFIC_POSTPAID_BY_HOUR: postpaid by traffic on an hourly basis
15372
+
15373
+ Default: TRAFFIC_POSTPAID_BY_HOUR.
15374
+ * @type {string || null}
15375
+ */
15376
+ this.InternetChargeType = null;
15377
+
15378
+ /**
15379
+ * Indicates the type of EIPv6 line. Default: BGP.
15380
+
15381
+ For a user who has enabled the static single-line IP allowlist, valid values include:
15382
+ - CMCC: China Mobile
15383
+ - CTCC: China Telecom
15384
+ - CUCC: China Unicom
15385
+ Note: The static single-line IP is only supported in some regions.
15386
+ * @type {string || null}
15387
+ */
15388
+ this.InternetServiceProvider = null;
15389
+
15390
+ /**
15391
+ * EIPv6 bandwidth cap, in Mbps.
15392
+
15393
+ Valid values depend on the EIP billing method:
15394
+
15395
+ - BANDWIDTH_PACKAGE: 1 Mbps to 2000 Mbps
15396
+ - TRAFFIC_POSTPAID_BY_HOUR: 1 Mbps to 100 Mbps
15397
+
15398
+ Default: 1 Mbps.
15399
+ * @type {number || null}
15400
+ */
15401
+ this.InternetMaxBandwidthOut = null;
15402
+
15403
+ /**
15404
+ * Unique ID of the bandwidth package.
15405
+ Setting this parameter and having InternetChargeType as BANDWIDTH_PACKAGE indicate that the created EIP will join this BGP bandwidth package and the billing method of bandwidth package will be adopted.
15406
+ * @type {string || null}
15407
+ */
15408
+ this.BandwidthPackageId = null;
15409
+
15410
+ /**
15411
+ * List of tags to be associated.
15412
+ * @type {Array.<Tag> || null}
15413
+ */
15414
+ this.Tags = null;
15415
+
15416
+ /**
15417
+ * EIPv6 network egress. Valid values:
15418
+
15419
+ - CENTER_EGRESS_1: Central egress point 1
15420
+ - CENTER_EGRESS_2: Central egress point 2
15421
+ - CENTER_EGRESS_3: Central egress point 3
15422
+ Note: The network egress for different Internet Service Providers (ISPs) or resource types requires contacting the product team for enablement.
15423
+
15424
+ Default: CENTER_EGRESS_1.
15425
+ * @type {string || null}
15426
+ */
15427
+ this.Egress = null;
15428
+
15429
+ }
15430
+
15431
+ /**
15432
+ * @private
15433
+ */
15434
+ deserialize(params) {
15435
+ if (!params) {
15436
+ return;
15437
+ }
15438
+ this.AddressName = 'AddressName' in params ? params.AddressName : null;
15439
+ this.AddressType = 'AddressType' in params ? params.AddressType : null;
15440
+ this.AddressCount = 'AddressCount' in params ? params.AddressCount : null;
15441
+ this.InternetChargeType = 'InternetChargeType' in params ? params.InternetChargeType : null;
15442
+ this.InternetServiceProvider = 'InternetServiceProvider' in params ? params.InternetServiceProvider : null;
15443
+ this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
15444
+ this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
15445
+
15446
+ if (params.Tags) {
15447
+ this.Tags = new Array();
15448
+ for (let z in params.Tags) {
15449
+ let obj = new Tag();
15450
+ obj.deserialize(params.Tags[z]);
15451
+ this.Tags.push(obj);
15452
+ }
15453
+ }
15454
+ this.Egress = 'Egress' in params ? params.Egress : null;
15455
+
15456
+ }
15457
+ }
15458
+
14861
15459
  /**
14862
15460
  * AssociateDirectConnectGatewayNatGateway response structure.
14863
15461
  * @class
@@ -15360,18 +15958,12 @@ class ModifyVpcEndPointServiceWhiteListRequest extends AbstractModel {
15360
15958
  }
15361
15959
 
15362
15960
  /**
15363
- * CreateFlowLog response structure.
15961
+ * MigrateNetworkInterface response structure.
15364
15962
  * @class
15365
15963
  */
15366
- class CreateFlowLogResponse extends AbstractModel {
15367
- constructor(){
15368
- super();
15369
-
15370
- /**
15371
- * The information of the flow log created.
15372
- * @type {Array.<FlowLog> || null}
15373
- */
15374
- this.FlowLog = null;
15964
+ class MigrateNetworkInterfaceResponse extends AbstractModel {
15965
+ constructor(){
15966
+ super();
15375
15967
 
15376
15968
  /**
15377
15969
  * 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.
@@ -15388,15 +15980,6 @@ class CreateFlowLogResponse extends AbstractModel {
15388
15980
  if (!params) {
15389
15981
  return;
15390
15982
  }
15391
-
15392
- if (params.FlowLog) {
15393
- this.FlowLog = new Array();
15394
- for (let z in params.FlowLog) {
15395
- let obj = new FlowLog();
15396
- obj.deserialize(params.FlowLog[z]);
15397
- this.FlowLog.push(obj);
15398
- }
15399
- }
15400
15983
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
15401
15984
 
15402
15985
  }
@@ -19403,6 +19986,55 @@ class DescribeNetworkAclsResponse extends AbstractModel {
19403
19986
  }
19404
19987
  }
19405
19988
 
19989
+ /**
19990
+ * DescribeNatGatewayDirectConnectGatewayRoute request structure.
19991
+ * @class
19992
+ */
19993
+ class DescribeNatGatewayDirectConnectGatewayRouteRequest extends AbstractModel {
19994
+ constructor(){
19995
+ super();
19996
+
19997
+ /**
19998
+ * Unique ID of the NAT gateway
19999
+ * @type {string || null}
20000
+ */
20001
+ this.NatGatewayId = null;
20002
+
20003
+ /**
20004
+ * Unique ID of VPC
20005
+ * @type {string || null}
20006
+ */
20007
+ this.VpcId = null;
20008
+
20009
+ /**
20010
+ * Valid range: 0-200
20011
+ * @type {number || null}
20012
+ */
20013
+ this.Limit = null;
20014
+
20015
+ /**
20016
+ * Greater than 0
20017
+ * @type {number || null}
20018
+ */
20019
+ this.Offset = null;
20020
+
20021
+ }
20022
+
20023
+ /**
20024
+ * @private
20025
+ */
20026
+ deserialize(params) {
20027
+ if (!params) {
20028
+ return;
20029
+ }
20030
+ this.NatGatewayId = 'NatGatewayId' in params ? params.NatGatewayId : null;
20031
+ this.VpcId = 'VpcId' in params ? params.VpcId : null;
20032
+ this.Limit = 'Limit' in params ? params.Limit : null;
20033
+ this.Offset = 'Offset' in params ? params.Offset : null;
20034
+
20035
+ }
20036
+ }
20037
+
19406
20038
  /**
19407
20039
  * DeleteFlowLog response structure.
19408
20040
  * @class
@@ -19868,6 +20500,48 @@ class AccountAttribute extends AbstractModel {
19868
20500
  }
19869
20501
  }
19870
20502
 
20503
+ /**
20504
+ * AllocateIPv6Addresses response structure.
20505
+ * @class
20506
+ */
20507
+ class AllocateIPv6AddressesResponse extends AbstractModel {
20508
+ constructor(){
20509
+ super();
20510
+
20511
+ /**
20512
+ * List of unique IDs of applied EIPv6 addresses.
20513
+ * @type {Array.<string> || null}
20514
+ */
20515
+ this.AddressSet = null;
20516
+
20517
+ /**
20518
+ * Async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
20519
+ * @type {string || null}
20520
+ */
20521
+ this.TaskId = null;
20522
+
20523
+ /**
20524
+ * 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.
20525
+ * @type {string || null}
20526
+ */
20527
+ this.RequestId = null;
20528
+
20529
+ }
20530
+
20531
+ /**
20532
+ * @private
20533
+ */
20534
+ deserialize(params) {
20535
+ if (!params) {
20536
+ return;
20537
+ }
20538
+ this.AddressSet = 'AddressSet' in params ? params.AddressSet : null;
20539
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
20540
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
20541
+
20542
+ }
20543
+ }
20544
+
19871
20545
  /**
19872
20546
  * DeleteDirectConnectGatewayCcnRoutes request structure.
19873
20547
  * @class
@@ -20457,6 +21131,49 @@ class DescribeSecurityGroupReferencesRequest extends AbstractModel {
20457
21131
  }
20458
21132
  }
20459
21133
 
21134
+ /**
21135
+ * DescribeVpcPrivateIpAddresses response structure.
21136
+ * @class
21137
+ */
21138
+ class DescribeVpcPrivateIpAddressesResponse extends AbstractModel {
21139
+ constructor(){
21140
+ super();
21141
+
21142
+ /**
21143
+ * The list of private `IP` address information.
21144
+ * @type {Array.<VpcPrivateIpAddress> || null}
21145
+ */
21146
+ this.VpcPrivateIpAddressSet = null;
21147
+
21148
+ /**
21149
+ * 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.
21150
+ * @type {string || null}
21151
+ */
21152
+ this.RequestId = null;
21153
+
21154
+ }
21155
+
21156
+ /**
21157
+ * @private
21158
+ */
21159
+ deserialize(params) {
21160
+ if (!params) {
21161
+ return;
21162
+ }
21163
+
21164
+ if (params.VpcPrivateIpAddressSet) {
21165
+ this.VpcPrivateIpAddressSet = new Array();
21166
+ for (let z in params.VpcPrivateIpAddressSet) {
21167
+ let obj = new VpcPrivateIpAddress();
21168
+ obj.deserialize(params.VpcPrivateIpAddressSet[z]);
21169
+ this.VpcPrivateIpAddressSet.push(obj);
21170
+ }
21171
+ }
21172
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21173
+
21174
+ }
21175
+ }
21176
+
20460
21177
  /**
20461
21178
  * ModifyReserveIpAddress request structure.
20462
21179
  * @class
@@ -20548,6 +21265,62 @@ class DisassociateDirectConnectGatewayNatGatewayRequest extends AbstractModel {
20548
21265
  }
20549
21266
  }
20550
21267
 
21268
+ /**
21269
+ * ReleaseIPv6Addresses request structure.
21270
+ * @class
21271
+ */
21272
+ class ReleaseIPv6AddressesRequest extends AbstractModel {
21273
+ constructor(){
21274
+ super();
21275
+
21276
+ /**
21277
+ * Unique ID of the IPv6 address.
21278
+ * @type {Array.<string> || null}
21279
+ */
21280
+ this.IPv6AddressIds = null;
21281
+
21282
+ }
21283
+
21284
+ /**
21285
+ * @private
21286
+ */
21287
+ deserialize(params) {
21288
+ if (!params) {
21289
+ return;
21290
+ }
21291
+ this.IPv6AddressIds = 'IPv6AddressIds' in params ? params.IPv6AddressIds : null;
21292
+
21293
+ }
21294
+ }
21295
+
21296
+ /**
21297
+ * DisassociateIPv6Address response structure.
21298
+ * @class
21299
+ */
21300
+ class DisassociateIPv6AddressResponse extends AbstractModel {
21301
+ constructor(){
21302
+ super();
21303
+
21304
+ /**
21305
+ * 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.
21306
+ * @type {string || null}
21307
+ */
21308
+ this.RequestId = null;
21309
+
21310
+ }
21311
+
21312
+ /**
21313
+ * @private
21314
+ */
21315
+ deserialize(params) {
21316
+ if (!params) {
21317
+ return;
21318
+ }
21319
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21320
+
21321
+ }
21322
+ }
21323
+
20551
21324
  /**
20552
21325
  * DescribeAddressTemplateGroups response structure.
20553
21326
  * @class
@@ -22247,7 +23020,7 @@ class Address extends AbstractModel {
22247
23020
  this.IsEipDirectConnection = null;
22248
23021
 
22249
23022
  /**
22250
- * IP type. Valid values: `CalcIP` (device IP), `WanIP` (public network IP), `EIP` (general elastic IP), `AnycastEIP` (accelerated EIP), and `AntiDDoSEIP` (Anti DDoS EIP).
23023
+ * EIP resource type. Valid values: `CalcIP` (device IP), `WanIP` (public IP), `EIP` (elastic IP), `AnycastEIP` (accelerated EIP), and `AntiDDoSEIP` (anti-DDoS EIP).
22251
23024
  * @type {string || null}
22252
23025
  */
22253
23026
  this.AddressType = null;
@@ -22322,7 +23095,8 @@ Note: this field may return `null`, indicating that no valid value was found.
22322
23095
  this.InstanceType = null;
22323
23096
 
22324
23097
  /**
22325
- *
23098
+ * Static single-line IP network egress
23099
+ Note: This field may return null, indicating that no valid value was found.
22326
23100
  * @type {string || null}
22327
23101
  */
22328
23102
  this.Egress = null;
@@ -22334,17 +23108,34 @@ Note: this field may return `null`, indicating that no valid value was found.
22334
23108
  this.AntiDDoSPackageId = null;
22335
23109
 
22336
23110
  /**
22337
- *
23111
+ * Indicates whether the current EIP is auto-renewed. This field is displayed only for EIPs with monthly prepaid bandwidth. Valid values are as follows:
23112
+ <li>NOTIFY_AND_MANUAL_RENEW: Normal renewal</li><li>NOTIFY_AND_AUTO_RENEW: Automatic renewal</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW: No renewal upon expiration</li>
23113
+
22338
23114
  * @type {string || null}
22339
23115
  */
22340
23116
  this.RenewFlag = null;
22341
23117
 
22342
23118
  /**
22343
- *
23119
+ * Indicates the ID of the Bandwidth Package associated with the current public IP. If the public IP is not billed by Bandwidth Package, this field is empty.
23120
+ Note: This field may return null, indicating that no valid value was found.
22344
23121
  * @type {string || null}
22345
23122
  */
22346
23123
  this.BandwidthPackageId = null;
22347
23124
 
23125
+ /**
23126
+ * Indicates the unique ID of the VPC to which the traditional EIPv6 belongs.
23127
+ Note: This field may return null, indicating that no valid value was found.
23128
+ * @type {string || null}
23129
+ */
23130
+ this.UnVpcId = null;
23131
+
23132
+ /**
23133
+ * Indicates the unique ID of the CDC.
23134
+ Note: This field may return 'null', indicating that no valid value was found.
23135
+ * @type {string || null}
23136
+ */
23137
+ this.DedicatedClusterId = null;
23138
+
22348
23139
  }
22349
23140
 
22350
23141
  /**
@@ -22392,6 +23183,8 @@ Note: this field may return `null`, indicating that no valid value was found.
22392
23183
  this.AntiDDoSPackageId = 'AntiDDoSPackageId' in params ? params.AntiDDoSPackageId : null;
22393
23184
  this.RenewFlag = 'RenewFlag' in params ? params.RenewFlag : null;
22394
23185
  this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
23186
+ this.UnVpcId = 'UnVpcId' in params ? params.UnVpcId : null;
23187
+ this.DedicatedClusterId = 'DedicatedClusterId' in params ? params.DedicatedClusterId : null;
22395
23188
 
22396
23189
  }
22397
23190
  }
@@ -22549,18 +23342,67 @@ class VpnGateway extends AbstractModel {
22549
23342
  this.RestrictState = 'RestrictState' in params ? params.RestrictState : null;
22550
23343
  this.Zone = 'Zone' in params ? params.Zone : null;
22551
23344
 
22552
- if (params.VpnGatewayQuotaSet) {
22553
- this.VpnGatewayQuotaSet = new Array();
22554
- for (let z in params.VpnGatewayQuotaSet) {
22555
- let obj = new VpnGatewayQuota();
22556
- obj.deserialize(params.VpnGatewayQuotaSet[z]);
22557
- this.VpnGatewayQuotaSet.push(obj);
22558
- }
23345
+ if (params.VpnGatewayQuotaSet) {
23346
+ this.VpnGatewayQuotaSet = new Array();
23347
+ for (let z in params.VpnGatewayQuotaSet) {
23348
+ let obj = new VpnGatewayQuota();
23349
+ obj.deserialize(params.VpnGatewayQuotaSet[z]);
23350
+ this.VpnGatewayQuotaSet.push(obj);
23351
+ }
23352
+ }
23353
+ this.Version = 'Version' in params ? params.Version : null;
23354
+ this.NetworkInstanceId = 'NetworkInstanceId' in params ? params.NetworkInstanceId : null;
23355
+ this.CdcId = 'CdcId' in params ? params.CdcId : null;
23356
+ this.MaxConnection = 'MaxConnection' in params ? params.MaxConnection : null;
23357
+
23358
+ }
23359
+ }
23360
+
23361
+ /**
23362
+ * ModifyAddressesBandwidth request structure.
23363
+ * @class
23364
+ */
23365
+ class ModifyAddressesBandwidthRequest extends AbstractModel {
23366
+ constructor(){
23367
+ super();
23368
+
23369
+ /**
23370
+ * List of EIP IDs, such as “eip-xxxx”.
23371
+ * @type {Array.<string> || null}
23372
+ */
23373
+ this.AddressIds = null;
23374
+
23375
+ /**
23376
+ * Target bandwidth value adjustment
23377
+ * @type {number || null}
23378
+ */
23379
+ this.InternetMaxBandwidthOut = null;
23380
+
23381
+ /**
23382
+ * (Disused) The start time of the monthly bandwidth subscription
23383
+ * @type {string || null}
23384
+ */
23385
+ this.StartTime = null;
23386
+
23387
+ /**
23388
+ * (Disused) The end time of the monthly bandwidth subscription
23389
+ * @type {string || null}
23390
+ */
23391
+ this.EndTime = null;
23392
+
23393
+ }
23394
+
23395
+ /**
23396
+ * @private
23397
+ */
23398
+ deserialize(params) {
23399
+ if (!params) {
23400
+ return;
22559
23401
  }
22560
- this.Version = 'Version' in params ? params.Version : null;
22561
- this.NetworkInstanceId = 'NetworkInstanceId' in params ? params.NetworkInstanceId : null;
22562
- this.CdcId = 'CdcId' in params ? params.CdcId : null;
22563
- this.MaxConnection = 'MaxConnection' in params ? params.MaxConnection : null;
23402
+ this.AddressIds = 'AddressIds' in params ? params.AddressIds : null;
23403
+ this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
23404
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
23405
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
22564
23406
 
22565
23407
  }
22566
23408
  }
@@ -23138,6 +23980,34 @@ class ModifyRouteTableAttributeResponse extends AbstractModel {
23138
23980
  }
23139
23981
  }
23140
23982
 
23983
+ /**
23984
+ * ModifyIPv6AddressesBandwidth response structure.
23985
+ * @class
23986
+ */
23987
+ class ModifyIPv6AddressesBandwidthResponse extends AbstractModel {
23988
+ constructor(){
23989
+ super();
23990
+
23991
+ /**
23992
+ * 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.
23993
+ * @type {string || null}
23994
+ */
23995
+ this.RequestId = null;
23996
+
23997
+ }
23998
+
23999
+ /**
24000
+ * @private
24001
+ */
24002
+ deserialize(params) {
24003
+ if (!params) {
24004
+ return;
24005
+ }
24006
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
24007
+
24008
+ }
24009
+ }
24010
+
23141
24011
  /**
23142
24012
  * DescribeSecurityGroupReferences response structure.
23143
24013
  * @class
@@ -24048,30 +24918,24 @@ Note: this field may return `null`, indicating that no valid values can be obtai
24048
24918
  }
24049
24919
 
24050
24920
  /**
24051
- * CheckAssistantCidr request structure.
24921
+ * AdjustPublicAddress response structure.
24052
24922
  * @class
24053
24923
  */
24054
- class CheckAssistantCidrRequest extends AbstractModel {
24924
+ class AdjustPublicAddressResponse extends AbstractModel {
24055
24925
  constructor(){
24056
24926
  super();
24057
24927
 
24058
24928
  /**
24059
- * `VPC` instance `ID`, e.g. `vpc-6v2ht8q5`.
24060
- * @type {string || null}
24061
- */
24062
- this.VpcId = null;
24063
-
24064
- /**
24065
- * Load CIDR blocks to add. CIDR block set; format: e.g. ["10.0.0.0/16", "172.16.0.0/16"]
24066
- * @type {Array.<string> || null}
24929
+ * The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
24930
+ * @type {number || null}
24067
24931
  */
24068
- this.NewCidrBlocks = null;
24932
+ this.TaskId = null;
24069
24933
 
24070
24934
  /**
24071
- * Load CIDR blocks to delete. CIDR block set; Format: e.g. ["10.0.0.0/16", "172.16.0.0/16"]
24072
- * @type {Array.<string> || null}
24935
+ * 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.
24936
+ * @type {string || null}
24073
24937
  */
24074
- this.OldCidrBlocks = null;
24938
+ this.RequestId = null;
24075
24939
 
24076
24940
  }
24077
24941
 
@@ -24082,9 +24946,8 @@ class CheckAssistantCidrRequest extends AbstractModel {
24082
24946
  if (!params) {
24083
24947
  return;
24084
24948
  }
24085
- this.VpcId = 'VpcId' in params ? params.VpcId : null;
24086
- this.NewCidrBlocks = 'NewCidrBlocks' in params ? params.NewCidrBlocks : null;
24087
- this.OldCidrBlocks = 'OldCidrBlocks' in params ? params.OldCidrBlocks : null;
24949
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
24950
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
24088
24951
 
24089
24952
  }
24090
24953
  }
@@ -27021,6 +27884,41 @@ class DetachNetworkInterfaceRequest extends AbstractModel {
27021
27884
  }
27022
27885
  }
27023
27886
 
27887
+ /**
27888
+ * ModifyIPv6AddressesAttributes request structure.
27889
+ * @class
27890
+ */
27891
+ class ModifyIPv6AddressesAttributesRequest extends AbstractModel {
27892
+ constructor(){
27893
+ super();
27894
+
27895
+ /**
27896
+ * List of unique IDs of EIPv6.
27897
+ * @type {Array.<string> || null}
27898
+ */
27899
+ this.IPv6AddressIds = null;
27900
+
27901
+ /**
27902
+ * Name of the EIPv6 address
27903
+ * @type {string || null}
27904
+ */
27905
+ this.IPv6AddressName = null;
27906
+
27907
+ }
27908
+
27909
+ /**
27910
+ * @private
27911
+ */
27912
+ deserialize(params) {
27913
+ if (!params) {
27914
+ return;
27915
+ }
27916
+ this.IPv6AddressIds = 'IPv6AddressIds' in params ? params.IPv6AddressIds : null;
27917
+ this.IPv6AddressName = 'IPv6AddressName' in params ? params.IPv6AddressName : null;
27918
+
27919
+ }
27920
+ }
27921
+
27024
27922
  /**
27025
27923
  * Reserved private IP address data.
27026
27924
  * @class
@@ -27455,6 +28353,70 @@ class DescribeCcnRoutesResponse extends AbstractModel {
27455
28353
  }
27456
28354
  }
27457
28355
 
28356
+ /**
28357
+ * AllocateIp6AddressesBandwidth request structure.
28358
+ * @class
28359
+ */
28360
+ class AllocateIp6AddressesBandwidthRequest extends AbstractModel {
28361
+ constructor(){
28362
+ super();
28363
+
28364
+ /**
28365
+ * IPv6 addresses that require the public network access capability.
28366
+ * @type {Array.<string> || null}
28367
+ */
28368
+ this.Ip6Addresses = null;
28369
+
28370
+ /**
28371
+ * Bandwidth, in Mbps. The default value is 1 Mbps.
28372
+ * @type {number || null}
28373
+ */
28374
+ this.InternetMaxBandwidthOut = null;
28375
+
28376
+ /**
28377
+ * Network billing mode. IPv6 addresses currently support "TRAFFIC_POSTPAID_BY_HOUR" and "BANDWIDTH_PACKAGE". The default network billing mode is "TRAFFIC_POSTPAID_BY_HOUR".
28378
+ * @type {string || null}
28379
+ */
28380
+ this.InternetChargeType = null;
28381
+
28382
+ /**
28383
+ * Bandwidth package ID. This ID is required for standard accounts to add the IPv6 addresses to the bandwidth package, thus using the billing mode.
28384
+ * @type {string || null}
28385
+ */
28386
+ this.BandwidthPackageId = null;
28387
+
28388
+ /**
28389
+ * List of tags to be associated.
28390
+ * @type {Array.<Tag> || null}
28391
+ */
28392
+ this.Tags = null;
28393
+
28394
+ }
28395
+
28396
+ /**
28397
+ * @private
28398
+ */
28399
+ deserialize(params) {
28400
+ if (!params) {
28401
+ return;
28402
+ }
28403
+ this.Ip6Addresses = 'Ip6Addresses' in params ? params.Ip6Addresses : null;
28404
+ this.InternetMaxBandwidthOut = 'InternetMaxBandwidthOut' in params ? params.InternetMaxBandwidthOut : null;
28405
+ this.InternetChargeType = 'InternetChargeType' in params ? params.InternetChargeType : null;
28406
+ this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
28407
+
28408
+ if (params.Tags) {
28409
+ this.Tags = new Array();
28410
+ for (let z in params.Tags) {
28411
+ let obj = new Tag();
28412
+ obj.deserialize(params.Tags[z]);
28413
+ this.Tags.push(obj);
28414
+ }
28415
+ }
28416
+
28417
+ }
28418
+ }
28419
+
27458
28420
  /**
27459
28421
  * Security group object
27460
28422
  * @class
@@ -28275,34 +29237,6 @@ class DetachClassicLinkVpcResponse extends AbstractModel {
28275
29237
  }
28276
29238
  }
28277
29239
 
28278
- /**
28279
- * MigrateNetworkInterface response structure.
28280
- * @class
28281
- */
28282
- class MigrateNetworkInterfaceResponse extends AbstractModel {
28283
- constructor(){
28284
- super();
28285
-
28286
- /**
28287
- * 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.
28288
- * @type {string || null}
28289
- */
28290
- this.RequestId = null;
28291
-
28292
- }
28293
-
28294
- /**
28295
- * @private
28296
- */
28297
- deserialize(params) {
28298
- if (!params) {
28299
- return;
28300
- }
28301
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
28302
-
28303
- }
28304
- }
28305
-
28306
29240
  /**
28307
29241
  * UnassignPrivateIpAddresses request structure.
28308
29242
  * @class
@@ -29255,6 +30189,41 @@ class DescribeClassicLinkInstancesRequest extends AbstractModel {
29255
30189
  }
29256
30190
  }
29257
30191
 
30192
+ /**
30193
+ * ReleaseIp6AddressesBandwidth request structure.
30194
+ * @class
30195
+ */
30196
+ class ReleaseIp6AddressesBandwidthRequest extends AbstractModel {
30197
+ constructor(){
30198
+ super();
30199
+
30200
+ /**
30201
+ * IPv6 addresses. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
30202
+ * @type {Array.<string> || null}
30203
+ */
30204
+ this.Ip6Addresses = null;
30205
+
30206
+ /**
30207
+ * Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
30208
+ * @type {Array.<string> || null}
30209
+ */
30210
+ this.Ip6AddressIds = null;
30211
+
30212
+ }
30213
+
30214
+ /**
30215
+ * @private
30216
+ */
30217
+ deserialize(params) {
30218
+ if (!params) {
30219
+ return;
30220
+ }
30221
+ this.Ip6Addresses = 'Ip6Addresses' in params ? params.Ip6Addresses : null;
30222
+ this.Ip6AddressIds = 'Ip6AddressIds' in params ? params.Ip6AddressIds : null;
30223
+
30224
+ }
30225
+ }
30226
+
29258
30227
  /**
29259
30228
  * CreateServiceTemplate response structure.
29260
30229
  * @class
@@ -29772,6 +30741,34 @@ class WithdrawNotifyRoutesResponse extends AbstractModel {
29772
30741
  }
29773
30742
  }
29774
30743
 
30744
+ /**
30745
+ * ModifyIPv6AddressesAttributes response structure.
30746
+ * @class
30747
+ */
30748
+ class ModifyIPv6AddressesAttributesResponse extends AbstractModel {
30749
+ constructor(){
30750
+ super();
30751
+
30752
+ /**
30753
+ * 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.
30754
+ * @type {string || null}
30755
+ */
30756
+ this.RequestId = null;
30757
+
30758
+ }
30759
+
30760
+ /**
30761
+ * @private
30762
+ */
30763
+ deserialize(params) {
30764
+ if (!params) {
30765
+ return;
30766
+ }
30767
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
30768
+
30769
+ }
30770
+ }
30771
+
29775
30772
  /**
29776
30773
  * DescribeNetworkInterfaces response structure.
29777
30774
  * @class
@@ -30705,6 +31702,7 @@ module.exports = {
30705
31702
  DescribeVpnConnectionsRequest: DescribeVpnConnectionsRequest,
30706
31703
  CreateAssistantCidrRequest: CreateAssistantCidrRequest,
30707
31704
  DescribeNetworkInterfacesRequest: DescribeNetworkInterfacesRequest,
31705
+ ReleaseIp6AddressesBandwidthResponse: ReleaseIp6AddressesBandwidthResponse,
30708
31706
  DescribeVpcIpv6AddressesRequest: DescribeVpcIpv6AddressesRequest,
30709
31707
  SourceIpTranslationNatRule: SourceIpTranslationNatRule,
30710
31708
  DisableCcnRoutesRequest: DisableCcnRoutesRequest,
@@ -30715,6 +31713,7 @@ module.exports = {
30715
31713
  DescribeVpnGatewaysResponse: DescribeVpnGatewaysResponse,
30716
31714
  ModifyNetworkAclQuintupleEntriesRequest: ModifyNetworkAclQuintupleEntriesRequest,
30717
31715
  ModifyServiceTemplateAttributeRequest: ModifyServiceTemplateAttributeRequest,
31716
+ SecurityGroupPolicy: SecurityGroupPolicy,
30718
31717
  DescribeIpGeolocationInfosRequest: DescribeIpGeolocationInfosRequest,
30719
31718
  ResetAttachCcnInstancesResponse: ResetAttachCcnInstancesResponse,
30720
31719
  CreateSnapshotPoliciesResponse: CreateSnapshotPoliciesResponse,
@@ -30777,6 +31776,7 @@ module.exports = {
30777
31776
  ReplaceSecurityGroupPoliciesResponse: ReplaceSecurityGroupPoliciesResponse,
30778
31777
  DescribeDirectConnectGatewaysRequest: DescribeDirectConnectGatewaysRequest,
30779
31778
  DisassociateVpcEndPointSecurityGroupsRequest: DisassociateVpcEndPointSecurityGroupsRequest,
31779
+ DescribeIPv6AddressesResponse: DescribeIPv6AddressesResponse,
30780
31780
  AttachSnapshotInstancesRequest: AttachSnapshotInstancesRequest,
30781
31781
  CreateVpcEndPointServiceWhiteListResponse: CreateVpcEndPointServiceWhiteListResponse,
30782
31782
  DescribeIpGeolocationDatabaseUrlResponse: DescribeIpGeolocationDatabaseUrlResponse,
@@ -30793,6 +31793,7 @@ module.exports = {
30793
31793
  DescribeTaskResultRequest: DescribeTaskResultRequest,
30794
31794
  ModifyAddressInternetChargeTypeResponse: ModifyAddressInternetChargeTypeResponse,
30795
31795
  UnassignIpv6SubnetCidrBlockRequest: UnassignIpv6SubnetCidrBlockRequest,
31796
+ ModifyIPv6AddressesBandwidthRequest: ModifyIPv6AddressesBandwidthRequest,
30796
31797
  DeleteVpcEndPointServiceResponse: DeleteVpcEndPointServiceResponse,
30797
31798
  ModifyNetworkAclQuintupleEntriesResponse: ModifyNetworkAclQuintupleEntriesResponse,
30798
31799
  AssignIpv6CidrBlockRequest: AssignIpv6CidrBlockRequest,
@@ -30811,6 +31812,7 @@ module.exports = {
30811
31812
  ModifyNetworkAclEntriesResponse: ModifyNetworkAclEntriesResponse,
30812
31813
  ModifyVpcEndPointAttributeResponse: ModifyVpcEndPointAttributeResponse,
30813
31814
  DescribeFlowLogRequest: DescribeFlowLogRequest,
31815
+ DescribeIp6AddressesRequest: DescribeIp6AddressesRequest,
30814
31816
  DescribeAccountAttributesResponse: DescribeAccountAttributesResponse,
30815
31817
  ModifyAddressesRenewFlagRequest: ModifyAddressesRenewFlagRequest,
30816
31818
  AssignPrivateIpAddressesResponse: AssignPrivateIpAddressesResponse,
@@ -30823,6 +31825,7 @@ module.exports = {
30823
31825
  DisassociateNetworkAclSubnetsResponse: DisassociateNetworkAclSubnetsResponse,
30824
31826
  SetCcnRegionBandwidthLimitsRequest: SetCcnRegionBandwidthLimitsRequest,
30825
31827
  ModifyAddressInternetChargeTypeRequest: ModifyAddressInternetChargeTypeRequest,
31828
+ ModifyIp6AddressesBandwidthRequest: ModifyIp6AddressesBandwidthRequest,
30826
31829
  CreateLocalGatewayRequest: CreateLocalGatewayRequest,
30827
31830
  DescribeDirectConnectGatewaysResponse: DescribeDirectConnectGatewaysResponse,
30828
31831
  CreateVpnGatewayRoutesRequest: CreateVpnGatewayRoutesRequest,
@@ -30846,6 +31849,7 @@ module.exports = {
30846
31849
  DescribeSgSnapshotFileContentResponse: DescribeSgSnapshotFileContentResponse,
30847
31850
  DescribeNetDetectStatesResponse: DescribeNetDetectStatesResponse,
30848
31851
  DescribeVpcResourceDashboardResponse: DescribeVpcResourceDashboardResponse,
31852
+ AllocateIp6AddressesBandwidthResponse: AllocateIp6AddressesBandwidthResponse,
30849
31853
  DescribeNetDetectStatesRequest: DescribeNetDetectStatesRequest,
30850
31854
  DescribeFlowLogResponse: DescribeFlowLogResponse,
30851
31855
  DownloadCustomerGatewayConfigurationResponse: DownloadCustomerGatewayConfigurationResponse,
@@ -30865,7 +31869,7 @@ module.exports = {
30865
31869
  ModifyNatGatewayAttributeResponse: ModifyNatGatewayAttributeResponse,
30866
31870
  DescribeNetDetectsRequest: DescribeNetDetectsRequest,
30867
31871
  CreateAddressTemplateGroupRequest: CreateAddressTemplateGroupRequest,
30868
- DescribeNatGatewayDirectConnectGatewayRouteRequest: DescribeNatGatewayDirectConnectGatewayRouteRequest,
31872
+ AssociateIPv6AddressRequest: AssociateIPv6AddressRequest,
30869
31873
  DescribeCustomerGatewayVendorsResponse: DescribeCustomerGatewayVendorsResponse,
30870
31874
  DeleteSubnetResponse: DeleteSubnetResponse,
30871
31875
  EnableSnapshotPoliciesResponse: EnableSnapshotPoliciesResponse,
@@ -30881,9 +31885,9 @@ module.exports = {
30881
31885
  VpcTaskResultDetailInfo: VpcTaskResultDetailInfo,
30882
31886
  ReplaceRouteTableAssociationRequest: ReplaceRouteTableAssociationRequest,
30883
31887
  AssociateNetworkAclSubnetsRequest: AssociateNetworkAclSubnetsRequest,
30884
- AdjustPublicAddressResponse: AdjustPublicAddressResponse,
31888
+ CheckAssistantCidrRequest: CheckAssistantCidrRequest,
30885
31889
  RenewVpnGatewayRequest: RenewVpnGatewayRequest,
30886
- SecurityGroupPolicy: SecurityGroupPolicy,
31890
+ AssociateIPv6AddressResponse: AssociateIPv6AddressResponse,
30887
31891
  DescribeSnapshotPoliciesRequest: DescribeSnapshotPoliciesRequest,
30888
31892
  DeleteTrafficPackagesRequest: DeleteTrafficPackagesRequest,
30889
31893
  NotifyRoutesRequest: NotifyRoutesRequest,
@@ -30905,16 +31909,18 @@ module.exports = {
30905
31909
  DisassociateAddressRequest: DisassociateAddressRequest,
30906
31910
  NetworkAclEntrySet: NetworkAclEntrySet,
30907
31911
  DeleteVpnConnectionResponse: DeleteVpnConnectionResponse,
31912
+ ReleaseIPv6AddressesResponse: ReleaseIPv6AddressesResponse,
30908
31913
  DescribeBandwidthPackageResourcesRequest: DescribeBandwidthPackageResourcesRequest,
30909
31914
  EnableCcnRoutesRequest: EnableCcnRoutesRequest,
30910
31915
  Tag: Tag,
30911
- DescribeCcnAttachedInstancesResponse: DescribeCcnAttachedInstancesResponse,
31916
+ CreateFlowLogResponse: CreateFlowLogResponse,
30912
31917
  DefaultVpcSubnet: DefaultVpcSubnet,
30913
31918
  CreateSubnetsResponse: CreateSubnetsResponse,
30914
31919
  DescribeGatewayFlowMonitorDetailRequest: DescribeGatewayFlowMonitorDetailRequest,
30915
31920
  FilterObject: FilterObject,
30916
31921
  ModifyBandwidthPackageAttributeResponse: ModifyBandwidthPackageAttributeResponse,
30917
31922
  DetachNetworkInterfaceResponse: DetachNetworkInterfaceResponse,
31923
+ DisassociateIPv6AddressRequest: DisassociateIPv6AddressRequest,
30918
31924
  ResetRoutesResponse: ResetRoutesResponse,
30919
31925
  DeleteNetworkAclRequest: DeleteNetworkAclRequest,
30920
31926
  NatGatewayDestinationIpPortTranslationNatRule: NatGatewayDestinationIpPortTranslationNatRule,
@@ -30933,7 +31939,7 @@ module.exports = {
30933
31939
  ModifyVpcEndPointServiceAttributeResponse: ModifyVpcEndPointServiceAttributeResponse,
30934
31940
  DescribeReserveIpAddressesResponse: DescribeReserveIpAddressesResponse,
30935
31941
  DescribeSnapshotFilesResponse: DescribeSnapshotFilesResponse,
30936
- DescribeVpcPrivateIpAddressesResponse: DescribeVpcPrivateIpAddressesResponse,
31942
+ DescribeCcnAttachedInstancesResponse: DescribeCcnAttachedInstancesResponse,
30937
31943
  HaVipAssociateAddressIpResponse: HaVipAssociateAddressIpResponse,
30938
31944
  DeleteCustomerGatewayResponse: DeleteCustomerGatewayResponse,
30939
31945
  CreateVpnGatewayRoutesResponse: CreateVpnGatewayRoutesResponse,
@@ -30943,11 +31949,13 @@ module.exports = {
30943
31949
  DeleteAddressTemplateGroupRequest: DeleteAddressTemplateGroupRequest,
30944
31950
  DescribeNetworkInterfaceLimitRequest: DescribeNetworkInterfaceLimitRequest,
30945
31951
  CreateBandwidthPackageRequest: CreateBandwidthPackageRequest,
31952
+ DescribeIp6AddressesResponse: DescribeIp6AddressesResponse,
30946
31953
  ModifyRouteTableAttributeRequest: ModifyRouteTableAttributeRequest,
30947
31954
  ModifyDirectConnectGatewayAttributeResponse: ModifyDirectConnectGatewayAttributeResponse,
30948
31955
  DescribeVpnGatewaysRequest: DescribeVpnGatewaysRequest,
30949
31956
  NetDetectIpState: NetDetectIpState,
30950
31957
  InternetPrice: InternetPrice,
31958
+ ModifyIp6AddressesBandwidthResponse: ModifyIp6AddressesBandwidthResponse,
30951
31959
  CreateSubnetsRequest: CreateSubnetsRequest,
30952
31960
  DescribeVpcEndPointServiceRequest: DescribeVpcEndPointServiceRequest,
30953
31961
  DisableSnapshotPoliciesResponse: DisableSnapshotPoliciesResponse,
@@ -30973,7 +31981,7 @@ module.exports = {
30973
31981
  DescribeAssistantCidrRequest: DescribeAssistantCidrRequest,
30974
31982
  RenewVpnGatewayResponse: RenewVpnGatewayResponse,
30975
31983
  DeleteDirectConnectGatewayResponse: DeleteDirectConnectGatewayResponse,
30976
- ModifyAddressesBandwidthRequest: ModifyAddressesBandwidthRequest,
31984
+ DescribeIPv6AddressesRequest: DescribeIPv6AddressesRequest,
30977
31985
  ResetVpnGatewayInternetMaxBandwidthRequest: ResetVpnGatewayInternetMaxBandwidthRequest,
30978
31986
  EndPoint: EndPoint,
30979
31987
  DirectConnectGateway: DirectConnectGateway,
@@ -30984,6 +31992,7 @@ module.exports = {
30984
31992
  DescribeBandwidthPackageResourcesResponse: DescribeBandwidthPackageResourcesResponse,
30985
31993
  DescribeCrossBorderComplianceResponse: DescribeCrossBorderComplianceResponse,
30986
31994
  ModifyVpnGatewayAttributeResponse: ModifyVpnGatewayAttributeResponse,
31995
+ AllocateIPv6AddressesRequest: AllocateIPv6AddressesRequest,
30987
31996
  AssociateDirectConnectGatewayNatGatewayResponse: AssociateDirectConnectGatewayNatGatewayResponse,
30988
31997
  EndPointService: EndPointService,
30989
31998
  DescribeVpnGatewayCcnRoutesRequest: DescribeVpnGatewayCcnRoutesRequest,
@@ -30995,7 +32004,7 @@ module.exports = {
30995
32004
  DescribeVpnGatewayCcnRoutesResponse: DescribeVpnGatewayCcnRoutesResponse,
30996
32005
  DetachCcnInstancesRequest: DetachCcnInstancesRequest,
30997
32006
  ModifyVpcEndPointServiceWhiteListRequest: ModifyVpcEndPointServiceWhiteListRequest,
30998
- CreateFlowLogResponse: CreateFlowLogResponse,
32007
+ MigrateNetworkInterfaceResponse: MigrateNetworkInterfaceResponse,
30999
32008
  DescribeSnapshotAttachedInstancesRequest: DescribeSnapshotAttachedInstancesRequest,
31000
32009
  CreateNatGatewaySourceIpTranslationNatRuleResponse: CreateNatGatewaySourceIpTranslationNatRuleResponse,
31001
32010
  DeleteNatGatewaySourceIpTranslationNatRuleResponse: DeleteNatGatewaySourceIpTranslationNatRuleResponse,
@@ -31075,6 +32084,7 @@ module.exports = {
31075
32084
  AddressChargePrepaid: AddressChargePrepaid,
31076
32085
  DescribeVpnGatewayRoutesResponse: DescribeVpnGatewayRoutesResponse,
31077
32086
  DescribeNetworkAclsResponse: DescribeNetworkAclsResponse,
32087
+ DescribeNatGatewayDirectConnectGatewayRouteRequest: DescribeNatGatewayDirectConnectGatewayRouteRequest,
31078
32088
  DeleteFlowLogResponse: DeleteFlowLogResponse,
31079
32089
  AttachCcnInstancesResponse: AttachCcnInstancesResponse,
31080
32090
  CreateDefaultVpcResponse: CreateDefaultVpcResponse,
@@ -31087,6 +32097,7 @@ module.exports = {
31087
32097
  DeleteRouteTableResponse: DeleteRouteTableResponse,
31088
32098
  DescribeVpcInstancesResponse: DescribeVpcInstancesResponse,
31089
32099
  AccountAttribute: AccountAttribute,
32100
+ AllocateIPv6AddressesResponse: AllocateIPv6AddressesResponse,
31090
32101
  DeleteDirectConnectGatewayCcnRoutesRequest: DeleteDirectConnectGatewayCcnRoutesRequest,
31091
32102
  ModifyNatGatewaySourceIpTranslationNatRuleResponse: ModifyNatGatewaySourceIpTranslationNatRuleResponse,
31092
32103
  CreateNatGatewayDestinationIpPortTranslationNatRuleRequest: CreateNatGatewayDestinationIpPortTranslationNatRuleRequest,
@@ -31100,8 +32111,11 @@ module.exports = {
31100
32111
  ResetAttachCcnInstancesRequest: ResetAttachCcnInstancesRequest,
31101
32112
  CreateHaVipResponse: CreateHaVipResponse,
31102
32113
  DescribeSecurityGroupReferencesRequest: DescribeSecurityGroupReferencesRequest,
32114
+ DescribeVpcPrivateIpAddressesResponse: DescribeVpcPrivateIpAddressesResponse,
31103
32115
  ModifyReserveIpAddressRequest: ModifyReserveIpAddressRequest,
31104
32116
  DisassociateDirectConnectGatewayNatGatewayRequest: DisassociateDirectConnectGatewayNatGatewayRequest,
32117
+ ReleaseIPv6AddressesRequest: ReleaseIPv6AddressesRequest,
32118
+ DisassociateIPv6AddressResponse: DisassociateIPv6AddressResponse,
31105
32119
  DescribeAddressTemplateGroupsResponse: DescribeAddressTemplateGroupsResponse,
31106
32120
  ReleaseAddressesRequest: ReleaseAddressesRequest,
31107
32121
  CreateDirectConnectGatewayCcnRoutesRequest: CreateDirectConnectGatewayCcnRoutesRequest,
@@ -31142,6 +32156,7 @@ module.exports = {
31142
32156
  UnassignPrivateIpAddressesResponse: UnassignPrivateIpAddressesResponse,
31143
32157
  Address: Address,
31144
32158
  VpnGateway: VpnGateway,
32159
+ ModifyAddressesBandwidthRequest: ModifyAddressesBandwidthRequest,
31145
32160
  EnableVpcEndPointConnectRequest: EnableVpcEndPointConnectRequest,
31146
32161
  EnableGatewayFlowMonitorResponse: EnableGatewayFlowMonitorResponse,
31147
32162
  Resource: Resource,
@@ -31154,6 +32169,7 @@ module.exports = {
31154
32169
  CreateSecurityGroupPoliciesRequest: CreateSecurityGroupPoliciesRequest,
31155
32170
  ModifyVpnGatewayRoutesResponse: ModifyVpnGatewayRoutesResponse,
31156
32171
  ModifyRouteTableAttributeResponse: ModifyRouteTableAttributeResponse,
32172
+ ModifyIPv6AddressesBandwidthResponse: ModifyIPv6AddressesBandwidthResponse,
31157
32173
  DescribeSecurityGroupReferencesResponse: DescribeSecurityGroupReferencesResponse,
31158
32174
  DisableGatewayFlowMonitorRequest: DisableGatewayFlowMonitorRequest,
31159
32175
  CreateAddressTemplateGroupResponse: CreateAddressTemplateGroupResponse,
@@ -31173,7 +32189,7 @@ module.exports = {
31173
32189
  CCN: CCN,
31174
32190
  NetworkAclQuintupleEntry: NetworkAclQuintupleEntry,
31175
32191
  InquirePriceCreateDirectConnectGatewayResponse: InquirePriceCreateDirectConnectGatewayResponse,
31176
- CheckAssistantCidrRequest: CheckAssistantCidrRequest,
32192
+ AdjustPublicAddressResponse: AdjustPublicAddressResponse,
31177
32193
  RemoveBandwidthPackageResourcesResponse: RemoveBandwidthPackageResourcesResponse,
31178
32194
  DestinationIpPortTranslationNatRule: DestinationIpPortTranslationNatRule,
31179
32195
  DeleteSnapshotPoliciesRequest: DeleteSnapshotPoliciesRequest,
@@ -31244,6 +32260,7 @@ module.exports = {
31244
32260
  ModifySecurityGroupPoliciesResponse: ModifySecurityGroupPoliciesResponse,
31245
32261
  ServiceTemplateSpecification: ServiceTemplateSpecification,
31246
32262
  DetachNetworkInterfaceRequest: DetachNetworkInterfaceRequest,
32263
+ ModifyIPv6AddressesAttributesRequest: ModifyIPv6AddressesAttributesRequest,
31247
32264
  ReserveIpAddressInfo: ReserveIpAddressInfo,
31248
32265
  AttachClassicLinkVpcResponse: AttachClassicLinkVpcResponse,
31249
32266
  CreateAddressTemplateRequest: CreateAddressTemplateRequest,
@@ -31252,6 +32269,7 @@ module.exports = {
31252
32269
  NetworkAclQuintupleEntries: NetworkAclQuintupleEntries,
31253
32270
  AttachNetworkInterfaceRequest: AttachNetworkInterfaceRequest,
31254
32271
  DescribeCcnRoutesResponse: DescribeCcnRoutesResponse,
32272
+ AllocateIp6AddressesBandwidthRequest: AllocateIp6AddressesBandwidthRequest,
31255
32273
  SecurityGroup: SecurityGroup,
31256
32274
  DisableGatewayFlowMonitorResponse: DisableGatewayFlowMonitorResponse,
31257
32275
  DisassociateAddressResponse: DisassociateAddressResponse,
@@ -31270,7 +32288,6 @@ module.exports = {
31270
32288
  ModifyHaVipAttributeRequest: ModifyHaVipAttributeRequest,
31271
32289
  ModifyAddressTemplateGroupAttributeResponse: ModifyAddressTemplateGroupAttributeResponse,
31272
32290
  DetachClassicLinkVpcResponse: DetachClassicLinkVpcResponse,
31273
- MigrateNetworkInterfaceResponse: MigrateNetworkInterfaceResponse,
31274
32291
  UnassignPrivateIpAddressesRequest: UnassignPrivateIpAddressesRequest,
31275
32292
  DeleteVpnGatewayRoutesRequest: DeleteVpnGatewayRoutesRequest,
31276
32293
  Filter: Filter,
@@ -31292,6 +32309,7 @@ module.exports = {
31292
32309
  CreateSecurityGroupRequest: CreateSecurityGroupRequest,
31293
32310
  ModifyCcnAttributeResponse: ModifyCcnAttributeResponse,
31294
32311
  DescribeClassicLinkInstancesRequest: DescribeClassicLinkInstancesRequest,
32312
+ ReleaseIp6AddressesBandwidthRequest: ReleaseIp6AddressesBandwidthRequest,
31295
32313
  CreateServiceTemplateResponse: CreateServiceTemplateResponse,
31296
32314
  DeleteNetworkInterfaceResponse: DeleteNetworkInterfaceResponse,
31297
32315
  DisableCcnRoutesResponse: DisableCcnRoutesResponse,
@@ -31306,6 +32324,7 @@ module.exports = {
31306
32324
  DescribeAddressTemplatesResponse: DescribeAddressTemplatesResponse,
31307
32325
  Quota: Quota,
31308
32326
  WithdrawNotifyRoutesResponse: WithdrawNotifyRoutesResponse,
32327
+ ModifyIPv6AddressesAttributesResponse: ModifyIPv6AddressesAttributesResponse,
31309
32328
  DescribeNetworkInterfacesResponse: DescribeNetworkInterfacesResponse,
31310
32329
  DeleteNetworkAclResponse: DeleteNetworkAclResponse,
31311
32330
  DeleteNetworkAclQuintupleEntriesResponse: DeleteNetworkAclQuintupleEntriesResponse,