| |
- enum.Enum(builtins.object)
-
- TargetStatus
class TargetStatus(enum.Enum) |
|
TargetStatus(value, names=None, *, module=None, qualname=None, type=None, start=1)
TargetStatus is an Enum defining the valid values of the target status of an execution/deployment |
|
- Method resolution order:
- TargetStatus
- enum.Enum
- builtins.object
Data and other attributes defined here:
- COMPLETED = <TargetStatus.COMPLETED: 'COMPLETED'>
- DELETED = <TargetStatus.DELETED: 'DELETED'>
- RUNNING = <TargetStatus.RUNNING: 'RUNNING'>
- STOPPED = <TargetStatus.STOPPED: 'STOPPED'>
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.
| |