Skip to content
Developer Preview

SessionUserShellResult

session/userShell result: immediate. The shell runs off the command worker so a long command cannot stall the command plane; the output arrives as the userShell item’s terminal view event.

  • commandId
  • status
Source

schema/msp/experimental/msp.schema.json#/types/SessionUserShellResult

{
"description": "`session/userShell` result: immediate. The shell runs off the\ncommand worker so a long command cannot stall the command plane; the\noutput arrives as the `userShell` item's terminal view event.",
"properties": {
"commandId": {
"description": "Echoes the client's id.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandStatus",
"description": "Admission status."
}
},
"required": [
"commandId",
"status"
],
"type": "object"
}