---
title: "getCloudPostgresqlUserList"
slug: "cli-vpostgresql-getcloudpostgresqluserlist"
tags: ["Cloud DB for PostgreSQL", "VPC"]
updated: 2026-04-23T08:57:12Z
published: 2026-04-23T08:58:59Z
canonical: "cli.ncloud-docs.com/cli-vpostgresql-getcloudpostgresqluserlist"
---

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

# getCloudPostgresqlUserList

<p class="platform-info type-vpc">VPC 환경에서 이용 가능합니다.</p>

Cloud DB for PostgreSQL DB User 목록을 조회합니다.

## 명령어<a name="명령어"></a>

명령어 구문은 다음과 같습니다.

```
ncloud vpostgresql getCloudPostgresqlUserList [regionCode] [cloudPostgresqlInstanceNo] [output]
```

### 파라미터<a name="파라미터"></a>

파라미터에 대한 설명은 다음과 같습니다.

| 파라미터                | 타입   | 필수 여부 | 설명                                                         | 제약 사항 |
| ------------------------- | ------ | --------- | ------------------------------------------------------------ | --------- |
| regionCode                | String | N         | 리전 코드<br>- regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득<br>- default: getRegionList 조회 결과의 첫 번째 리전을 선택 | -         |
| cloudPostgresqlInstanceNo | String | Y         | Cloud DB for PostgreSQL 인스턴스 번호<br>- cloudPostgresqlInstanceNo는 [getCloudPostgresqlInstanceList](/docs/cli-vpostgresql-getcloudpostgresqlinstancelist) 액션을 통해서 획득 | -         |
| output                    | String | N         | 응답 결과의 포맷 타입<br>- options: xml \| json<br>- default: json | - |

## 응답<a name="응답"></a>

### 응답 데이터 타입<a name="응답데이터타입"></a>

- CloudPostgresqlUserList 타입

| CloudPostgresqlUserList extends CommonResponse               | 설명                                 |
| ------------------------------------------------------------ | ------------------------------------ |
| private Integer totalRows;                                   | 조회된 목록의 총 개수                |
| private List&lt;CloudPostgresqlUser&gt; cloudPostgresqlUserList = new ArrayList<>(); | Cloud DB for PostgreSQL DB User 목록 |

- CloudPostgresqlUser 타입

| CloudPostgresqlUser                | 설명                  |
| ---------------------------------- | --------------------- |
| private String userName;           | DB User ID            |
| private String clientCidr;         | Client CIDR           |
| private Boolean isReplicationRole; | Replication Role 여부 |

## 예시<a name="예시"></a>

호출과 응답 예시를 설명합니다.

### 호출 예시<a name="호출예시"></a>

호출 예시는 다음과 같습니다.

```
ncloud vpostgresql getCloudPostgresqlUserList --regionCode KR --cloudPostgresqlInstanceNo ****890
```

### 응답 예시<a name="응답예시"></a>

응답 예시는 다음과 같습니다.

응답 결과 포맷 타입(output)이 json 일 때
```json
{
  "getCloudPostgresqlUserListResponse": {
    "requestId": "d733e677-ad69-4cbe-8351-711d0e0124bc",
    "returnCode": 0,
    "returnMessage": "success",
    "totalRows": 1,
    "cloudPostgresqlUserList": [
      {
        "userName": "testuser",
        "clientCidr": "0.0.0.0/0",
        "isReplicationRole": false
      }
    ]
  }
}
```

응답 결과 포맷 타입(output)이 xml 일 때
```xml
<getCloudPostgresqlUserListResponse>
  <requestId>d733e677-ad69-4cbe-8351-711d0e0124bc</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <cloudPostgresqlUserList>
    <cloudPostgresqlUser>
      <userName>testuser</userName>
      <clientCidr>0.0.0.0/0</clientCidr>
      <isReplicationRole>false</isReplicationRole>
    </cloudPostgresqlUser>
  </cloudPostgresqlUserList>
</getCloudPostgresqlUserListResponse>
```
