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

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

# deleteAutoScalingGroup 

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

오토 스케일링 그룹 삭제


## 설명<a name="설명"></a>

지정된 오토 스케일링 그룹을 삭제합니다. 그룹 소속 서버 인스턴스가 없을 때 그리고 아무런 스케일링 액션이 진행 중이지 않을 때만 가능합니다.


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

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



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

- CommonResponse 타입

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



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

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

```
ncloud autoscaling deleteAutoScalingGroup --autoScalingGroupName test01
```

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

```json
{
  "deleteAutoScalingGroupResponse": {
    "requestId": "6343f27a-8fd5-4de4-ac07-5a088c21ea3d",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
```
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<deleteAutoScalingGroupResponse>
  <requestId>6343f27a-8fd5-4de4-ac07-5a088c21ea3d</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
</deleteAutoScalingGroupResponse>
```
