Bases: object
Add a new location entry to an image’s list of locations.
It is an error to add a URL that is already present in the list of locations.
image_id – ID of image to which the location is to be added.
url – URL of the location to add.
metadata – Metadata associated with the location.
validation_data – Validation data for the image.
The updated image
Create an image.
Retrieve data of an image.
When do_checksum is enabled, validation proceeds as follows:
if the image has a ‘os_hash_value’ property, the algorithm specified in the image’s ‘os_hash_algo’ property will be used to validate against the ‘os_hash_value’ value. If the specified hash algorithm is not available AND allow_md5_fallback is True, then continue to step #2
else if the image has a checksum property, MD5 is used to validate against the ‘checksum’ value. (If MD5 is not available to the client, the download fails.)
else if the download response has a ‘content-md5’ header, MD5 is used to validate against the header value. (If MD5 is not available to the client, the download fails.)
if none of 1-3 obtain, the data is not validated (this is compatible with legacy behavior)
image_id – ID of the image to download
do_checksum – Enable/disable checksum validation
allow_md5_fallback – Use the MD5 checksum for validation if the algorithm specified by the image’s ‘os_hash_algo’ property is not available
An iterable body or None
Deactivate an image.
Delete an image.
Delete image data from specific store.
Remove one or more location entries of an image.
image_id – ID of image from which locations are to be removed.
url_set – set of URLs of location entries to remove.
None
Get the tasks associated with an image.
image_id – ID of the image
exc.HTTPNotImplemented if Glance is not new enough to support this API (v2.12).
Get Import info from discovery endpoint.
Get available stores info from discovery endpoint.
Get available stores info from discovery endpoint.
Import Image via method.
Retrieve a listing of Image objects.
page_size – Number of images to request in each paginated request.
generator over list of Images.
Reactivate an image.
Upload the data to image staging.
image_id – ID of the image to upload data for.
image_data – File-like object supplying the data to upload.
image_size – Unused - present for backwards compatibility
Update attributes of an image.
image_id – ID of the image to modify.
remove_props – List of property names to remove
kwargs – Image attribute names and their new values.
Update an existing location entry in an image’s list of locations.
The URL specified must be already present in the image’s list of locations.
image_id – ID of image whose location is to be updated.
url – URL of the location to update.
metadata – Metadata associated with the location.
The updated image
Upload the data for an image.
image_id – ID of the image to upload data for.
image_data – File-like object supplying the data to upload.
image_size – Unused - present for backwards compatibility
u_url – Upload url to upload the data to.
backend – Backend store to upload image to.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.