deleteVpc

Prev Next

Can be used in a VPC environment.

Overview

Delete a VPC.

Request

Request parameter

Parameter Name Required Status Type Restrictions Description
regionCode No String Region Code
- You can decide the region of the VPC 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 The number of the VPC to be deleted
- vpcNo can be obtained through the getVpcList action.
responseFormatType No String Format type for the response result
- Options : xml | json
- Default : xml

Response

Response data type

  • VpcList type
VpcList extends CommonResponse
private Integer totalRows;
private List vpcList = new ArrayList<>();
Vpc
private String vpcNo;
private String vpcName;
private String ipv4CidrBlock;
private CommonCode vpcStatus;
private String regionCode;
private Date createDate;

Example

Request example

ncloud vpc deleteVpc --regionCode KR --vpcNo ***04

Response example

<deleteVpcResponse>
  <requestId>f6d32d67-ab92-4096-b240-ed2e96d8d265</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <vpcList>
    <vpc>
      <vpcNo>***04</vpcNo>
      <vpcName>test-***</vpcName>
      <ipv4CidrBlock>***.***.0.0/16</ipv4CidrBlock>
      <vpcStatus>
        <code>TERMTING</code>
        <codeName>terminating</codeName>
      </vpcStatus>
      <regionCode>KR</regionCode>
      <createDate>2020-07-27T17:17:05+0900</createDate>
    </vpc>
  </vpcList>
</deleteVpcResponse>