diff options
Diffstat (limited to 'docs/ref/flavors.rst')
-rw-r--r-- | docs/ref/flavors.rst | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/ref/flavors.rst b/docs/ref/flavors.rst new file mode 100644 index 0000000..12b396a --- /dev/null +++ b/docs/ref/flavors.rst @@ -0,0 +1,35 @@ +Flavors +======= + +From Rackspace's API documentation: + + A flavor is an available hardware configuration for a server. Each flavor + has a unique combination of disk space, memory capacity and priority for + CPU time. + +Classes +------- + +.. currentmodule:: cinderclient + +.. autoclass:: FlavorManager + :members: get, list, find, findall + +.. autoclass:: Flavor + :members: + + .. attribute:: id + + This flavor's ID. + + .. attribute:: name + + A human-readable name for this flavor. + + .. attribute:: ram + + The amount of RAM this flavor has, in MB. + + .. attribute:: disk + + The amount of disk space this flavor has, in MB |