The Cyclades/Compute API Extensions contain some additions to the core Cyclades/Compute API. In order to be compatible with the OpenStack API, these additions are mapped to the OpenStack Compute API v2 Extensions.
You are advised to consult the “Overview” and “General API Information” sections of the Compute API guide, which have some important information for topics such as authentication, fault handling, etc.
Volume attachments
Description | URI | Method | Cyclades | OS/Compute |
---|---|---|---|---|
List | /servers/{server_id}/os-volume_attachments | GET | ✔ | ✔ |
Attach | /servers/{server_id}/os-volume_attachments | POST | ✔ | ✔ |
Show | /servers/{server_id}/os-volume_attachments/{attachment_id} | GET | ✔ | ✔ |
Detach | /servers/{server_id}/os-volume_attachments/{attachment_id} | DELETE | ✔ | ✔ |
List all volume attachments of a server.
Request
URI | Method | Cyclades | OS/Compute |
---|---|---|---|
/servers/{server_id}/os-volume_attachments | GET | ✔ | ✔ |
Request Header | Value | Cyclades | OS/Compute |
---|---|---|---|
X-Auth-Token | User authentication token | required | required |
Request Parameter | Value | Cyclades | OS/Compute |
---|---|---|---|
json | Respond in json | default | ✘ |
xml | Respond in xml | ✔ | ✘ |
Response
Return Code | Description |
---|---|
200 (OK) | Request succeeded |
400 (Bad Request) | Invalid or malformed changes-since parameter |
401 (Unauthorized) | Missing or expired user token |
403 (Forbidden) | User is not allowed to perform this operation |
500 (Internal Server Error) | The request cannot be completed because of an |
internal error | |
503 (Service Unavailable) | The server is not currently available |
Response body contents:
{
"volumeAttachments": [
{
"volume_attachment_attribute": <value>,
...
}, ...
]
}
The volume attachment attributes are listed here.
Example List Volumes: JSON (regular)
GET https://example.org/compute/v2.0/servers/1134/os-volume_attachments
{
"volumeAttachments": [
{
"device": "", # Unused
"serverId": 1134,
"id": 9,
"volumeId": 9
}, {
"device": "", # Unused
"serverId": 1134,
"id": 99,
"volumeId": 99
}
]
}
Attach a volume to a server.
Request
URI | Method | Cyclades | OS/Compute |
---|---|---|---|
/servers/{server_id}/os-volume_attachments | POST | ✔ | ✔ |
Request Header | Value | Cyclades | OS/Compute |
---|---|---|---|
X-Auth-Token | User authentication token | required | required |
Content-Type | Type or request body | required | required |
Content-Length | Length of request body | required | required |
Request Parameter | Value |
---|---|
json | Respond in json |
xml | Respond in xml |
Request body contents:
{
"volumeAttachment": {
"volumeId": <value>,
}
}
Attributes | Description | Cyclades | OS/Compute |
---|---|---|---|
volumeId | The volume id | ✔ | ✔ |
Example Attach Volume Request: JSON
{
"volumeAttachment": {
"volumeId": 9,
}
}
Response
Return Code | Description |
---|---|
200 (OK) | Request succeeded |
400 (Bad Request) | Malformed request data |
401 (Unauthorized) | Missing or expired user token |
403 (Forbidden) | User is not allowed to perform this operation |
404 (Not Found) | Server or Volume not found |
500 (Internal Server Error) | The request cannot be completed because of an |
internal error | |
503 (Service Unavailable) | No available backends or service currently |
unavailable |
Response body contents:
{
"volumeAttachment": {
"volume_attachment_attribute": <value>,
...
}
}
The volume attachment attributes are listed here.
Example Attach Volume Response: JSON
POST https://example.org/compute/v2.0/servers/1134/os-volume_attachments
{
"volumeAttachment": {
"device": "", # Unused
"serverId": 1134,
"id": 9,
"volumeId": 9
}
}
Show information for a volume that is attached to a server.
Request
URI | Method | Cyclades | OS/Compute |
---|---|---|---|
/servers/{server_id}/os-volume_attachments/{attachment_id} | GET | ✔ | ✔ |
Request Header | Value | Cyclades | OS/Compute |
---|---|---|---|
X-Auth-Token | User authentication token | required | required |
Content-Type | Type or request body | required | required |
Content-Length | Length of request body | required | required |
Request Parameter | Value |
---|---|
json | Respond in json |
xml | Respond in xml |
Response
Return Code | Description |
---|---|
200 (OK) | Request succeeded |
400 (Bad Request) | Malformed request data |
401 (Unauthorized) | Missing or expired user token |
403 (Forbidden) | User is not allowed to perform this operation |
404 (Not Found) | Server or Volume not found |
500 (Internal Server Error) | The request cannot be completed because of an |
internal error | |
503 (Service Unavailable) | No available backends or service currently |
unavailable |
Response body contents:
{
"volumeAttachment": {
"volume_attachment_attribute": <value>,
...
}
}
The volume attachment attributes are listed here.
Example Show Volume Response: JSON
POST https://example.org/compute/v2.0/servers/1134/os-volume_attachments/9
{
"volumeAttachment": {
"device": "", # Unused
"serverId": 1134,
"id": 9,
"volumeId": 9
}
}
Detach a volume from a server.
Request
URI | Method | Cyclades | OS/Compute |
---|---|---|---|
/servers/{server_id}/os-volume_attachments/{attachment_id} | DELETE | ✔ | ✔ |
Request Header | Value | Cyclades | OS/Compute |
---|---|---|---|
X-Auth-Token | User authentication token | required | required |
Content-Type | Type or request body | required | required |
Content-Length | Length of request body | required | required |
Request Parameter | Value |
---|---|
json | Respond in json |
xml | Respond in xml |
Response
Return Code | Description |
---|---|
200 (OK) | Request succeeded |
400 (Bad Request) | Malformed request data |
401 (Unauthorized) | Missing or expired user token |
403 (Forbidden) | User is not allowed to perform this operation |
404 (Not Found) | Server or Volume not found |
500 (Internal Server Error) | The request cannot be completed because of an |
internal error | |
503 (Service Unavailable) | No available backends or service currently |
unavailable |