Enum for operation states.
Source
class OperationStateEnum extends AbstractEnum
{
/**
* Operation is starting.
*/
public const STARTING = 'starting';
/**
* Operation is processing.
*/
public const PROCESSING = 'processing';
/**
* Operation succeeded.
*/
public const SUCCEEDED = 'succeeded';
/**
* Operation failed.
*/
public const FAILED = 'failed';
/**
* Operation was canceled.
*/
public const CANCELED = 'canceled';
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.