Domain name for API request: vpc.tencentcloudapi.com.
This API is used to query a list of network ACLs.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: DescribeNetworkAcls. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-12. |
Region | No | String | Common Params. This parameter is not required for this API. |
NetworkAclIds.N | No | Array of String | Array of network ACL instance IDs, such as [acl-12345678]. Up to 100 instances are allowed for each request. This parameter does not support specifying NetworkAclIds and Filters at the same time. |
Filters.N | No | Array of Filter | Filter condition. NetworkAclIds and Filters cannot be specified at the same time. |
Offset | No | Integer | Offset. Default: 0. |
Limit | No | Integer | Returned quantity. Default: 20. Value range: 1-100. |
Parameter Name | Type | Description |
---|---|---|
NetworkAclSet | Array of NetworkAcl | List of instance details. |
TotalCount | Integer | Number of eligible instances. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows you how to query the list of network ACLs.
POST / HTTP/1.1
Host: vpc.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeNetworkAcls
<Common request parameters>
{}
{
"Response": {
"TotalCount": 1,
"NetworkAclSet": [
{
"TagSet": [],
"NetworkAclId": "acl-kmxukyv6",
"VpcId": "vpc-9it989fn",
"NetworkAclType": "TRIPLE",
"IngressEntries": [
{
"Protocol": "all",
"Description": "Test 1",
"Ipv6CidrBlock": "::/0",
"ModifyTime": "2020-01-21 14:26:22",
"Action": "Drop",
"CidrBlock": "0.0.0.0/0",
"Port": "80"
}
],
"SubnetSet": [
{
"NetworkAclId": "acl-kmxukyv6",
"RouteTableId": "rtb-we123456",
"VpcId": "vpc-rt123456",
"EnableBroadcast": true,
"Zone": "ap-guangzhou",
"Ipv6CidrBlock": "::/0",
"AvailableIpAddressCount": 1,
"IsRemoteVpcSnat": true,
"SubnetName": "Subnet 1",
"TotalIpAddressCount": 1,
"IsCdcSubnet": 0,
"CdcId": "cluster-gbo27yc4",
"TagSet": [
{
"Value": "og",
"Key": "ck"
}
],
"CreatedTime": "2020-01-20 14:26:22",
"SubnetId": "subnet-qmqye6ew",
"CidrBlock": "10.0.0.0/24",
"IsDefault": true
}
],
"NetworkAclName": "Test 001",
"CreatedTime": "2020-01-20 14:26:22",
"EgressEntries": [
{
"Protocol": "All",
"Description": "222",
"Ipv6CidrBlock": "::/0",
"ModifyTime": "2020-01-20 14:26:22",
"Action": "Drop",
"CidrBlock": "10.0.0.0/24",
"Port": "80"
}
]
}
],
"RequestId": "cccb2665-5d02-4d87-b9e7-757bb06e5beb"
}
}
This example shows you how to query the specified network ACLs.
POST / HTTP/1.1
Host: vpc.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeNetworkAcls
<Common request parameters>
{
"NetworkAclIds": [
"acl-12345678"
],
"Limit": 20,
"Offset": 0
}
{
"Response": {
"TotalCount": 1,
"NetworkAclSet": [
{
"TagSet": [],
"NetworkAclId": "",
"VpcId": "vpc-kj123456",
"NetworkAclType": "TRIPLE",
"IngressEntries": [
{
"Protocol": "all",
"Description": "Test 1",
"Ipv6CidrBlock": "::/0",
"ModifyTime": "2020-01-21 14:26:22",
"Action": "Drop",
"CidrBlock": "0.0.0.0/0",
"Port": "80"
}
],
"SubnetSet": [
{
"NetworkAclId": "acl-kmxukyv6",
"RouteTableId": "rtb-we123456",
"VpcId": "vpc-kj123456",
"EnableBroadcast": true,
"Zone": "ap-guangzhou",
"Ipv6CidrBlock": "::/0",
"AvailableIpAddressCount": 1,
"IsCdcSubnet": 0,
"CdcId": "cluster-gbo27yc4",
"IsRemoteVpcSnat": true,
"SubnetName": "Test 01",
"TotalIpAddressCount": 1,
"TagSet": [
{
"Value": "yt",
"Key": "kj"
}
],
"CreatedTime": "2020-01-21 14:26:22",
"SubnetId": "subnet-qmqye6ew",
"CidrBlock": "10.0.0.0/24",
"IsDefault": true
}
],
"NetworkAclName": "Test 33",
"CreatedTime": "2020-01-21 14:26:22",
"EgressEntries": [
{
"Protocol": "All",
"Description": "Test",
"Ipv6CidrBlock": "::/0",
"ModifyTime": "2020-01-21 14:26:22",
"Action": "Drop",
"CidrBlock": "10.0.0.0/24",
"Port": "80"
}
]
}
],
"RequestId": "cccb2665-5d02-4d87-b9e7-757bb06e5beb"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InternalError.ModuleError | Internal module error |
InvalidParameter.Coexist | The parameters cannot be specified at the same time. |
InvalidParameter.FilterInvalidKey | The specified filter condition does not exist. |
InvalidParameterValue.LimitExceeded | The parameter value exceeds the limit. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
InvalidParameterValue.Range | The parameter value is not in the specified range. |
ResourceNotFound | The resource does not exist. |
UnsupportedOperation | Unsupported operation. |
UnsupportedOperation.ActionNotFound | The port does not exist. |
Was this page helpful?