class documentation

class OperationState(Enum):

View In Hierarchy

Describes the current state of an operation.

Constant CANCELED The operation was canceled.
Constant FAILED The operation failed.
Constant RUNNING The operation is running.
Constant SUCCEEDED The operation succeeded.
CANCELED: str =

The operation was canceled.

Value
'canceled'
FAILED: str =

The operation failed.

Value
'failed'
RUNNING: str =

The operation is running.

Value
'running'
SUCCEEDED: str =

The operation succeeded.

Value
'succeeded'