@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
17 lines (16 loc) • 401 B
TypeScript
/**
* Status of the standby pool encoding
* @export
* @enum {string}
*/
export declare enum LiveStandbyPoolEncodingStatus {
TO_BE_CREATED = "TO_BE_CREATED",
CREATING = "CREATING",
PREPARING = "PREPARING",
READY = "READY",
TO_BE_DELETED = "TO_BE_DELETED",
DELETING = "DELETING",
ACQUIRED = "ACQUIRED",
ERROR = "ERROR"
}
export default LiveStandbyPoolEncodingStatus;