getLaunchConfigurationList

Prev Next

Available in VPC

Get the list of launch configurations.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET | POST /vautoscaling/v2/getLaunchConfigurationList
Note

This guide is based on the GET method. POST method call tests can be performed through Swagger in the API Gateway service of the NAVER Cloud Platform console.

Request headers

For information about the headers common to all Auto Scaling APIs, see Auto Scaling request headers.

Request query parameters

You can use the following query parameters with your request:

Field Type Required Description
regionCode String Optional Region code
launchConfigurationNoList.N Array Optional Launch configuration number list
  • Filter by the launch configuration number.
  • Example: launchConfigurationNoList.1=1234&launchConfigurationNoList.2=2345
launchConfigurationNameList.N Array Optional Launch configuration name list
  • Filter by the launch configuration name.
  • Example: launchConfigurationNameList.1=test1&launchConfigurationNameList.2=test2
pageNo Integer Optional Page number
  • 1-N
pageSize Integer Conditional Number of items per page
  • 1-N
  • Required when entering pageNo
sortList.N.sortedBy String Optional Sort target
  • launchConfigurationName: Launch configuration name (valid value)
  • Example: sortList.1.sortedBy=launchConfigurationName
sortList.N.sortingOrder String Optional Sort order
  • ASC (default) | DESC
    • ASC: ascending order
    • DESC: descending order
responseFormatType String Optional Format of the response data
  • xml (default) | json

Request example

The request example is as follows:

curl --location --request GET 'https://ncloud.apigw.ntruss.com/vautoscaling/v2/getLaunchConfigurationList
?regionCode=KR
&sortList.1.sortedBy=launchConfigurationName
&sortList.1.sortingOrder=ASC
&responseFormatType=json' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'

Response

This section describes the response format.

Response body

The response body includes the following data:

Field Type Required Description
getLaunchConfigurationListResponse Object - Response result
getLaunchConfigurationListResponse.requestId String - ID for the request
  • UUID format
getLaunchConfigurationListResponse.returnCode String - Response code
getLaunchConfigurationListResponse.returnMessage String - Response message

Response status codes

For response status codes common to all Auto Scaling APIs, see Auto Scaling response status codes.

Response example

The response example is as follows:

{
    "getLaunchConfigurationListResponse": {
        "totalRows": 2,
        "launchConfigurationList": [
            {
                "regionCode": "KR",
                "launchConfigurationNo": "5891",
                "launchConfigurationName": "launchconfig",
                "serverImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR2204.B050",
                "serverProductCode": "SVR.VSVR.STAND.C002.M008.NET.SSD.B050.G002",
                "loginKeyName": "ncp-loginkey",
                "createDate": "2025-05-15T09:48:51+0900",
                "launchConfigurationStatus": {
                    "code": "CREAT",
                    "codeName": "Created"
                },
                "initScriptNo": "",
                "isEncryptedVolume": false,
                "serverImageNo": "3182409",
                "osInformation": "ubuntu-22.04",
                "serverSpecNo": "621",
                "serverSpecCode": "s2-g2-s50",
                "serverSpecDescription": "vCPU 2EA, Memory 8GB, [SSD]Disk 50GB"
            },
            {
                "regionCode": "KR",
                "launchConfigurationNo": "5995",
                "launchConfigurationName": "launchconfigtest",
                "serverImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR24.G003",
                "serverProductCode": "SVR.VSVR.CPU.C002.M004.G003",
                "loginKeyName": "ncp-loginkey",
                "createDate": "2025-06-12T14:52:56+0900",
                "launchConfigurationStatus": {
                    "code": "CREAT",
                    "codeName": "Created"
                },
                "initScriptNo": "",
                "isEncryptedVolume": false,
                "serverImageNo": "100614134",
                "osInformation": "ubuntu-24.04",
                "serverSpecNo": "1916",
                "serverSpecCode": "ci2-g3",
                "serverSpecDescription": "vCPU 2EA, Memory 4GB"
            }
        ],
        "requestId": "5eff1b17-****-****-****-f3ee2492d679",
        "returnCode": "0",
        "returnMessage": "success"
    }
}