VPC CDB-MySQLサーバリストの照会
- 印刷する
- PDF
VPC CDB-MySQLサーバリストの照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
Cloud Log Analyticsサービスで確認できるサーバリストを照会します。
VPC CDB-MySQLサーバリストを照会
VPCプラットフォームにある CDB-MySQLサーバインスタンス(VM)リストを照会します。ページング処理できます。
リクエスト URL
GET https://cloudloganalytics.apigw.ntruss.com/api/{regionCode}-v1/vpc/servers/mysql
リクエストヘッダ
ヘッダ名 | 説明 |
---|---|
x-ncp-apigw-timestamp | 1970年1月1日 00:00:00 協定世界時(UTC)からの経過時間をミリ秒(Millisecond)で表し、 API Gatewayサーバとの時間差が5分以上の場合は無効なリクエストとみなす x-ncp-apigw-timestamp:{Timestamp} |
x-ncp-apigw-api-key | API Gatewayから発行されたキーx-ncp-apigw-api-key:{API Gateway API Key} |
x-ncp-iam-access-key | NAVERクラウドプラットフォームポータルで発行された Access Key IDx-ncp-iam-access-key:{Account Access Key} |
x-ncp-apigw-signature-v2 | Access Key IDと Secret Keyで暗号化した署名x-ncp-apigw-signature-v2:{API Gateway Signature} |
Content-Type | Request body content typeは application/jsonに指定Content-Type: application/json |
リクエストパラメータ
パラメータ | タイプ | 必須の有無 | 説明 |
---|---|---|---|
pageNo | Integer | N | ページ番号 例) 1、2 |
pageSize | Integer | N | ページサイズ 例) 10、20 |
リクエスト例
GET https://cloudloganalytics.apigw.ntruss.com/api/{regionCode}-v1/vpc/servers/mysql?pageNo=1&pageSize=10
HOST: cloudloganalytics.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-signature-v2: FJSBB4K3XnaGAvVe0Hzj3/2hfNWvgLHR1rQHW2Et2Rs=
x-ncp-apigw-timestamp: 1593848345548
x-ncp-iam-access-key: 11IKBWgQegM4DwiJL4mo
curl -X GET "https://cloudloganalytics.apigw.ntruss.com/api/{regionCode}-v1/vpc/servers/mysql?pageNo=1&pageSize=10"
-H "accept: application/json"
-H "x-ncp-iam-access-key: 11IKBWgQegM4DwiJL4mo"
-H "x-ncp-apigw-timestamp: 1593849262194"
-H "x-ncp-apigw-signature-v2: m/hJOfg92TqzOGyHJ++4vkimGT7un1/4+zLrLTvaVT4="
レスポンス例
{
"code": 0,
"message": "リクエストが正常に処理されました",
"result": {
"pageSize": 10,
"currentPage": 1,
"totalPage": 1,
"totalCount": 2,
"isPaged": true,
"dbServers": [
{
"standbyMasterServerName": null,
"dbServerName": "cla-test-001-1shh",
"databaseProductCode": null,
"db_svr_rank": 0,
"cloudDbServiceName": "clatest",
"dataStorageTypeCode": null,
"dataStorageSize": 10,
"dataStorageSizeStr": "10GB",
"dbInstanceNo": 0,
"memorySize": "8GB",
"dbStatusName": null,
"clusterStatusName": null,
"serverInstanceNo": 0,
"dbServerIpAddress": null,
"cpuCount": 2,
"roleCode": null,
"dbServerRoleCode": null,
"dbServerType": "[Standard] 2vCPU, 8GB Mem",
"usedDataStorageSize": 0,
"uuid": "0-cla-test-001-1shh",
"dbStatusNameValue": "creating",
"dbStatusNameColor": "yellow",
"dbServerRoleValue": "Master",
"zoneNo": null,
"zoneName": null
},
{
"standbyMasterServerName": null,
"dbServerName": "cla-test-002-1shi",
"databaseProductCode": null,
"db_svr_rank": 0,
"cloudDbServiceName": "clatest",
"dataStorageTypeCode": null,
"dataStorageSize": 10,
"dataStorageSizeStr": "10GB",
"dbInstanceNo": 0,
"memorySize": "8GB",
"dbStatusName": null,
"clusterStatusName": null,
"serverInstanceNo": 0,
"dbServerIpAddress": null,
"cpuCount": 2,
"roleCode": null,
"dbServerRoleCode": null,
"dbServerType": "[Standard] 2vCPU, 8GB Mem",
"usedDataStorageSize": 0,
"uuid": "0-cla-test-002-1shi",
"dbStatusNameValue": "creating",
"dbStatusNameColor": "yellow",
"dbServerRoleValue": "Standby Master",
"zoneNo": null,
"zoneName": null
}
]
}
}
この記事は役に立ちましたか?