---
title: "deletePolicy  "
slug: "cli-autoscaling-deletepolicy"
updated: 2026-05-21T09:02:04Z
published: 2026-05-21T09:11:33Z
canonical: "cli-gov.ncloud-docs.com/cli-autoscaling-deletepolicy"
---

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

# deletePolicy  

## 개요

스케일링 정책 삭제

## 설명

스케일링 정책(policy)을 삭제합니다.

## 요청 파라미터

| 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 |
| --- | --- | --- | --- | --- |
| policyName | Yes | String | Min : 1, Max : 255 | 삭제할 스케일링 정책 이름 |
| autoScalingGroupName | Yes | String | Min : 1, Max : 255 | 정책을 삭제할 오토 스케일링 그룹명 입력 |

## 응답 데이터 타입

- CommonResponse 타입

| CommonResponse extends BaseObject |
| --- |
| private String requestId; |
| private String returnCode; |
| private String returnMessage; |

## 예시

### 호출

```
ncloud autoscaling deletePolicy --policyName test-autoscaling-policy --autoScalingGroupName soso02
```

### 응답

```
{
  "deletePolicyResponse": {
    "requestId": "9fefd58a-2ce4-41a6-a83b-ecc00e7db032",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
```

```
<?xml version="1.0" encoding="UTF-8" ?>
<deletePolicyResponse>
  <requestId>9fefd58a-2ce4-41a6-a83b-ecc00e7db032</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
</deletePolicyResponse>
```
