addNetworkAclOutboundRule
- Print
- PDF
addNetworkAclOutboundRule
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Add a list of outbound rules for a network ACL.Request
The following describes the request format for the endpoint. The request format is as follows:
Method | URI |
---|---|
GET, POST | /addNetworkAclOutboundRule |
Request headers
For headers common to all VPC APIs, see VPC common headers.
Request query parameters
The following describes the parameters.
Field | Type | Required | Description |
---|---|---|---|
regionCode | String | Optional | Region code of the network ACL to which you want to add the outbound rule |
networkAclNo | String | Required | Network ACL number |
networkAclRuleList.N.priority | Integer | Required | Network ACL rule's priority |
networkAclRuleList.N.protocolTypeCode | String | Required | Network ACL rule's protocol type codeTCP | UDP | ICMP |
networkAclRuleList.N.ipBlock | String | Conditional | IP address range to be allowed from the network ACL rule |
networkAclRuleList.N.denyAllowGroupNo | String | Conditional | Network ACL rule's Deny-Allow group numberdenyAllowGroupNo can be obtained through getNetworkAclDenyAllowGroupList |
networkAclRuleList.N.portRange | String | Conditional | Network ACL rule's port rangeprotocolTypeCode is ICMP |
networkAclRuleList.N.ruleActionCode | String | Required | Whether traffic is allowedALLOW | DROP |
networkAclRuleList.N.networkAclRuleDescription | String | Optional | Network ACL rule description (byte) |
responseFormatType | String | Optional | Response result format
|
Request example
The following is a sample request.
curl --location 'https://ncloud.apigw.ntruss.com/vpc/v2/addNetworkAclOutboundRule
?regionCode=KR
&networkAclNo=***31
&networkAclRuleList.1.priority=0 &networkAclRuleList.1.protocolTypeCode=TCP
&networkAclRuleList.1.ipBlock=***.***.0.0/0
&networkAclRuleList.1.portRange=22-23
&networkAclRuleList.1.ruleActionCode=ALLOW'
--header 'x-ncp-apigw-timestamp: {Timestamp}'
--header 'x-ncp-iam-access-key: {Access Key}'
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
The following describes the response format.
Response body
See NetworkAclRuleList for the response body.
Response status codes
For response status codes common to NAVER Cloud Platform, see Ncloud API response status codes.
Response example
The following is a sample response.
<addNetworkAclOutboundRuleResponse>
<requestId>7bfc87eb-8830-426a-8c3a-66e68ef8cfbd</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<networkAclRuleList>
<networkAclRule>
<networkAclNo>***31</networkAclNo>
<priority>0</priority>
<protocolType>
<code>TCP</code>
<codeName>tcp</codeName>
</protocolType>
<portRange>22-23</portRange>
<ruleAction>
<code>ALLOW</code>
<codeName>Allow</codeName>
</ruleAction>
<createDate>2020-08-05T20:00:42+0900</createDate>
<ipBlock>***.***.0.0/0</ipBlock>
<denyAllowGroupNo/>
<networkAclRuleType>
<code>OTBND</code>
<codeName>Outbound</codeName>
</networkAclRuleType>
<networkAclRuleDescription></networkAclRuleDescription>
</networkAclRule>
</networkAclRuleList>
</addNetworkAclOutboundRuleResponse>
Was this article helpful?