tencentcloud-sdk-nodejs-vpc 4.0.384 → 4.0.387
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/CHANGELOG.md +560 -0
- package/SERVICE_CHANGELOG.md +670 -332
- package/package.json +1 -1
- package/products.md +28 -28
- package/src/services/vpc/v20170312/vpc_client.ts +78 -28
- package/src/services/vpc/v20170312/vpc_models.ts +317 -127
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +25 -9
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +36 -12
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +269 -108
|
@@ -487,6 +487,19 @@ export interface DescribeVpnGatewaysResponse {
|
|
|
487
487
|
*/
|
|
488
488
|
RequestId?: string;
|
|
489
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* ModifyNetworkAclQuintupleEntries请求参数结构体
|
|
492
|
+
*/
|
|
493
|
+
export interface ModifyNetworkAclQuintupleEntriesRequest {
|
|
494
|
+
/**
|
|
495
|
+
* 网络ACL实例ID。例如:acl-12345678。
|
|
496
|
+
*/
|
|
497
|
+
NetworkAclId: string;
|
|
498
|
+
/**
|
|
499
|
+
* 网络五元组ACL规则集。
|
|
500
|
+
*/
|
|
501
|
+
NetworkAclQuintupleSet: NetworkAclQuintupleEntries;
|
|
502
|
+
}
|
|
490
503
|
/**
|
|
491
504
|
* 协议端口模板集合
|
|
492
505
|
*/
|
|
@@ -611,6 +624,23 @@ export interface DescribeVpcEndPointRequest {
|
|
|
611
624
|
*/
|
|
612
625
|
EndPointId?: Array<string>;
|
|
613
626
|
}
|
|
627
|
+
/**
|
|
628
|
+
* AssignPrivateIpAddresses请求参数结构体
|
|
629
|
+
*/
|
|
630
|
+
export interface AssignPrivateIpAddressesRequest {
|
|
631
|
+
/**
|
|
632
|
+
* 弹性网卡实例ID,例如:eni-m6dyj72l。
|
|
633
|
+
*/
|
|
634
|
+
NetworkInterfaceId: string;
|
|
635
|
+
/**
|
|
636
|
+
* 指定的内网IP信息,单次最多指定10个。与SecondaryPrivateIpAddressCount至少提供一个。
|
|
637
|
+
*/
|
|
638
|
+
PrivateIpAddresses?: Array<PrivateIpAddressSpecification>;
|
|
639
|
+
/**
|
|
640
|
+
* 新申请的内网IP地址个数,与PrivateIpAddresses至少提供一个。内网IP地址个数总和不能超过配额数,详见<a href="/document/product/576/18527">弹性网卡使用限制</a>。
|
|
641
|
+
*/
|
|
642
|
+
SecondaryPrivateIpAddressCount?: number;
|
|
643
|
+
}
|
|
614
644
|
/**
|
|
615
645
|
* DetachClassicLinkVpc请求参数结构体
|
|
616
646
|
*/
|
|
@@ -905,6 +935,10 @@ export interface ModifyNetworkAclEntriesRequest {
|
|
|
905
935
|
* 网络ACL规则集。NetworkAclEntrySet和NetworkAclQuintupleSet只能输入一个。
|
|
906
936
|
*/
|
|
907
937
|
NetworkAclEntrySet?: NetworkAclEntrySet;
|
|
938
|
+
/**
|
|
939
|
+
* 网络ACL五元组规则集。NetworkAclEntrySet和NetworkAclQuintupleSet只能输入一个。
|
|
940
|
+
*/
|
|
941
|
+
NetworkAclQuintupleSet?: NetworkAclQuintupleEntries;
|
|
908
942
|
}
|
|
909
943
|
/**
|
|
910
944
|
* DescribeVpcPrivateIpAddresses请求参数结构体
|
|
@@ -1931,6 +1965,15 @@ export interface AcceptAttachCcnInstancesRequest {
|
|
|
1931
1965
|
*/
|
|
1932
1966
|
Instances: Array<CcnInstance>;
|
|
1933
1967
|
}
|
|
1968
|
+
/**
|
|
1969
|
+
* CreateNetworkAclQuintupleEntries返回参数结构体
|
|
1970
|
+
*/
|
|
1971
|
+
export interface CreateNetworkAclQuintupleEntriesResponse {
|
|
1972
|
+
/**
|
|
1973
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1974
|
+
*/
|
|
1975
|
+
RequestId?: string;
|
|
1976
|
+
}
|
|
1934
1977
|
/**
|
|
1935
1978
|
* DescribeGatewayFlowMonitorDetail返回参数结构体
|
|
1936
1979
|
*/
|
|
@@ -2090,6 +2133,15 @@ export interface DeleteVpcEndPointServiceResponse {
|
|
|
2090
2133
|
*/
|
|
2091
2134
|
RequestId?: string;
|
|
2092
2135
|
}
|
|
2136
|
+
/**
|
|
2137
|
+
* ModifyNetworkAclQuintupleEntries返回参数结构体
|
|
2138
|
+
*/
|
|
2139
|
+
export interface ModifyNetworkAclQuintupleEntriesResponse {
|
|
2140
|
+
/**
|
|
2141
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2142
|
+
*/
|
|
2143
|
+
RequestId?: string;
|
|
2144
|
+
}
|
|
2093
2145
|
/**
|
|
2094
2146
|
* AssignIpv6CidrBlock请求参数结构体
|
|
2095
2147
|
*/
|
|
@@ -2926,6 +2978,31 @@ export interface DescribeVpnGatewaySslClientsRequest {
|
|
|
2926
2978
|
*/
|
|
2927
2979
|
IsVpnPortal?: boolean;
|
|
2928
2980
|
}
|
|
2981
|
+
/**
|
|
2982
|
+
* 终端节点服务的服务白名单对象详情。
|
|
2983
|
+
*/
|
|
2984
|
+
export interface VpcEndPointServiceUser {
|
|
2985
|
+
/**
|
|
2986
|
+
* AppId。
|
|
2987
|
+
*/
|
|
2988
|
+
Owner: number;
|
|
2989
|
+
/**
|
|
2990
|
+
* Uin。
|
|
2991
|
+
*/
|
|
2992
|
+
UserUin: string;
|
|
2993
|
+
/**
|
|
2994
|
+
* 描述信息。
|
|
2995
|
+
*/
|
|
2996
|
+
Description: string;
|
|
2997
|
+
/**
|
|
2998
|
+
* 创建时间。
|
|
2999
|
+
*/
|
|
3000
|
+
CreateTime: string;
|
|
3001
|
+
/**
|
|
3002
|
+
* 终端节点服务ID。
|
|
3003
|
+
*/
|
|
3004
|
+
EndPointServiceId: string;
|
|
3005
|
+
}
|
|
2929
3006
|
/**
|
|
2930
3007
|
* DescribeIp6TranslatorQuota请求参数结构体
|
|
2931
3008
|
*/
|
|
@@ -4964,6 +5041,81 @@ export interface ResourceDashboard {
|
|
|
4964
5041
|
*/
|
|
4965
5042
|
RouteTable: number;
|
|
4966
5043
|
}
|
|
5044
|
+
/**
|
|
5045
|
+
* 子网对象
|
|
5046
|
+
*/
|
|
5047
|
+
export interface Subnet {
|
|
5048
|
+
/**
|
|
5049
|
+
* `VPC`实例`ID`。
|
|
5050
|
+
*/
|
|
5051
|
+
VpcId: string;
|
|
5052
|
+
/**
|
|
5053
|
+
* 子网实例`ID`,例如:subnet-bthucmmy。
|
|
5054
|
+
*/
|
|
5055
|
+
SubnetId: string;
|
|
5056
|
+
/**
|
|
5057
|
+
* 子网名称。
|
|
5058
|
+
*/
|
|
5059
|
+
SubnetName: string;
|
|
5060
|
+
/**
|
|
5061
|
+
* 子网的 `IPv4` `CIDR`。
|
|
5062
|
+
*/
|
|
5063
|
+
CidrBlock: string;
|
|
5064
|
+
/**
|
|
5065
|
+
* 是否默认子网。
|
|
5066
|
+
*/
|
|
5067
|
+
IsDefault: boolean;
|
|
5068
|
+
/**
|
|
5069
|
+
* 是否开启广播。
|
|
5070
|
+
*/
|
|
5071
|
+
EnableBroadcast: boolean;
|
|
5072
|
+
/**
|
|
5073
|
+
* 可用区。
|
|
5074
|
+
*/
|
|
5075
|
+
Zone: string;
|
|
5076
|
+
/**
|
|
5077
|
+
* 路由表实例ID,例如:rtb-l2h8d7c2。
|
|
5078
|
+
*/
|
|
5079
|
+
RouteTableId: string;
|
|
5080
|
+
/**
|
|
5081
|
+
* 创建时间。
|
|
5082
|
+
*/
|
|
5083
|
+
CreatedTime?: string;
|
|
5084
|
+
/**
|
|
5085
|
+
* 可用`IPv4`数。
|
|
5086
|
+
*/
|
|
5087
|
+
AvailableIpAddressCount: number;
|
|
5088
|
+
/**
|
|
5089
|
+
* 子网的 `IPv6` `CIDR`。
|
|
5090
|
+
*/
|
|
5091
|
+
Ipv6CidrBlock: string;
|
|
5092
|
+
/**
|
|
5093
|
+
* 关联`ACL`ID
|
|
5094
|
+
*/
|
|
5095
|
+
NetworkAclId: string;
|
|
5096
|
+
/**
|
|
5097
|
+
* 是否为 `SNAT` 地址池子网。
|
|
5098
|
+
*/
|
|
5099
|
+
IsRemoteVpcSnat: boolean;
|
|
5100
|
+
/**
|
|
5101
|
+
* 子网`IPv4`总数。
|
|
5102
|
+
*/
|
|
5103
|
+
TotalIpAddressCount: number;
|
|
5104
|
+
/**
|
|
5105
|
+
* 标签键值对。
|
|
5106
|
+
*/
|
|
5107
|
+
TagSet: Array<Tag>;
|
|
5108
|
+
/**
|
|
5109
|
+
* CDC实例ID。
|
|
5110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5111
|
+
*/
|
|
5112
|
+
CdcId: string;
|
|
5113
|
+
/**
|
|
5114
|
+
* 是否是CDC所属子网。0:否 1:是
|
|
5115
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5116
|
+
*/
|
|
5117
|
+
IsCdcSubnet: number;
|
|
5118
|
+
}
|
|
4967
5119
|
/**
|
|
4968
5120
|
* DescribeCcnAttachedInstances返回参数结构体
|
|
4969
5121
|
*/
|
|
@@ -5383,6 +5535,14 @@ export interface CreateNetworkAclRequest {
|
|
|
5383
5535
|
* 网络ACL名称,最大长度不能超过60个字节。
|
|
5384
5536
|
*/
|
|
5385
5537
|
NetworkAclName: string;
|
|
5538
|
+
/**
|
|
5539
|
+
* 网络ACL类型,三元组(TRIPLE)或五元组(QUINTUPLE)
|
|
5540
|
+
*/
|
|
5541
|
+
NetworkAclType?: string;
|
|
5542
|
+
/**
|
|
5543
|
+
* 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
|
5544
|
+
*/
|
|
5545
|
+
Tags?: Array<Tag>;
|
|
5386
5546
|
}
|
|
5387
5547
|
/**
|
|
5388
5548
|
* DescribeAddresses请求参数结构体
|
|
@@ -5629,6 +5789,10 @@ export interface DescribeVpcEndPointResponse {
|
|
|
5629
5789
|
*/
|
|
5630
5790
|
RequestId?: string;
|
|
5631
5791
|
}
|
|
5792
|
+
/**
|
|
5793
|
+
* DescribeNetworkAclQuintupleEntries请求参数结构体
|
|
5794
|
+
*/
|
|
5795
|
+
export declare type DescribeNetworkAclQuintupleEntriesRequest = null;
|
|
5632
5796
|
/**
|
|
5633
5797
|
* DisableGatewayFlowMonitor请求参数结构体
|
|
5634
5798
|
*/
|
|
@@ -6172,6 +6336,19 @@ export interface CreateServiceTemplateGroupRequest {
|
|
|
6172
6336
|
*/
|
|
6173
6337
|
ServiceTemplateIds: Array<string>;
|
|
6174
6338
|
}
|
|
6339
|
+
/**
|
|
6340
|
+
* CreateNetworkAclQuintupleEntries请求参数结构体
|
|
6341
|
+
*/
|
|
6342
|
+
export interface CreateNetworkAclQuintupleEntriesRequest {
|
|
6343
|
+
/**
|
|
6344
|
+
* 网络ACL实例ID。例如:acl-12345678。
|
|
6345
|
+
*/
|
|
6346
|
+
NetworkAclId: string;
|
|
6347
|
+
/**
|
|
6348
|
+
* 网络五元组ACL规则集。
|
|
6349
|
+
*/
|
|
6350
|
+
NetworkAclQuintupleSet: NetworkAclQuintupleEntries;
|
|
6351
|
+
}
|
|
6175
6352
|
/**
|
|
6176
6353
|
* DescribeClassicLinkInstances返回参数结构体
|
|
6177
6354
|
*/
|
|
@@ -6632,6 +6809,23 @@ export interface DescribeNetworkAclsRequest {
|
|
|
6632
6809
|
*/
|
|
6633
6810
|
Limit?: number;
|
|
6634
6811
|
}
|
|
6812
|
+
/**
|
|
6813
|
+
* DescribeNetworkAclQuintupleEntries返回参数结构体
|
|
6814
|
+
*/
|
|
6815
|
+
export interface DescribeNetworkAclQuintupleEntriesResponse {
|
|
6816
|
+
/**
|
|
6817
|
+
* 网络ACL条目列表(NetworkAclTuple5Entry)
|
|
6818
|
+
*/
|
|
6819
|
+
NetworkAclQuintupleSet: Array<NetworkAclQuintupleEntry>;
|
|
6820
|
+
/**
|
|
6821
|
+
* 符合条件的实例数量。
|
|
6822
|
+
*/
|
|
6823
|
+
TotalCount: number;
|
|
6824
|
+
/**
|
|
6825
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6826
|
+
*/
|
|
6827
|
+
RequestId?: string;
|
|
6828
|
+
}
|
|
6635
6829
|
/**
|
|
6636
6830
|
* DescribeSubnets请求参数结构体
|
|
6637
6831
|
*/
|
|
@@ -7799,11 +7993,11 @@ export interface DescribeNetworkAclsResponse {
|
|
|
7799
7993
|
/**
|
|
7800
7994
|
* 实例详细信息列表。
|
|
7801
7995
|
*/
|
|
7802
|
-
NetworkAclSet
|
|
7996
|
+
NetworkAclSet: Array<NetworkAcl>;
|
|
7803
7997
|
/**
|
|
7804
7998
|
* 符合条件的实例数量。
|
|
7805
7999
|
*/
|
|
7806
|
-
TotalCount
|
|
8000
|
+
TotalCount: number;
|
|
7807
8001
|
/**
|
|
7808
8002
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7809
8003
|
*/
|
|
@@ -9232,6 +9426,27 @@ export interface CreateAddressTemplateGroupResponse {
|
|
|
9232
9426
|
*/
|
|
9233
9427
|
RequestId?: string;
|
|
9234
9428
|
}
|
|
9429
|
+
/**
|
|
9430
|
+
* DownloadVpnGatewaySslClientCert 使用
|
|
9431
|
+
*/
|
|
9432
|
+
export interface SslClientConfig {
|
|
9433
|
+
/**
|
|
9434
|
+
* 客户端配置
|
|
9435
|
+
*/
|
|
9436
|
+
SslVpnClientConfiguration: string;
|
|
9437
|
+
/**
|
|
9438
|
+
* 更证书
|
|
9439
|
+
*/
|
|
9440
|
+
SslVpnRootCert: string;
|
|
9441
|
+
/**
|
|
9442
|
+
* 客户端密钥
|
|
9443
|
+
*/
|
|
9444
|
+
SslVpnKey: string;
|
|
9445
|
+
/**
|
|
9446
|
+
* 客户端证书
|
|
9447
|
+
*/
|
|
9448
|
+
SslVpnCert: string;
|
|
9449
|
+
}
|
|
9235
9450
|
/**
|
|
9236
9451
|
* DescribeBandwidthPackageQuota返回参数结构体
|
|
9237
9452
|
*/
|
|
@@ -9454,29 +9669,53 @@ export interface CCN {
|
|
|
9454
9669
|
RouteTableFlag: boolean;
|
|
9455
9670
|
}
|
|
9456
9671
|
/**
|
|
9457
|
-
*
|
|
9672
|
+
* 网络ACL五元组Entry
|
|
9458
9673
|
*/
|
|
9459
|
-
export interface
|
|
9674
|
+
export interface NetworkAclQuintupleEntry {
|
|
9460
9675
|
/**
|
|
9461
|
-
*
|
|
9676
|
+
* 协议, 取值: TCP,UDP, ICMP, ALL。
|
|
9462
9677
|
*/
|
|
9463
|
-
|
|
9678
|
+
Protocol?: string;
|
|
9464
9679
|
/**
|
|
9465
|
-
*
|
|
9680
|
+
* 描述。
|
|
9466
9681
|
*/
|
|
9467
|
-
|
|
9682
|
+
Description?: string;
|
|
9468
9683
|
/**
|
|
9469
|
-
*
|
|
9684
|
+
* 源端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。
|
|
9470
9685
|
*/
|
|
9471
|
-
|
|
9686
|
+
SourcePort?: string;
|
|
9472
9687
|
/**
|
|
9473
|
-
*
|
|
9688
|
+
* 源CIDR。
|
|
9474
9689
|
*/
|
|
9475
|
-
|
|
9690
|
+
SourceCidr?: string;
|
|
9476
9691
|
/**
|
|
9477
|
-
*
|
|
9692
|
+
* 目的端口(all, 单个port, range)。当Protocol为ALL或ICMP时,不能指定Port。
|
|
9478
9693
|
*/
|
|
9479
|
-
|
|
9694
|
+
DestinationPort?: string;
|
|
9695
|
+
/**
|
|
9696
|
+
* 目的CIDR。
|
|
9697
|
+
*/
|
|
9698
|
+
DestinationCidr?: string;
|
|
9699
|
+
/**
|
|
9700
|
+
* 动作,ACCEPT 或 DROP。
|
|
9701
|
+
*/
|
|
9702
|
+
Action?: string;
|
|
9703
|
+
/**
|
|
9704
|
+
* 网络ACL条目唯一ID。
|
|
9705
|
+
*/
|
|
9706
|
+
NetworkAclQuintupleEntryId?: string;
|
|
9707
|
+
/**
|
|
9708
|
+
* 优先级,从1开始。
|
|
9709
|
+
*/
|
|
9710
|
+
Priority?: number;
|
|
9711
|
+
/**
|
|
9712
|
+
* 创建时间,用于DescribeNetworkAclQuintupleEntries的出参。
|
|
9713
|
+
*/
|
|
9714
|
+
CreateTime?: string;
|
|
9715
|
+
/**
|
|
9716
|
+
* 方向,INGRESS或EGRESS,用于DescribeNetworkAclQuintupleEntries的出参。
|
|
9717
|
+
*/
|
|
9718
|
+
NetworkAclDirection?: string;
|
|
9480
9719
|
}
|
|
9481
9720
|
/**
|
|
9482
9721
|
* InquirePriceCreateDirectConnectGateway返回参数结构体
|
|
@@ -9699,25 +9938,17 @@ export interface ModifyServiceTemplateGroupAttributeResponse {
|
|
|
9699
9938
|
RequestId?: string;
|
|
9700
9939
|
}
|
|
9701
9940
|
/**
|
|
9702
|
-
*
|
|
9941
|
+
* DeleteNetworkAclQuintupleEntries请求参数结构体
|
|
9703
9942
|
*/
|
|
9704
|
-
export interface
|
|
9705
|
-
/**
|
|
9706
|
-
* 客户端配置
|
|
9707
|
-
*/
|
|
9708
|
-
SslVpnClientConfiguration: string;
|
|
9709
|
-
/**
|
|
9710
|
-
* 更证书
|
|
9711
|
-
*/
|
|
9712
|
-
SslVpnRootCert: string;
|
|
9943
|
+
export interface DeleteNetworkAclQuintupleEntriesRequest {
|
|
9713
9944
|
/**
|
|
9714
|
-
*
|
|
9945
|
+
* 网络ACL实例ID。例如:acl-12345678。
|
|
9715
9946
|
*/
|
|
9716
|
-
|
|
9947
|
+
NetworkAclId: string;
|
|
9717
9948
|
/**
|
|
9718
|
-
*
|
|
9949
|
+
* 网络五元组ACL规则集。
|
|
9719
9950
|
*/
|
|
9720
|
-
|
|
9951
|
+
NetworkAclQuintupleSet: NetworkAclQuintupleEntries;
|
|
9721
9952
|
}
|
|
9722
9953
|
/**
|
|
9723
9954
|
* DeleteSubnet请求参数结构体
|
|
@@ -10718,79 +10949,17 @@ export interface NatDirectConnectGatewayRoute {
|
|
|
10718
10949
|
UpdateTime: string;
|
|
10719
10950
|
}
|
|
10720
10951
|
/**
|
|
10721
|
-
*
|
|
10952
|
+
* 网络ACL五元组
|
|
10722
10953
|
*/
|
|
10723
|
-
export interface
|
|
10954
|
+
export interface NetworkAclQuintupleEntries {
|
|
10724
10955
|
/**
|
|
10725
|
-
*
|
|
10726
|
-
*/
|
|
10727
|
-
VpcId: string;
|
|
10728
|
-
/**
|
|
10729
|
-
* 子网实例`ID`,例如:subnet-bthucmmy。
|
|
10730
|
-
*/
|
|
10731
|
-
SubnetId: string;
|
|
10732
|
-
/**
|
|
10733
|
-
* 子网名称。
|
|
10734
|
-
*/
|
|
10735
|
-
SubnetName: string;
|
|
10736
|
-
/**
|
|
10737
|
-
* 子网的 `IPv4` `CIDR`。
|
|
10738
|
-
*/
|
|
10739
|
-
CidrBlock: string;
|
|
10740
|
-
/**
|
|
10741
|
-
* 是否默认子网。
|
|
10742
|
-
*/
|
|
10743
|
-
IsDefault: boolean;
|
|
10744
|
-
/**
|
|
10745
|
-
* 是否开启广播。
|
|
10746
|
-
*/
|
|
10747
|
-
EnableBroadcast: boolean;
|
|
10748
|
-
/**
|
|
10749
|
-
* 可用区。
|
|
10750
|
-
*/
|
|
10751
|
-
Zone: string;
|
|
10752
|
-
/**
|
|
10753
|
-
* 路由表实例ID,例如:rtb-l2h8d7c2。
|
|
10754
|
-
*/
|
|
10755
|
-
RouteTableId: string;
|
|
10756
|
-
/**
|
|
10757
|
-
* 创建时间。
|
|
10758
|
-
*/
|
|
10759
|
-
CreatedTime?: string;
|
|
10760
|
-
/**
|
|
10761
|
-
* 可用`IPv4`数。
|
|
10762
|
-
*/
|
|
10763
|
-
AvailableIpAddressCount: number;
|
|
10764
|
-
/**
|
|
10765
|
-
* 子网的 `IPv6` `CIDR`。
|
|
10766
|
-
*/
|
|
10767
|
-
Ipv6CidrBlock: string;
|
|
10768
|
-
/**
|
|
10769
|
-
* 关联`ACL`ID
|
|
10770
|
-
*/
|
|
10771
|
-
NetworkAclId: string;
|
|
10772
|
-
/**
|
|
10773
|
-
* 是否为 `SNAT` 地址池子网。
|
|
10774
|
-
*/
|
|
10775
|
-
IsRemoteVpcSnat: boolean;
|
|
10776
|
-
/**
|
|
10777
|
-
* 子网`IPv4`总数。
|
|
10956
|
+
* 网络ACL五元组入站规则。
|
|
10778
10957
|
*/
|
|
10779
|
-
|
|
10958
|
+
Ingress?: Array<NetworkAclQuintupleEntry>;
|
|
10780
10959
|
/**
|
|
10781
|
-
*
|
|
10960
|
+
* 网络ACL五元组出站规则
|
|
10782
10961
|
*/
|
|
10783
|
-
|
|
10784
|
-
/**
|
|
10785
|
-
* CDC实例ID。
|
|
10786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10787
|
-
*/
|
|
10788
|
-
CdcId: string;
|
|
10789
|
-
/**
|
|
10790
|
-
* 是否是CDC所属子网。0:否 1:是
|
|
10791
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
10792
|
-
*/
|
|
10793
|
-
IsCdcSubnet: number;
|
|
10962
|
+
Egress?: Array<NetworkAclQuintupleEntry>;
|
|
10794
10963
|
}
|
|
10795
10964
|
/**
|
|
10796
10965
|
* AttachNetworkInterface请求参数结构体
|
|
@@ -11757,21 +11926,13 @@ export interface DeleteNetworkAclResponse {
|
|
|
11757
11926
|
RequestId?: string;
|
|
11758
11927
|
}
|
|
11759
11928
|
/**
|
|
11760
|
-
*
|
|
11929
|
+
* DeleteNetworkAclQuintupleEntries返回参数结构体
|
|
11761
11930
|
*/
|
|
11762
|
-
export interface
|
|
11763
|
-
/**
|
|
11764
|
-
* 弹性网卡实例ID,例如:eni-m6dyj72l。
|
|
11765
|
-
*/
|
|
11766
|
-
NetworkInterfaceId: string;
|
|
11767
|
-
/**
|
|
11768
|
-
* 指定的内网IP信息,单次最多指定10个。与SecondaryPrivateIpAddressCount至少提供一个。
|
|
11769
|
-
*/
|
|
11770
|
-
PrivateIpAddresses?: Array<PrivateIpAddressSpecification>;
|
|
11931
|
+
export interface DeleteNetworkAclQuintupleEntriesResponse {
|
|
11771
11932
|
/**
|
|
11772
|
-
*
|
|
11933
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11773
11934
|
*/
|
|
11774
|
-
|
|
11935
|
+
RequestId?: string;
|
|
11775
11936
|
}
|
|
11776
11937
|
/**
|
|
11777
11938
|
* DescribeServiceTemplateGroups请求参数结构体
|