The novaclient.v1_1.images Module

Image interface.

class novaclient.v1_1.images.Image(manager, info, loaded=False)

Bases: novaclient.base.Resource

An image is a collection of files used to create or rebuild a server.

HUMAN_ID = True
delete()

Delete this image.

class novaclient.v1_1.images.ImageManager(api)

Bases: novaclient.base.ManagerWithFind

Manage Image resources.

delete(image)

Delete an image.

It should go without saying that you can’t delete an image that you didn’t create.

Parameters:image – The Image (or its ID) to delete.
delete_meta(image, keys)

Delete metadata from an image

Parameters:
  • image – The Image to add metadata to
  • keys – A list of metadata keys to delete from the image
get(image)

Get an image.

Parameters:image – The ID of the image to get.
Return type:Image
list(detailed=True)

Get a list of all images.

Return type:list of Image
resource_class

alias of Image

set_meta(image, metadata)

Set an images metadata

Parameters:
  • image – The Image to add metadata to
  • metadata – A dict of metadata to add to the image

This Page