--- title: "changeCloudMysqlServerSpec" slug: "cli-vmysql-changecloudmysqlserverspec" updated: 2026-06-25T09:10:27Z published: 2026-06-25T09:10:27Z canonical: "cli-fin.ncloud-docs.com/cli-vmysql-changecloudmysqlserverspec" --- > ## Documentation Index > Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt > Use this file to discover all available pages before exploring further. # changeCloudMysqlServerSpec Cloud DB for MySQL 인스턴스의 DB 서버 스펙을 변경합니다. ## 요청 ### 요청 파라미터 파라미터에 대한 설명은 다음과 같습니다. | 필드 | 타입 | 필수 여부 | 설명 | | :--- | :--- | :--- | :--- | | `regionCode` | String | Optional | 리전 코드 | | `cloudMysqlInstanceNo` | String | Required | Cloud DB for MySQL 인스턴스 번호 | | `cloudMysqlProductCode` | String | Required | Cloud DB for MySQL 상품 코드 | | `responseFormatType` | String | Optional | 응답 결과의 형식 | ### 요청 예시 요청 예시는 다음과 같습니다. ``` ncloud vmysql changeCloudMysqlServerSpec --regionCode FKR --cloudMysqlInstanceNo ****890 --cloudMysqlProductCode SVR.VDBAS.STAND.C002.M008.NET.HDD.B050.G002 ``` ## 응답 응답 형식을 설명합니다. ### 응답 예시 응답 예시는 다음과 같습니다. * `responseFormatType=json` 일 때 ```json { "changeCloudMysqlServerSpecResponse": { "requestId": "eb46ade8-****-****-****-133bcbc382c1", "returnCode": "0", "returnMessage": "success", "totalRows": 1, "cloudMysqlInstanceList": [ { "cloudMysqlInstanceNo": "****890", "cloudMysqlServiceName": "test-****", "cloudMysqlInstanceStatusName": "upgrading", "cloudMysqlInstanceStatus": { "code": "CREAT", "codeName": "CLOUD DATABASE(VPC) Created State" }, "cloudMysqlInstanceOperation": { "code": "UPGD", "codeName": "CLOUD DATABASE(VPC) Upgrade OP" }, "cloudMysqlImageProductCode": "SW.VDBAS.DBAAS.LNX64.CNTOS.0708.MYSQL.8025.B050", "engineVersion": "MYSQL8.0.25", "license": { "code": "GPL", "codeName": "General Public License" }, "cloudMysqlPort": 13306, "isHa": true, "isMultiZone": true, "isBackup": true, "backupFileRetentionPeriod": 10, "backupTime": "02:00", "generationCode": "G2", "createDate": "2024-05-23T11:25:09+0900", "accessControlGroupNoList": [], "cloudMysqlConfigList": [], "cloudMysqlServerInstanceList": [ { "cloudMysqlServerName": "test-****-001-e04", "cloudMysqlServerRole": { "code": "M", "codeName": "Master" }, "cloudMysqlServerInstanceStatusName": "settingUp", "cloudMysqlServerInstanceStatus": { "code": "RUN", "codeName": "CLOUD DATABASE(VPC) Server Running State" }, "cloudMysqlServerInstanceOperation": { "code": "SETUP", "codeName": "CLOUD DATABASE(VPC) Server Setup OP" }, "cloudMysqlProductCode": "SVR.VDBAS.STAND.C004.M016.NET.HDD.B050.G002", "regionCode": "FKR", "zoneCode": "FKR-1", "vpcNo": "****83", "subnetNo": "****91", "isPublicSubnet": true, "dataStorageType": { "code": "SSD", "codeName": "SSD" }, "isStorageEncryption": true, "dataStorageSize": 10737418240, "cpuCount": 2, "memorySize": 8589934592, "createDate": "2024-05-23T11:25:09+0900" }, { "cloudMysqlServerName": "test-****-002-e05", "cloudMysqlServerRole": { "code": "H", "codeName": "Standby Master" }, "cloudMysqlServerInstanceStatusName": "settingUp", "cloudMysqlServerInstanceStatus": { "code": "RUN", "codeName": "CLOUD DATABASE(VPC) Server Running State" }, "cloudMysqlServerInstanceOperation": { "code": "SETUP", "codeName": "CLOUD DATABASE(VPC) Server Setup OP" }, "cloudMysqlProductCode": "SVR.VDBAS.STAND.C004.M016.NET.HDD.B050.G002", "regionCode": "FKR", "zoneCode": "FKR-2", "vpcNo": "****83", "subnetNo": "****93", "isPublicSubnet": true, "dataStorageType": { "code": "SSD", "codeName": "SSD" }, "isStorageEncryption": true, "dataStorageSize": 10737418240, "cpuCount": 2, "memorySize": 8589934592, "createDate": "2024-05-23T11:25:09+0900" } ] } ] } } ``` * `responseFormatType=xml` (기본값) 일 때 ```xml eb46ade8-****-****-****-133bcbc382c1 0 success 1 ****890 test-**** upgrading CREAT CLOUD DATABASE(VPC) Created State UPGD CLOUD DATABASE(VPC) Upgrade OP SW.VDBAS.DBAAS.LNX64.CNTOS.0708.MYSQL.8025.B050 MYSQL8.0.25 GPL General Public License 13306 true true true 10 02:00 G2 2024-05-23T11:25:09+0900 test-****-001-4y1v M Master settingUp RUN CLOUD DATABASE(VPC) Server Running State SETUP CLOUD DATABASE(VPC) Server Setup OP SVR.VDBAS.STAND.C002.M008.NET.HDD.B050.G002 FKR FKR-1 ****83 ****91 true SSD SSD true 10737418240 2 8589934592 2024-05-23T11:25:09+0900 test-****-002-e05 H Standby Master settingUp RUN CLOUD DATABASE(VPC) Server Running State SETUP CLOUD DATABASE(VPC) Server Setup OP SVR.VDBAS.STAND.C002.M008.NET.HDD.B050.G002 FKR FKR-2 ****83 ****93 true SSD SSD true 10737418240 2 8589934592 2024-05-23T11:25:09+0900 ```