Repository: libcloud Updated Branches: refs/heads/trunk 3a8d7ff5f -> a03e9f31d
Add new base paused node state. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/298f5db6 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/298f5db6 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/298f5db6 Branch: refs/heads/trunk Commit: 298f5db6ef42d22338d60fc3582cc31cdd7c4114 Parents: 3a8d7ff Author: Tomaz Muraus <[email protected]> Authored: Wed Aug 20 16:49:40 2014 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Wed Aug 20 16:49:40 2014 +0200 ---------------------------------------------------------------------- libcloud/compute/types.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/298f5db6/libcloud/compute/types.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/types.py b/libcloud/compute/types.py index e296172..fbe9317 100644 --- a/libcloud/compute/types.py +++ b/libcloud/compute/types.py @@ -189,6 +189,7 @@ class NodeState(object): :cvar SUSPENDED: Node is suspended. :cvar ERROR: Node is an error state. Usually no operations can be performed on the node once it ends up in the error state. + :cvar PAUSED: Node is paused. :cvar UNKNOWN: Node state is unknown. """ RUNNING = 0 @@ -199,6 +200,7 @@ class NodeState(object): STOPPED = 5 SUSPENDED = 6 ERROR = 7 + PAUSED = 8 class Architecture(object):
