@@ -36,27 +36,28 @@ class BuildMode(Enum):
3636
3737class PipelineStatus (Enum ):
3838 """
39- Represents the state that this pipeline is currently in.
40-
41- .. code-block:: text
42-
43- Stopped ◄─────────── Stopping ◄───── All states can transition
44- │ ▲ to Stopping by either:
45- /start or /pause │ │ (1) user calling /stop?force=true, or;
46- ▼ │ (2) pipeline encountering a fatal
47- ⌛Provisioning Suspending resource or runtime error,
48- │ ▲ having the system call /stop?force=true
49- ▼ │ /stop effectively
50- ⌛Initializing ─────────────┤ ?force=false
51- │ │
52- ┌─────────┼────────────────────┴─────┐
53- │ ▼ │
54- │ Paused ◄──────► Unavailable │
55- │ │ ▲ ▲ │
56- │ /start │ │ /pause │ │
57- │ ▼ │ │ │
58- │ Running ◄─────────────┘ │
59- └────────────────────────────────────┘
39+ Represents the state that this pipeline is currently in.
40+
41+ .. code-block:: text
42+
43+ Stopped ◄─────────── Stopping ◄───── All states can transition
44+ │ ▲ to Stopping by either:
45+ /start or /pause │ │ (1) user calling /stop?force=true, or;
46+ ▼ │ (2) pipeline encountering a fatal
47+ ⌛Provisioning Suspending resource or runtime error,
48+ │ ▲ having the system call /stop?force=true
49+ ▼ │ /stop effectively
50+ ⌛Initializing ─────────────┤ ?force=false
51+ │ │
52+ ┌─────────┼────────────────────┴─────┐
53+ │ ▼ │
54+ │ Paused ◄──────► Unavailable │
55+ │ │ ▲ ▲ │
56+ │ /start │ │ /pause │ │
57+ │ ▼ │ │ │
58+ │ Running ◄─────────────┘ │
59+ └────────────────────────────────────┘
60+
6061 """
6162
6263 NOT_FOUND = 0
0 commit comments