---
title: "changeFabricClusterName"
slug: "cli-vserver-fabriccluster-changefabricclustername"
updated: 2026-05-21T09:02:02Z
published: 2026-05-21T09:11:32Z
canonical: "cli-gov.ncloud-docs.com/cli-vserver-fabriccluster-changefabricclustername"
---

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

# changeFabricClusterName

VPC 환경에서 이용 가능합니다.

## 개요

Fabric Cluster 이름을 변경합니다.

## 요청

### 요청 파라미터

요청 파라미터는 다음과 같습니다.

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 - 변경할 Fabric Cluster의 리전(Region) 결정 가능 - regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능 - Default: getRegionList 조회 결과의 첫 번째 리전을 선택 |
| fabricClusterNo | Yes | String |  | - 변경할 Fabric Cluster 번호 - fabricClusterNo는 [getFabricClusterList](/docs/cli-vserver-fabriccluster-getfabricclusterlist) 액션을 통해 획득 가능 |
| fabricClusterName | Yes | String | - Min: 3, Max: 30 - 소문자, 숫자, "-"의 특수문자만 허용하며 알파벳 문자로 시작해야 함 - 영어 또는 숫자로 끝나야 함 | - Fabric Cluster 이름 |
| output | No | String |  | - 응답 결과의 포맷 타입 - Options: xml \| json - Default: json |

## 응답

### 응답 데이터 타입

응답 데이터 타입은 다음과 같습니다.

| FabricClusterList extends CommonResponse |
| --- |
| private Integer totalRows; |
| private List<FabricCluster> fabricClusterList = new ArrayList<>(); |

| FabricCluster |
| --- |
| private String fabricClusterNo; |
| private String fabricClusterName; |
| private CommonCode fabricClusterStatus; |
| private String fabricClusterDescription; |
| private String regionCode; |
| private String zoneCode; |
| private String vpcNo; |
| private String fabricClusterPoolNo; |
| private String fabricClusterPoolName; |
| private String fabricClusterPoolCode; |
| private Date createDate; |
| private Long serverCount; |
| private List<FabricClusterServerInstance> fabricClusterServerInstanceList; |

## 예시

### 요청 예시

```
./ncloud vserver changeFabricClusterName --regionCode KR --fabricClusterNo 13** --fabricClusterName test-***
```

### 응답 예시

```
{
  "changeFabricClusterNameResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "RUN",
          "codeName": "운영중"
        },
        "fabricClusterDescription": "fabric-cluster-description",
        "regionCode": "KR",
        "zoneCode": "KR-1",
        "vpcNo": "***84",
        "fabricClusterPoolNo": "***01",
        "fabricClusterPoolName": "test-***",
        "fabricClusterPoolCode": "test-***",
        "createDate": "2025-12-12T13:36:17+0900",
        "fabricClusterServerInstanceList": [
          {
            "serverInstanceNo": "****59627",
            "serverName": "test-***",
            "serverInstanceStatus": {
              "code": "RUN",
              "codeName": "서버 RUN 상태"
            },
            "serverInstanceOperation": {
              "code": "NULL",
              "codeName": "서버 NULL OP"
            },
            "serverInstanceStatusName": "running"
          }
        ]
      }
    ],
    "requestId": "e7039be4-3b54-4713-a03c-69dc3dcdd4e7",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
```

```

<changeFabricClusterNameResponse>
    <requestId>e7039be4-3b54-4713-a03c-69dc3dcdd4e7</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <fabricClusterList>
        <fabricCluster>
            <fabricClusterNo>13**</fabricClusterNo>
            <fabricClusterName>test-***</fabricClusterName>
            <fabricClusterStatus>
                <code>RUN</code>
                <codeName>운영중</codeName>
            </fabricClusterStatus>
            <fabricClusterDescription>fabric-cluster-description</fabricClusterDescription>
            <regionCode>KR</regionCode>
            <zoneCode>KR-1</zoneCode>
            <vpcNo>***84</vpcNo>
            <fabricClusterPoolNo>***01</fabricClusterPoolNo>
            <fabricClusterPoolName>test-***</fabricClusterPoolName>
            <fabricClusterPoolCode>test-***</fabricClusterPoolCode>
            <createDate>2025-12-12T13:36:17+0900</createDate>
            <fabricClusterServerInstanceList>
                <serverInstanceNo>****59627</serverInstanceNo>
                <serverName>test-***</serverName>
                <serverInstanceStatus>
                  <code>RUN</code>
                  <codeName>서버 RUN 상태</codeName>
                </serverInstanceStatus>
                <serverInstanceOperation>
                  <code>NULL</code>
                  <codeName>서버 NULL OP</codeName>
                </serverInstanceOperation>
                <serverInstanceStatusName>
                    running
                </serverInstanceStatusName>
          </fabricClusterServerInstanceList>
        </fabricCluster>
    </fabricClusterList>
</changeFabricClusterNameResponse>
```
