
To better facilitate the building and publishing of sphinx documentation by Jenkins we are moving all openstack projects with sphinx documentation to a common doc tree structure. Documentation goes in project/doc and build results go in project/doc/build. Change-Id: I3ae14ac735d9b4c0b534eac9a9c142f8ccaac1b9
55 lines
1.4 KiB
ReStructuredText
55 lines
1.4 KiB
ReStructuredText
Images
|
|
======
|
|
|
|
.. currentmodule:: cinderclient
|
|
|
|
An "image" is a snapshot from which you can create new server instances.
|
|
|
|
From Rackspace's own API documentation:
|
|
|
|
An image is a collection of files used to create or rebuild a server.
|
|
Rackspace provides a number of pre-built OS images by default. You may
|
|
also create custom images from cloud servers you have launched. These
|
|
custom images are useful for backup purposes or for producing "gold"
|
|
server images if you plan to deploy a particular server configuration
|
|
frequently.
|
|
|
|
Classes
|
|
-------
|
|
|
|
.. autoclass:: ImageManager
|
|
:members: get, list, find, findall, create, delete
|
|
|
|
.. autoclass:: Image
|
|
:members: delete
|
|
|
|
.. attribute:: id
|
|
|
|
This image's ID.
|
|
|
|
.. attribute:: name
|
|
|
|
This image's name.
|
|
|
|
.. attribute:: created
|
|
|
|
The date/time this image was created.
|
|
|
|
.. attribute:: updated
|
|
|
|
The date/time this instance was updated.
|
|
|
|
.. attribute:: status
|
|
|
|
The status of this image (usually ``"SAVING"`` or ``ACTIVE``).
|
|
|
|
.. attribute:: progress
|
|
|
|
During saving of an image this'll be set to something between
|
|
0 and 100, representing a rough percentage done.
|
|
|
|
.. attribute:: serverId
|
|
|
|
If this image was created from a :class:`Server` then this attribute
|
|
will be set to the ID of the server whence this image came.
|