| |
- enum.Enum(builtins.object)
-
- IasCmdExitStatus
class IasCmdExitStatus(enum.Enum) |
|
IasCmdExitStatus(value, names=None, *, module=None, qualname=None, type=None, start=1)
Th exit status of the ocmmand.
It is the python implementation of the java org.eso.ias.command.CommandExitStatus |
|
- Method resolution order:
- IasCmdExitStatus
- enum.Enum
- builtins.object
Data and other attributes defined here:
- ERROR = <IasCmdExitStatus.ERROR: 2>
- OK = <IasCmdExitStatus.OK: (0,)>
- REJECTED = <IasCmdExitStatus.REJECTED: 1>
- UNKNOWN = <IasCmdExitStatus.UNKNOWN: 3>
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.
| |