Documentation Index

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

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

getCloudHadoopLoginKeyList

Prev Next

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

개요

Cloud Hadoop 인증키 리스트 정보를 조회합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode No String - 리전 코드
리전(Region) 결정 가능
regionCode는 getRegionList 액션을 통해서 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전 선택
output No String - 응답 결과의 포맷 타입
Options : xml | json
Default : json

응답

응답 데이터 타입

  • CloudHadoopLoginKeyList 타입
CloudHadoopLoginKeyList extends CommonResponse
private Integer totalRows;
private List<CloudHadoopLoginKey> cloudHadoopLoginKeyList = new ArrayList<>();
CloudHadoopLoginKey
private String keyName;

예시

호출

ncloud vhadoop getCloudHadoopLoginKeyList --regionCode KR

응답

<getCloudHadoopLoginKeyListResponse>
    <requestId>56edbd2d-a483-41b8-b4e5-b9400b326173</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudHadoopLoginKeyList>
        <cloudHadoopLoginKey>
            <keyName>****-hadoop</keyName>
        </cloudHadoopLoginKey>
    </cloudHadoopLoginKeyList>
</getCloudHadoopLoginKeyListResponse>