GET /api/compute_resources/:compute_resource_id/images
Enumera todas las imágenes de un recurso de cómputo

GET /api/operatingsystems/:operatingsystem_id/images
Enumerar las imágenes para el sistema operativo

GET /api/architectures/:architecture_id/images
Enumerar las imágenes de la arquitectura

Parámetros

Nombre del parámetro Descripción
compute_resource_id
opcional

ID del recurso de cómputo


Value:

Must be String

architecture_id
opcional

ID de la arquitectura


Value:

Must be String

operatingsystem_id
opcional

ID del sistema operativo


Value:

Must be String

search
opcional

filtrar resultados


Value:

Must be String

order
opcional

ordenar resultados


Value:

Must be String

page
opcional

paginar resultados


Value:

Must be String

per_page
opcional

número de entradas por petición


Value:

Must be String


GET /api/compute_resources/:compute_resource_id/images/:id
Mostrar una imagen

GET /api/operatingsystems/:operatingsystem_id/images/:id
Mostrar una imagen

GET /api/architectures/:architecture_id/images/:id
Mostrar una imagen

Parámetros

Nombre del parámetro Descripción
id
requerido

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
opcional

ID del recurso de cómputo


Value:

Must be String

architecture_id
opcional

ID de la arquitectura


Value:

Must be String

operatingsystem_id
opcional

ID del sistema operativo


Value:

Must be String


POST /api/compute_resources/:compute_resource_id/images
Crear una imagen

Parámetros

Nombre del parámetro Descripción
compute_resource_id
requerido

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
requerido

Value:

Must be a Hash

image[name]
requerido

Value:

Must be String

image[username]
requerido

Value:

Must be String

image[uuid]
requerido

Value:

Must be String

image[compute_resource_id]
opcional , nil permitido

ID del recurso de cómputo


Value:

Must be String

image[architecture_id]
opcional , nil permitido

ID de la arquitectura


Value:

Must be String

image[operatingsystem_id]
opcional , nil permitido

ID del sistema operativo


Value:

Must be String


PUT /api/compute_resources/:compute_resource_id/images/:id
Actualizar una imagen

Parámetros

Nombre del parámetro Descripción
compute_resource_id
requerido

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
requerido

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
requerido

Value:

Must be a Hash

image[name]
opcional

Value:

Must be String

image[username]
opcional

Value:

Must be String

image[uuid]
opcional

Value:

Must be String

image[compute_resource_id]
opcional , nil permitido

ID del recurso de cómputo


Value:

Must be String

image[architecture_id]
opcional , nil permitido

ID de la arquitectura


Value:

Must be String

image[operatingsystem_id]
opcional , nil permitido

ID del sistema operativo


Value:

Must be String


DELETE /api/compute_resources/:compute_resource_id/images/:id
Borrar una imagen

Parámetros

Nombre del parámetro Descripción
compute_resource_id
requerido

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
requerido

Value:

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