UNPKG

277 BJavaScriptView Raw
1const PENDING = 'pending'
2const CREATING = 'creating'
3const BUILDING = 'building'
4const RUNNING = 'running'
5const ERRORED = 'errored'
6const FAILED = 'failed'
7const SUCCEEDED = 'succeeded'
8
9module.exports = {
10 PENDING, CREATING, BUILDING, RUNNING, ERRORED, FAILED, SUCCEEDED
11}