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.

getCloudMssqlCharacterSetList

Prev Next

The latest service changes have not yet been reflected in this content. We will update the content as soon as possible. Please refer to the Korean version for information on the latest updates.

Available in VPC

Views a list of available Cloud DB for MSSQL character set

Commands

The text of the command is as follows:

ncloud vmssql getCloudMssqlCharacterSetList [regionCode] [output]

Parameter

The following is a description on parameters.

Parameter Type Requirement status Description Restrictions
regionCode String N Region code
- regionCode can be obtained via the getRegionList action
- Default: selects the first region of the getRegionList search results
-
output String N Format type of the response result
- options: xml | json
- default: json
-

Responses

Response data type

  • CloudMssqlCharacterSetList type

    CloudMssqlCharacterSetList extends CommonResponse Description
    private Integer totalRows; Total number of items viewed
    private List<CloudMssqlCharacterSet> cloudMssqlCharacterSetList = new ArrayList<>(); Cloud DB for MSSQL character set list
  • CloudMssqlCharacterSet type

    CloudMssqlCharacterSet Description
    private String characterSetName; Character set name

Examples

Describes examples of recalls and responses.

Recall examples

The following are examples of recalls.

ncloud vmssql getCloudMssqlCharacterSetList --regionCode KR

Response examples

The following are examples of responses.

If the response shows that format type (output) is json

The following is when the response shows that format type (output) is json.

{
  "getCloudMssqlCharacterSetListResponse": {
    "requestId": "6ffd457b-db44-4a26-9010-2cd6d4999852",
    "returnCode": 0,
    "returnMessage": "success",
    "totalRows": 2,
    "cloudMssqlCharacterSetList": [
      {
        "characterSetName": "Korean_Wansung_CI_AS"
      },
      {
        "characterSetName": "SQL_Latin1_General_CP1_CI_AS"
      }
    ]
  }
}

If the response shows that format type (responseFormatType) is xml

The following is when the response shows that format type (responseFormatType) is xml:

<getCloudMssqlCharacterSetListResponse>
    <requestId>6ffd457b-db44-4a26-9010-2cd6d4999852</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>2</totalRows>
    <cloudMssqlCharacterSetList>
        <CloudMssqlCharacterSet>
            <characterSetName>Korean_Wansung_CI_AS</characterSetName>
        </CloudMssqlCharacterSet>
        <CloudMssqlCharacterSet>
            <characterSetName>SQL_Latin1_General_CP1_CI_AS</characterSetName>
        </CloudMssqlCharacterSet>
    </cloudMssqlCharacterSetList>
</getCloudMssqlCharacterSetListResponse>