Whether the shell runs inside a managed PTY session or as an independent background process
| 8362 | |
| 8363 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 8364 | class TaskShellInfoAttachmentMode(Enum): |
| 8365 | """Whether the shell runs inside a managed PTY session or as an independent background |
| 8366 | process |
| 8367 | """ |
| 8368 | ATTACHED = "attached" |
| 8369 | DETACHED = "detached" |
| 8370 | |
| 8371 | class TaskInfoType(Enum): |
| 8372 | AGENT = "agent" |