Container

A container instance.

AzureCloudContainer InstancesContainersMicrosoftServerless

Properties

Name Type Description
name string The user-provided name of the container instance.
properties object The properties of the container instance.
View JSON Schema on GitHub

JSON Schema

azure-container-instances-container-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-schema.json",
  "title": "Container",
  "description": "A container instance.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The user-provided name of the container instance.",
      "type": "string"
    },
    "properties": {
      "$ref": "#/definitions/ContainerProperties",
      "description": "The properties of the container instance.",
      "x-ms-client-flatten": true
    }
  },
  "required": [
    "properties",
    "name"
  ]
}