---
title: "deleteScalingPolicy"
slug: "cli-vautoscaling-autoscalinggroup-deletescalingpolicy"
tags: ["Auto Scaling Group"]
updated: 2026-05-21T09:02:03Z
published: 2026-05-21T09:11:33Z
canonical: "cli-gov.ncloud-docs.com/cli-vautoscaling-autoscalinggroup-deletescalingpolicy"
---

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

# deleteScalingPolicy

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

## 개요<a name="개요"></a>

Scaling 정책을 삭제합니다.

## 요청<a name="요청"></a>


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


| 파라미터명                            | 필수 여부      | 타입                   | 제약 사항                   | 설명                                         |
| ---------------------------------- | ------------ | --------------------- | ------------------------- | ------------------------------------------- |
| regionCode                         | No           | String                |                           | - 리전 코드<br/>Scaling 정책을 삭제할 Auto Scaling Group의 리전(Region) 결정 가능<br/>regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능<br/>Default : getRegionList 조회 결과의 첫 번째 리전을 선택   |
| autoScalingGroupNo                 | Yes          | String                |                           | - Auto Scaling Group 번호<br/>autoScalingGroupNo는 [getAutoScalingGroupList](/docs/cli-vautoscaling-autoscalinggroup-getautoscalinggrouplist) 액션을 통해 획득 가능  |
| policyNo                           | Yes          | String                |                           | - 삭제할 Scaling 정책 번호<br/>policyNo는 [getAutoScalingPolicyList](/docs/cli-vautoscaling-autoscalinggroup-getautoscalingpolicylist) 액션을 통해 획득 가능    |
| responseFormatType                 | No           | String                |                           | - 응답 결과의 포맷 타입<br/>Options : xml \| json<br/>Default : xml |

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

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

- ScalingPolicyList 타입

| ScalingPolicyList extends CommonResponse |
| ---------- |
| private Integer totalRows; |
| private List<ScalingPolicy> scalingPolicyList = new ArrayList<>(); |

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


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


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


```
ncloud vautoscaling deleteScalingPolicy --regionCode KR --autoScalingGroupNo ***700 --policyNo ***922
```

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


```xml
<deleteScalingPolicyResponse>
  <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>
</deleteScalingPolicyResponse>
```
