| |
- enum.Enum(builtins.object)
-
- Status
class Status(enum.Enum) |
|
Status(value, names=None, *, module=None, qualname=None, type=None, start=1)
Status is an Enum defining the valid values of the status of an execution/deployment |
|
- Method resolution order:
- Status
- enum.Enum
- builtins.object
Data and other attributes defined here:
- COMPLETED = <Status.COMPLETED: 'COMPLETED'>
- DEAD = <Status.DEAD: 'DEAD'>
- PENDING = <Status.PENDING: 'PENDING'>
- RUNNING = <Status.RUNNING: 'RUNNING'>
- STOPPED = <Status.STOPPED: 'STOPPED'>
- STOPPING = <Status.STOPPING: 'STOPPING'>
- UNKNOWN = <Status.UNKNOWN: 'UNKNOWN'>
Data descriptors inherited from enum.Enum:
- name
- The name of the Enum member.
- value
- The value of the Enum member.
Readonly properties inherited from enum.EnumMeta:
- __members__
- Returns a mapping of member name->value.
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.
| |