Openstack Volume Types
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/openstack-volume-types/ |
List volume types |
| GET | /api/openstack-volume-types/{uuid}/ |
Get volume type details |
| Other Actions | ||
| GET | /api/openstack-volume-types/names/ |
List unique volume type names |
Core CRUD
List volume types
Get a list of available volume types.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
openstack_volume_types_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
name |
string | Name |
name_exact |
string | Name (exact) |
offering_uuid |
string (uuid) | Offering UUID |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
settings |
string | Settings URL |
settings_uuid |
string (uuid) | Settings UUID |
tenant |
string | Tenant URL |
tenant_uuid |
string (uuid) | Tenant UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
settings |
string (uri) |
Get volume type details
Retrieve details of a specific volume type.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openstack_volume_types_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
name |
string |
description |
string |
settings |
string (uri) |
Other Actions
List unique volume type names
Return a list of unique volume type names.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
openstack_volume_types_names_retrieve
1 2 3 4 5 6 7 8 9 10 | |
200 -