Description
Show details of database.
Request URL
Database API v1.0 GET /v1/databases/(uuid: database_id)
Request Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| X-Auth-Token | - | header | string | User Token |
| database_id | - | URI | UUID | Database ID |
Response Paramters
| Parameter | Value | Style | Type | Description |
|---|---|---|---|---|
| database | - | - | dict | - |
| service_id | - | plain | UUID | Service ID |
| database_id | - | plain | UUID | Database ID |
| internal_hostname | - | plain | string | Internal Hostname (private) |
| external_hostname | - | plain | string | External Hostname (global) |
| db_name | - | plain | string | Database Name |
| db_size | - | plain | float | Size of Database(unit:GB)It displays the number with two decimal point. |
| memo | - | plain | string | Memo |
| type | - | plain | string | Database Type |
| charset | - | plain | string | Character Cord for Database |
| status | active/pending/creating/deleting/error | plain | string | Status |
Request Json
Normal response codes
200 - Success
Error response codes
400 - Bad Request
401 - Access Denied
404 - Not Found
Repeatable
Yes
Example
curl -i -X GET \ -H "Accept: application/json" \ -H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140" \ https://database-hosting.tyo1.cloud.z.com/v1/databases/148147ba-8999-4901-9cd6-634db82f80ea
HTTP/1.1 200 Success
Date: Tue, 09 Dec 2014 01:46:58 GMT
Server: Apache
Content-Length: 1003
Content-Type: application/json
{
"database" : {
"service_id": "9d6441f6-c5a0-4dcf-a1a9-1a4d724e51fd",
"database_id": "148147ba-8999-4901-9cd6-634db82f80ea",
"internal_hostname": "private.02p8y.tyo1.database-hosting.cloud.z.com",
"external_hostname": "public.02p8y.tyo1.database-hosting.cloud.z.com",
"db_name": "02p8y_dbname01",
"db_size": 2,
"memo": "memo",
"type": "mysql",
"charset": "utf8",
"status": "active"
}
}