You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Triggers that can resume a suspended Devbox."""
14
+
15
+
http: Optional[bool] =None
16
+
"""When true, HTTP traffic to a suspended Devbox via tunnel will trigger a resume."""
17
+
18
+
19
+
classLifecycle(BaseModel):
20
+
"""Lifecycle configuration for idle and resume behavior.
21
+
22
+
Configure idle policy via lifecycle.after_idle (if both this and the top-level after_idle are set, they must match) and resume triggers via lifecycle.resume_triggers.
23
+
"""
24
+
25
+
after_idle: Optional[AfterIdle] =None
26
+
"""Configure Devbox lifecycle based on idle activity.
27
+
28
+
If both this and the top-level after_idle are set, they must have the same
"""Triggers that can resume a suspended Devbox."""
16
+
17
+
http: Optional[bool]
18
+
"""When true, HTTP traffic to a suspended Devbox via tunnel will trigger a resume."""
19
+
20
+
21
+
classLifecycle(TypedDict, total=False):
22
+
"""Lifecycle configuration for idle and resume behavior.
23
+
24
+
Configure idle policy via lifecycle.after_idle (if both this and the top-level after_idle are set, they must match) and resume triggers via lifecycle.resume_triggers.
25
+
"""
26
+
27
+
after_idle: Optional[AfterIdle]
28
+
"""Configure Devbox lifecycle based on idle activity.
29
+
30
+
If both this and the top-level after_idle are set, they must have the same
0 commit comments