tencentcloud-sdk-nodejs-intl-en 3.0.508 → 3.0.511
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/as/v20180419/as_client.js +129 -9
- package/tencentcloud/as/v20180419/models.js +1684 -269
- package/tencentcloud/billing/v20180709/models.js +67 -0
- package/tencentcloud/cdb/v20170320/cdb_client.js +83 -17
- package/tencentcloud/cdb/v20170320/models.js +619 -86
- package/tencentcloud/cdn/v20180606/models.js +6 -5
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +14 -1
- package/tencentcloud/ckafka/v20190819/models.js +121 -20
- package/tencentcloud/cls/v20201016/models.js +9 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/live/v20180801/live_client.js +37 -72
- package/tencentcloud/live/v20180801/models.js +777 -652
- package/tencentcloud/monitor/v20180724/models.js +58 -0
- package/tencentcloud/monitor/v20180724/monitor_client.js +1 -0
- package/tencentcloud/ocr/v20181119/models.js +201 -43
- package/tencentcloud/ocr/v20181119/ocr_client.js +16 -1
- package/tencentcloud/redis/v20180412/models.js +65 -0
- package/tencentcloud/redis/v20180412/redis_client.js +13 -0
- package/tencentcloud/tke/v20180525/models.js +451 -58
- package/tencentcloud/tke/v20180525/tke_client.js +548 -483
- package/tencentcloud/trtc/v20190722/models.js +170 -13
- package/tencentcloud/trtc/v20190722/trtc_client.js +30 -26
- package/tencentcloud/tts/v20190823/models.js +79 -0
- package/tencentcloud/tts/v20190823/tts_client.js +1 -0
- package/tencentcloud/vod/v20180717/models.js +200 -55
- package/tencentcloud/vod/v20180717/vod_client.js +46 -22
- package/tencentcloud/vpc/v20170312/models.js +812 -279
- package/tencentcloud/vpc/v20170312/vpc_client.js +71 -17
|
@@ -106,6 +106,18 @@ class NetworkAcl extends AbstractModel {
|
|
|
106
106
|
*/
|
|
107
107
|
this.EgressEntries = null;
|
|
108
108
|
|
|
109
|
+
/**
|
|
110
|
+
* Network ACL type. Valid values: `TRIPLE` and `QUINTUPLE`.
|
|
111
|
+
* @type {string || null}
|
|
112
|
+
*/
|
|
113
|
+
this.NetworkAclType = null;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Tag key-value pairs
|
|
117
|
+
* @type {Array.<Tag> || null}
|
|
118
|
+
*/
|
|
119
|
+
this.TagSet = null;
|
|
120
|
+
|
|
109
121
|
}
|
|
110
122
|
|
|
111
123
|
/**
|
|
@@ -146,6 +158,16 @@ class NetworkAcl extends AbstractModel {
|
|
|
146
158
|
this.EgressEntries.push(obj);
|
|
147
159
|
}
|
|
148
160
|
}
|
|
161
|
+
this.NetworkAclType = 'NetworkAclType' in params ? params.NetworkAclType : null;
|
|
162
|
+
|
|
163
|
+
if (params.TagSet) {
|
|
164
|
+
this.TagSet = new Array();
|
|
165
|
+
for (let z in params.TagSet) {
|
|
166
|
+
let obj = new Tag();
|
|
167
|
+
obj.deserialize(params.TagSet[z]);
|
|
168
|
+
this.TagSet.push(obj);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
149
171
|
|
|
150
172
|
}
|
|
151
173
|
}
|
|
@@ -1153,6 +1175,46 @@ class DescribeVpnGatewaysResponse extends AbstractModel {
|
|
|
1153
1175
|
}
|
|
1154
1176
|
}
|
|
1155
1177
|
|
|
1178
|
+
/**
|
|
1179
|
+
* ModifyNetworkAclQuintupleEntries request structure.
|
|
1180
|
+
* @class
|
|
1181
|
+
*/
|
|
1182
|
+
class ModifyNetworkAclQuintupleEntriesRequest extends AbstractModel {
|
|
1183
|
+
constructor(){
|
|
1184
|
+
super();
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* Network ACL instance ID, such as `acl-12345678`.
|
|
1188
|
+
* @type {string || null}
|
|
1189
|
+
*/
|
|
1190
|
+
this.NetworkAclId = null;
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Network ACL quintuple rule set.
|
|
1194
|
+
* @type {NetworkAclQuintupleEntries || null}
|
|
1195
|
+
*/
|
|
1196
|
+
this.NetworkAclQuintupleSet = null;
|
|
1197
|
+
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
/**
|
|
1201
|
+
* @private
|
|
1202
|
+
*/
|
|
1203
|
+
deserialize(params) {
|
|
1204
|
+
if (!params) {
|
|
1205
|
+
return;
|
|
1206
|
+
}
|
|
1207
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
1208
|
+
|
|
1209
|
+
if (params.NetworkAclQuintupleSet) {
|
|
1210
|
+
let obj = new NetworkAclQuintupleEntries();
|
|
1211
|
+
obj.deserialize(params.NetworkAclQuintupleSet)
|
|
1212
|
+
this.NetworkAclQuintupleSet = obj;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1156
1218
|
/**
|
|
1157
1219
|
* ModifyServiceTemplateAttribute request structure.
|
|
1158
1220
|
* @class
|
|
@@ -1389,6 +1451,56 @@ class DescribeVpcEndPointRequest extends AbstractModel {
|
|
|
1389
1451
|
}
|
|
1390
1452
|
}
|
|
1391
1453
|
|
|
1454
|
+
/**
|
|
1455
|
+
* AssignPrivateIpAddresses request structure.
|
|
1456
|
+
* @class
|
|
1457
|
+
*/
|
|
1458
|
+
class AssignPrivateIpAddressesRequest extends AbstractModel {
|
|
1459
|
+
constructor(){
|
|
1460
|
+
super();
|
|
1461
|
+
|
|
1462
|
+
/**
|
|
1463
|
+
* The ID of the ENI instance, such as `eni-m6dyj72l`.
|
|
1464
|
+
* @type {string || null}
|
|
1465
|
+
*/
|
|
1466
|
+
this.NetworkInterfaceId = null;
|
|
1467
|
+
|
|
1468
|
+
/**
|
|
1469
|
+
* The information on private IP addresses, of which you can specify a maximum of 10 at a time. You should provide either this parameter or SecondaryPrivateIpAddressCount, or both.
|
|
1470
|
+
* @type {Array.<PrivateIpAddressSpecification> || null}
|
|
1471
|
+
*/
|
|
1472
|
+
this.PrivateIpAddresses = null;
|
|
1473
|
+
|
|
1474
|
+
/**
|
|
1475
|
+
* The number of newly-applied private IP addresses. You should provide either this parameter or PrivateIpAddresses, or both. The total number of private IP addresses cannot exceed the quota. For more information, see<a href="/document/product/576/18527">ENI Use Limits</a>.
|
|
1476
|
+
* @type {number || null}
|
|
1477
|
+
*/
|
|
1478
|
+
this.SecondaryPrivateIpAddressCount = null;
|
|
1479
|
+
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
/**
|
|
1483
|
+
* @private
|
|
1484
|
+
*/
|
|
1485
|
+
deserialize(params) {
|
|
1486
|
+
if (!params) {
|
|
1487
|
+
return;
|
|
1488
|
+
}
|
|
1489
|
+
this.NetworkInterfaceId = 'NetworkInterfaceId' in params ? params.NetworkInterfaceId : null;
|
|
1490
|
+
|
|
1491
|
+
if (params.PrivateIpAddresses) {
|
|
1492
|
+
this.PrivateIpAddresses = new Array();
|
|
1493
|
+
for (let z in params.PrivateIpAddresses) {
|
|
1494
|
+
let obj = new PrivateIpAddressSpecification();
|
|
1495
|
+
obj.deserialize(params.PrivateIpAddresses[z]);
|
|
1496
|
+
this.PrivateIpAddresses.push(obj);
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
this.SecondaryPrivateIpAddressCount = 'SecondaryPrivateIpAddressCount' in params ? params.SecondaryPrivateIpAddressCount : null;
|
|
1500
|
+
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1392
1504
|
/**
|
|
1393
1505
|
* DetachClassicLinkVpc request structure.
|
|
1394
1506
|
* @class
|
|
@@ -2087,6 +2199,12 @@ class ModifyNetworkAclEntriesRequest extends AbstractModel {
|
|
|
2087
2199
|
*/
|
|
2088
2200
|
this.NetworkAclEntrySet = null;
|
|
2089
2201
|
|
|
2202
|
+
/**
|
|
2203
|
+
* Network ACL quintuple rule set. `NetworkAclEntrySet` and `NetworkAclQuintupleSet` cannot be entered at the same time.
|
|
2204
|
+
* @type {NetworkAclQuintupleEntries || null}
|
|
2205
|
+
*/
|
|
2206
|
+
this.NetworkAclQuintupleSet = null;
|
|
2207
|
+
|
|
2090
2208
|
}
|
|
2091
2209
|
|
|
2092
2210
|
/**
|
|
@@ -2104,6 +2222,12 @@ class ModifyNetworkAclEntriesRequest extends AbstractModel {
|
|
|
2104
2222
|
this.NetworkAclEntrySet = obj;
|
|
2105
2223
|
}
|
|
2106
2224
|
|
|
2225
|
+
if (params.NetworkAclQuintupleSet) {
|
|
2226
|
+
let obj = new NetworkAclQuintupleEntries();
|
|
2227
|
+
obj.deserialize(params.NetworkAclQuintupleSet)
|
|
2228
|
+
this.NetworkAclQuintupleSet = obj;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2107
2231
|
}
|
|
2108
2232
|
}
|
|
2109
2233
|
|
|
@@ -4153,6 +4277,34 @@ class AcceptAttachCcnInstancesRequest extends AbstractModel {
|
|
|
4153
4277
|
}
|
|
4154
4278
|
}
|
|
4155
4279
|
|
|
4280
|
+
/**
|
|
4281
|
+
* CreateNetworkAclQuintupleEntries response structure.
|
|
4282
|
+
* @class
|
|
4283
|
+
*/
|
|
4284
|
+
class CreateNetworkAclQuintupleEntriesResponse extends AbstractModel {
|
|
4285
|
+
constructor(){
|
|
4286
|
+
super();
|
|
4287
|
+
|
|
4288
|
+
/**
|
|
4289
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4290
|
+
* @type {string || null}
|
|
4291
|
+
*/
|
|
4292
|
+
this.RequestId = null;
|
|
4293
|
+
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
/**
|
|
4297
|
+
* @private
|
|
4298
|
+
*/
|
|
4299
|
+
deserialize(params) {
|
|
4300
|
+
if (!params) {
|
|
4301
|
+
return;
|
|
4302
|
+
}
|
|
4303
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4304
|
+
|
|
4305
|
+
}
|
|
4306
|
+
}
|
|
4307
|
+
|
|
4156
4308
|
/**
|
|
4157
4309
|
* DescribeGatewayFlowMonitorDetail response structure.
|
|
4158
4310
|
* @class
|
|
@@ -4536,6 +4688,34 @@ class DeleteVpcEndPointServiceResponse extends AbstractModel {
|
|
|
4536
4688
|
}
|
|
4537
4689
|
}
|
|
4538
4690
|
|
|
4691
|
+
/**
|
|
4692
|
+
* ModifyNetworkAclQuintupleEntries response structure.
|
|
4693
|
+
* @class
|
|
4694
|
+
*/
|
|
4695
|
+
class ModifyNetworkAclQuintupleEntriesResponse extends AbstractModel {
|
|
4696
|
+
constructor(){
|
|
4697
|
+
super();
|
|
4698
|
+
|
|
4699
|
+
/**
|
|
4700
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4701
|
+
* @type {string || null}
|
|
4702
|
+
*/
|
|
4703
|
+
this.RequestId = null;
|
|
4704
|
+
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
/**
|
|
4708
|
+
* @private
|
|
4709
|
+
*/
|
|
4710
|
+
deserialize(params) {
|
|
4711
|
+
if (!params) {
|
|
4712
|
+
return;
|
|
4713
|
+
}
|
|
4714
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4715
|
+
|
|
4716
|
+
}
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4539
4719
|
/**
|
|
4540
4720
|
* AssignIpv6CidrBlock request structure.
|
|
4541
4721
|
* @class
|
|
@@ -10811,94 +10991,244 @@ class ResourceDashboard extends AbstractModel {
|
|
|
10811
10991
|
}
|
|
10812
10992
|
|
|
10813
10993
|
/**
|
|
10814
|
-
*
|
|
10994
|
+
* Subnet object
|
|
10815
10995
|
* @class
|
|
10816
10996
|
*/
|
|
10817
|
-
class
|
|
10997
|
+
class Subnet extends AbstractModel {
|
|
10818
10998
|
constructor(){
|
|
10819
10999
|
super();
|
|
10820
11000
|
|
|
10821
11001
|
/**
|
|
10822
|
-
* The
|
|
10823
|
-
* @type {
|
|
11002
|
+
* The `ID` of the `VPC` instance.
|
|
11003
|
+
* @type {string || null}
|
|
10824
11004
|
*/
|
|
10825
|
-
this.
|
|
11005
|
+
this.VpcId = null;
|
|
10826
11006
|
|
|
10827
11007
|
/**
|
|
10828
|
-
*
|
|
11008
|
+
* Subnet instance `ID`, such as `subnet-bthucmmy`.
|
|
10829
11009
|
* @type {string || null}
|
|
10830
11010
|
*/
|
|
10831
|
-
this.
|
|
10832
|
-
|
|
10833
|
-
}
|
|
10834
|
-
|
|
10835
|
-
/**
|
|
10836
|
-
* @private
|
|
10837
|
-
*/
|
|
10838
|
-
deserialize(params) {
|
|
10839
|
-
if (!params) {
|
|
10840
|
-
return;
|
|
10841
|
-
}
|
|
10842
|
-
|
|
10843
|
-
if (params.VpcPrivateIpAddressSet) {
|
|
10844
|
-
this.VpcPrivateIpAddressSet = new Array();
|
|
10845
|
-
for (let z in params.VpcPrivateIpAddressSet) {
|
|
10846
|
-
let obj = new VpcPrivateIpAddress();
|
|
10847
|
-
obj.deserialize(params.VpcPrivateIpAddressSet[z]);
|
|
10848
|
-
this.VpcPrivateIpAddressSet.push(obj);
|
|
10849
|
-
}
|
|
10850
|
-
}
|
|
10851
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10852
|
-
|
|
10853
|
-
}
|
|
10854
|
-
}
|
|
10855
|
-
|
|
10856
|
-
/**
|
|
10857
|
-
* HaVipAssociateAddressIp response structure.
|
|
10858
|
-
* @class
|
|
10859
|
-
*/
|
|
10860
|
-
class HaVipAssociateAddressIpResponse extends AbstractModel {
|
|
10861
|
-
constructor(){
|
|
10862
|
-
super();
|
|
11011
|
+
this.SubnetId = null;
|
|
10863
11012
|
|
|
10864
11013
|
/**
|
|
10865
|
-
*
|
|
11014
|
+
* Subnet name.
|
|
10866
11015
|
* @type {string || null}
|
|
10867
11016
|
*/
|
|
10868
|
-
this.
|
|
11017
|
+
this.SubnetName = null;
|
|
10869
11018
|
|
|
10870
|
-
|
|
11019
|
+
/**
|
|
11020
|
+
* The `IPv4` `CIDR` of the subnet.
|
|
11021
|
+
* @type {string || null}
|
|
11022
|
+
*/
|
|
11023
|
+
this.CidrBlock = null;
|
|
10871
11024
|
|
|
10872
|
-
|
|
10873
|
-
|
|
10874
|
-
|
|
10875
|
-
|
|
10876
|
-
|
|
10877
|
-
return;
|
|
10878
|
-
}
|
|
10879
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11025
|
+
/**
|
|
11026
|
+
* Whether it is the default subnet.
|
|
11027
|
+
* @type {boolean || null}
|
|
11028
|
+
*/
|
|
11029
|
+
this.IsDefault = null;
|
|
10880
11030
|
|
|
10881
|
-
|
|
10882
|
-
|
|
11031
|
+
/**
|
|
11032
|
+
* Whether to enable broadcast.
|
|
11033
|
+
* @type {boolean || null}
|
|
11034
|
+
*/
|
|
11035
|
+
this.EnableBroadcast = null;
|
|
10883
11036
|
|
|
10884
|
-
/**
|
|
10885
|
-
|
|
10886
|
-
|
|
10887
|
-
|
|
10888
|
-
|
|
10889
|
-
constructor(){
|
|
10890
|
-
super();
|
|
11037
|
+
/**
|
|
11038
|
+
* Availability Zone.
|
|
11039
|
+
* @type {string || null}
|
|
11040
|
+
*/
|
|
11041
|
+
this.Zone = null;
|
|
10891
11042
|
|
|
10892
11043
|
/**
|
|
10893
|
-
* The
|
|
11044
|
+
* The route table instance ID, such as `rtb-l2h8d7c2`.
|
|
10894
11045
|
* @type {string || null}
|
|
10895
11046
|
*/
|
|
10896
|
-
this.
|
|
11047
|
+
this.RouteTableId = null;
|
|
10897
11048
|
|
|
10898
|
-
|
|
11049
|
+
/**
|
|
11050
|
+
* Creation Time.
|
|
11051
|
+
* @type {string || null}
|
|
11052
|
+
*/
|
|
11053
|
+
this.CreatedTime = null;
|
|
10899
11054
|
|
|
10900
|
-
|
|
10901
|
-
|
|
11055
|
+
/**
|
|
11056
|
+
* The number of available IPv4 addresses
|
|
11057
|
+
* @type {number || null}
|
|
11058
|
+
*/
|
|
11059
|
+
this.AvailableIpAddressCount = null;
|
|
11060
|
+
|
|
11061
|
+
/**
|
|
11062
|
+
* The `IPv6` `CIDR` of the subnet.
|
|
11063
|
+
* @type {string || null}
|
|
11064
|
+
*/
|
|
11065
|
+
this.Ipv6CidrBlock = null;
|
|
11066
|
+
|
|
11067
|
+
/**
|
|
11068
|
+
* The associated `ACL`ID
|
|
11069
|
+
* @type {string || null}
|
|
11070
|
+
*/
|
|
11071
|
+
this.NetworkAclId = null;
|
|
11072
|
+
|
|
11073
|
+
/**
|
|
11074
|
+
* Whether it is a `SNAT` address pool subnet.
|
|
11075
|
+
* @type {boolean || null}
|
|
11076
|
+
*/
|
|
11077
|
+
this.IsRemoteVpcSnat = null;
|
|
11078
|
+
|
|
11079
|
+
/**
|
|
11080
|
+
* The total number of IPv4 addresses in the subnet.
|
|
11081
|
+
* @type {number || null}
|
|
11082
|
+
*/
|
|
11083
|
+
this.TotalIpAddressCount = null;
|
|
11084
|
+
|
|
11085
|
+
/**
|
|
11086
|
+
* Tag key-value pairs
|
|
11087
|
+
* @type {Array.<Tag> || null}
|
|
11088
|
+
*/
|
|
11089
|
+
this.TagSet = null;
|
|
11090
|
+
|
|
11091
|
+
/**
|
|
11092
|
+
* CDC instance ID
|
|
11093
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
11094
|
+
* @type {string || null}
|
|
11095
|
+
*/
|
|
11096
|
+
this.CdcId = null;
|
|
11097
|
+
|
|
11098
|
+
/**
|
|
11099
|
+
* Whether it is a CDC subnet. Valid values: 0: no; 1: yes
|
|
11100
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
11101
|
+
* @type {number || null}
|
|
11102
|
+
*/
|
|
11103
|
+
this.IsCdcSubnet = null;
|
|
11104
|
+
|
|
11105
|
+
}
|
|
11106
|
+
|
|
11107
|
+
/**
|
|
11108
|
+
* @private
|
|
11109
|
+
*/
|
|
11110
|
+
deserialize(params) {
|
|
11111
|
+
if (!params) {
|
|
11112
|
+
return;
|
|
11113
|
+
}
|
|
11114
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
11115
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
11116
|
+
this.SubnetName = 'SubnetName' in params ? params.SubnetName : null;
|
|
11117
|
+
this.CidrBlock = 'CidrBlock' in params ? params.CidrBlock : null;
|
|
11118
|
+
this.IsDefault = 'IsDefault' in params ? params.IsDefault : null;
|
|
11119
|
+
this.EnableBroadcast = 'EnableBroadcast' in params ? params.EnableBroadcast : null;
|
|
11120
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
11121
|
+
this.RouteTableId = 'RouteTableId' in params ? params.RouteTableId : null;
|
|
11122
|
+
this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
|
|
11123
|
+
this.AvailableIpAddressCount = 'AvailableIpAddressCount' in params ? params.AvailableIpAddressCount : null;
|
|
11124
|
+
this.Ipv6CidrBlock = 'Ipv6CidrBlock' in params ? params.Ipv6CidrBlock : null;
|
|
11125
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
11126
|
+
this.IsRemoteVpcSnat = 'IsRemoteVpcSnat' in params ? params.IsRemoteVpcSnat : null;
|
|
11127
|
+
this.TotalIpAddressCount = 'TotalIpAddressCount' in params ? params.TotalIpAddressCount : null;
|
|
11128
|
+
|
|
11129
|
+
if (params.TagSet) {
|
|
11130
|
+
this.TagSet = new Array();
|
|
11131
|
+
for (let z in params.TagSet) {
|
|
11132
|
+
let obj = new Tag();
|
|
11133
|
+
obj.deserialize(params.TagSet[z]);
|
|
11134
|
+
this.TagSet.push(obj);
|
|
11135
|
+
}
|
|
11136
|
+
}
|
|
11137
|
+
this.CdcId = 'CdcId' in params ? params.CdcId : null;
|
|
11138
|
+
this.IsCdcSubnet = 'IsCdcSubnet' in params ? params.IsCdcSubnet : null;
|
|
11139
|
+
|
|
11140
|
+
}
|
|
11141
|
+
}
|
|
11142
|
+
|
|
11143
|
+
/**
|
|
11144
|
+
* DescribeVpcPrivateIpAddresses response structure.
|
|
11145
|
+
* @class
|
|
11146
|
+
*/
|
|
11147
|
+
class DescribeVpcPrivateIpAddressesResponse extends AbstractModel {
|
|
11148
|
+
constructor(){
|
|
11149
|
+
super();
|
|
11150
|
+
|
|
11151
|
+
/**
|
|
11152
|
+
* The list of private `IP` address information.
|
|
11153
|
+
* @type {Array.<VpcPrivateIpAddress> || null}
|
|
11154
|
+
*/
|
|
11155
|
+
this.VpcPrivateIpAddressSet = null;
|
|
11156
|
+
|
|
11157
|
+
/**
|
|
11158
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
11159
|
+
* @type {string || null}
|
|
11160
|
+
*/
|
|
11161
|
+
this.RequestId = null;
|
|
11162
|
+
|
|
11163
|
+
}
|
|
11164
|
+
|
|
11165
|
+
/**
|
|
11166
|
+
* @private
|
|
11167
|
+
*/
|
|
11168
|
+
deserialize(params) {
|
|
11169
|
+
if (!params) {
|
|
11170
|
+
return;
|
|
11171
|
+
}
|
|
11172
|
+
|
|
11173
|
+
if (params.VpcPrivateIpAddressSet) {
|
|
11174
|
+
this.VpcPrivateIpAddressSet = new Array();
|
|
11175
|
+
for (let z in params.VpcPrivateIpAddressSet) {
|
|
11176
|
+
let obj = new VpcPrivateIpAddress();
|
|
11177
|
+
obj.deserialize(params.VpcPrivateIpAddressSet[z]);
|
|
11178
|
+
this.VpcPrivateIpAddressSet.push(obj);
|
|
11179
|
+
}
|
|
11180
|
+
}
|
|
11181
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11182
|
+
|
|
11183
|
+
}
|
|
11184
|
+
}
|
|
11185
|
+
|
|
11186
|
+
/**
|
|
11187
|
+
* HaVipAssociateAddressIp response structure.
|
|
11188
|
+
* @class
|
|
11189
|
+
*/
|
|
11190
|
+
class HaVipAssociateAddressIpResponse extends AbstractModel {
|
|
11191
|
+
constructor(){
|
|
11192
|
+
super();
|
|
11193
|
+
|
|
11194
|
+
/**
|
|
11195
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
11196
|
+
* @type {string || null}
|
|
11197
|
+
*/
|
|
11198
|
+
this.RequestId = null;
|
|
11199
|
+
|
|
11200
|
+
}
|
|
11201
|
+
|
|
11202
|
+
/**
|
|
11203
|
+
* @private
|
|
11204
|
+
*/
|
|
11205
|
+
deserialize(params) {
|
|
11206
|
+
if (!params) {
|
|
11207
|
+
return;
|
|
11208
|
+
}
|
|
11209
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11210
|
+
|
|
11211
|
+
}
|
|
11212
|
+
}
|
|
11213
|
+
|
|
11214
|
+
/**
|
|
11215
|
+
* DeleteCustomerGateway response structure.
|
|
11216
|
+
* @class
|
|
11217
|
+
*/
|
|
11218
|
+
class DeleteCustomerGatewayResponse extends AbstractModel {
|
|
11219
|
+
constructor(){
|
|
11220
|
+
super();
|
|
11221
|
+
|
|
11222
|
+
/**
|
|
11223
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
11224
|
+
* @type {string || null}
|
|
11225
|
+
*/
|
|
11226
|
+
this.RequestId = null;
|
|
11227
|
+
|
|
11228
|
+
}
|
|
11229
|
+
|
|
11230
|
+
/**
|
|
11231
|
+
* @private
|
|
10902
11232
|
*/
|
|
10903
11233
|
deserialize(params) {
|
|
10904
11234
|
if (!params) {
|
|
@@ -11630,6 +11960,18 @@ class CreateNetworkAclRequest extends AbstractModel {
|
|
|
11630
11960
|
*/
|
|
11631
11961
|
this.NetworkAclName = null;
|
|
11632
11962
|
|
|
11963
|
+
/**
|
|
11964
|
+
* Network ACL type. Valid values: `TRIPLE` and `QUINTUPLE`.
|
|
11965
|
+
* @type {string || null}
|
|
11966
|
+
*/
|
|
11967
|
+
this.NetworkAclType = null;
|
|
11968
|
+
|
|
11969
|
+
/**
|
|
11970
|
+
* Bound tags, such as [{"Key": "city", "Value": "shanghai"}].
|
|
11971
|
+
* @type {Array.<Tag> || null}
|
|
11972
|
+
*/
|
|
11973
|
+
this.Tags = null;
|
|
11974
|
+
|
|
11633
11975
|
}
|
|
11634
11976
|
|
|
11635
11977
|
/**
|
|
@@ -11641,6 +11983,16 @@ class CreateNetworkAclRequest extends AbstractModel {
|
|
|
11641
11983
|
}
|
|
11642
11984
|
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
11643
11985
|
this.NetworkAclName = 'NetworkAclName' in params ? params.NetworkAclName : null;
|
|
11986
|
+
this.NetworkAclType = 'NetworkAclType' in params ? params.NetworkAclType : null;
|
|
11987
|
+
|
|
11988
|
+
if (params.Tags) {
|
|
11989
|
+
this.Tags = new Array();
|
|
11990
|
+
for (let z in params.Tags) {
|
|
11991
|
+
let obj = new Tag();
|
|
11992
|
+
obj.deserialize(params.Tags[z]);
|
|
11993
|
+
this.Tags.push(obj);
|
|
11994
|
+
}
|
|
11995
|
+
}
|
|
11644
11996
|
|
|
11645
11997
|
}
|
|
11646
11998
|
}
|
|
@@ -12167,6 +12519,70 @@ class DescribeVpcEndPointResponse extends AbstractModel {
|
|
|
12167
12519
|
}
|
|
12168
12520
|
}
|
|
12169
12521
|
|
|
12522
|
+
/**
|
|
12523
|
+
* DescribeNetworkAclQuintupleEntries request structure.
|
|
12524
|
+
* @class
|
|
12525
|
+
*/
|
|
12526
|
+
class DescribeNetworkAclQuintupleEntriesRequest extends AbstractModel {
|
|
12527
|
+
constructor(){
|
|
12528
|
+
super();
|
|
12529
|
+
|
|
12530
|
+
/**
|
|
12531
|
+
* Network ACL instance ID, such as `acl-12345678`.
|
|
12532
|
+
* @type {string || null}
|
|
12533
|
+
*/
|
|
12534
|
+
this.NetworkAclId = null;
|
|
12535
|
+
|
|
12536
|
+
/**
|
|
12537
|
+
* Offset. Default value: 0.
|
|
12538
|
+
* @type {number || null}
|
|
12539
|
+
*/
|
|
12540
|
+
this.Offset = null;
|
|
12541
|
+
|
|
12542
|
+
/**
|
|
12543
|
+
* Returned quantity. Default: 20. Value range: 1-100.
|
|
12544
|
+
* @type {number || null}
|
|
12545
|
+
*/
|
|
12546
|
+
this.Limit = null;
|
|
12547
|
+
|
|
12548
|
+
/**
|
|
12549
|
+
* Filter condition. `HaVipIds` and `Filters` cannot be specified at the same time.
|
|
12550
|
+
<li>`protocol` - String - Such as `TCP`</li>
|
|
12551
|
+
<li>`description` - String - Description</li>
|
|
12552
|
+
<li>`destination-cidr` - String - Destination CIDR block, such as `192.168.0.0/24`</li>
|
|
12553
|
+
<li>`source-cidr` - String - Source CIDR block, such as `192.168.0.0/24`</li>
|
|
12554
|
+
<li>`action` - String - ·Values: `ACCEPT`, `DROP`</li>
|
|
12555
|
+
<li>`network-acl-quintuple-entry-id` - String - Unique ID of the quintuple, such as `acli45-ahnu4rv5`</li>
|
|
12556
|
+
<li>`network-acl-direction` - String - Direction of the policy. Values: `INGRESS` or `EGRESS`.</li>
|
|
12557
|
+
* @type {Array.<Filter> || null}
|
|
12558
|
+
*/
|
|
12559
|
+
this.Filters = null;
|
|
12560
|
+
|
|
12561
|
+
}
|
|
12562
|
+
|
|
12563
|
+
/**
|
|
12564
|
+
* @private
|
|
12565
|
+
*/
|
|
12566
|
+
deserialize(params) {
|
|
12567
|
+
if (!params) {
|
|
12568
|
+
return;
|
|
12569
|
+
}
|
|
12570
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
12571
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
12572
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
12573
|
+
|
|
12574
|
+
if (params.Filters) {
|
|
12575
|
+
this.Filters = new Array();
|
|
12576
|
+
for (let z in params.Filters) {
|
|
12577
|
+
let obj = new Filter();
|
|
12578
|
+
obj.deserialize(params.Filters[z]);
|
|
12579
|
+
this.Filters.push(obj);
|
|
12580
|
+
}
|
|
12581
|
+
}
|
|
12582
|
+
|
|
12583
|
+
}
|
|
12584
|
+
}
|
|
12585
|
+
|
|
12170
12586
|
/**
|
|
12171
12587
|
* DeleteVpnConnection request structure.
|
|
12172
12588
|
* @class
|
|
@@ -13247,6 +13663,46 @@ class CreateServiceTemplateGroupRequest extends AbstractModel {
|
|
|
13247
13663
|
}
|
|
13248
13664
|
}
|
|
13249
13665
|
|
|
13666
|
+
/**
|
|
13667
|
+
* CreateNetworkAclQuintupleEntries request structure.
|
|
13668
|
+
* @class
|
|
13669
|
+
*/
|
|
13670
|
+
class CreateNetworkAclQuintupleEntriesRequest extends AbstractModel {
|
|
13671
|
+
constructor(){
|
|
13672
|
+
super();
|
|
13673
|
+
|
|
13674
|
+
/**
|
|
13675
|
+
* Network ACL instance ID, such as `acl-12345678`.
|
|
13676
|
+
* @type {string || null}
|
|
13677
|
+
*/
|
|
13678
|
+
this.NetworkAclId = null;
|
|
13679
|
+
|
|
13680
|
+
/**
|
|
13681
|
+
* Network ACL quintuple rule set.
|
|
13682
|
+
* @type {NetworkAclQuintupleEntries || null}
|
|
13683
|
+
*/
|
|
13684
|
+
this.NetworkAclQuintupleSet = null;
|
|
13685
|
+
|
|
13686
|
+
}
|
|
13687
|
+
|
|
13688
|
+
/**
|
|
13689
|
+
* @private
|
|
13690
|
+
*/
|
|
13691
|
+
deserialize(params) {
|
|
13692
|
+
if (!params) {
|
|
13693
|
+
return;
|
|
13694
|
+
}
|
|
13695
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
13696
|
+
|
|
13697
|
+
if (params.NetworkAclQuintupleSet) {
|
|
13698
|
+
let obj = new NetworkAclQuintupleEntries();
|
|
13699
|
+
obj.deserialize(params.NetworkAclQuintupleSet)
|
|
13700
|
+
this.NetworkAclQuintupleSet = obj;
|
|
13701
|
+
}
|
|
13702
|
+
|
|
13703
|
+
}
|
|
13704
|
+
}
|
|
13705
|
+
|
|
13250
13706
|
/**
|
|
13251
13707
|
* DescribeClassicLinkInstances response structure.
|
|
13252
13708
|
* @class
|
|
@@ -14298,6 +14754,56 @@ class DescribeNetworkAclsRequest extends AbstractModel {
|
|
|
14298
14754
|
}
|
|
14299
14755
|
}
|
|
14300
14756
|
|
|
14757
|
+
/**
|
|
14758
|
+
* DescribeNetworkAclQuintupleEntries response structure.
|
|
14759
|
+
* @class
|
|
14760
|
+
*/
|
|
14761
|
+
class DescribeNetworkAclQuintupleEntriesResponse extends AbstractModel {
|
|
14762
|
+
constructor(){
|
|
14763
|
+
super();
|
|
14764
|
+
|
|
14765
|
+
/**
|
|
14766
|
+
* The list of the network ACL quintuple entries
|
|
14767
|
+
* @type {Array.<NetworkAclQuintupleEntry> || null}
|
|
14768
|
+
*/
|
|
14769
|
+
this.NetworkAclQuintupleSet = null;
|
|
14770
|
+
|
|
14771
|
+
/**
|
|
14772
|
+
* Number of eligible instances.
|
|
14773
|
+
* @type {number || null}
|
|
14774
|
+
*/
|
|
14775
|
+
this.TotalCount = null;
|
|
14776
|
+
|
|
14777
|
+
/**
|
|
14778
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
14779
|
+
* @type {string || null}
|
|
14780
|
+
*/
|
|
14781
|
+
this.RequestId = null;
|
|
14782
|
+
|
|
14783
|
+
}
|
|
14784
|
+
|
|
14785
|
+
/**
|
|
14786
|
+
* @private
|
|
14787
|
+
*/
|
|
14788
|
+
deserialize(params) {
|
|
14789
|
+
if (!params) {
|
|
14790
|
+
return;
|
|
14791
|
+
}
|
|
14792
|
+
|
|
14793
|
+
if (params.NetworkAclQuintupleSet) {
|
|
14794
|
+
this.NetworkAclQuintupleSet = new Array();
|
|
14795
|
+
for (let z in params.NetworkAclQuintupleSet) {
|
|
14796
|
+
let obj = new NetworkAclQuintupleEntry();
|
|
14797
|
+
obj.deserialize(params.NetworkAclQuintupleSet[z]);
|
|
14798
|
+
this.NetworkAclQuintupleSet.push(obj);
|
|
14799
|
+
}
|
|
14800
|
+
}
|
|
14801
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
14802
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14803
|
+
|
|
14804
|
+
}
|
|
14805
|
+
}
|
|
14806
|
+
|
|
14301
14807
|
/**
|
|
14302
14808
|
* DescribeSubnets request structure.
|
|
14303
14809
|
* @class
|
|
@@ -16692,24 +17198,24 @@ class AttachCcnInstancesResponse extends AbstractModel {
|
|
|
16692
17198
|
}
|
|
16693
17199
|
|
|
16694
17200
|
/**
|
|
16695
|
-
*
|
|
17201
|
+
* CreateDefaultVpc response structure.
|
|
16696
17202
|
* @class
|
|
16697
17203
|
*/
|
|
16698
|
-
class
|
|
17204
|
+
class CreateDefaultVpcResponse extends AbstractModel {
|
|
16699
17205
|
constructor(){
|
|
16700
17206
|
super();
|
|
16701
17207
|
|
|
16702
17208
|
/**
|
|
16703
|
-
*
|
|
16704
|
-
* @type {
|
|
17209
|
+
* Default VPC and subnet IDs
|
|
17210
|
+
* @type {DefaultVpcSubnet || null}
|
|
16705
17211
|
*/
|
|
16706
|
-
this.
|
|
17212
|
+
this.Vpc = null;
|
|
16707
17213
|
|
|
16708
17214
|
/**
|
|
16709
|
-
*
|
|
16710
|
-
* @type {
|
|
17215
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
17216
|
+
* @type {string || null}
|
|
16711
17217
|
*/
|
|
16712
|
-
this.
|
|
17218
|
+
this.RequestId = null;
|
|
16713
17219
|
|
|
16714
17220
|
}
|
|
16715
17221
|
|
|
@@ -16720,8 +17226,13 @@ class DisassociateNetworkAclSubnetsRequest extends AbstractModel {
|
|
|
16720
17226
|
if (!params) {
|
|
16721
17227
|
return;
|
|
16722
17228
|
}
|
|
16723
|
-
|
|
16724
|
-
|
|
17229
|
+
|
|
17230
|
+
if (params.Vpc) {
|
|
17231
|
+
let obj = new DefaultVpcSubnet();
|
|
17232
|
+
obj.deserialize(params.Vpc)
|
|
17233
|
+
this.Vpc = obj;
|
|
17234
|
+
}
|
|
17235
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
16725
17236
|
|
|
16726
17237
|
}
|
|
16727
17238
|
}
|
|
@@ -20089,24 +20600,24 @@ class DescribeTaskResultResponse extends AbstractModel {
|
|
|
20089
20600
|
}
|
|
20090
20601
|
|
|
20091
20602
|
/**
|
|
20092
|
-
*
|
|
20603
|
+
* DisassociateNetworkAclSubnets request structure.
|
|
20093
20604
|
* @class
|
|
20094
20605
|
*/
|
|
20095
|
-
class
|
|
20606
|
+
class DisassociateNetworkAclSubnetsRequest extends AbstractModel {
|
|
20096
20607
|
constructor(){
|
|
20097
20608
|
super();
|
|
20098
20609
|
|
|
20099
20610
|
/**
|
|
20100
|
-
*
|
|
20101
|
-
* @type {
|
|
20611
|
+
* Network ACL instance ID, such as `acl-12345678`.
|
|
20612
|
+
* @type {string || null}
|
|
20102
20613
|
*/
|
|
20103
|
-
this.
|
|
20614
|
+
this.NetworkAclId = null;
|
|
20104
20615
|
|
|
20105
20616
|
/**
|
|
20106
|
-
*
|
|
20107
|
-
* @type {string || null}
|
|
20617
|
+
* Array of subnet instance IDs, such as [subnet-12345678].
|
|
20618
|
+
* @type {Array.<string> || null}
|
|
20108
20619
|
*/
|
|
20109
|
-
this.
|
|
20620
|
+
this.SubnetIds = null;
|
|
20110
20621
|
|
|
20111
20622
|
}
|
|
20112
20623
|
|
|
@@ -20117,13 +20628,8 @@ class CreateDefaultVpcResponse extends AbstractModel {
|
|
|
20117
20628
|
if (!params) {
|
|
20118
20629
|
return;
|
|
20119
20630
|
}
|
|
20120
|
-
|
|
20121
|
-
|
|
20122
|
-
let obj = new DefaultVpcSubnet();
|
|
20123
|
-
obj.deserialize(params.Vpc)
|
|
20124
|
-
this.Vpc = obj;
|
|
20125
|
-
}
|
|
20126
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
20631
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
20632
|
+
this.SubnetIds = 'SubnetIds' in params ? params.SubnetIds : null;
|
|
20127
20633
|
|
|
20128
20634
|
}
|
|
20129
20635
|
}
|
|
@@ -20330,40 +20836,148 @@ class CCN extends AbstractModel {
|
|
|
20330
20836
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20331
20837
|
* @type {string || null}
|
|
20332
20838
|
*/
|
|
20333
|
-
this.InstanceChargeType = null;
|
|
20839
|
+
this.InstanceChargeType = null;
|
|
20840
|
+
|
|
20841
|
+
/**
|
|
20842
|
+
* The limit type. INTER_REGION_LIMIT is the limit between regions. OUTER_REGION_LIMIT is a region egress limit.
|
|
20843
|
+
Note: This field may return null, indicating no valid value.
|
|
20844
|
+
* @type {string || null}
|
|
20845
|
+
*/
|
|
20846
|
+
this.BandwidthLimitType = null;
|
|
20847
|
+
|
|
20848
|
+
/**
|
|
20849
|
+
* Tag key-value pairs.
|
|
20850
|
+
* @type {Array.<Tag> || null}
|
|
20851
|
+
*/
|
|
20852
|
+
this.TagSet = null;
|
|
20853
|
+
|
|
20854
|
+
/**
|
|
20855
|
+
* Whether the CCN route priority feature is supported. Valid values: False: do not support; True: support.
|
|
20856
|
+
* @type {boolean || null}
|
|
20857
|
+
*/
|
|
20858
|
+
this.RoutePriorityFlag = null;
|
|
20859
|
+
|
|
20860
|
+
/**
|
|
20861
|
+
* Number of route tables associated with the instance.
|
|
20862
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
20863
|
+
* @type {number || null}
|
|
20864
|
+
*/
|
|
20865
|
+
this.RouteTableCount = null;
|
|
20866
|
+
|
|
20867
|
+
/**
|
|
20868
|
+
* Whether the multiple route tables feature is enabled for the CCN instance. Valid values: `False`: no; `True`: yes. Default value: `False`.
|
|
20869
|
+
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
20870
|
+
* @type {boolean || null}
|
|
20871
|
+
*/
|
|
20872
|
+
this.RouteTableFlag = null;
|
|
20873
|
+
|
|
20874
|
+
}
|
|
20875
|
+
|
|
20876
|
+
/**
|
|
20877
|
+
* @private
|
|
20878
|
+
*/
|
|
20879
|
+
deserialize(params) {
|
|
20880
|
+
if (!params) {
|
|
20881
|
+
return;
|
|
20882
|
+
}
|
|
20883
|
+
this.CcnId = 'CcnId' in params ? params.CcnId : null;
|
|
20884
|
+
this.CcnName = 'CcnName' in params ? params.CcnName : null;
|
|
20885
|
+
this.CcnDescription = 'CcnDescription' in params ? params.CcnDescription : null;
|
|
20886
|
+
this.InstanceCount = 'InstanceCount' in params ? params.InstanceCount : null;
|
|
20887
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
20888
|
+
this.State = 'State' in params ? params.State : null;
|
|
20889
|
+
this.QosLevel = 'QosLevel' in params ? params.QosLevel : null;
|
|
20890
|
+
this.InstanceChargeType = 'InstanceChargeType' in params ? params.InstanceChargeType : null;
|
|
20891
|
+
this.BandwidthLimitType = 'BandwidthLimitType' in params ? params.BandwidthLimitType : null;
|
|
20892
|
+
|
|
20893
|
+
if (params.TagSet) {
|
|
20894
|
+
this.TagSet = new Array();
|
|
20895
|
+
for (let z in params.TagSet) {
|
|
20896
|
+
let obj = new Tag();
|
|
20897
|
+
obj.deserialize(params.TagSet[z]);
|
|
20898
|
+
this.TagSet.push(obj);
|
|
20899
|
+
}
|
|
20900
|
+
}
|
|
20901
|
+
this.RoutePriorityFlag = 'RoutePriorityFlag' in params ? params.RoutePriorityFlag : null;
|
|
20902
|
+
this.RouteTableCount = 'RouteTableCount' in params ? params.RouteTableCount : null;
|
|
20903
|
+
this.RouteTableFlag = 'RouteTableFlag' in params ? params.RouteTableFlag : null;
|
|
20904
|
+
|
|
20905
|
+
}
|
|
20906
|
+
}
|
|
20907
|
+
|
|
20908
|
+
/**
|
|
20909
|
+
* Network ACL quintuple entry
|
|
20910
|
+
* @class
|
|
20911
|
+
*/
|
|
20912
|
+
class NetworkAclQuintupleEntry extends AbstractModel {
|
|
20913
|
+
constructor(){
|
|
20914
|
+
super();
|
|
20915
|
+
|
|
20916
|
+
/**
|
|
20917
|
+
* Protocol. Valid values: `TCP`, `UDP`, `ICMP`, `ALL`.
|
|
20918
|
+
* @type {string || null}
|
|
20919
|
+
*/
|
|
20920
|
+
this.Protocol = null;
|
|
20921
|
+
|
|
20922
|
+
/**
|
|
20923
|
+
* Description
|
|
20924
|
+
* @type {string || null}
|
|
20925
|
+
*/
|
|
20926
|
+
this.Description = null;
|
|
20927
|
+
|
|
20928
|
+
/**
|
|
20929
|
+
* Source port. Valid values: all, single port, range. When `Protocol` is `ALL` or `ICMP`, `Port` cannot be specified.
|
|
20930
|
+
* @type {string || null}
|
|
20931
|
+
*/
|
|
20932
|
+
this.SourcePort = null;
|
|
20933
|
+
|
|
20934
|
+
/**
|
|
20935
|
+
* Source CIDR block.
|
|
20936
|
+
* @type {string || null}
|
|
20937
|
+
*/
|
|
20938
|
+
this.SourceCidr = null;
|
|
20939
|
+
|
|
20940
|
+
/**
|
|
20941
|
+
* Destination port. Valid values: all, single port, range. When `Protocol` is `ALL` or `ICMP`, `Port` cannot be specified.
|
|
20942
|
+
* @type {string || null}
|
|
20943
|
+
*/
|
|
20944
|
+
this.DestinationPort = null;
|
|
20945
|
+
|
|
20946
|
+
/**
|
|
20947
|
+
* Destination CIDR block.
|
|
20948
|
+
* @type {string || null}
|
|
20949
|
+
*/
|
|
20950
|
+
this.DestinationCidr = null;
|
|
20334
20951
|
|
|
20335
20952
|
/**
|
|
20336
|
-
*
|
|
20337
|
-
Note: This field may return null, indicating no valid value.
|
|
20953
|
+
* Action. Valid values: `ACCEPT` and `DROP`.
|
|
20338
20954
|
* @type {string || null}
|
|
20339
20955
|
*/
|
|
20340
|
-
this.
|
|
20956
|
+
this.Action = null;
|
|
20341
20957
|
|
|
20342
20958
|
/**
|
|
20343
|
-
*
|
|
20344
|
-
* @type {
|
|
20959
|
+
* Unique ID of a network ACL entry.
|
|
20960
|
+
* @type {string || null}
|
|
20345
20961
|
*/
|
|
20346
|
-
this.
|
|
20962
|
+
this.NetworkAclQuintupleEntryId = null;
|
|
20347
20963
|
|
|
20348
20964
|
/**
|
|
20349
|
-
*
|
|
20350
|
-
* @type {
|
|
20965
|
+
* Priority. `1` refers to the highest priority.
|
|
20966
|
+
* @type {number || null}
|
|
20351
20967
|
*/
|
|
20352
|
-
this.
|
|
20968
|
+
this.Priority = null;
|
|
20353
20969
|
|
|
20354
20970
|
/**
|
|
20355
|
-
*
|
|
20356
|
-
|
|
20357
|
-
* @type {number || null}
|
|
20971
|
+
* Creation time. It’s returned by `DescribeNetworkAclQuintupleEntries`.
|
|
20972
|
+
* @type {string || null}
|
|
20358
20973
|
*/
|
|
20359
|
-
this.
|
|
20974
|
+
this.CreateTime = null;
|
|
20360
20975
|
|
|
20361
20976
|
/**
|
|
20362
|
-
*
|
|
20363
|
-
|
|
20364
|
-
* @type {boolean || null}
|
|
20977
|
+
* Direction of the rule. It’s returned by `DescribeNetworkAclQuintupleEntries`. Valid values: `INGRESS` and `EGRESS`.
|
|
20978
|
+
* @type {string || null}
|
|
20365
20979
|
*/
|
|
20366
|
-
this.
|
|
20980
|
+
this.NetworkAclDirection = null;
|
|
20367
20981
|
|
|
20368
20982
|
}
|
|
20369
20983
|
|
|
@@ -20374,27 +20988,17 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
20374
20988
|
if (!params) {
|
|
20375
20989
|
return;
|
|
20376
20990
|
}
|
|
20377
|
-
this.
|
|
20378
|
-
this.
|
|
20379
|
-
this.
|
|
20380
|
-
this.
|
|
20991
|
+
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
20992
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
20993
|
+
this.SourcePort = 'SourcePort' in params ? params.SourcePort : null;
|
|
20994
|
+
this.SourceCidr = 'SourceCidr' in params ? params.SourceCidr : null;
|
|
20995
|
+
this.DestinationPort = 'DestinationPort' in params ? params.DestinationPort : null;
|
|
20996
|
+
this.DestinationCidr = 'DestinationCidr' in params ? params.DestinationCidr : null;
|
|
20997
|
+
this.Action = 'Action' in params ? params.Action : null;
|
|
20998
|
+
this.NetworkAclQuintupleEntryId = 'NetworkAclQuintupleEntryId' in params ? params.NetworkAclQuintupleEntryId : null;
|
|
20999
|
+
this.Priority = 'Priority' in params ? params.Priority : null;
|
|
20381
21000
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
20382
|
-
this.
|
|
20383
|
-
this.QosLevel = 'QosLevel' in params ? params.QosLevel : null;
|
|
20384
|
-
this.InstanceChargeType = 'InstanceChargeType' in params ? params.InstanceChargeType : null;
|
|
20385
|
-
this.BandwidthLimitType = 'BandwidthLimitType' in params ? params.BandwidthLimitType : null;
|
|
20386
|
-
|
|
20387
|
-
if (params.TagSet) {
|
|
20388
|
-
this.TagSet = new Array();
|
|
20389
|
-
for (let z in params.TagSet) {
|
|
20390
|
-
let obj = new Tag();
|
|
20391
|
-
obj.deserialize(params.TagSet[z]);
|
|
20392
|
-
this.TagSet.push(obj);
|
|
20393
|
-
}
|
|
20394
|
-
}
|
|
20395
|
-
this.RoutePriorityFlag = 'RoutePriorityFlag' in params ? params.RoutePriorityFlag : null;
|
|
20396
|
-
this.RouteTableCount = 'RouteTableCount' in params ? params.RouteTableCount : null;
|
|
20397
|
-
this.RouteTableFlag = 'RouteTableFlag' in params ? params.RouteTableFlag : null;
|
|
21001
|
+
this.NetworkAclDirection = 'NetworkAclDirection' in params ? params.NetworkAclDirection : null;
|
|
20398
21002
|
|
|
20399
21003
|
}
|
|
20400
21004
|
}
|
|
@@ -20878,6 +21482,46 @@ class ModifyServiceTemplateGroupAttributeResponse extends AbstractModel {
|
|
|
20878
21482
|
}
|
|
20879
21483
|
}
|
|
20880
21484
|
|
|
21485
|
+
/**
|
|
21486
|
+
* DeleteNetworkAclQuintupleEntries request structure.
|
|
21487
|
+
* @class
|
|
21488
|
+
*/
|
|
21489
|
+
class DeleteNetworkAclQuintupleEntriesRequest extends AbstractModel {
|
|
21490
|
+
constructor(){
|
|
21491
|
+
super();
|
|
21492
|
+
|
|
21493
|
+
/**
|
|
21494
|
+
* Network ACL instance ID, such as `acl-12345678`.
|
|
21495
|
+
* @type {string || null}
|
|
21496
|
+
*/
|
|
21497
|
+
this.NetworkAclId = null;
|
|
21498
|
+
|
|
21499
|
+
/**
|
|
21500
|
+
* Network ACL quintuple rule set.
|
|
21501
|
+
* @type {NetworkAclQuintupleEntries || null}
|
|
21502
|
+
*/
|
|
21503
|
+
this.NetworkAclQuintupleSet = null;
|
|
21504
|
+
|
|
21505
|
+
}
|
|
21506
|
+
|
|
21507
|
+
/**
|
|
21508
|
+
* @private
|
|
21509
|
+
*/
|
|
21510
|
+
deserialize(params) {
|
|
21511
|
+
if (!params) {
|
|
21512
|
+
return;
|
|
21513
|
+
}
|
|
21514
|
+
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
21515
|
+
|
|
21516
|
+
if (params.NetworkAclQuintupleSet) {
|
|
21517
|
+
let obj = new NetworkAclQuintupleEntries();
|
|
21518
|
+
obj.deserialize(params.NetworkAclQuintupleSet)
|
|
21519
|
+
this.NetworkAclQuintupleSet = obj;
|
|
21520
|
+
}
|
|
21521
|
+
|
|
21522
|
+
}
|
|
21523
|
+
}
|
|
21524
|
+
|
|
20881
21525
|
/**
|
|
20882
21526
|
* DeleteSubnet request structure.
|
|
20883
21527
|
* @class
|
|
@@ -23141,116 +23785,24 @@ class NatDirectConnectGatewayRoute extends AbstractModel {
|
|
|
23141
23785
|
}
|
|
23142
23786
|
|
|
23143
23787
|
/**
|
|
23144
|
-
*
|
|
23788
|
+
* Network ACL quintuple
|
|
23145
23789
|
* @class
|
|
23146
23790
|
*/
|
|
23147
|
-
class
|
|
23791
|
+
class NetworkAclQuintupleEntries extends AbstractModel {
|
|
23148
23792
|
constructor(){
|
|
23149
23793
|
super();
|
|
23150
23794
|
|
|
23151
23795
|
/**
|
|
23152
|
-
*
|
|
23153
|
-
* @type {
|
|
23154
|
-
*/
|
|
23155
|
-
this.VpcId = null;
|
|
23156
|
-
|
|
23157
|
-
/**
|
|
23158
|
-
* Subnet instance `ID`, such as `subnet-bthucmmy`.
|
|
23159
|
-
* @type {string || null}
|
|
23160
|
-
*/
|
|
23161
|
-
this.SubnetId = null;
|
|
23162
|
-
|
|
23163
|
-
/**
|
|
23164
|
-
* Subnet name.
|
|
23165
|
-
* @type {string || null}
|
|
23166
|
-
*/
|
|
23167
|
-
this.SubnetName = null;
|
|
23168
|
-
|
|
23169
|
-
/**
|
|
23170
|
-
* The `IPv4` `CIDR` of the subnet.
|
|
23171
|
-
* @type {string || null}
|
|
23172
|
-
*/
|
|
23173
|
-
this.CidrBlock = null;
|
|
23174
|
-
|
|
23175
|
-
/**
|
|
23176
|
-
* Whether it is the default subnet.
|
|
23177
|
-
* @type {boolean || null}
|
|
23178
|
-
*/
|
|
23179
|
-
this.IsDefault = null;
|
|
23180
|
-
|
|
23181
|
-
/**
|
|
23182
|
-
* Whether to enable broadcast.
|
|
23183
|
-
* @type {boolean || null}
|
|
23184
|
-
*/
|
|
23185
|
-
this.EnableBroadcast = null;
|
|
23186
|
-
|
|
23187
|
-
/**
|
|
23188
|
-
* Availability Zone.
|
|
23189
|
-
* @type {string || null}
|
|
23190
|
-
*/
|
|
23191
|
-
this.Zone = null;
|
|
23192
|
-
|
|
23193
|
-
/**
|
|
23194
|
-
* The route table instance ID, such as `rtb-l2h8d7c2`.
|
|
23195
|
-
* @type {string || null}
|
|
23196
|
-
*/
|
|
23197
|
-
this.RouteTableId = null;
|
|
23198
|
-
|
|
23199
|
-
/**
|
|
23200
|
-
* Creation Time.
|
|
23201
|
-
* @type {string || null}
|
|
23202
|
-
*/
|
|
23203
|
-
this.CreatedTime = null;
|
|
23204
|
-
|
|
23205
|
-
/**
|
|
23206
|
-
* The number of available IPv4 addresses
|
|
23207
|
-
* @type {number || null}
|
|
23208
|
-
*/
|
|
23209
|
-
this.AvailableIpAddressCount = null;
|
|
23210
|
-
|
|
23211
|
-
/**
|
|
23212
|
-
* The `IPv6` `CIDR` of the subnet.
|
|
23213
|
-
* @type {string || null}
|
|
23214
|
-
*/
|
|
23215
|
-
this.Ipv6CidrBlock = null;
|
|
23216
|
-
|
|
23217
|
-
/**
|
|
23218
|
-
* The associated `ACL`ID
|
|
23219
|
-
* @type {string || null}
|
|
23220
|
-
*/
|
|
23221
|
-
this.NetworkAclId = null;
|
|
23222
|
-
|
|
23223
|
-
/**
|
|
23224
|
-
* Whether it is a `SNAT` address pool subnet.
|
|
23225
|
-
* @type {boolean || null}
|
|
23226
|
-
*/
|
|
23227
|
-
this.IsRemoteVpcSnat = null;
|
|
23228
|
-
|
|
23229
|
-
/**
|
|
23230
|
-
* The total number of IPv4 addresses in the subnet.
|
|
23231
|
-
* @type {number || null}
|
|
23232
|
-
*/
|
|
23233
|
-
this.TotalIpAddressCount = null;
|
|
23234
|
-
|
|
23235
|
-
/**
|
|
23236
|
-
* Tag key-value pairs
|
|
23237
|
-
* @type {Array.<Tag> || null}
|
|
23238
|
-
*/
|
|
23239
|
-
this.TagSet = null;
|
|
23240
|
-
|
|
23241
|
-
/**
|
|
23242
|
-
* CDC instance ID
|
|
23243
|
-
Note: this field may return `null`, indicating that no valid values can be obtained.
|
|
23244
|
-
* @type {string || null}
|
|
23796
|
+
* Network ACL quintuple inbound rule.
|
|
23797
|
+
* @type {Array.<NetworkAclQuintupleEntry> || null}
|
|
23245
23798
|
*/
|
|
23246
|
-
this.
|
|
23799
|
+
this.Ingress = null;
|
|
23247
23800
|
|
|
23248
23801
|
/**
|
|
23249
|
-
*
|
|
23250
|
-
|
|
23251
|
-
* @type {number || null}
|
|
23802
|
+
* Network ACL quintuple outbound rule.
|
|
23803
|
+
* @type {Array.<NetworkAclQuintupleEntry> || null}
|
|
23252
23804
|
*/
|
|
23253
|
-
this.
|
|
23805
|
+
this.Egress = null;
|
|
23254
23806
|
|
|
23255
23807
|
}
|
|
23256
23808
|
|
|
@@ -23261,31 +23813,24 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
23261
23813
|
if (!params) {
|
|
23262
23814
|
return;
|
|
23263
23815
|
}
|
|
23264
|
-
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
23265
|
-
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
23266
|
-
this.SubnetName = 'SubnetName' in params ? params.SubnetName : null;
|
|
23267
|
-
this.CidrBlock = 'CidrBlock' in params ? params.CidrBlock : null;
|
|
23268
|
-
this.IsDefault = 'IsDefault' in params ? params.IsDefault : null;
|
|
23269
|
-
this.EnableBroadcast = 'EnableBroadcast' in params ? params.EnableBroadcast : null;
|
|
23270
|
-
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
23271
|
-
this.RouteTableId = 'RouteTableId' in params ? params.RouteTableId : null;
|
|
23272
|
-
this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
|
|
23273
|
-
this.AvailableIpAddressCount = 'AvailableIpAddressCount' in params ? params.AvailableIpAddressCount : null;
|
|
23274
|
-
this.Ipv6CidrBlock = 'Ipv6CidrBlock' in params ? params.Ipv6CidrBlock : null;
|
|
23275
|
-
this.NetworkAclId = 'NetworkAclId' in params ? params.NetworkAclId : null;
|
|
23276
|
-
this.IsRemoteVpcSnat = 'IsRemoteVpcSnat' in params ? params.IsRemoteVpcSnat : null;
|
|
23277
|
-
this.TotalIpAddressCount = 'TotalIpAddressCount' in params ? params.TotalIpAddressCount : null;
|
|
23278
23816
|
|
|
23279
|
-
if (params.
|
|
23280
|
-
this.
|
|
23281
|
-
for (let z in params.
|
|
23282
|
-
let obj = new
|
|
23283
|
-
obj.deserialize(params.
|
|
23284
|
-
this.
|
|
23817
|
+
if (params.Ingress) {
|
|
23818
|
+
this.Ingress = new Array();
|
|
23819
|
+
for (let z in params.Ingress) {
|
|
23820
|
+
let obj = new NetworkAclQuintupleEntry();
|
|
23821
|
+
obj.deserialize(params.Ingress[z]);
|
|
23822
|
+
this.Ingress.push(obj);
|
|
23823
|
+
}
|
|
23824
|
+
}
|
|
23825
|
+
|
|
23826
|
+
if (params.Egress) {
|
|
23827
|
+
this.Egress = new Array();
|
|
23828
|
+
for (let z in params.Egress) {
|
|
23829
|
+
let obj = new NetworkAclQuintupleEntry();
|
|
23830
|
+
obj.deserialize(params.Egress[z]);
|
|
23831
|
+
this.Egress.push(obj);
|
|
23285
23832
|
}
|
|
23286
23833
|
}
|
|
23287
|
-
this.CdcId = 'CdcId' in params ? params.CdcId : null;
|
|
23288
|
-
this.IsCdcSubnet = 'IsCdcSubnet' in params ? params.IsCdcSubnet : null;
|
|
23289
23834
|
|
|
23290
23835
|
}
|
|
23291
23836
|
}
|
|
@@ -25754,30 +26299,18 @@ class DeleteNetworkAclResponse extends AbstractModel {
|
|
|
25754
26299
|
}
|
|
25755
26300
|
|
|
25756
26301
|
/**
|
|
25757
|
-
*
|
|
26302
|
+
* DeleteNetworkAclQuintupleEntries response structure.
|
|
25758
26303
|
* @class
|
|
25759
26304
|
*/
|
|
25760
|
-
class
|
|
26305
|
+
class DeleteNetworkAclQuintupleEntriesResponse extends AbstractModel {
|
|
25761
26306
|
constructor(){
|
|
25762
26307
|
super();
|
|
25763
26308
|
|
|
25764
26309
|
/**
|
|
25765
|
-
* The ID
|
|
26310
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
25766
26311
|
* @type {string || null}
|
|
25767
26312
|
*/
|
|
25768
|
-
this.
|
|
25769
|
-
|
|
25770
|
-
/**
|
|
25771
|
-
* The information on private IP addresses, of which you can specify a maximum of 10 at a time. You should provide either this parameter or SecondaryPrivateIpAddressCount, or both.
|
|
25772
|
-
* @type {Array.<PrivateIpAddressSpecification> || null}
|
|
25773
|
-
*/
|
|
25774
|
-
this.PrivateIpAddresses = null;
|
|
25775
|
-
|
|
25776
|
-
/**
|
|
25777
|
-
* The number of newly-applied private IP addresses. You should provide either this parameter or PrivateIpAddresses, or both. The total number of private IP addresses cannot exceed the quota. For more information, see<a href="/document/product/576/18527">ENI Use Limits</a>.
|
|
25778
|
-
* @type {number || null}
|
|
25779
|
-
*/
|
|
25780
|
-
this.SecondaryPrivateIpAddressCount = null;
|
|
26313
|
+
this.RequestId = null;
|
|
25781
26314
|
|
|
25782
26315
|
}
|
|
25783
26316
|
|
|
@@ -25788,17 +26321,7 @@ class AssignPrivateIpAddressesRequest extends AbstractModel {
|
|
|
25788
26321
|
if (!params) {
|
|
25789
26322
|
return;
|
|
25790
26323
|
}
|
|
25791
|
-
this.
|
|
25792
|
-
|
|
25793
|
-
if (params.PrivateIpAddresses) {
|
|
25794
|
-
this.PrivateIpAddresses = new Array();
|
|
25795
|
-
for (let z in params.PrivateIpAddresses) {
|
|
25796
|
-
let obj = new PrivateIpAddressSpecification();
|
|
25797
|
-
obj.deserialize(params.PrivateIpAddresses[z]);
|
|
25798
|
-
this.PrivateIpAddresses.push(obj);
|
|
25799
|
-
}
|
|
25800
|
-
}
|
|
25801
|
-
this.SecondaryPrivateIpAddressCount = 'SecondaryPrivateIpAddressCount' in params ? params.SecondaryPrivateIpAddressCount : null;
|
|
26324
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
25802
26325
|
|
|
25803
26326
|
}
|
|
25804
26327
|
}
|
|
@@ -26569,11 +27092,13 @@ module.exports = {
|
|
|
26569
27092
|
ModifyNatGatewaySourceIpTranslationNatRuleRequest: ModifyNatGatewaySourceIpTranslationNatRuleRequest,
|
|
26570
27093
|
ModifyCcnRegionBandwidthLimitsTypeResponse: ModifyCcnRegionBandwidthLimitsTypeResponse,
|
|
26571
27094
|
DescribeVpnGatewaysResponse: DescribeVpnGatewaysResponse,
|
|
27095
|
+
ModifyNetworkAclQuintupleEntriesRequest: ModifyNetworkAclQuintupleEntriesRequest,
|
|
26572
27096
|
ModifyServiceTemplateAttributeRequest: ModifyServiceTemplateAttributeRequest,
|
|
26573
27097
|
DescribeIpGeolocationInfosRequest: DescribeIpGeolocationInfosRequest,
|
|
26574
27098
|
ResetAttachCcnInstancesResponse: ResetAttachCcnInstancesResponse,
|
|
26575
27099
|
DescribeServiceTemplateGroupsResponse: DescribeServiceTemplateGroupsResponse,
|
|
26576
27100
|
DescribeVpcEndPointRequest: DescribeVpcEndPointRequest,
|
|
27101
|
+
AssignPrivateIpAddressesRequest: AssignPrivateIpAddressesRequest,
|
|
26577
27102
|
DetachClassicLinkVpcRequest: DetachClassicLinkVpcRequest,
|
|
26578
27103
|
DescribeBandwidthPackageBillUsageResponse: DescribeBandwidthPackageBillUsageResponse,
|
|
26579
27104
|
DeleteBandwidthPackageResponse: DeleteBandwidthPackageResponse,
|
|
@@ -26629,6 +27154,7 @@ module.exports = {
|
|
|
26629
27154
|
DescribeNatGatewaySourceIpTranslationNatRulesResponse: DescribeNatGatewaySourceIpTranslationNatRulesResponse,
|
|
26630
27155
|
DescribeVpcsRequest: DescribeVpcsRequest,
|
|
26631
27156
|
AcceptAttachCcnInstancesRequest: AcceptAttachCcnInstancesRequest,
|
|
27157
|
+
CreateNetworkAclQuintupleEntriesResponse: CreateNetworkAclQuintupleEntriesResponse,
|
|
26632
27158
|
DescribeGatewayFlowMonitorDetailResponse: DescribeGatewayFlowMonitorDetailResponse,
|
|
26633
27159
|
IpGeolocationInfo: IpGeolocationInfo,
|
|
26634
27160
|
DeleteFlowLogRequest: DeleteFlowLogRequest,
|
|
@@ -26638,6 +27164,7 @@ module.exports = {
|
|
|
26638
27164
|
ModifyAddressInternetChargeTypeResponse: ModifyAddressInternetChargeTypeResponse,
|
|
26639
27165
|
UnassignIpv6SubnetCidrBlockRequest: UnassignIpv6SubnetCidrBlockRequest,
|
|
26640
27166
|
DeleteVpcEndPointServiceResponse: DeleteVpcEndPointServiceResponse,
|
|
27167
|
+
ModifyNetworkAclQuintupleEntriesResponse: ModifyNetworkAclQuintupleEntriesResponse,
|
|
26641
27168
|
AssignIpv6CidrBlockRequest: AssignIpv6CidrBlockRequest,
|
|
26642
27169
|
CreateSecurityGroupPoliciesResponse: CreateSecurityGroupPoliciesResponse,
|
|
26643
27170
|
UnassignIpv6CidrBlockResponse: UnassignIpv6CidrBlockResponse,
|
|
@@ -26759,6 +27286,7 @@ module.exports = {
|
|
|
26759
27286
|
ReplaceSecurityGroupPolicyRequest: ReplaceSecurityGroupPolicyRequest,
|
|
26760
27287
|
ModifyVpcEndPointServiceAttributeResponse: ModifyVpcEndPointServiceAttributeResponse,
|
|
26761
27288
|
ResourceDashboard: ResourceDashboard,
|
|
27289
|
+
Subnet: Subnet,
|
|
26762
27290
|
DescribeVpcPrivateIpAddressesResponse: DescribeVpcPrivateIpAddressesResponse,
|
|
26763
27291
|
HaVipAssociateAddressIpResponse: HaVipAssociateAddressIpResponse,
|
|
26764
27292
|
DeleteCustomerGatewayResponse: DeleteCustomerGatewayResponse,
|
|
@@ -26789,6 +27317,7 @@ module.exports = {
|
|
|
26789
27317
|
CreateCcnRequest: CreateCcnRequest,
|
|
26790
27318
|
DescribeIpGeolocationDatabaseUrlRequest: DescribeIpGeolocationDatabaseUrlRequest,
|
|
26791
27319
|
DescribeVpcEndPointResponse: DescribeVpcEndPointResponse,
|
|
27320
|
+
DescribeNetworkAclQuintupleEntriesRequest: DescribeNetworkAclQuintupleEntriesRequest,
|
|
26792
27321
|
DeleteVpnConnectionRequest: DeleteVpnConnectionRequest,
|
|
26793
27322
|
NetworkAclEntry: NetworkAclEntry,
|
|
26794
27323
|
DescribeAssistantCidrRequest: DescribeAssistantCidrRequest,
|
|
@@ -26809,6 +27338,7 @@ module.exports = {
|
|
|
26809
27338
|
DescribeVpnGatewayCcnRoutesRequest: DescribeVpnGatewayCcnRoutesRequest,
|
|
26810
27339
|
DisassociateDirectConnectGatewayNatGatewayResponse: DisassociateDirectConnectGatewayNatGatewayResponse,
|
|
26811
27340
|
CreateServiceTemplateGroupRequest: CreateServiceTemplateGroupRequest,
|
|
27341
|
+
CreateNetworkAclQuintupleEntriesRequest: CreateNetworkAclQuintupleEntriesRequest,
|
|
26812
27342
|
DescribeClassicLinkInstancesResponse: DescribeClassicLinkInstancesResponse,
|
|
26813
27343
|
DescribeVpnGatewayCcnRoutesResponse: DescribeVpnGatewayCcnRoutesResponse,
|
|
26814
27344
|
DetachCcnInstancesRequest: DetachCcnInstancesRequest,
|
|
@@ -26829,6 +27359,7 @@ module.exports = {
|
|
|
26829
27359
|
VpcPrivateIpAddress: VpcPrivateIpAddress,
|
|
26830
27360
|
CvmInstance: CvmInstance,
|
|
26831
27361
|
DescribeNetworkAclsRequest: DescribeNetworkAclsRequest,
|
|
27362
|
+
DescribeNetworkAclQuintupleEntriesResponse: DescribeNetworkAclQuintupleEntriesResponse,
|
|
26832
27363
|
DescribeSubnetsRequest: DescribeSubnetsRequest,
|
|
26833
27364
|
CreateSubnetRequest: CreateSubnetRequest,
|
|
26834
27365
|
AddressTemplateGroup: AddressTemplateGroup,
|
|
@@ -26881,7 +27412,7 @@ module.exports = {
|
|
|
26881
27412
|
DescribeNetworkAclsResponse: DescribeNetworkAclsResponse,
|
|
26882
27413
|
DeleteFlowLogResponse: DeleteFlowLogResponse,
|
|
26883
27414
|
AttachCcnInstancesResponse: AttachCcnInstancesResponse,
|
|
26884
|
-
|
|
27415
|
+
CreateDefaultVpcResponse: CreateDefaultVpcResponse,
|
|
26885
27416
|
ModifyVpcAttributeResponse: ModifyVpcAttributeResponse,
|
|
26886
27417
|
ModifyVpnConnectionAttributeResponse: ModifyVpnConnectionAttributeResponse,
|
|
26887
27418
|
PrivateIpAddressSpecification: PrivateIpAddressSpecification,
|
|
@@ -26957,12 +27488,13 @@ module.exports = {
|
|
|
26957
27488
|
CreateDirectConnectGatewayResponse: CreateDirectConnectGatewayResponse,
|
|
26958
27489
|
ModifyVpcEndPointAttributeRequest: ModifyVpcEndPointAttributeRequest,
|
|
26959
27490
|
DescribeTaskResultResponse: DescribeTaskResultResponse,
|
|
26960
|
-
|
|
27491
|
+
DisassociateNetworkAclSubnetsRequest: DisassociateNetworkAclSubnetsRequest,
|
|
26961
27492
|
ModifyAddressTemplateGroupAttributeRequest: ModifyAddressTemplateGroupAttributeRequest,
|
|
26962
27493
|
ModifyServiceTemplateGroupAttributeRequest: ModifyServiceTemplateGroupAttributeRequest,
|
|
26963
27494
|
DeleteVpcEndPointRequest: DeleteVpcEndPointRequest,
|
|
26964
27495
|
UnassignIpv6CidrBlockRequest: UnassignIpv6CidrBlockRequest,
|
|
26965
27496
|
CCN: CCN,
|
|
27497
|
+
NetworkAclQuintupleEntry: NetworkAclQuintupleEntry,
|
|
26966
27498
|
InquirePriceCreateDirectConnectGatewayResponse: InquirePriceCreateDirectConnectGatewayResponse,
|
|
26967
27499
|
CheckAssistantCidrRequest: CheckAssistantCidrRequest,
|
|
26968
27500
|
DestinationIpPortTranslationNatRule: DestinationIpPortTranslationNatRule,
|
|
@@ -26975,6 +27507,7 @@ module.exports = {
|
|
|
26975
27507
|
ModifyVpnGatewayCcnRoutesResponse: ModifyVpnGatewayCcnRoutesResponse,
|
|
26976
27508
|
DetachCcnInstancesResponse: DetachCcnInstancesResponse,
|
|
26977
27509
|
ModifyServiceTemplateGroupAttributeResponse: ModifyServiceTemplateGroupAttributeResponse,
|
|
27510
|
+
DeleteNetworkAclQuintupleEntriesRequest: DeleteNetworkAclQuintupleEntriesRequest,
|
|
26978
27511
|
DeleteSubnetRequest: DeleteSubnetRequest,
|
|
26979
27512
|
DescribeAddressTemplateGroupsRequest: DescribeAddressTemplateGroupsRequest,
|
|
26980
27513
|
CheckNetDetectStateResponse: CheckNetDetectStateResponse,
|
|
@@ -27029,7 +27562,7 @@ module.exports = {
|
|
|
27029
27562
|
CreateAddressTemplateRequest: CreateAddressTemplateRequest,
|
|
27030
27563
|
DescribeNatGatewaysResponse: DescribeNatGatewaysResponse,
|
|
27031
27564
|
NatDirectConnectGatewayRoute: NatDirectConnectGatewayRoute,
|
|
27032
|
-
|
|
27565
|
+
NetworkAclQuintupleEntries: NetworkAclQuintupleEntries,
|
|
27033
27566
|
AttachNetworkInterfaceRequest: AttachNetworkInterfaceRequest,
|
|
27034
27567
|
DescribeCcnRoutesResponse: DescribeCcnRoutesResponse,
|
|
27035
27568
|
SecurityGroup: SecurityGroup,
|
|
@@ -27086,7 +27619,7 @@ module.exports = {
|
|
|
27086
27619
|
WithdrawNotifyRoutesResponse: WithdrawNotifyRoutesResponse,
|
|
27087
27620
|
DescribeNetworkInterfacesResponse: DescribeNetworkInterfacesResponse,
|
|
27088
27621
|
DeleteNetworkAclResponse: DeleteNetworkAclResponse,
|
|
27089
|
-
|
|
27622
|
+
DeleteNetworkAclQuintupleEntriesResponse: DeleteNetworkAclQuintupleEntriesResponse,
|
|
27090
27623
|
DescribeServiceTemplateGroupsRequest: DescribeServiceTemplateGroupsRequest,
|
|
27091
27624
|
CreateSecurityGroupWithPoliciesRequest: CreateSecurityGroupWithPoliciesRequest,
|
|
27092
27625
|
CreateVpcRequest: CreateVpcRequest,
|