Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

detachBlockStorageInstances

Prev Next

개요

블록 스토리지 인스턴스 할당 해제

설명

블록 스토리지 인스턴스 리스트를 서버 인스턴스에서 할당 해제합니다.

요청 파라미터

파라미터 명 필수 여부 타입 제약사항 설명
blockStorageInstanceNoList Yes List<String> - 블록 스토리지 인스턴스 번호 리스트
서버 인스턴스에서 할당 해제할 블록 스토리지 인스턴스 번호 결정
blockStorageInstanceNo는 getBlockStorageInstanceList 액션을 통해서 획득 가능
ex) --blockStorageInstanceNoList 1234 --blockStorageInstanceNoList 2345

응답 데이터 타입

  • BlockStorageInstanceList 타입
BlockStorageInstanceList extends CommonResponse
private Integer totalRows;
private List blockStorageInstanceList = new ArrayList();
BlockStorageInstance
private String blockStorageInstanceNo;
private String serverInstanceNo;
private String serverName;
private CommonCode blockStorageType;
private String blockStorageName;
private Long blockStorageSize;
private String deviceName;
private String blockStorageProductCode;
private CommonCode blockStorageInstanceStatus;
private CommonCode blockStorageInstanceOperation;
private String blockStorageInstanceStatusName;
private Date createDate;
private String blockStorageInstanceDescription;
private CommonCode diskType;
private CommonCode diskDetailType;
private Integer maxIopsThroughput;
private Region region;
private Zone zone;

예시

호출

ncloud server detachBlockStorageInstances --blockStorageInstanceNoList ***1004

응답

{
  "detachBlockStorageInstancesResponse": {
    "requestId": "c8172d4a-5486-4d34-9331-dfec6a747abf",
    "returnCode": "0",
    "returnMessage": "success",
    "totalRows": 1,
    "blockStorageInstanceList": [
      {
        "blockStorageInstanceNo": "***1004",
        "serverInstanceNo": "***1003",
        "serverName": "test-***",
        "blockStorageType": {
          "code": "SVRBS",
          "codeName": "Server BS"
        },
        "blockStorageName": "test-***",
        "blockStorageSize": 53687091200,
        "deviceName": "/dev/xvdb",
        "blockStorageProductCode": "SPBSTBSTAD000006",
        "blockStorageInstanceStatus": {
          "code": "ATTAC",
          "codeName": "Block storage ATTACHED state"
        },
        "blockStorageInstanceOperation": {
          "code": "DETAC",
          "codeName": "Block Storage RESTART OP"
        },
        "blockStorageInstanceStatusName": "detaching",
        "createDate": "2018-10-22T16:19:51+0900",
        "blockStorageInstanceDescription": "",
        "diskType": {
          "code": "NET",
          "codeName": "Network Storage"
        },
        "diskDetailType": {
          "code": "SSD",
          "codeName": "SSD"
        },
        "maxIopsThroughput": 4000,
        "region": {
          "regionNo": "1",
          "regionCode": "KR",
          "regionName": "Korea"
        },
        "zone": {
          "zoneNo": "3",
          "zoneName": "KR-2",
          "zoneCode": "KR-2",
          "zoneDescription": "평촌 zone",
          "regionNo": "1"
        }
      }
    ]
  }
}
<?xml version="1.0" encoding="UTF-8" ?>
<detachBlockStorageInstancesResponse>
  <requestId>c8172d4a-5486-4d34-9331-dfec6a747abf</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <blockStorageInstanceList>
    <blockStorageInstance>
      <blockStorageInstanceNo>***1004</blockStorageInstanceNo>
      <serverInstanceNo>***1003</serverInstanceNo>
      <serverName>test-***</serverName>
      <blockStorageType>
        <code>SVRBS</code>
        <codeName>Server BS</codeName>
      </blockStorageType>
      <blockStorageName>test-***</blockStorageName>
      <blockStorageSize>53687091200</blockStorageSize>
      <deviceName>/dev/xvdb</deviceName>
      <blockStorageProductCode>SPBSTBSTAD000006</blockStorageProductCode>
      <blockStorageInstanceStatus>
        <code>ATTAC</code>
        <codeName>Block storage ATTACHED state</codeName>
      </blockStorageInstanceStatus>
      <blockStorageInstanceOperation>
        <code>DETAC</code>
        <codeName>Block Storage RESTART OP</codeName>
      </blockStorageInstanceOperation>
      <blockStorageInstanceStatusName>detaching</blockStorageInstanceStatusName>
      <createDate>2018-10-22T16:19:51+0900</createDate>
      <blockStorageInstanceDescription></blockStorageInstanceDescription>
      <diskType>
        <code>NET</code>
        <codeName>Network Storage</codeName>
      </diskType>
      <diskDetailType>
        <code>SSD</code>
        <codeName>SSD</codeName>
      </diskDetailType>
      <maxIopsThroughput>4000</maxIopsThroughput>
      <region>
        <regionNo>1</regionNo>
        <regionCode>KR</regionCode>
        <regionName>Korea</regionName>
      </region>
      <zone>
        <zoneNo>3</zoneNo>
        <zoneName>KR-2</zoneName>
        <zoneCode>KR-2</zoneCode>
        <zoneDescription>평촌 zone</zoneDescription>
        <regionNo>1</regionNo>
      </zone>
    </blockStorageInstance>
  </blockStorageInstanceList>
</detachBlockStorageInstancesResponse>