Create a block storage volume
Body Required
-
name string
Volume name
Maximum length is
255
. -
size integer(int64)
Volume size in GiB. When a snapshot ID is supplied, this defaults to the size of the source volume, but can be set to a larger value.
Minimum value is
10
. -
labels object
Resource labels
-
block-storage-snapshot object
Target block storage snapshot
Additional properties are allowed.
POST /block-storage
curl \
-X POST https://api-ch-gva-2.exoscale.com/v2/block-storage \
-H "Content-Type: application/json" \
-d '{"name":"string","size":42,"labels":{"additionalProperty1":"string","additionalProperty2":"string"},"block-storage-snapshot":{"id":"string"}}'
Request examples
{
"name": "string",
"size": 42,
"labels": {
"additionalProperty1": "string",
"additionalProperty2": "string"
},
"block-storage-snapshot": {
"id": "string"
}
}
Response examples (200)
{
"id": "string",
"reason": "incorrect",
"reference": {
"id": "string",
"link": "string",
"command": "string"
},
"message": "string",
"state": "failure"
}