getNetworkAclDenyAllowGroupList
- Print
- PDF
getNetworkAclDenyAllowGroupList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
Gets the list of network ACL's Deny-Allow groups.
Request
Request parameter
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | - Region code Determines the region to get the network ACL's Deny-Allow group list from. regionCode can be obtained through the getRegionList action. Default: Selects the first region of the getRegionList search results. | |
vpcNo | No | String | - VPC number You can search by filtering with a VPC number. vpcNo can be obtained through the getVpcList action. | |
networkAclDenyAllowGroupName | No | String | - Network ACL's Deny-Allow group name You can search by filtering with network ACL's Deny-Allow group name. | |
networkAclDenyAllowGroupStatusCode | No | String | - Network ACL's Deny-Allow group status code You can search by filtering with network ACL's Deny-Allow group status code. Options : SET | RUN | |
networkAclDenyAllowGroupNoList.N | No | List | - Network ACL's Deny-Allow group number list You can search by filtering with network ACL's Deny-Allow group number. networkAclDenyAllowGroupNo can be obtained through the getNetworkAclDenyAllowGroupList action. ex) networkAclDenyAllowGroupNoList.1=1234&networkAclDenyAllowGroupNoList.2=2345 | |
isApplied | No | Boolean | - Whether the network ACL rule is applied You can search by filtering with whether the network ACL rule is applied. Options : true | false | |
pageNo | No | Integer | - Page number of the paged results The results can be paged using pageNo and pageSize. | |
pageSize | Conditional | Integer | - Size of each page to be displayed when paging The results can be paged using pageNo and pageSize. Entering this information is required when pageNo is entered. | |
responseFormatType | No | String | - Format type of the response result Options : xml | json Default : xml |
Response
Response data type
- NetworkAclDenyAllowGroupList type
NetworkAclDenyAllowGroupList extends CommonResponse |
---|
private Integer totalRows; |
private List |
NetworkAclDenyAllowGroup |
---|
private String networkAclDenyAllowGroupNo; |
private String networkAclDenyAllowGroupName; |
private CommonCode networkAclDenyAllowGroupStatus; |
private String vpcNo; |
private IpList ipList; |
private String networkAclDenyAllowGroupDescription; |
private Date createDate; |
private Boolean isApplied; |
IpList |
---|
private List |
Examples
Request examples
ncloud vpc getNetworkAclDenyAllowGroupList --regionCode KR --vpcNo ***04 --networkAclDenyAllowGroupName test-*** --networkAclDenyAllowGroupStatusCode RUN --networkAclDenyAllowGroupNoList ***40 --isApplied false
Response examples
<getNetworkAclDenyAllowGroupListResponse>
<requestId>84a4afa8-78aa-43b6-9a15-2bc25c3a7e7c</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<networkAclDenyAllowGroupList>
<networkAclDenyAllowGroup>
<networkAclDenyAllowGroupNo>***40</networkAclDenyAllowGroupNo>
<networkAclDenyAllowGroupName>test-***</networkAclDenyAllowGroupName>
<networkAclDenyAllowGroupStatus>
<code>RUN</code>
<codeName>run</codeName>
</networkAclDenyAllowGroupStatus>
<vpcNo>***04</vpcNo>
<networkAclDenyAllowGroupDescription></networkAclDenyAllowGroupDescription>
<createDate>2021-01-25T19:40:48+0900</createDate>
<isApplied>false</isApplied>
</networkAclDenyAllowGroup>
</networkAclDenyAllowGroupList>
</getNetworkAclDenyAllowGroupListResponse>
Was this article helpful?