getCloudHadoopLoginKeyList

Prev Next

It can be used in a VPC environment.

Summary

Search a list of Cloud Hadoop authentication keys.

Request

Request parameters

Parameter name Requirement status Type Restrictions Description
regionCode No String - Region code
- You can decide the region.
- You can obtain the regionCode through the getRegionList action.
- Default: Select the first region of the getRegionList search results
output No String - Format type for the response results
- Options : xml | json
- Default : json

Response

Response data type

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

Examples

Request example

ncloud vhadoop getCloudHadoopLoginKeyList --regionCode KR

Response example

<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>