Home | Trees | Indices | Help |
---|
|
|
|||
DeviceAction An action that will be carried out in the future on a Device. |
|||
ActionCreateDevice Action representing the creation of a new device. |
|||
ActionDestroyDevice An action representing the deletion of an existing device. |
|||
ActionResizeDevice An action representing the resizing of an existing device. |
|||
ActionCreateFormat An action representing creation of a new filesystem. |
|||
ActionDestroyFormat An action representing the removal of an existing filesystem. |
|||
ActionResizeFormat An action representing the resizing of an existing filesystem. |
|||
ActionMigrateFormat An action representing the migration of an existing filesystem. |
|
|||
|
|||
|
|||
|
|
|||
_ = lambda x:
|
|||
log = logging.getLogger("storage")
|
|||
ACTION_TYPE_NONE = 0
|
|||
ACTION_TYPE_DESTROY = 1000
|
|||
ACTION_TYPE_RESIZE = 500
|
|||
ACTION_TYPE_MIGRATE = 250
|
|||
ACTION_TYPE_CREATE = 100
|
|||
action_strings = {ACTION_TYPE_NONE: "None", ACTION_TYPE_DESTRO
|
|||
ACTION_OBJECT_NONE = 0
|
|||
ACTION_OBJECT_FORMAT = 1
|
|||
ACTION_OBJECT_DEVICE = 2
|
|||
object_strings = {ACTION_OBJECT_NONE: "None", ACTION_OBJECT_FO
|
|||
RESIZE_SHRINK = 88
|
|||
RESIZE_GROW = 89
|
|||
resize_strings = {RESIZE_SHRINK: "Shrink", RESIZE_GROW: "Grow"}
|
|
action_strings
|
object_strings
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Mar 2 14:52:22 2012 | http://epydoc.sourceforge.net |