Deleting the image

A Glance image can be deleted simply by creating an image object of the image that we want to delete. We can then use the connection object and refer to the image class and invoke the delete_image() function by passing the image object to it.

The ignore_missing determines whether the function will ignore the request if the file is not found or raises an exception:

def delete_image(conn):
    image = conn.image.find_image("cirros-0.3.5-x86_64-disk")
    conn.image.delete_image(image, ignore_missing=False)
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.145.56.28