deleteAccessControlGroup
- Print
- PDF
deleteAccessControlGroup
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
Delete an ACG.
Request
Request parameter
Parameter Name | Required Status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region Code You can decide the region of the ACG to be deleted. The regionCode can be obtained through the getRegionList action. Default: Select the first region of the getRegionList query results. | |
vpcNo | Yes | String | VPC number This determines the VPC of the ACG to be deleted. vpcNo can be obtained through the getVpcList action. | |
accessControlGroupNo | Yes | String | The number of the ACG to be deleted The accessControlGroupNo can be obtained through the getAccessControlGroupList action. | |
responseFormatType | No | String | Format type for the response result Options : xml | json Default : xml |
Response
Response data type
- AccessControlGroupList type
AccessControlGroupList extends CommonResponse |
---|
private Integer totalRows; |
private List |
AccessControlGroup |
---|
private String accessControlGroupNo; |
private String accessControlGroupName; |
private Boolean isDefault; |
private String vpcNo; |
private CommonCode accessControlGroupStatus; |
private String accessControlGroupDescription; |
Example
Request example
ncloud vserver deleteAccessControlGroup --regionCode KR --vpcNo ***04 --accessControlGroupNo ***63
Response example
<deleteAccessControlGroupResponse>
<requestId>e7b41cdc-0168-4d2b-8efd-0f94f1680cd5</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>TERMT</code>
<codeName>terminate</codeName>
</accessControlGroupStatus>
<accessControlGroupDescription></accessControlGroupDescription>
</accessControlGroup>
</accessControlGroupList>
</deleteAccessControlGroupResponse>
Was this article helpful?