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

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

# suspendProcesses

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


프로세스 보류


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


지정된 오토 스케일링 그룹에 대한 스케일링 프로세스를 보류(suspend)합니다.


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


| 파라미터 명            | 필수   여부 | 타입         | 제약사항           | 설명                                                         |
| ---------------------- | ----------- | ------------ | ------------------ | ------------------------------------------------------------ |
| autoScalingGroupName   | Yes         | String       | Min : 1, Max : 255 | 조회하고자 하는 오토 스케일링 그룹명 입력           |
| scalingProcessCodeList | No          | List<String> | Min : 1, Max : 5   | - 보류할 process 코드의 리스트, 아래 항목이 유효한 값(괄호 안)</br></br>              * LAUNCH (LANCH)</br>        * TERMINATE   (TERMT)</br>        * HEALTH_CHECK (HTHCK)</br>        * RELACE_UNHEALTHY   (RPUNH)</br>        * ZONE_REBALANCE   (ZNRBL)</br>        * SCHEDULED_ACTIONS (SCACT)</br>        * ADD_TO_LOAD_BALANCER   (ADTLB)</br>        * ALARM_NOTIFICATION   (ALMNO)</br></br>              각 값에 대한 설명은 [지원 API   - Auto Scaling] 문서에 기재되어 있음<br/>만약 이 파라미터를 생략하면 상술한 모든 프로세스가 보류됨<br/>리스트에 동일 항목(프로세스)이 중복 지정 불가 |



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


- CommonResponse 타입

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


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

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

```
ncloud autoscaling suspendProcesses --autoScalingGroupName soso02
```

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



```json
{
  "suspendProcessesResponse": {
    "requestId": "c3dab7b8-8dd5-4559-8f62-3b5dfdee3402",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
```
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<suspendProcessesResponse>
  <requestId>c3dab7b8-8dd5-4559-8f62-3b5dfdee3402</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
</suspendProcessesResponse>
```
