deletePlacementGroup
- Print
- PDF
deletePlacementGroup
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
Delete the physical batch group.
Request
Request parameter
Parameter Name | Required Status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region Code You can decide the region of the physical batch group to be deleted. The regionCode can be obtained through the getRegionList action. Default: Select the first region of the getRegionList query results. | |
placementGroupNo | Yes | String | List of the physical batch groups to be deleted The placementGroupNo can be obtained through the getPlacementGroupList action. | |
responseFormatType | No | String | Format type for the response result Options : xml | json Default : xml |
Response
Response data type
- PlacementGroupList type
PlacementGroupList extends CommonResponse |
---|
private Integer totalRows; |
private List<PlacementGroup> placementGroupList = new ArrayList<>(); |
PlacementGroup |
---|
private String placementGroupNo; |
private String placementGroupName; |
private CommonCode placementGroupType; |
Example
Request example
ncloud vserver deletePlacementGroup --regionCode KR --placementGroupNo ***61
Response example
<deletePlacementGroupResponse>
<requestId></requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<placementGroupList>
<placementGroup>
<placementGroupNo>***61</placementGroupNo>
<placementGroupName>test-***</placementGroupName>
<placementGroupType>
<code>AA</code>
<codeName>Anti-Affinity</codeName>
</placementGroupType>
</placementGroup>
</placementGroupList>
</deletePlacementGroupResponse>
Was this article helpful?