Azure Container Instances · JSON Structure

Azure Container Instances Container Exec Request Structure

The container exec request.

Type: object Properties: 2
AzureCloudContainer InstancesContainersMicrosoftServerless

ContainerExecRequest is a JSON Structure definition published by Azure Container Instances, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

command terminalSize

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-structure/azure-container-instances-container-exec-request-structure.json",
  "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"
    }
  },
  "name": "ContainerExecRequest"
}