---
title: "deleteScheduledAction"
slug: "cli-autoscaling-deletescheduledaction"
updated: 2026-04-23T08:57:03Z
published: 2026-04-23T08:58:56Z
canonical: "cli.ncloud-docs.com/cli-autoscaling-deletescheduledaction"
---

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

# deleteScheduledAction

## 개요

스케쥴 액션 삭제

## 설명

이전에 PutScheduledUpdateGroupAction에 의해 생성된 스케일링 액션 스케줄을 삭제합니다.

## 요청 파라미터

| 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 |
| --- | --- | --- | --- | --- |
| autoScalingGroupName | No | String | Min : 1, Max : 255 | 조회하고자 하는 오토 스케일링 그룹명 입력 스케줄 액션명은 오토 스케일링 그룹명에 유니크한 값이므로 해당 값이 없으면 그룹에 상관없이 스케줄 액션명이 동일한 스케줄 액션 삭제 |
| scheduledActionName | Yes | String | Min : 1, Max : 255 | 스케일링 액션 스케줄 이름이며 스케줄 식별자 역할을 함 지정된 오토 스케일링 그룹 내에서는 유일한 이름이어야 하며 요청한 스케줄 명이 있으면 해당 스케줄 삭제 |

## 응답 데이터 타입

- CommonResponse 타입

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

## 예시

### 호출

```
ncloud autoscaling deleteScheduledAction --autoScalingGroupName soso02 --scheduledActionName test-autoscaling-schedule
```

### 응답

```
{
  "deleteScheduledActionResponse": {
    "requestId": "939d35b3-9ce9-4069-babf-cab79f591a9e",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
```

```
<?xml version="1.0" encoding="UTF-8" ?>
<deleteScheduledActionResponse>
  <requestId>939d35b3-9ce9-4069-babf-cab79f591a9e</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
</deleteScheduledActionResponse>
```
