/** * @public * @enum */ export declare const Status: { readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETING: "DELETING"; readonly DEPLOYING: "DEPLOYING"; readonly FAILED: "FAILED"; readonly INITIALIZING: "INITIALIZING"; readonly NONE: "NONE"; readonly STOPPED: "STOPPED"; readonly STOPPING: "STOPPING"; readonly STOP_FAILED: "STOP_FAILED"; readonly SUCCEEDED: "SUCCEEDED"; }; /** * @public */ export type Status = (typeof Status)[keyof typeof Status]; /** * @public * @enum */ export declare const StatusType: { readonly ASYNC_EXECUTIONS: "AsyncExecutions"; readonly DEPLOYMENT: "Deployment"; }; /** * @public */ export type StatusType = (typeof StatusType)[keyof typeof StatusType];