Openstack Images
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/openstack-images/ |
List images |
| GET | /api/openstack-images/{uuid}/ |
Get image details |
| Other Actions | ||
| GET | /api/openstack-images/usage_stats/ |
Get image usage statistics |
Core CRUD
List images
Get a list of available VM instance images.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
openstack_images_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 | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
min_disk |
integer | Minimum disk size in MiB |
min_ram |
integer | Minimum memory size in MiB |
settings |
string (uri) | |
backend_id |
string |
Get image details
Retrieve details of a specific VM instance image.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openstack_images_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
min_disk |
integer | Minimum disk size in MiB |
min_ram |
integer | Minimum memory size in MiB |
settings |
string (uri) | |
backend_id |
string |
Other Actions
Get image usage statistics
Retrieve usage statistics for VM instance images, showing running and created instance counts for each image.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 | |
- API Source:
openstack_images_usage_stats_retrieve
1 2 3 4 5 6 7 8 9 10 | |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
min_disk |
integer | Minimum disk size in MiB |
min_ram |
integer | Minimum memory size in MiB |
settings |
string (uri) | |
backend_id |
string |