---
title: "getAutoScalingPolicyList"
slug: "cli-vautoscaling-autoscalinggroup-getautoscalingpolicylist"
tags: ["Auto Scaling"]
updated: 2026-04-23T08:57:02Z
published: 2026-04-23T08:58:56Z
canonical: "cli.ncloud-docs.com/cli-vautoscaling-autoscalinggroup-getautoscalingpolicylist"
---

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

# getAutoScalingPolicyList

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

## 개요

Scaling 정책 리스트를 조회합니다.

## 요청

### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 Scaling 정책 리스트가 조회될 Auto Scaling Group의 리전(Region) 결정 가능 regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능 Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| autoScalingGroupNo | Yes | String |  | - Auto Scaling Group 번호 autoScalingGroupNo는 [getAutoScalingGroupList](/docs/cli-vautoscaling-autoscalinggroup-getautoscalinggrouplist) 액션을 통해 획득 가능 |
| policyNoList.N | No | List<String> |  | - 정책 번호 리스트 Scaling 정책 번호로 필터링하여 검색 가능 policyNo는 [getAutoScalingPolicyList](/docs/cli-vautoscaling-autoscalinggroup-getautoscalingpolicylist) 액션을 통해 획득 가능 ex) policyNoList.1=1234&policyNoList.2=2345 |
| responseFormatType | No | String |  | - 응답 결과의 포맷 타입 Options : xml \| json Default : xml |

## 응답

### 응답 데이터 타입

- ScalingPolicyList 타입

| ScalingPolicyList extends CommonResponse |
| --- |
| private Integer totalRows; |
| private List<scalingpolicy data-tomark-pass=""> scalingPolicyList = new ArrayList&lt;&gt;();</scalingpolicy> |

| ScalingPolicy |
| --- |
| private String autoScalingGroupNo; |
| private String policyNo; |
| private String policyName; |
| private CommonCode adjustmentType; |
| private Integer scalingAdjustment; |
| private Integer minAdjustmentStep; |
| private Integer coolDown; |

## 예시

### 요청 예시

```
ncloud vautoscaling getAutoScalingPolicyList --regionCode KR --autoScalingGroupNo ***700 --policyNoList ***922
```

### 응답 예시

```
<getAutoScalingPolicyListResponse>
  <requestId>dcbf41de-b9d4-460d-a594-60d77ec25bf1</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <scalingPolicyList>
    <scalingPolicy>
      <autoScalingGroupNo>***700</autoScalingGroupNo>
      <policyNo>***922</policyNo>
      <policyName>test-***</policyName>
      <adjustmentType>
        <code>CHANG</code>
        <codeName>ChangeInCapacity</codeName>
      </adjustmentType>
      <scalingAdjustment>1</scalingAdjustment>
      <coolDown>300</coolDown>
    </scalingPolicy>
  </scalingPolicyList>
</getAutoScalingPolicyListResponse>
```
