getAccessControlGroupList
- Print
- PDF
getAccessControlGroupList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
This searches for an ACG list. ACG can be set on the network interface for the access control feature.
Request
Request parameters
Parameter name | Required | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region code You can decide the region in which the ACG list will be queried. regionCode can be obtained through the getRegionList action. Default: Select 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. | |
accessControlGroupNoList.N | No | List<String> | ACG number list You can search by filtering with an ACG number. accessControlGroupNo can be obtained through the getAccessControlGroupList action. ex) accessControlGroupNoList.1=1234&accessControlGroupNoList.2=2345 | |
accessControlGroupName | No | String | ACG name You can search by filtering with an ACG name. | |
accessControlGroupStatusCode | No | String | ACG status code You can search by filtering with an ACG status code. Options : INIT | SET | RUN | TERMTING | |
pageNo | No | Integer | Page number of the paged results The results can be paged using pageNo and pageSize. | |
pageSize | Conditional | Integer | Each page size to be displayed when paging The results can be paged using pageNo and pageSize. It must be entered when entering pageNo. | |
responseFormatType | No | String | Format type of the response results Options : xml | json Default : xml |
Response
Response body
Example
Request Example
GET {API_URL}/getAccessControlGroupList
?regionCode=KR
&vpcNo=***04
&accessControlGroupNoList.1=***63
&accessControlGroupName=test-***
&accessControlGroupStatusCode=RUN
Response Example
<getAccessControlGroupListResponse>
<requestId>aca35644-739e-42b3-bdcb-55c2eedc54b9</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<accessControlGroupList>
<accessControlGroup>
<accessControlGroupNo>***63</accessControlGroupNo>
<accessControlGroupName>test-***</accessControlGroupName>
<isDefault>false</isDefault>
<vpcNo>***04</vpcNo>
<accessControlGroupStatus>
<code>RUN</code>
<codeName>run</codeName>
</accessControlGroupStatus>
<accessControlGroupDescription></accessControlGroupDescription>
</accessControlGroup>
</accessControlGroupList>
</getAccessControlGroupListResponse>
Was this article helpful?