ContainerExecRequest

The container exec request.

AzureCloudContainer InstancesContainersMicrosoftServerless

Properties

Name Type Description
command string The command to be executed.
terminalSize object The size of the terminal.
View JSON Schema on GitHub

JSON Schema

azure-container-instances-container-exec-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-schema/azure-container-instances-container-exec-request-schema.json",
  "title": "ContainerExecRequest",
  "description": "The container exec request.",
  "type": "object",
  "properties": {
    "command": {
      "description": "The command to be executed.",
      "type": "string"
    },
    "terminalSize": {
      "description": "The size of the terminal.",
      "properties": {
        "cols": {
          "description": "The column size of the terminal",
          "type": "integer"
        },
        "rows": {
          "description": "The row size of the terminal",
          "type": "integer"
        }
      },
      "type": "object"
    }
  }
}