tencentcloud-sdk-nodejs-intl-en 3.0.1269 → 3.0.1271

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.
@@ -1821,6 +1821,49 @@ class ResourceStatisticsItem extends AbstractModel {
1821
1821
  }
1822
1822
  }
1823
1823
 
1824
+ /**
1825
+ * DeleteRoutePolicyEntries request structure.
1826
+ * @class
1827
+ */
1828
+ class DeleteRoutePolicyEntriesRequest extends AbstractModel {
1829
+ constructor(){
1830
+ super();
1831
+
1832
+ /**
1833
+ * Specifies the instance ID of the route reception policy.
1834
+ * @type {string || null}
1835
+ */
1836
+ this.RoutePolicyId = null;
1837
+
1838
+ /**
1839
+ * Route reception policy entry list. when deleting a routing policy rule, use the routepolicyentryid field of RoutePolicyEntry.
1840
+ * @type {Array.<RoutePolicyEntry> || null}
1841
+ */
1842
+ this.RoutePolicyEntrySet = null;
1843
+
1844
+ }
1845
+
1846
+ /**
1847
+ * @private
1848
+ */
1849
+ deserialize(params) {
1850
+ if (!params) {
1851
+ return;
1852
+ }
1853
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
1854
+
1855
+ if (params.RoutePolicyEntrySet) {
1856
+ this.RoutePolicyEntrySet = new Array();
1857
+ for (let z in params.RoutePolicyEntrySet) {
1858
+ let obj = new RoutePolicyEntry();
1859
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
1860
+ this.RoutePolicyEntrySet.push(obj);
1861
+ }
1862
+ }
1863
+
1864
+ }
1865
+ }
1866
+
1824
1867
  /**
1825
1868
  * DetachClassicLinkVpc request structure.
1826
1869
  * @class
@@ -2398,6 +2441,49 @@ class AddBandwidthPackageResourcesRequest extends AbstractModel {
2398
2441
  }
2399
2442
  }
2400
2443
 
2444
+ /**
2445
+ * ReplaceRoutePolicyEntries request structure.
2446
+ * @class
2447
+ */
2448
+ class ReplaceRoutePolicyEntriesRequest extends AbstractModel {
2449
+ constructor(){
2450
+ super();
2451
+
2452
+ /**
2453
+ * Instance ID of the routing strategy, such as rrp-azd4dt1c.
2454
+ * @type {string || null}
2455
+ */
2456
+ this.RoutePolicyId = null;
2457
+
2458
+ /**
2459
+ * Rule list of the routing strategy. requires specifying the policy rule ID (RoutePolicyEntryId).
2460
+ * @type {Array.<RoutePolicyEntry> || null}
2461
+ */
2462
+ this.RoutePolicyEntrySet = null;
2463
+
2464
+ }
2465
+
2466
+ /**
2467
+ * @private
2468
+ */
2469
+ deserialize(params) {
2470
+ if (!params) {
2471
+ return;
2472
+ }
2473
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
2474
+
2475
+ if (params.RoutePolicyEntrySet) {
2476
+ this.RoutePolicyEntrySet = new Array();
2477
+ for (let z in params.RoutePolicyEntrySet) {
2478
+ let obj = new RoutePolicyEntry();
2479
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
2480
+ this.RoutePolicyEntrySet.push(obj);
2481
+ }
2482
+ }
2483
+
2484
+ }
2485
+ }
2486
+
2401
2487
  /**
2402
2488
  * AssignIpv6SubnetCidrBlock request structure.
2403
2489
  * @class
@@ -2441,6 +2527,42 @@ class AssignIpv6SubnetCidrBlockRequest extends AbstractModel {
2441
2527
  }
2442
2528
  }
2443
2529
 
2530
+ /**
2531
+ * ReplaceRoutePolicyAssociations request structure.
2532
+ * @class
2533
+ */
2534
+ class ReplaceRoutePolicyAssociationsRequest extends AbstractModel {
2535
+ constructor(){
2536
+ super();
2537
+
2538
+ /**
2539
+ * Route reception policy binding object list. requires specifying the route reception policy instance ID (RoutePolicyId) and route table instance ID (RouteTableId).
2540
+ * @type {Array.<RoutePolicyAssociation> || null}
2541
+ */
2542
+ this.RoutePolicyAssociationSet = null;
2543
+
2544
+ }
2545
+
2546
+ /**
2547
+ * @private
2548
+ */
2549
+ deserialize(params) {
2550
+ if (!params) {
2551
+ return;
2552
+ }
2553
+
2554
+ if (params.RoutePolicyAssociationSet) {
2555
+ this.RoutePolicyAssociationSet = new Array();
2556
+ for (let z in params.RoutePolicyAssociationSet) {
2557
+ let obj = new RoutePolicyAssociation();
2558
+ obj.deserialize(params.RoutePolicyAssociationSet[z]);
2559
+ this.RoutePolicyAssociationSet.push(obj);
2560
+ }
2561
+ }
2562
+
2563
+ }
2564
+ }
2565
+
2444
2566
  /**
2445
2567
  * CreateVpc response structure.
2446
2568
  * @class
@@ -2591,6 +2713,34 @@ class ModifyNetworkAclEntriesRequest extends AbstractModel {
2591
2713
  }
2592
2714
  }
2593
2715
 
2716
+ /**
2717
+ * ReplaceRoutePolicyAssociations response structure.
2718
+ * @class
2719
+ */
2720
+ class ReplaceRoutePolicyAssociationsResponse extends AbstractModel {
2721
+ constructor(){
2722
+ super();
2723
+
2724
+ /**
2725
+ * 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.
2726
+ * @type {string || null}
2727
+ */
2728
+ this.RequestId = null;
2729
+
2730
+ }
2731
+
2732
+ /**
2733
+ * @private
2734
+ */
2735
+ deserialize(params) {
2736
+ if (!params) {
2737
+ return;
2738
+ }
2739
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
2740
+
2741
+ }
2742
+ }
2743
+
2594
2744
  /**
2595
2745
  * DescribeVpcPrivateIpAddresses request structure.
2596
2746
  * @class
@@ -3369,6 +3519,124 @@ class DisassociateNetworkInterfaceSecurityGroupsRequest extends AbstractModel {
3369
3519
  }
3370
3520
  }
3371
3521
 
3522
+ /**
3523
+ * Route reception policy entry.
3524
+ * @class
3525
+ */
3526
+ class RoutePolicyEntry extends AbstractModel {
3527
+ constructor(){
3528
+ super();
3529
+
3530
+ /**
3531
+ * Specifies the unique ID of the IPv4 routing strategy entry.
3532
+ Note: This field may return null, indicating that no valid value was found.
3533
+ * @type {string || null}
3534
+ */
3535
+ this.RoutePolicyEntryId = null;
3536
+
3537
+ /**
3538
+ * Destination ip range.
3539
+ Note: This field may return null, indicating that no valid value was found.
3540
+ * @type {string || null}
3541
+ */
3542
+ this.CidrBlock = null;
3543
+
3544
+ /**
3545
+ * Describes the routing strategy rule.
3546
+ Note: This field may return null, indicating that no valid value was found.
3547
+ * @type {string || null}
3548
+ */
3549
+ this.Description = null;
3550
+
3551
+ /**
3552
+ * Routing Type
3553
+
3554
+ Specifies the USER-customized data type.
3555
+ NETD: specifies the route for network detection.
3556
+ CCN: CCN route.
3557
+ Note: This field may return null, indicating that no valid value was found.
3558
+ * @type {string || null}
3559
+ */
3560
+ this.RouteType = null;
3561
+
3562
+ /**
3563
+ * Next hop type. types currently supported:.
3564
+ CVM: cloud virtual machine with public network gateway type.
3565
+ VPN: vpn gateway.
3566
+ DIRECTCONNECT: direct connect gateway.
3567
+ PEERCONNECTION: peering connection.
3568
+ HAVIP: high availability virtual ip.
3569
+ NAT: specifies the nat gateway.
3570
+ EIP: specifies the public ip address of the cloud virtual machine.
3571
+ LOCAL_GATEWAY: specifies the local gateway.
3572
+ PVGW: pvgw gateway.
3573
+ Note: This field may return null, indicating that no valid value was found.
3574
+ * @type {string || null}
3575
+ */
3576
+ this.GatewayType = null;
3577
+
3578
+ /**
3579
+ * Gateway unique ID.
3580
+ Note: This field may return null, indicating that no valid value was found.
3581
+ * @type {string || null}
3582
+ */
3583
+ this.GatewayId = null;
3584
+
3585
+ /**
3586
+ * Priority. a smaller value indicates a higher priority.
3587
+ Note: This field may return null, indicating that no valid value was found.
3588
+ * @type {number || null}
3589
+ */
3590
+ this.Priority = null;
3591
+
3592
+ /**
3593
+ * Action.
3594
+ DROP: drop.
3595
+ DISABLE: receive and disable.
3596
+ ACCEPT: receive and enable.
3597
+ Note: This field may return null, indicating that no valid value was found.
3598
+ * @type {string || null}
3599
+ */
3600
+ this.Action = null;
3601
+
3602
+ /**
3603
+ * Creation time.
3604
+
3605
+ Note: This field may return null, indicating that no valid value was found.
3606
+ * @type {string || null}
3607
+ */
3608
+ this.CreatedTime = null;
3609
+
3610
+ /**
3611
+ * Specifies the region.
3612
+ Note: This field may return null, indicating that no valid value was found.
3613
+ * @type {string || null}
3614
+ */
3615
+ this.Region = null;
3616
+
3617
+ }
3618
+
3619
+ /**
3620
+ * @private
3621
+ */
3622
+ deserialize(params) {
3623
+ if (!params) {
3624
+ return;
3625
+ }
3626
+ this.RoutePolicyEntryId = 'RoutePolicyEntryId' in params ? params.RoutePolicyEntryId : null;
3627
+ this.CidrBlock = 'CidrBlock' in params ? params.CidrBlock : null;
3628
+ this.Description = 'Description' in params ? params.Description : null;
3629
+ this.RouteType = 'RouteType' in params ? params.RouteType : null;
3630
+ this.GatewayType = 'GatewayType' in params ? params.GatewayType : null;
3631
+ this.GatewayId = 'GatewayId' in params ? params.GatewayId : null;
3632
+ this.Priority = 'Priority' in params ? params.Priority : null;
3633
+ this.Action = 'Action' in params ? params.Action : null;
3634
+ this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
3635
+ this.Region = 'Region' in params ? params.Region : null;
3636
+
3637
+ }
3638
+ }
3639
+
3372
3640
  /**
3373
3641
  * Security group policy set
3374
3642
  * @class
@@ -4421,6 +4689,41 @@ class DescribeNatGatewaysRequest extends AbstractModel {
4421
4689
  }
4422
4690
  }
4423
4691
 
4692
+ /**
4693
+ * Referred security groups
4694
+ * @class
4695
+ */
4696
+ class ReferredSecurityGroup extends AbstractModel {
4697
+ constructor(){
4698
+ super();
4699
+
4700
+ /**
4701
+ * Security group instance ID.
4702
+ * @type {string || null}
4703
+ */
4704
+ this.SecurityGroupId = null;
4705
+
4706
+ /**
4707
+ * IDs of all referred security group instances.
4708
+ * @type {Array.<string> || null}
4709
+ */
4710
+ this.ReferredSecurityGroupIds = null;
4711
+
4712
+ }
4713
+
4714
+ /**
4715
+ * @private
4716
+ */
4717
+ deserialize(params) {
4718
+ if (!params) {
4719
+ return;
4720
+ }
4721
+ this.SecurityGroupId = 'SecurityGroupId' in params ? params.SecurityGroupId : null;
4722
+ this.ReferredSecurityGroupIds = 'ReferredSecurityGroupIds' in params ? params.ReferredSecurityGroupIds : null;
4723
+
4724
+ }
4725
+ }
4726
+
4424
4727
  /**
4425
4728
  * Cloud virtual machine jumbo frame status.
4426
4729
  * @class
@@ -5430,24 +5733,24 @@ class ModifyAddressInternetChargeTypeResponse extends AbstractModel {
5430
5733
  }
5431
5734
 
5432
5735
  /**
5433
- * UnassignIpv6SubnetCidrBlock request structure.
5736
+ * CreateRoutePolicy response structure.
5434
5737
  * @class
5435
5738
  */
5436
- class UnassignIpv6SubnetCidrBlockRequest extends AbstractModel {
5739
+ class CreateRoutePolicyResponse extends AbstractModel {
5437
5740
  constructor(){
5438
5741
  super();
5439
5742
 
5440
5743
  /**
5441
- * The `ID` of the VPC where the subnet is located, such as `vpc-f49l6u0z`.
5442
- * @type {string || null}
5744
+ * Specifies the routing policy ID and rules.
5745
+ * @type {RoutePolicy || null}
5443
5746
  */
5444
- this.VpcId = null;
5747
+ this.RoutePolicy = null;
5445
5748
 
5446
5749
  /**
5447
- * The `IPv6` subnet IP range list.
5448
- * @type {Array.<Ipv6SubnetCidrBlock> || null}
5750
+ * 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.
5751
+ * @type {string || null}
5449
5752
  */
5450
- this.Ipv6SubnetCidrBlocks = null;
5753
+ this.RequestId = null;
5451
5754
 
5452
5755
  }
5453
5756
 
@@ -5458,16 +5761,13 @@ class UnassignIpv6SubnetCidrBlockRequest extends AbstractModel {
5458
5761
  if (!params) {
5459
5762
  return;
5460
5763
  }
5461
- this.VpcId = 'VpcId' in params ? params.VpcId : null;
5462
5764
 
5463
- if (params.Ipv6SubnetCidrBlocks) {
5464
- this.Ipv6SubnetCidrBlocks = new Array();
5465
- for (let z in params.Ipv6SubnetCidrBlocks) {
5466
- let obj = new Ipv6SubnetCidrBlock();
5467
- obj.deserialize(params.Ipv6SubnetCidrBlocks[z]);
5468
- this.Ipv6SubnetCidrBlocks.push(obj);
5469
- }
5765
+ if (params.RoutePolicy) {
5766
+ let obj = new RoutePolicy();
5767
+ obj.deserialize(params.RoutePolicy)
5768
+ this.RoutePolicy = obj;
5470
5769
  }
5770
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5471
5771
 
5472
5772
  }
5473
5773
  }
@@ -6316,6 +6616,77 @@ class DescribeIp6AddressesRequest extends AbstractModel {
6316
6616
  }
6317
6617
  }
6318
6618
 
6619
+ /**
6620
+ * CreateRoutePolicy request structure.
6621
+ * @class
6622
+ */
6623
+ class CreateRoutePolicyRequest extends AbstractModel {
6624
+ constructor(){
6625
+ super();
6626
+
6627
+ /**
6628
+ * Routing policy description.
6629
+ * @type {string || null}
6630
+ */
6631
+ this.RoutePolicyDescription = null;
6632
+
6633
+ /**
6634
+ * Specifies the routing strategy name.
6635
+ * @type {string || null}
6636
+ */
6637
+ this.RoutePolicyName = null;
6638
+
6639
+ /**
6640
+ * Routing policy entry list.
6641
+ * @type {Array.<RoutePolicyEntry> || null}
6642
+ */
6643
+ this.RoutePolicyEntrySet = null;
6644
+
6645
+ }
6646
+
6647
+ /**
6648
+ * @private
6649
+ */
6650
+ deserialize(params) {
6651
+ if (!params) {
6652
+ return;
6653
+ }
6654
+ this.RoutePolicyDescription = 'RoutePolicyDescription' in params ? params.RoutePolicyDescription : null;
6655
+ this.RoutePolicyName = 'RoutePolicyName' in params ? params.RoutePolicyName : null;
6656
+
6657
+ if (params.RoutePolicyEntrySet) {
6658
+ this.RoutePolicyEntrySet = new Array();
6659
+ for (let z in params.RoutePolicyEntrySet) {
6660
+ let obj = new RoutePolicyEntry();
6661
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
6662
+ this.RoutePolicyEntrySet.push(obj);
6663
+ }
6664
+ }
6665
+
6666
+ }
6667
+ }
6668
+
6669
+ /**
6670
+ * DescribeAccountAttributes request structure.
6671
+ * @class
6672
+ */
6673
+ class DescribeAccountAttributesRequest extends AbstractModel {
6674
+ constructor(){
6675
+ super();
6676
+
6677
+ }
6678
+
6679
+ /**
6680
+ * @private
6681
+ */
6682
+ deserialize(params) {
6683
+ if (!params) {
6684
+ return;
6685
+ }
6686
+
6687
+ }
6688
+ }
6689
+
6319
6690
  /**
6320
6691
  * DescribeAccountAttributes response structure.
6321
6692
  * @class
@@ -6682,6 +7053,34 @@ class ModifyNetworkAclAttributeResponse extends AbstractModel {
6682
7053
  }
6683
7054
  }
6684
7055
 
7056
+ /**
7057
+ * ReplaceRoutePolicyEntries response structure.
7058
+ * @class
7059
+ */
7060
+ class ReplaceRoutePolicyEntriesResponse extends AbstractModel {
7061
+ constructor(){
7062
+ super();
7063
+
7064
+ /**
7065
+ * 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.
7066
+ * @type {string || null}
7067
+ */
7068
+ this.RequestId = null;
7069
+
7070
+ }
7071
+
7072
+ /**
7073
+ * @private
7074
+ */
7075
+ deserialize(params) {
7076
+ if (!params) {
7077
+ return;
7078
+ }
7079
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7080
+
7081
+ }
7082
+ }
7083
+
6685
7084
  /**
6686
7085
  * AddBandwidthPackageResources response structure.
6687
7086
  * @class
@@ -7576,24 +7975,30 @@ class ReplaceDirectConnectGatewayCcnRoutesRequest extends AbstractModel {
7576
7975
  }
7577
7976
 
7578
7977
  /**
7579
- * Referred security groups
7978
+ * DescribeRoutePolicyEntries response structure.
7580
7979
  * @class
7581
7980
  */
7582
- class ReferredSecurityGroup extends AbstractModel {
7981
+ class DescribeRoutePolicyEntriesResponse extends AbstractModel {
7583
7982
  constructor(){
7584
7983
  super();
7585
7984
 
7586
7985
  /**
7587
- * Security group instance ID.
7588
- * @type {string || null}
7986
+ * Route reception policy entry list.
7987
+ * @type {Array.<RoutePolicyEntry> || null}
7589
7988
  */
7590
- this.SecurityGroupId = null;
7989
+ this.RoutePolicyEntrySet = null;
7591
7990
 
7592
7991
  /**
7593
- * IDs of all referred security group instances.
7594
- * @type {Array.<string> || null}
7992
+ * Number of eligible instances.
7993
+ * @type {number || null}
7595
7994
  */
7596
- this.ReferredSecurityGroupIds = null;
7995
+ this.TotalCount = null;
7996
+
7997
+ /**
7998
+ * 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.
7999
+ * @type {string || null}
8000
+ */
8001
+ this.RequestId = null;
7597
8002
 
7598
8003
  }
7599
8004
 
@@ -7604,8 +8009,17 @@ class ReferredSecurityGroup extends AbstractModel {
7604
8009
  if (!params) {
7605
8010
  return;
7606
8011
  }
7607
- this.SecurityGroupId = 'SecurityGroupId' in params ? params.SecurityGroupId : null;
7608
- this.ReferredSecurityGroupIds = 'ReferredSecurityGroupIds' in params ? params.ReferredSecurityGroupIds : null;
8012
+
8013
+ if (params.RoutePolicyEntrySet) {
8014
+ this.RoutePolicyEntrySet = new Array();
8015
+ for (let z in params.RoutePolicyEntrySet) {
8016
+ let obj = new RoutePolicyEntry();
8017
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
8018
+ this.RoutePolicyEntrySet.push(obj);
8019
+ }
8020
+ }
8021
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
8022
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7609
8023
 
7610
8024
  }
7611
8025
  }
@@ -7667,6 +8081,48 @@ class ModifyAddressTemplateAttributeRequest extends AbstractModel {
7667
8081
  }
7668
8082
  }
7669
8083
 
8084
+ /**
8085
+ * ModifyRoutePolicyAttribute request structure.
8086
+ * @class
8087
+ */
8088
+ class ModifyRoutePolicyAttributeRequest extends AbstractModel {
8089
+ constructor(){
8090
+ super();
8091
+
8092
+ /**
8093
+ * Instance ID of the route reception policy, such as rrp-dz0219jq.
8094
+ * @type {string || null}
8095
+ */
8096
+ this.RoutePolicyId = null;
8097
+
8098
+ /**
8099
+ * Specifies the route reception policy name.
8100
+ * @type {string || null}
8101
+ */
8102
+ this.RoutePolicyName = null;
8103
+
8104
+ /**
8105
+ * Describes the route reception policy.
8106
+ * @type {string || null}
8107
+ */
8108
+ this.RoutePolicyDescription = null;
8109
+
8110
+ }
8111
+
8112
+ /**
8113
+ * @private
8114
+ */
8115
+ deserialize(params) {
8116
+ if (!params) {
8117
+ return;
8118
+ }
8119
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
8120
+ this.RoutePolicyName = 'RoutePolicyName' in params ? params.RoutePolicyName : null;
8121
+ this.RoutePolicyDescription = 'RoutePolicyDescription' in params ? params.RoutePolicyDescription : null;
8122
+
8123
+ }
8124
+ }
8125
+
7670
8126
  /**
7671
8127
  * CreateNatGateway response structure.
7672
8128
  * @class
@@ -7717,6 +8173,49 @@ class CreateNatGatewayResponse extends AbstractModel {
7717
8173
  }
7718
8174
  }
7719
8175
 
8176
+ /**
8177
+ * ResetRoutePolicyAssociations request structure.
8178
+ * @class
8179
+ */
8180
+ class ResetRoutePolicyAssociationsRequest extends AbstractModel {
8181
+ constructor(){
8182
+ super();
8183
+
8184
+ /**
8185
+ * Routing table instance ID, e.g., rtb-azd4dt1c.
8186
+ * @type {string || null}
8187
+ */
8188
+ this.RouteTableId = null;
8189
+
8190
+ /**
8191
+ * The list of routing policy binding objects (RoutePolicyAssociation). note: the route table instance ID (RouteTableId) in the binding must match the RouteTableId parameter of this API (that is, this API only supports modifying the strategy binding relationship and priority within the same route table instance).
8192
+ * @type {Array.<RoutePolicyAssociation> || null}
8193
+ */
8194
+ this.RoutePolicyAssociationSet = null;
8195
+
8196
+ }
8197
+
8198
+ /**
8199
+ * @private
8200
+ */
8201
+ deserialize(params) {
8202
+ if (!params) {
8203
+ return;
8204
+ }
8205
+ this.RouteTableId = 'RouteTableId' in params ? params.RouteTableId : null;
8206
+
8207
+ if (params.RoutePolicyAssociationSet) {
8208
+ this.RoutePolicyAssociationSet = new Array();
8209
+ for (let z in params.RoutePolicyAssociationSet) {
8210
+ let obj = new RoutePolicyAssociation();
8211
+ obj.deserialize(params.RoutePolicyAssociationSet[z]);
8212
+ this.RoutePolicyAssociationSet.push(obj);
8213
+ }
8214
+ }
8215
+
8216
+ }
8217
+ }
8218
+
7720
8219
  /**
7721
8220
  * DescribeVpcs response structure.
7722
8221
  * @class
@@ -8218,19 +8717,13 @@ class DescribeFlowLogResponse extends AbstractModel {
8218
8717
  }
8219
8718
 
8220
8719
  /**
8221
- * DownloadCustomerGatewayConfiguration response structure.
8720
+ * DeleteRoutePolicyEntries response structure.
8222
8721
  * @class
8223
8722
  */
8224
- class DownloadCustomerGatewayConfigurationResponse extends AbstractModel {
8723
+ class DeleteRoutePolicyEntriesResponse extends AbstractModel {
8225
8724
  constructor(){
8226
8725
  super();
8227
8726
 
8228
- /**
8229
- * Configuration information in XML format.
8230
- * @type {string || null}
8231
- */
8232
- this.CustomerGatewayConfiguration = null;
8233
-
8234
8727
  /**
8235
8728
  * 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.
8236
8729
  * @type {string || null}
@@ -8246,7 +8739,6 @@ class DownloadCustomerGatewayConfigurationResponse extends AbstractModel {
8246
8739
  if (!params) {
8247
8740
  return;
8248
8741
  }
8249
- this.CustomerGatewayConfiguration = 'CustomerGatewayConfiguration' in params ? params.CustomerGatewayConfiguration : null;
8250
8742
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
8251
8743
 
8252
8744
  }
@@ -9798,6 +10290,34 @@ Note: this field may return `null`, indicating that no valid value can be found.
9798
10290
  }
9799
10291
  }
9800
10292
 
10293
+ /**
10294
+ * DeleteRoutePolicy response structure.
10295
+ * @class
10296
+ */
10297
+ class DeleteRoutePolicyResponse extends AbstractModel {
10298
+ constructor(){
10299
+ super();
10300
+
10301
+ /**
10302
+ * 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.
10303
+ * @type {string || null}
10304
+ */
10305
+ this.RequestId = null;
10306
+
10307
+ }
10308
+
10309
+ /**
10310
+ * @private
10311
+ */
10312
+ deserialize(params) {
10313
+ if (!params) {
10314
+ return;
10315
+ }
10316
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10317
+
10318
+ }
10319
+ }
10320
+
9801
10321
  /**
9802
10322
  * DescribeVpcIpv6Addresses response structure.
9803
10323
  * @class
@@ -10145,6 +10665,34 @@ class AssociateNetworkAclSubnetsRequest extends AbstractModel {
10145
10665
  }
10146
10666
  }
10147
10667
 
10668
+ /**
10669
+ * ResetRoutePolicyEntries response structure.
10670
+ * @class
10671
+ */
10672
+ class ResetRoutePolicyEntriesResponse extends AbstractModel {
10673
+ constructor(){
10674
+ super();
10675
+
10676
+ /**
10677
+ * 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.
10678
+ * @type {string || null}
10679
+ */
10680
+ this.RequestId = null;
10681
+
10682
+ }
10683
+
10684
+ /**
10685
+ * @private
10686
+ */
10687
+ deserialize(params) {
10688
+ if (!params) {
10689
+ return;
10690
+ }
10691
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10692
+
10693
+ }
10694
+ }
10695
+
10148
10696
  /**
10149
10697
  * CheckAssistantCidr request structure.
10150
10698
  * @class
@@ -11432,6 +11980,49 @@ class DescribeSubnetResourceDashboardRequest extends AbstractModel {
11432
11980
  }
11433
11981
  }
11434
11982
 
11983
+ /**
11984
+ * CreateRoutePolicyEntries request structure.
11985
+ * @class
11986
+ */
11987
+ class CreateRoutePolicyEntriesRequest extends AbstractModel {
11988
+ constructor(){
11989
+ super();
11990
+
11991
+ /**
11992
+ * Specifies the instance ID of the route reception policy.
11993
+ * @type {string || null}
11994
+ */
11995
+ this.RoutePolicyId = null;
11996
+
11997
+ /**
11998
+ * Route reception policy entry list.
11999
+ * @type {Array.<RoutePolicyEntry> || null}
12000
+ */
12001
+ this.RoutePolicyEntrySet = null;
12002
+
12003
+ }
12004
+
12005
+ /**
12006
+ * @private
12007
+ */
12008
+ deserialize(params) {
12009
+ if (!params) {
12010
+ return;
12011
+ }
12012
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
12013
+
12014
+ if (params.RoutePolicyEntrySet) {
12015
+ this.RoutePolicyEntrySet = new Array();
12016
+ for (let z in params.RoutePolicyEntrySet) {
12017
+ let obj = new RoutePolicyEntry();
12018
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
12019
+ this.RoutePolicyEntrySet.push(obj);
12020
+ }
12021
+ }
12022
+
12023
+ }
12024
+ }
12025
+
11435
12026
  /**
11436
12027
  * DeleteServiceTemplateGroup response structure.
11437
12028
  * @class
@@ -11706,14 +12297,12 @@ class Tag extends AbstractModel {
11706
12297
 
11707
12298
  /**
11708
12299
  * Tag key
11709
- Note: This field may return null, indicating no valid value.
11710
12300
  * @type {string || null}
11711
12301
  */
11712
12302
  this.Key = null;
11713
12303
 
11714
12304
  /**
11715
12305
  * Tag value
11716
- Note: This field may return null, indicating no valid value.
11717
12306
  * @type {string || null}
11718
12307
  */
11719
12308
  this.Value = null;
@@ -13943,6 +14532,49 @@ class ModifyCcnAttachedInstancesAttributeResponse extends AbstractModel {
13943
14532
  }
13944
14533
  }
13945
14534
 
14535
+ /**
14536
+ * UnassignIpv6SubnetCidrBlock request structure.
14537
+ * @class
14538
+ */
14539
+ class UnassignIpv6SubnetCidrBlockRequest extends AbstractModel {
14540
+ constructor(){
14541
+ super();
14542
+
14543
+ /**
14544
+ * The `ID` of the VPC where the subnet is located, such as `vpc-f49l6u0z`.
14545
+ * @type {string || null}
14546
+ */
14547
+ this.VpcId = null;
14548
+
14549
+ /**
14550
+ * The `IPv6` subnet IP range list.
14551
+ * @type {Array.<Ipv6SubnetCidrBlock> || null}
14552
+ */
14553
+ this.Ipv6SubnetCidrBlocks = null;
14554
+
14555
+ }
14556
+
14557
+ /**
14558
+ * @private
14559
+ */
14560
+ deserialize(params) {
14561
+ if (!params) {
14562
+ return;
14563
+ }
14564
+ this.VpcId = 'VpcId' in params ? params.VpcId : null;
14565
+
14566
+ if (params.Ipv6SubnetCidrBlocks) {
14567
+ this.Ipv6SubnetCidrBlocks = new Array();
14568
+ for (let z in params.Ipv6SubnetCidrBlocks) {
14569
+ let obj = new Ipv6SubnetCidrBlock();
14570
+ obj.deserialize(params.Ipv6SubnetCidrBlocks[z]);
14571
+ this.Ipv6SubnetCidrBlocks.push(obj);
14572
+ }
14573
+ }
14574
+
14575
+ }
14576
+ }
14577
+
13946
14578
  /**
13947
14579
  * CreateNetworkAcl request structure.
13948
14580
  * @class
@@ -14732,6 +15364,34 @@ class EnableRoutesResponse extends AbstractModel {
14732
15364
  }
14733
15365
  }
14734
15366
 
15367
+ /**
15368
+ * ModifyRoutePolicyAttribute response structure.
15369
+ * @class
15370
+ */
15371
+ class ModifyRoutePolicyAttributeResponse extends AbstractModel {
15372
+ constructor(){
15373
+ super();
15374
+
15375
+ /**
15376
+ * 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.
15377
+ * @type {string || null}
15378
+ */
15379
+ this.RequestId = null;
15380
+
15381
+ }
15382
+
15383
+ /**
15384
+ * @private
15385
+ */
15386
+ deserialize(params) {
15387
+ if (!params) {
15388
+ return;
15389
+ }
15390
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
15391
+
15392
+ }
15393
+ }
15394
+
14735
15395
  /**
14736
15396
  * DeleteVpnConnection request structure.
14737
15397
  * @class
@@ -15901,6 +16561,34 @@ Note: this field may return `null`, indicating that no valid values can be obtai
15901
16561
  }
15902
16562
  }
15903
16563
 
16564
+ /**
16565
+ * ResetRoutePolicyAssociations response structure.
16566
+ * @class
16567
+ */
16568
+ class ResetRoutePolicyAssociationsResponse extends AbstractModel {
16569
+ constructor(){
16570
+ super();
16571
+
16572
+ /**
16573
+ * 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.
16574
+ * @type {string || null}
16575
+ */
16576
+ this.RequestId = null;
16577
+
16578
+ }
16579
+
16580
+ /**
16581
+ * @private
16582
+ */
16583
+ deserialize(params) {
16584
+ if (!params) {
16585
+ return;
16586
+ }
16587
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
16588
+
16589
+ }
16590
+ }
16591
+
15904
16592
  /**
15905
16593
  * DescribeVpnGatewayCcnRoutes request structure.
15906
16594
  * @class
@@ -16046,6 +16734,57 @@ class CreateNetworkAclQuintupleEntriesRequest extends AbstractModel {
16046
16734
  }
16047
16735
  }
16048
16736
 
16737
+ /**
16738
+ * DescribeDirectConnectGatewayCcnRoutes request structure.
16739
+ * @class
16740
+ */
16741
+ class DescribeDirectConnectGatewayCcnRoutesRequest extends AbstractModel {
16742
+ constructor(){
16743
+ super();
16744
+
16745
+ /**
16746
+ * The ID of the Direct Connect gateway, such as `dcg-prpqlmg1`.
16747
+ * @type {string || null}
16748
+ */
16749
+ this.DirectConnectGatewayId = null;
16750
+
16751
+ /**
16752
+ * The route learning type of the CCN. Available values:
16753
+ <li>`BGP` - Automatic learning.</li>
16754
+ <li>`STATIC` - Static means user-configured. This is the default value.</li>
16755
+ * @type {string || null}
16756
+ */
16757
+ this.CcnRouteType = null;
16758
+
16759
+ /**
16760
+ * Offset.
16761
+ * @type {number || null}
16762
+ */
16763
+ this.Offset = null;
16764
+
16765
+ /**
16766
+ * The returned quantity.
16767
+ * @type {number || null}
16768
+ */
16769
+ this.Limit = null;
16770
+
16771
+ }
16772
+
16773
+ /**
16774
+ * @private
16775
+ */
16776
+ deserialize(params) {
16777
+ if (!params) {
16778
+ return;
16779
+ }
16780
+ this.DirectConnectGatewayId = 'DirectConnectGatewayId' in params ? params.DirectConnectGatewayId : null;
16781
+ this.CcnRouteType = 'CcnRouteType' in params ? params.CcnRouteType : null;
16782
+ this.Offset = 'Offset' in params ? params.Offset : null;
16783
+ this.Limit = 'Limit' in params ? params.Limit : null;
16784
+
16785
+ }
16786
+ }
16787
+
16049
16788
  /**
16050
16789
  * DescribeClassicLinkInstances response structure.
16051
16790
  * @class
@@ -17794,6 +18533,63 @@ class ModifySnapshotPoliciesResponse extends AbstractModel {
17794
18533
  }
17795
18534
  }
17796
18535
 
18536
+ /**
18537
+ * ResetRoutePolicyEntries request structure.
18538
+ * @class
18539
+ */
18540
+ class ResetRoutePolicyEntriesRequest extends AbstractModel {
18541
+ constructor(){
18542
+ super();
18543
+
18544
+ /**
18545
+ * Specifies the instance ID of the route reception policy, such as rrp-azd4dt1c.
18546
+ * @type {string || null}
18547
+ */
18548
+ this.RoutePolicyId = null;
18549
+
18550
+ /**
18551
+ * Route reception policy entry list. requires specifying the routing strategy entry ID (RoutePolicyEntryId).
18552
+ * @type {Array.<RoutePolicyEntry> || null}
18553
+ */
18554
+ this.RoutePolicyEntrySet = null;
18555
+
18556
+ /**
18557
+ * Describes the route reception policy.
18558
+ * @type {string || null}
18559
+ */
18560
+ this.RoutePolicyDescription = null;
18561
+
18562
+ /**
18563
+ * Specifies the route reception policy name.
18564
+ * @type {string || null}
18565
+ */
18566
+ this.RoutePolicyName = null;
18567
+
18568
+ }
18569
+
18570
+ /**
18571
+ * @private
18572
+ */
18573
+ deserialize(params) {
18574
+ if (!params) {
18575
+ return;
18576
+ }
18577
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
18578
+
18579
+ if (params.RoutePolicyEntrySet) {
18580
+ this.RoutePolicyEntrySet = new Array();
18581
+ for (let z in params.RoutePolicyEntrySet) {
18582
+ let obj = new RoutePolicyEntry();
18583
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
18584
+ this.RoutePolicyEntrySet.push(obj);
18585
+ }
18586
+ }
18587
+ this.RoutePolicyDescription = 'RoutePolicyDescription' in params ? params.RoutePolicyDescription : null;
18588
+ this.RoutePolicyName = 'RoutePolicyName' in params ? params.RoutePolicyName : null;
18589
+
18590
+ }
18591
+ }
18592
+
17797
18593
  /**
17798
18594
  * InquiryPriceRenewAddresses response structure.
17799
18595
  * @class
@@ -17835,13 +18631,128 @@ class InquiryPriceRenewAddressesResponse extends AbstractModel {
17835
18631
  }
17836
18632
 
17837
18633
  /**
17838
- * DescribeAccountAttributes request structure.
18634
+ * DeleteRoutePolicyAssociations response structure.
17839
18635
  * @class
17840
18636
  */
17841
- class DescribeAccountAttributesRequest extends AbstractModel {
18637
+ class DeleteRoutePolicyAssociationsResponse extends AbstractModel {
18638
+ constructor(){
18639
+ super();
18640
+
18641
+ /**
18642
+ * 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.
18643
+ * @type {string || null}
18644
+ */
18645
+ this.RequestId = null;
18646
+
18647
+ }
18648
+
18649
+ /**
18650
+ * @private
18651
+ */
18652
+ deserialize(params) {
18653
+ if (!params) {
18654
+ return;
18655
+ }
18656
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
18657
+
18658
+ }
18659
+ }
18660
+
18661
+ /**
18662
+ * CreateRoutePolicyAssociations request structure.
18663
+ * @class
18664
+ */
18665
+ class CreateRoutePolicyAssociationsRequest extends AbstractModel {
18666
+ constructor(){
18667
+ super();
18668
+
18669
+ /**
18670
+ * Route reception policy binding object list.
18671
+ * @type {Array.<RoutePolicyAssociation> || null}
18672
+ */
18673
+ this.RoutePolicyAssociationSet = null;
18674
+
18675
+ }
18676
+
18677
+ /**
18678
+ * @private
18679
+ */
18680
+ deserialize(params) {
18681
+ if (!params) {
18682
+ return;
18683
+ }
18684
+
18685
+ if (params.RoutePolicyAssociationSet) {
18686
+ this.RoutePolicyAssociationSet = new Array();
18687
+ for (let z in params.RoutePolicyAssociationSet) {
18688
+ let obj = new RoutePolicyAssociation();
18689
+ obj.deserialize(params.RoutePolicyAssociationSet[z]);
18690
+ this.RoutePolicyAssociationSet.push(obj);
18691
+ }
18692
+ }
18693
+
18694
+ }
18695
+ }
18696
+
18697
+ /**
18698
+ * Route reception policy. when CCN or other services add routes to a VPC custom route table, you can drop or enable appropriate route entries.
18699
+ * @class
18700
+ */
18701
+ class RoutePolicy extends AbstractModel {
17842
18702
  constructor(){
17843
18703
  super();
17844
18704
 
18705
+ /**
18706
+ * Unique ID of the routing policy.
18707
+
18708
+ Note: This field may return null, indicating that no valid value was found.
18709
+ * @type {string || null}
18710
+ */
18711
+ this.RoutePolicyId = null;
18712
+
18713
+ /**
18714
+ * Specifies the routing strategy name.
18715
+ Note: This field may return null, indicating that no valid value was found.
18716
+ * @type {string || null}
18717
+ */
18718
+ this.RoutePolicyName = null;
18719
+
18720
+ /**
18721
+ * Routing policy description.
18722
+
18723
+ Note: This field may return null, indicating that no valid value was found.
18724
+ * @type {string || null}
18725
+ */
18726
+ this.RoutePolicyDescription = null;
18727
+
18728
+ /**
18729
+ * Routing policy rule list.
18730
+ Note: This field may return null, indicating that no valid value was found.
18731
+ * @type {Array.<RoutePolicyEntry> || null}
18732
+ */
18733
+ this.RoutePolicyEntrySet = null;
18734
+
18735
+ /**
18736
+ * Specifies the routing strategy binding.
18737
+ Note: This field may return null, indicating that no valid value was found.
18738
+ * @type {Array.<RoutePolicyAssociation> || null}
18739
+ */
18740
+ this.RoutePolicyAssociationSet = null;
18741
+
18742
+ /**
18743
+ * Creation time.
18744
+
18745
+ Note: This field may return null, indicating that no valid value was found.
18746
+ * @type {string || null}
18747
+ */
18748
+ this.CreatedTime = null;
18749
+
18750
+ /**
18751
+ * Tag key-value pair.
18752
+ * @type {Array.<Tag> || null}
18753
+ */
18754
+ this.TagSet = null;
18755
+
17845
18756
  }
17846
18757
 
17847
18758
  /**
@@ -17851,6 +18762,37 @@ class DescribeAccountAttributesRequest extends AbstractModel {
17851
18762
  if (!params) {
17852
18763
  return;
17853
18764
  }
18765
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
18766
+ this.RoutePolicyName = 'RoutePolicyName' in params ? params.RoutePolicyName : null;
18767
+ this.RoutePolicyDescription = 'RoutePolicyDescription' in params ? params.RoutePolicyDescription : null;
18768
+
18769
+ if (params.RoutePolicyEntrySet) {
18770
+ this.RoutePolicyEntrySet = new Array();
18771
+ for (let z in params.RoutePolicyEntrySet) {
18772
+ let obj = new RoutePolicyEntry();
18773
+ obj.deserialize(params.RoutePolicyEntrySet[z]);
18774
+ this.RoutePolicyEntrySet.push(obj);
18775
+ }
18776
+ }
18777
+
18778
+ if (params.RoutePolicyAssociationSet) {
18779
+ this.RoutePolicyAssociationSet = new Array();
18780
+ for (let z in params.RoutePolicyAssociationSet) {
18781
+ let obj = new RoutePolicyAssociation();
18782
+ obj.deserialize(params.RoutePolicyAssociationSet[z]);
18783
+ this.RoutePolicyAssociationSet.push(obj);
18784
+ }
18785
+ }
18786
+ this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
18787
+
18788
+ if (params.TagSet) {
18789
+ this.TagSet = new Array();
18790
+ for (let z in params.TagSet) {
18791
+ let obj = new Tag();
18792
+ obj.deserialize(params.TagSet[z]);
18793
+ this.TagSet.push(obj);
18794
+ }
18795
+ }
17854
18796
 
17855
18797
  }
17856
18798
  }
@@ -19295,38 +20237,18 @@ class ModifyBandwidthPackageBandwidthResponse extends AbstractModel {
19295
20237
  }
19296
20238
 
19297
20239
  /**
19298
- * DescribeDirectConnectGatewayCcnRoutes request structure.
20240
+ * DeleteRoutePolicyAssociations request structure.
19299
20241
  * @class
19300
20242
  */
19301
- class DescribeDirectConnectGatewayCcnRoutesRequest extends AbstractModel {
20243
+ class DeleteRoutePolicyAssociationsRequest extends AbstractModel {
19302
20244
  constructor(){
19303
20245
  super();
19304
20246
 
19305
20247
  /**
19306
- * The ID of the Direct Connect gateway, such as `dcg-prpqlmg1`.
19307
- * @type {string || null}
19308
- */
19309
- this.DirectConnectGatewayId = null;
19310
-
19311
- /**
19312
- * The route learning type of the CCN. Available values:
19313
- <li>`BGP` - Automatic learning.</li>
19314
- <li>`STATIC` - Static means user-configured. This is the default value.</li>
19315
- * @type {string || null}
19316
- */
19317
- this.CcnRouteType = null;
19318
-
19319
- /**
19320
- * Offset.
19321
- * @type {number || null}
19322
- */
19323
- this.Offset = null;
19324
-
19325
- /**
19326
- * The returned quantity.
19327
- * @type {number || null}
20248
+ * Routing policy binding object list. during routing policy unbinding, use the RouteTableId and RoutePolicyId fields of RoutePolicyAssociation (you do not need to fill in the Priority field).
20249
+ * @type {Array.<RoutePolicyAssociation> || null}
19328
20250
  */
19329
- this.Limit = null;
20251
+ this.RoutePolicyAssociationSet = null;
19330
20252
 
19331
20253
  }
19332
20254
 
@@ -19337,10 +20259,15 @@ class DescribeDirectConnectGatewayCcnRoutesRequest extends AbstractModel {
19337
20259
  if (!params) {
19338
20260
  return;
19339
20261
  }
19340
- this.DirectConnectGatewayId = 'DirectConnectGatewayId' in params ? params.DirectConnectGatewayId : null;
19341
- this.CcnRouteType = 'CcnRouteType' in params ? params.CcnRouteType : null;
19342
- this.Offset = 'Offset' in params ? params.Offset : null;
19343
- this.Limit = 'Limit' in params ? params.Limit : null;
20262
+
20263
+ if (params.RoutePolicyAssociationSet) {
20264
+ this.RoutePolicyAssociationSet = new Array();
20265
+ for (let z in params.RoutePolicyAssociationSet) {
20266
+ let obj = new RoutePolicyAssociation();
20267
+ obj.deserialize(params.RoutePolicyAssociationSet[z]);
20268
+ this.RoutePolicyAssociationSet.push(obj);
20269
+ }
20270
+ }
19344
20271
 
19345
20272
  }
19346
20273
  }
@@ -20898,7 +21825,37 @@ class AllocateIPv6AddressesResponse extends AbstractModel {
20898
21825
  * 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.
20899
21826
  * @type {string || null}
20900
21827
  */
20901
- this.RequestId = null;
21828
+ this.RequestId = null;
21829
+
21830
+ }
21831
+
21832
+ /**
21833
+ * @private
21834
+ */
21835
+ deserialize(params) {
21836
+ if (!params) {
21837
+ return;
21838
+ }
21839
+ this.AddressSet = 'AddressSet' in params ? params.AddressSet : null;
21840
+ this.TaskId = 'TaskId' in params ? params.TaskId : null;
21841
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
21842
+
21843
+ }
21844
+ }
21845
+
21846
+ /**
21847
+ * DeleteSnapshotPolicies request structure.
21848
+ * @class
21849
+ */
21850
+ class DeleteSnapshotPoliciesRequest extends AbstractModel {
21851
+ constructor(){
21852
+ super();
21853
+
21854
+ /**
21855
+ * Snapshot policy IDs
21856
+ * @type {Array.<string> || null}
21857
+ */
21858
+ this.SnapshotPolicyIds = null;
20902
21859
 
20903
21860
  }
20904
21861
 
@@ -20909,9 +21866,7 @@ class AllocateIPv6AddressesResponse extends AbstractModel {
20909
21866
  if (!params) {
20910
21867
  return;
20911
21868
  }
20912
- this.AddressSet = 'AddressSet' in params ? params.AddressSet : null;
20913
- this.TaskId = 'TaskId' in params ? params.TaskId : null;
20914
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
21869
+ this.SnapshotPolicyIds = 'SnapshotPolicyIds' in params ? params.SnapshotPolicyIds : null;
20915
21870
 
20916
21871
  }
20917
21872
  }
@@ -25488,18 +26443,24 @@ class DestinationIpPortTranslationNatRule extends AbstractModel {
25488
26443
  }
25489
26444
 
25490
26445
  /**
25491
- * DeleteSnapshotPolicies request structure.
26446
+ * CheckNetDetectState response structure.
25492
26447
  * @class
25493
26448
  */
25494
- class DeleteSnapshotPoliciesRequest extends AbstractModel {
26449
+ class CheckNetDetectStateResponse extends AbstractModel {
25495
26450
  constructor(){
25496
26451
  super();
25497
26452
 
25498
26453
  /**
25499
- * Snapshot policy IDs
25500
- * @type {Array.<string> || null}
26454
+ * The array of network detection verification results.
26455
+ * @type {Array.<NetDetectIpState> || null}
25501
26456
  */
25502
- this.SnapshotPolicyIds = null;
26457
+ this.NetDetectIpStateSet = null;
26458
+
26459
+ /**
26460
+ * 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.
26461
+ * @type {string || null}
26462
+ */
26463
+ this.RequestId = null;
25503
26464
 
25504
26465
  }
25505
26466
 
@@ -25510,7 +26471,16 @@ class DeleteSnapshotPoliciesRequest extends AbstractModel {
25510
26471
  if (!params) {
25511
26472
  return;
25512
26473
  }
25513
- this.SnapshotPolicyIds = 'SnapshotPolicyIds' in params ? params.SnapshotPolicyIds : null;
26474
+
26475
+ if (params.NetDetectIpStateSet) {
26476
+ this.NetDetectIpStateSet = new Array();
26477
+ for (let z in params.NetDetectIpStateSet) {
26478
+ let obj = new NetDetectIpState();
26479
+ obj.deserialize(params.NetDetectIpStateSet[z]);
26480
+ this.NetDetectIpStateSet.push(obj);
26481
+ }
26482
+ }
26483
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
25514
26484
 
25515
26485
  }
25516
26486
  }
@@ -26024,24 +26994,18 @@ class DescribeAddressTemplateGroupsRequest extends AbstractModel {
26024
26994
  }
26025
26995
 
26026
26996
  /**
26027
- * CheckNetDetectState response structure.
26997
+ * DeleteRoutePolicy request structure.
26028
26998
  * @class
26029
26999
  */
26030
- class CheckNetDetectStateResponse extends AbstractModel {
27000
+ class DeleteRoutePolicyRequest extends AbstractModel {
26031
27001
  constructor(){
26032
27002
  super();
26033
27003
 
26034
27004
  /**
26035
- * The array of network detection verification results.
26036
- * @type {Array.<NetDetectIpState> || null}
26037
- */
26038
- this.NetDetectIpStateSet = null;
26039
-
26040
- /**
26041
- * 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.
27005
+ * Specifies the unique ID of the route reception policy.
26042
27006
  * @type {string || null}
26043
27007
  */
26044
- this.RequestId = null;
27008
+ this.RoutePolicyId = null;
26045
27009
 
26046
27010
  }
26047
27011
 
@@ -26052,16 +27016,7 @@ class CheckNetDetectStateResponse extends AbstractModel {
26052
27016
  if (!params) {
26053
27017
  return;
26054
27018
  }
26055
-
26056
- if (params.NetDetectIpStateSet) {
26057
- this.NetDetectIpStateSet = new Array();
26058
- for (let z in params.NetDetectIpStateSet) {
26059
- let obj = new NetDetectIpState();
26060
- obj.deserialize(params.NetDetectIpStateSet[z]);
26061
- this.NetDetectIpStateSet.push(obj);
26062
- }
26063
- }
26064
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
27019
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
26065
27020
 
26066
27021
  }
26067
27022
  }
@@ -28230,6 +29185,41 @@ class ReplaceDirectConnectGatewayCcnRoutesResponse extends AbstractModel {
28230
29185
  }
28231
29186
  }
28232
29187
 
29188
+ /**
29189
+ * DownloadCustomerGatewayConfiguration response structure.
29190
+ * @class
29191
+ */
29192
+ class DownloadCustomerGatewayConfigurationResponse extends AbstractModel {
29193
+ constructor(){
29194
+ super();
29195
+
29196
+ /**
29197
+ * Configuration information in XML format.
29198
+ * @type {string || null}
29199
+ */
29200
+ this.CustomerGatewayConfiguration = null;
29201
+
29202
+ /**
29203
+ * 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.
29204
+ * @type {string || null}
29205
+ */
29206
+ this.RequestId = null;
29207
+
29208
+ }
29209
+
29210
+ /**
29211
+ * @private
29212
+ */
29213
+ deserialize(params) {
29214
+ if (!params) {
29215
+ return;
29216
+ }
29217
+ this.CustomerGatewayConfiguration = 'CustomerGatewayConfiguration' in params ? params.CustomerGatewayConfiguration : null;
29218
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
29219
+
29220
+ }
29221
+ }
29222
+
28233
29223
  /**
28234
29224
  * ModifySecurityGroupPolicies response structure.
28235
29225
  * @class
@@ -29310,6 +30300,88 @@ Note: This field may return null, indicating no valid value.
29310
30300
  }
29311
30301
  }
29312
30302
 
30303
+ /**
30304
+ * DescribeRoutePolicyEntries request structure.
30305
+ * @class
30306
+ */
30307
+ class DescribeRoutePolicyEntriesRequest extends AbstractModel {
30308
+ constructor(){
30309
+ super();
30310
+
30311
+ /**
30312
+ * Filter criteria. RoutePolicyEntryIds and Filters cannot be specified at the same time.
30313
+ <li>route-policy-id - String - (filter condition) specifies the instance id of the route reception policy, such as rrp-f49l6u0z.</li>.
30314
+ <li>cidr-block - String - (filter condition) cidr (subnet part before the mask), such as 10.0.0.0/8.</li>.
30315
+ <li>priority - Integer - filter condition. specifies the priority, such as 20.</li>.
30316
+ <li>gateway-type - String - (filter criteria) next hop type, such as CVM.</li>.
30317
+ <li>GatewayId - String - specifies the unique id of the next hop instance, such as ccn-f49l6u0z.</li>.
30318
+ <li>route-type - String - (filter condition) routing type. valid values: USER (USER route), NETD (route issued by network probe), CCN (CCN route).</li>.
30319
+ <li>action - String - (filter condition) specifies the action. valid values: DROP (DROP), DISABLE (receive and DISABLE), ACCEPT (receive and enable).</li>.
30320
+ <li>description - String - specifies the filter condition description, such as TEST.</li>.
30321
+ <li>route-policy-item-id - String - (filter condition) specifies the entry unique id of the route reception policy, such as rrpi-dq782kw7.</li>.
30322
+ * @type {Array.<Filter> || null}
30323
+ */
30324
+ this.Filters = null;
30325
+
30326
+ /**
30327
+ * Offset.
30328
+ * @type {number || null}
30329
+ */
30330
+ this.Offset = null;
30331
+
30332
+ /**
30333
+ * Number of request objects.
30334
+ * @type {number || null}
30335
+ */
30336
+ this.Limit = null;
30337
+
30338
+ /**
30339
+ * Sorting field. currently only supports the priority field.
30340
+ * @type {string || null}
30341
+ */
30342
+ this.OrderField = null;
30343
+
30344
+ /**
30345
+ * Specifies the sorting order.
30346
+ ASC: ascending order.
30347
+ DESC: descending order.
30348
+ * @type {string || null}
30349
+ */
30350
+ this.OrderDirection = null;
30351
+
30352
+ /**
30353
+ * Specifies the routing strategy entry ID.
30354
+ * @type {Array.<string> || null}
30355
+ */
30356
+ this.RoutePolicyEntryIds = null;
30357
+
30358
+ }
30359
+
30360
+ /**
30361
+ * @private
30362
+ */
30363
+ deserialize(params) {
30364
+ if (!params) {
30365
+ return;
30366
+ }
30367
+
30368
+ if (params.Filters) {
30369
+ this.Filters = new Array();
30370
+ for (let z in params.Filters) {
30371
+ let obj = new Filter();
30372
+ obj.deserialize(params.Filters[z]);
30373
+ this.Filters.push(obj);
30374
+ }
30375
+ }
30376
+ this.Offset = 'Offset' in params ? params.Offset : null;
30377
+ this.Limit = 'Limit' in params ? params.Limit : null;
30378
+ this.OrderField = 'OrderField' in params ? params.OrderField : null;
30379
+ this.OrderDirection = 'OrderDirection' in params ? params.OrderDirection : null;
30380
+ this.RoutePolicyEntryIds = 'RoutePolicyEntryIds' in params ? params.RoutePolicyEntryIds : null;
30381
+
30382
+ }
30383
+ }
30384
+
29313
30385
  /**
29314
30386
  * Details of allowed endpoint services
29315
30387
  * @class
@@ -30284,6 +31356,34 @@ class CreateRouteTableResponse extends AbstractModel {
30284
31356
  }
30285
31357
  }
30286
31358
 
31359
+ /**
31360
+ * CreateRoutePolicyEntries response structure.
31361
+ * @class
31362
+ */
31363
+ class CreateRoutePolicyEntriesResponse extends AbstractModel {
31364
+ constructor(){
31365
+ super();
31366
+
31367
+ /**
31368
+ * 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.
31369
+ * @type {string || null}
31370
+ */
31371
+ this.RequestId = null;
31372
+
31373
+ }
31374
+
31375
+ /**
31376
+ * @private
31377
+ */
31378
+ deserialize(params) {
31379
+ if (!params) {
31380
+ return;
31381
+ }
31382
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
31383
+
31384
+ }
31385
+ }
31386
+
30287
31387
  /**
30288
31388
  * DeleteDirectConnectGateway request structure.
30289
31389
  * @class
@@ -30581,6 +31681,48 @@ class ModifyCcnAttributeResponse extends AbstractModel {
30581
31681
  }
30582
31682
  }
30583
31683
 
31684
+ /**
31685
+ * Route reception policy binding. used to bind the route table and route reception policy and specify the binding priority.
31686
+ * @class
31687
+ */
31688
+ class RoutePolicyAssociation extends AbstractModel {
31689
+ constructor(){
31690
+ super();
31691
+
31692
+ /**
31693
+ * Unique route table ID.
31694
+ * @type {string || null}
31695
+ */
31696
+ this.RouteTableId = null;
31697
+
31698
+ /**
31699
+ * Specifies the unique ID of the route reception policy.
31700
+ * @type {string || null}
31701
+ */
31702
+ this.RoutePolicyId = null;
31703
+
31704
+ /**
31705
+ * Priority.
31706
+ * @type {number || null}
31707
+ */
31708
+ this.Priority = null;
31709
+
31710
+ }
31711
+
31712
+ /**
31713
+ * @private
31714
+ */
31715
+ deserialize(params) {
31716
+ if (!params) {
31717
+ return;
31718
+ }
31719
+ this.RouteTableId = 'RouteTableId' in params ? params.RouteTableId : null;
31720
+ this.RoutePolicyId = 'RoutePolicyId' in params ? params.RoutePolicyId : null;
31721
+ this.Priority = 'Priority' in params ? params.Priority : null;
31722
+
31723
+ }
31724
+ }
31725
+
30584
31726
  /**
30585
31727
  * DescribeClassicLinkInstances request structure.
30586
31728
  * @class
@@ -31912,6 +33054,34 @@ class InstanceChargePrepaid extends AbstractModel {
31912
33054
  }
31913
33055
  }
31914
33056
 
33057
+ /**
33058
+ * CreateRoutePolicyAssociations response structure.
33059
+ * @class
33060
+ */
33061
+ class CreateRoutePolicyAssociationsResponse extends AbstractModel {
33062
+ constructor(){
33063
+ super();
33064
+
33065
+ /**
33066
+ * 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.
33067
+ * @type {string || null}
33068
+ */
33069
+ this.RequestId = null;
33070
+
33071
+ }
33072
+
33073
+ /**
33074
+ * @private
33075
+ */
33076
+ deserialize(params) {
33077
+ if (!params) {
33078
+ return;
33079
+ }
33080
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
33081
+
33082
+ }
33083
+ }
33084
+
31915
33085
  /**
31916
33086
  * AddTemplateMember request structure.
31917
33087
  * @class
@@ -32251,6 +33421,7 @@ module.exports = {
32251
33421
  DescribeVpcEndPointRequest: DescribeVpcEndPointRequest,
32252
33422
  AssignPrivateIpAddressesRequest: AssignPrivateIpAddressesRequest,
32253
33423
  ResourceStatisticsItem: ResourceStatisticsItem,
33424
+ DeleteRoutePolicyEntriesRequest: DeleteRoutePolicyEntriesRequest,
32254
33425
  DetachClassicLinkVpcRequest: DetachClassicLinkVpcRequest,
32255
33426
  DescribeBandwidthPackageBillUsageResponse: DescribeBandwidthPackageBillUsageResponse,
32256
33427
  DeleteBandwidthPackageResponse: DeleteBandwidthPackageResponse,
@@ -32261,10 +33432,13 @@ module.exports = {
32261
33432
  IpField: IpField,
32262
33433
  CreateNetworkInterfaceResponse: CreateNetworkInterfaceResponse,
32263
33434
  AddBandwidthPackageResourcesRequest: AddBandwidthPackageResourcesRequest,
33435
+ ReplaceRoutePolicyEntriesRequest: ReplaceRoutePolicyEntriesRequest,
32264
33436
  AssignIpv6SubnetCidrBlockRequest: AssignIpv6SubnetCidrBlockRequest,
33437
+ ReplaceRoutePolicyAssociationsRequest: ReplaceRoutePolicyAssociationsRequest,
32265
33438
  CreateVpcResponse: CreateVpcResponse,
32266
33439
  AssistantCidr: AssistantCidr,
32267
33440
  ModifyNetworkAclEntriesRequest: ModifyNetworkAclEntriesRequest,
33441
+ ReplaceRoutePolicyAssociationsResponse: ReplaceRoutePolicyAssociationsResponse,
32268
33442
  DescribeVpcPrivateIpAddressesRequest: DescribeVpcPrivateIpAddressesRequest,
32269
33443
  AddressTemplate: AddressTemplate,
32270
33444
  ModifyTemplateMemberResponse: ModifyTemplateMemberResponse,
@@ -32280,6 +33454,7 @@ module.exports = {
32280
33454
  ModifyBandwidthPackageAttributeRequest: ModifyBandwidthPackageAttributeRequest,
32281
33455
  TransformAddressResponse: TransformAddressResponse,
32282
33456
  DisassociateNetworkInterfaceSecurityGroupsRequest: DisassociateNetworkInterfaceSecurityGroupsRequest,
33457
+ RoutePolicyEntry: RoutePolicyEntry,
32283
33458
  SecurityGroupPolicySet: SecurityGroupPolicySet,
32284
33459
  ModifyFlowLogAttributeRequest: ModifyFlowLogAttributeRequest,
32285
33460
  UnassignIpv6SubnetCidrBlockResponse: UnassignIpv6SubnetCidrBlockResponse,
@@ -32303,6 +33478,7 @@ module.exports = {
32303
33478
  AttachSnapshotInstancesResponse: AttachSnapshotInstancesResponse,
32304
33479
  DescribeNatGatewaySourceIpTranslationNatRulesRequest: DescribeNatGatewaySourceIpTranslationNatRulesRequest,
32305
33480
  DescribeNatGatewaysRequest: DescribeNatGatewaysRequest,
33481
+ ReferredSecurityGroup: ReferredSecurityGroup,
32306
33482
  InstanceJumbo: InstanceJumbo,
32307
33483
  ModifyFlowLogAttributeResponse: ModifyFlowLogAttributeResponse,
32308
33484
  DescribeBandwidthPackagesResponse: DescribeBandwidthPackagesResponse,
@@ -32326,7 +33502,7 @@ module.exports = {
32326
33502
  HaVipDisassociateAddressIpResponse: HaVipDisassociateAddressIpResponse,
32327
33503
  DescribeTaskResultRequest: DescribeTaskResultRequest,
32328
33504
  ModifyAddressInternetChargeTypeResponse: ModifyAddressInternetChargeTypeResponse,
32329
- UnassignIpv6SubnetCidrBlockRequest: UnassignIpv6SubnetCidrBlockRequest,
33505
+ CreateRoutePolicyResponse: CreateRoutePolicyResponse,
32330
33506
  ModifyIPv6AddressesBandwidthRequest: ModifyIPv6AddressesBandwidthRequest,
32331
33507
  DeleteVpcEndPointServiceResponse: DeleteVpcEndPointServiceResponse,
32332
33508
  ModifyNetworkAclQuintupleEntriesResponse: ModifyNetworkAclQuintupleEntriesResponse,
@@ -32347,6 +33523,8 @@ module.exports = {
32347
33523
  ModifyVpcEndPointAttributeResponse: ModifyVpcEndPointAttributeResponse,
32348
33524
  DescribeFlowLogRequest: DescribeFlowLogRequest,
32349
33525
  DescribeIp6AddressesRequest: DescribeIp6AddressesRequest,
33526
+ CreateRoutePolicyRequest: CreateRoutePolicyRequest,
33527
+ DescribeAccountAttributesRequest: DescribeAccountAttributesRequest,
32350
33528
  DescribeAccountAttributesResponse: DescribeAccountAttributesResponse,
32351
33529
  ModifyAddressesRenewFlagRequest: ModifyAddressesRenewFlagRequest,
32352
33530
  AssignPrivateIpAddressesResponse: AssignPrivateIpAddressesResponse,
@@ -32355,6 +33533,7 @@ module.exports = {
32355
33533
  DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest: DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest,
32356
33534
  ReturnNormalAddressesRequest: ReturnNormalAddressesRequest,
32357
33535
  ModifyNetworkAclAttributeResponse: ModifyNetworkAclAttributeResponse,
33536
+ ReplaceRoutePolicyEntriesResponse: ReplaceRoutePolicyEntriesResponse,
32358
33537
  AddBandwidthPackageResourcesResponse: AddBandwidthPackageResourcesResponse,
32359
33538
  DisassociateNetworkAclSubnetsResponse: DisassociateNetworkAclSubnetsResponse,
32360
33539
  SetCcnRegionBandwidthLimitsRequest: SetCcnRegionBandwidthLimitsRequest,
@@ -32374,9 +33553,11 @@ module.exports = {
32374
33553
  NetworkInterface: NetworkInterface,
32375
33554
  TransformAddressRequest: TransformAddressRequest,
32376
33555
  ReplaceDirectConnectGatewayCcnRoutesRequest: ReplaceDirectConnectGatewayCcnRoutesRequest,
32377
- ReferredSecurityGroup: ReferredSecurityGroup,
33556
+ DescribeRoutePolicyEntriesResponse: DescribeRoutePolicyEntriesResponse,
32378
33557
  ModifyAddressTemplateAttributeRequest: ModifyAddressTemplateAttributeRequest,
33558
+ ModifyRoutePolicyAttributeRequest: ModifyRoutePolicyAttributeRequest,
32379
33559
  CreateNatGatewayResponse: CreateNatGatewayResponse,
33560
+ ResetRoutePolicyAssociationsRequest: ResetRoutePolicyAssociationsRequest,
32380
33561
  DescribeVpcsResponse: DescribeVpcsResponse,
32381
33562
  ModifySecurityGroupAttributeRequest: ModifySecurityGroupAttributeRequest,
32382
33563
  ModifyNetDetectRequest: ModifyNetDetectRequest,
@@ -32386,7 +33567,7 @@ module.exports = {
32386
33567
  AllocateIp6AddressesBandwidthResponse: AllocateIp6AddressesBandwidthResponse,
32387
33568
  DescribeNetDetectStatesRequest: DescribeNetDetectStatesRequest,
32388
33569
  DescribeFlowLogResponse: DescribeFlowLogResponse,
32389
- DownloadCustomerGatewayConfigurationResponse: DownloadCustomerGatewayConfigurationResponse,
33570
+ DeleteRoutePolicyEntriesResponse: DeleteRoutePolicyEntriesResponse,
32390
33571
  DescribeBandwidthPackagesRequest: DescribeBandwidthPackagesRequest,
32391
33572
  DeleteDirectConnectGatewayCcnRoutesResponse: DeleteDirectConnectGatewayCcnRoutesResponse,
32392
33573
  DescribeAssistantCidrResponse: DescribeAssistantCidrResponse,
@@ -32412,6 +33593,7 @@ module.exports = {
32412
33593
  CreateVpnGatewayResponse: CreateVpnGatewayResponse,
32413
33594
  DescribeNatGatewayDestinationIpPortTranslationNatRulesResponse: DescribeNatGatewayDestinationIpPortTranslationNatRulesResponse,
32414
33595
  FlowLogStorage: FlowLogStorage,
33596
+ DeleteRoutePolicyResponse: DeleteRoutePolicyResponse,
32415
33597
  DescribeVpcIpv6AddressesResponse: DescribeVpcIpv6AddressesResponse,
32416
33598
  RejectAttachCcnInstancesRequest: RejectAttachCcnInstancesRequest,
32417
33599
  ModifyCcnRegionBandwidthLimitsTypeRequest: ModifyCcnRegionBandwidthLimitsTypeRequest,
@@ -32420,6 +33602,7 @@ module.exports = {
32420
33602
  VpcTaskResultDetailInfo: VpcTaskResultDetailInfo,
32421
33603
  ReplaceRouteTableAssociationRequest: ReplaceRouteTableAssociationRequest,
32422
33604
  AssociateNetworkAclSubnetsRequest: AssociateNetworkAclSubnetsRequest,
33605
+ ResetRoutePolicyEntriesResponse: ResetRoutePolicyEntriesResponse,
32423
33606
  CheckAssistantCidrRequest: CheckAssistantCidrRequest,
32424
33607
  RenewVpnGatewayRequest: RenewVpnGatewayRequest,
32425
33608
  AssociateIPv6AddressResponse: AssociateIPv6AddressResponse,
@@ -32440,6 +33623,7 @@ module.exports = {
32440
33623
  WithdrawNotifyRoutesRequest: WithdrawNotifyRoutesRequest,
32441
33624
  ResourceDashboard: ResourceDashboard,
32442
33625
  DescribeSubnetResourceDashboardRequest: DescribeSubnetResourceDashboardRequest,
33626
+ CreateRoutePolicyEntriesRequest: CreateRoutePolicyEntriesRequest,
32443
33627
  DeleteServiceTemplateGroupResponse: DeleteServiceTemplateGroupResponse,
32444
33628
  DisassociateAddressRequest: DisassociateAddressRequest,
32445
33629
  NetworkAclEntrySet: NetworkAclEntrySet,
@@ -32497,6 +33681,7 @@ module.exports = {
32497
33681
  DisableSnapshotPoliciesResponse: DisableSnapshotPoliciesResponse,
32498
33682
  AssociateAddressResponse: AssociateAddressResponse,
32499
33683
  ModifyCcnAttachedInstancesAttributeResponse: ModifyCcnAttachedInstancesAttributeResponse,
33684
+ UnassignIpv6SubnetCidrBlockRequest: UnassignIpv6SubnetCidrBlockRequest,
32500
33685
  CreateNetworkAclRequest: CreateNetworkAclRequest,
32501
33686
  DescribeAddressesRequest: DescribeAddressesRequest,
32502
33687
  DescribeSecurityGroupPoliciesRequest: DescribeSecurityGroupPoliciesRequest,
@@ -32514,6 +33699,7 @@ module.exports = {
32514
33699
  DescribeNetworkAclQuintupleEntriesRequest: DescribeNetworkAclQuintupleEntriesRequest,
32515
33700
  DescribeSnapshotPoliciesResponse: DescribeSnapshotPoliciesResponse,
32516
33701
  EnableRoutesResponse: EnableRoutesResponse,
33702
+ ModifyRoutePolicyAttributeResponse: ModifyRoutePolicyAttributeResponse,
32517
33703
  DeleteVpnConnectionRequest: DeleteVpnConnectionRequest,
32518
33704
  NetworkAclEntry: NetworkAclEntry,
32519
33705
  DescribeAssistantCidrRequest: DescribeAssistantCidrRequest,
@@ -32533,10 +33719,12 @@ module.exports = {
32533
33719
  AllocateIPv6AddressesRequest: AllocateIPv6AddressesRequest,
32534
33720
  AssociateDirectConnectGatewayNatGatewayResponse: AssociateDirectConnectGatewayNatGatewayResponse,
32535
33721
  EndPointService: EndPointService,
33722
+ ResetRoutePolicyAssociationsResponse: ResetRoutePolicyAssociationsResponse,
32536
33723
  DescribeVpnGatewayCcnRoutesRequest: DescribeVpnGatewayCcnRoutesRequest,
32537
33724
  DisassociateDirectConnectGatewayNatGatewayResponse: DisassociateDirectConnectGatewayNatGatewayResponse,
32538
33725
  CreateServiceTemplateGroupRequest: CreateServiceTemplateGroupRequest,
32539
33726
  CreateNetworkAclQuintupleEntriesRequest: CreateNetworkAclQuintupleEntriesRequest,
33727
+ DescribeDirectConnectGatewayCcnRoutesRequest: DescribeDirectConnectGatewayCcnRoutesRequest,
32540
33728
  DescribeClassicLinkInstancesResponse: DescribeClassicLinkInstancesResponse,
32541
33729
  DeleteReserveIpAddressesRequest: DeleteReserveIpAddressesRequest,
32542
33730
  DescribeVpnGatewayCcnRoutesResponse: DescribeVpnGatewayCcnRoutesResponse,
@@ -32570,8 +33758,11 @@ module.exports = {
32570
33758
  RejectAttachCcnInstancesResponse: RejectAttachCcnInstancesResponse,
32571
33759
  SetCcnRegionBandwidthLimitsResponse: SetCcnRegionBandwidthLimitsResponse,
32572
33760
  ModifySnapshotPoliciesResponse: ModifySnapshotPoliciesResponse,
33761
+ ResetRoutePolicyEntriesRequest: ResetRoutePolicyEntriesRequest,
32573
33762
  InquiryPriceRenewAddressesResponse: InquiryPriceRenewAddressesResponse,
32574
- DescribeAccountAttributesRequest: DescribeAccountAttributesRequest,
33763
+ DeleteRoutePolicyAssociationsResponse: DeleteRoutePolicyAssociationsResponse,
33764
+ CreateRoutePolicyAssociationsRequest: CreateRoutePolicyAssociationsRequest,
33765
+ RoutePolicy: RoutePolicy,
32575
33766
  DescribeCcnRoutesRequest: DescribeCcnRoutesRequest,
32576
33767
  GenerateVpnConnectionDefaultHealthCheckIpResponse: GenerateVpnConnectionDefaultHealthCheckIpResponse,
32577
33768
  CreateAndAttachNetworkInterfaceRequest: CreateAndAttachNetworkInterfaceRequest,
@@ -32598,7 +33789,7 @@ module.exports = {
32598
33789
  ReplaceRouteTableAssociationResponse: ReplaceRouteTableAssociationResponse,
32599
33790
  AttachCcnInstancesRequest: AttachCcnInstancesRequest,
32600
33791
  ModifyBandwidthPackageBandwidthResponse: ModifyBandwidthPackageBandwidthResponse,
32601
- DescribeDirectConnectGatewayCcnRoutesRequest: DescribeDirectConnectGatewayCcnRoutesRequest,
33792
+ DeleteRoutePolicyAssociationsRequest: DeleteRoutePolicyAssociationsRequest,
32602
33793
  CcnInstance: CcnInstance,
32603
33794
  DescribeLocalGatewayResponse: DescribeLocalGatewayResponse,
32604
33795
  ItemPrice: ItemPrice,
@@ -32637,6 +33828,7 @@ module.exports = {
32637
33828
  DescribeVpcInstancesResponse: DescribeVpcInstancesResponse,
32638
33829
  AccountAttribute: AccountAttribute,
32639
33830
  AllocateIPv6AddressesResponse: AllocateIPv6AddressesResponse,
33831
+ DeleteSnapshotPoliciesRequest: DeleteSnapshotPoliciesRequest,
32640
33832
  DeleteDirectConnectGatewayCcnRoutesRequest: DeleteDirectConnectGatewayCcnRoutesRequest,
32641
33833
  ModifyNatGatewaySourceIpTranslationNatRuleResponse: ModifyNatGatewaySourceIpTranslationNatRuleResponse,
32642
33834
  CreateNatGatewayDestinationIpPortTranslationNatRuleRequest: CreateNatGatewayDestinationIpPortTranslationNatRuleRequest,
@@ -32733,7 +33925,7 @@ module.exports = {
32733
33925
  AdjustPublicAddressResponse: AdjustPublicAddressResponse,
32734
33926
  RemoveBandwidthPackageResourcesResponse: RemoveBandwidthPackageResourcesResponse,
32735
33927
  DestinationIpPortTranslationNatRule: DestinationIpPortTranslationNatRule,
32736
- DeleteSnapshotPoliciesRequest: DeleteSnapshotPoliciesRequest,
33928
+ CheckNetDetectStateResponse: CheckNetDetectStateResponse,
32737
33929
  CreateDefaultVpcRequest: CreateDefaultVpcRequest,
32738
33930
  DescribeSubnetsResponse: DescribeSubnetsResponse,
32739
33931
  DescribeCustomerGatewaysResponse: DescribeCustomerGatewaysResponse,
@@ -32747,7 +33939,7 @@ module.exports = {
32747
33939
  DeleteNetworkAclQuintupleEntriesRequest: DeleteNetworkAclQuintupleEntriesRequest,
32748
33940
  DeleteSubnetRequest: DeleteSubnetRequest,
32749
33941
  DescribeAddressTemplateGroupsRequest: DescribeAddressTemplateGroupsRequest,
32750
- CheckNetDetectStateResponse: CheckNetDetectStateResponse,
33942
+ DeleteRoutePolicyRequest: DeleteRoutePolicyRequest,
32751
33943
  DisassociateVpcEndPointSecurityGroupsResponse: DisassociateVpcEndPointSecurityGroupsResponse,
32752
33944
  DeleteSnapshotPoliciesResponse: DeleteSnapshotPoliciesResponse,
32753
33945
  AssociateNatGatewayAddressResponse: AssociateNatGatewayAddressResponse,
@@ -32798,6 +33990,7 @@ module.exports = {
32798
33990
  ModifyVpnGatewayCcnRoutesRequest: ModifyVpnGatewayCcnRoutesRequest,
32799
33991
  DescribeGatewayFlowQosRequest: DescribeGatewayFlowQosRequest,
32800
33992
  ReplaceDirectConnectGatewayCcnRoutesResponse: ReplaceDirectConnectGatewayCcnRoutesResponse,
33993
+ DownloadCustomerGatewayConfigurationResponse: DownloadCustomerGatewayConfigurationResponse,
32801
33994
  ModifySecurityGroupPoliciesResponse: ModifySecurityGroupPoliciesResponse,
32802
33995
  ServiceTemplateSpecification: ServiceTemplateSpecification,
32803
33996
  DetachNetworkInterfaceRequest: DetachNetworkInterfaceRequest,
@@ -32820,6 +34013,7 @@ module.exports = {
32820
34013
  DeleteRoutesRequest: DeleteRoutesRequest,
32821
34014
  AssociateAddressRequest: AssociateAddressRequest,
32822
34015
  CcnRegionBandwidthLimit: CcnRegionBandwidthLimit,
34016
+ DescribeRoutePolicyEntriesRequest: DescribeRoutePolicyEntriesRequest,
32823
34017
  VpcEndPointServiceUser: VpcEndPointServiceUser,
32824
34018
  ClassicLinkInstance: ClassicLinkInstance,
32825
34019
  DeleteLocalGatewayResponse: DeleteLocalGatewayResponse,
@@ -32841,6 +34035,7 @@ module.exports = {
32841
34035
  DeleteSecurityGroupRequest: DeleteSecurityGroupRequest,
32842
34036
  CrossBorderCompliance: CrossBorderCompliance,
32843
34037
  CreateRouteTableResponse: CreateRouteTableResponse,
34038
+ CreateRoutePolicyEntriesResponse: CreateRoutePolicyEntriesResponse,
32844
34039
  DeleteDirectConnectGatewayRequest: DeleteDirectConnectGatewayRequest,
32845
34040
  DescribeDirectConnectGatewayCcnRoutesResponse: DescribeDirectConnectGatewayCcnRoutesResponse,
32846
34041
  ModifyPrivateIpAddressesAttributeRequest: ModifyPrivateIpAddressesAttributeRequest,
@@ -32849,6 +34044,7 @@ module.exports = {
32849
34044
  DeleteVpnGatewayRoutesResponse: DeleteVpnGatewayRoutesResponse,
32850
34045
  CreateSecurityGroupRequest: CreateSecurityGroupRequest,
32851
34046
  ModifyCcnAttributeResponse: ModifyCcnAttributeResponse,
34047
+ RoutePolicyAssociation: RoutePolicyAssociation,
32852
34048
  DescribeClassicLinkInstancesRequest: DescribeClassicLinkInstancesRequest,
32853
34049
  ReleaseIp6AddressesBandwidthRequest: ReleaseIp6AddressesBandwidthRequest,
32854
34050
  CreateServiceTemplateResponse: CreateServiceTemplateResponse,
@@ -32882,6 +34078,7 @@ module.exports = {
32882
34078
  DescribeBandwidthPackageQuotaRequest: DescribeBandwidthPackageQuotaRequest,
32883
34079
  DeleteVpcResponse: DeleteVpcResponse,
32884
34080
  InstanceChargePrepaid: InstanceChargePrepaid,
34081
+ CreateRoutePolicyAssociationsResponse: CreateRoutePolicyAssociationsResponse,
32885
34082
  AddTemplateMemberRequest: AddTemplateMemberRequest,
32886
34083
  DescribeVpcEndPointServiceWhiteListResponse: DescribeVpcEndPointServiceWhiteListResponse,
32887
34084
  AcceptAttachCcnInstancesResponse: AcceptAttachCcnInstancesResponse,