Record
create-terminal-request
Parameters to create-terminal.
record create-terminal-request {
session-id: session-id,
command: string,
args: list<string>,
env: list<env-var>,
cwd: option<string>,
output-byte-limit: option<u64>,
}Fields
| Name | Type | Description |
|---|---|---|
| session-id | session-id | The session this terminal belongs to. |
| command | string | Command to execute. |
| args | list<string> | Arguments. |
| env | list<env-var> | Environment variables. |
| cwd | option<string> | Working directory (absolute path). |
| output-byte-limit | option<u64> | Maximum bytes of output to retain. Once exceeded, output is truncated from the start, on a character boundary. |