GET /api/compute_resources/:compute_resource_id/images
List all images for a compute resource

GET /api/operatingsystems/:operatingsystem_id/images
List all images for operating system

GET /api/architectures/:architecture_id/images
List all images for architecture

Params

Param name Description
compute_resource_id
optional

ID of compute resource


Value: Must be String
architecture_id
optional

ID of architecture


Value: Must be String
operatingsystem_id
optional

ID of operating system


Value: Must be String
search
optional

filter results


Value: Must be String
order
optional

sort results


Value: Must be String
page
optional

paginate results


Value: Must be String
per_page
optional

number of entries per request


Value: Must be String

GET /api/compute_resources/:compute_resource_id/images/:id
Show an image

GET /api/operatingsystems/:operatingsystem_id/images/:id
Show an image

GET /api/architectures/:architecture_id/images/:id
Show an image

Params

Param name Description
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
compute_resource_id
optional

ID of compute resource


Value: Must be String
architecture_id
optional

ID of architecture


Value: Must be String
operatingsystem_id
optional

ID of operating system


Value: Must be String

POST /api/compute_resources/:compute_resource_id/images
Create an image

Params

Param name Description
compute_resource_id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
image
required

Value: Must be a Hash
image[name]
required

Value: Must be String
image[username]
required

Value: Must be String
image[uuid]
required

Value: Must be String
image[compute_resource_id]
optional , nil allowed

ID of compute resource


Value: Must be String
image[architecture_id]
optional , nil allowed

ID of architecture


Value: Must be String
image[operatingsystem_id]
optional , nil allowed

ID of operating system


Value: Must be String

PUT /api/compute_resources/:compute_resource_id/images/:id
Update an image

Params

Param name Description
compute_resource_id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
image
required

Value: Must be a Hash
image[name]
optional

Value: Must be String
image[username]
optional

Value: Must be String
image[uuid]
optional

Value: Must be String
image[compute_resource_id]
optional , nil allowed

ID of compute resource


Value: Must be String
image[architecture_id]
optional , nil allowed

ID of architecture


Value: Must be String
image[operatingsystem_id]
optional , nil allowed

ID of operating system


Value: Must be String

DELETE /api/compute_resources/:compute_resource_id/images/:id
Delete an image

Params

Param name Description
compute_resource_id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.