getFabricClusterPoolList

Prev Next

VPC 환경에서 이용 가능합니다.

개요

사용 가능한 GPU Fabric Cluster Pool을 조회합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode Yes String 리전 코드
zoneCode Yes String 존 코드
serverSpecCode Conditional String 서버 스펙 코드로 필터링
  • KVM 하이퍼바이저 타입의 서버 스펙을 조회하는 경우, 필수 입력
  • getServerSpecList 참조
serverProductCode Conditional String 서버 상품 코드로 필터링
responseFormatType No String 응답 데이터의 형식
  • xml (기본값) | json

응답

응답 데이터 타입

  • getFabricClusterPoolList 타입
getFabricClusterPoolList extends CommonResponse
private Integer totalRows;
private List<FabricClusterPool> getFabricClusterPoolList = new ArrayList<>();
FabricClusterPool
private String fabricClusterPoolNo;
private String fabricClusterPoolName;

예시

요청 예시

ncloud vserver getFabricClusterPoolList --regionCode KR --zoneCode KR-1 --serverSpecCode gp8ap56-g3

응답 예시

<fabricClusterPoolList>
  <requestId>0c7c37fb-6bae-4b99-8fda-53421f3a81a4</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <fabricClusterPoolList>
    <fabricClusterPool>
      <fabricClusterPoolNo>182</fabricClusterPoolNo>
      <fabricClusterPoolName>kvm a100 pool</fabricClusterPoolName>
    </fabricClusterPool>
  </fabricClusterPoolList>
</fabricClusterPoolList>