---
title: "deleteCloudCacheConfigGroup"
slug: "cli-vcache-deletecloudcacheconfiggroup"
tags: ["Cloud DB for Cache"]
updated: 2026-05-21T09:02:05Z
published: 2026-05-21T09:11:33Z
canonical: "cli-gov.ncloud-docs.com/cli-vcache-deletecloudcacheconfiggroup"
---

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

# deleteCloudCacheConfigGroup

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

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

Cloud DB for Cache Config Group을 삭제합니다.

:::(info) (참고)
Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.
* deleteCloudCacheConfigGroup CLI: Valkey, Redis DBMS 이용 가능
* deleteCloudRedisConfigGroup CLI: Redis DBMS 이용 가능
:::

## deleteCloudCacheConfigGroup CLI<a name="deleteCloudCacheConfigGroup CLI"></a> 
deleteCloudCacheConfigGroup CLI의 요청, 응답 형식을 설명합니다.

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

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

| 파라미터명         | 필수 여부 | 타입     | 제약 사항 | 설명                                                                                                                                                                                                         |
|---------------|-------|--------|-------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode    | No    | String |       | - 리전 코드<br/>Cloud DB for Cache ConfigGroup이 삭제될 리전(Region) 결정 가능<br/>regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능<br/>Default: getRegionList 조회 결과의 첫 번째 리전 선택 |
| configGroupNo | Yes   | String |       | - 삭제할 ConfigGroup번호 <br/>configGroupNo는 [getCloudCacheConfigGroupList](/docs/cli-vcache-getcloudcacheconfiggrouplist) 액션을 통해서 획득 가능                                                                        | 
| output        | No    | String |       | - 응답 결과의 포맷 타입<br/>Options: xml \| json<br/>Default: json                                                                                                                                                  |

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

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

- CloudCacheConfigGroupList 타입

| CloudCacheConfigGroupList extends CommonResponse                                         |
|------------------------------------------------------------------------------------------|
| private Integer totalRows;                                                               |
| private List&lt;CloudCacheConfigGroup&gt; cloudCacheConfigGroupList = new ArrayList<>(); |

| CloudCacheConfigGroup                                      |
|------------------------------------------------------------|
| private String configGroupNo;                              |
| private String configGroupName;                            |
| private String configGroupDescription;                     |
| private String configGroupStatusName;                      |
| private CommonCode configGroupStatus;                      |
| private String cloudCacheVersion;                          |
| private String cloudCacheDbmsCode; |
| private Date createDate;                                   |
| private Date modifyDate;                                   |
| private CloudCacheInstanceNoList cloudCacheInstanceNoList; |

| CloudCacheInstanceNoList                                                 |
|--------------------------------------------------------------------------|
| private List&lt;String&gt; cloudCacheInstanceNoList = new ArrayList<>(); |

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

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

```
ncloud vcache deleteCloudCacheConfigGroup --regionCode KR --configGroupNo **9
```

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

 ```xml

<deleteCloudCacheConfigGroupResponse>
    <requestId>0a6dd140-5d12-4139-aed6-5930b35fcab4</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudCacheConfigGroupList>
        <cloudCacheConfigGroup>
            <configGroupNo>**9</configGroupNo>
            <configGroupName>***test</configGroupName>
            <configGroupDescription>description</configGroupDescription>
            <configGroupStatusName>deleting</configGroupStatusName>
            <configGroupStatus>
                <code>DELETING</code>
                <codeName>CONFIG GROUP Deleting State</codeName>
            </configGroupStatus>
            <cloudCacheVersion>7.2.11-simple</cloudCacheVersion>
            <cloudCacheDbmsCode>Valkey</cloudCacheDbmsCode>
            <createDate>2021-05-12T22:44:56+0900</createDate>
            <modifyDate>2021-05-12T22:49:12+0900</modifyDate>
        </cloudCacheConfigGroup>
    </cloudCacheConfigGroupList>
</deleteCloudCacheConfigGroupResponse>
```

## deleteCloudRedisConfigGroup CLI<a name="deleteCloudRedisConfigGroup CLI"></a> 
deleteCloudRedisConfigGroup CLI의 요청, 응답 형식을 설명합니다.

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

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

| 파라미터명         | 필수 여부 | 타입     | 제약 사항 | 설명                                                                                                                                                                                                         |
|---------------|-------|--------|-------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode    | No    | String |       | - 리전 코드<br/>Cloud DB for Cache ConfigGroup이 삭제될 리전(Region) 결정 가능<br/>regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능<br/>Default: getRegionList 조회 결과의 첫 번째 리전 선택 |
| configGroupNo | Yes   | String |       | - 삭제할 ConfigGroup번호 <br/>configGroupNo는 [getCloudCacheConfigGroupList](/docs/cli-vcache-getcloudcacheconfiggrouplist) 액션을 통해서 획득 가능                                                                        | 
| output        | No    | String |       | - 응답 결과의 포맷 타입<br/>Options: xml \| json<br/>Default: json                                                                                                                                                  |

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

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

- CloudRedisConfigGroupList 타입

| CloudRedisConfigGroupList extends CommonResponse                                         |
|------------------------------------------------------------------------------------------|
| private Integer totalRows;                                                               |
| private List&lt;CloudRedisConfigGroup&gt; cloudRedisConfigGroupList = new ArrayList<>(); |

| CloudRedisConfigGroup                                      |
|------------------------------------------------------------|
| private String configGroupNo;                              |
| private String configGroupName;                            |
| private String configGroupDescription;                     |
| private String configGroupStatusName;                      |
| private CommonCode configGroupStatus;                      |
| private String cloudRedisVersion;                          |
| private Date createDate;                                   |
| private Date modifyDate;                                   |
| private CloudRedisInstanceNoList cloudRedisInstanceNoList; |

| CloudRedisInstanceNoList                                                 |
|--------------------------------------------------------------------------|
| private List&lt;String&gt; cloudRedisInstanceNoList = new ArrayList<>(); |

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

#### 호출 예시<a name="호출예시1"></a>

```
ncloud vredis deleteCloudRedisConfigGroup --regionCode KR --configGroupNo **9
```

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

 ```xml

<deleteCloudRedisConfigGroupResponse>
    <requestId>0a6dd140-5d12-4139-aed6-5930b35fcab4</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudRedisConfigGroupList>
        <cloudRedisConfigGroup>
            <configGroupNo>**9</configGroupNo>
            <configGroupName>***test</configGroupName>
            <configGroupDescription>description</configGroupDescription>
            <configGroupStatusName>deleting</configGroupStatusName>
            <configGroupStatus>
                <code>DELETING</code>
                <codeName>CONFIG GROUP Deleting State</codeName>
            </configGroupStatus>
            <cloudRedisVersion>4.0.14-cluster</cloudRedisVersion>
            <createDate>2021-05-12T22:44:56+0900</createDate>
            <modifyDate>2021-05-12T22:49:12+0900</modifyDate>
        </cloudRedisConfigGroup>
    </cloudRedisConfigGroupList>
</deleteCloudRedisConfigGroupResponse>
```
