Azure Container Instances · JSON Structure

Azure Container Instances Container Probe Structure

The container probe, for liveness or readiness

Type: object Properties: 7
AzureCloudContainer InstancesContainersMicrosoftServerless

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

Properties

exec failureThreshold httpGet initialDelaySeconds periodSeconds successThreshold timeoutSeconds

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-probe-structure.json",
  "description": "The container probe, for liveness or readiness",
  "type": "object",
  "properties": {
    "exec": {
      "$ref": "#/definitions/ContainerExec",
      "description": "The execution command to probe"
    },
    "failureThreshold": {
      "description": "The failure threshold.",
      "format": "int32",
      "type": "integer"
    },
    "httpGet": {
      "$ref": "#/definitions/ContainerHttpGet",
      "description": "The Http Get settings to probe"
    },
    "initialDelaySeconds": {
      "description": "The initial delay seconds.",
      "format": "int32",
      "type": "integer"
    },
    "periodSeconds": {
      "description": "The period seconds.",
      "format": "int32",
      "type": "integer"
    },
    "successThreshold": {
      "description": "The success threshold.",
      "format": "int32",
      "type": "integer"
    },
    "timeoutSeconds": {
      "description": "The timeout seconds.",
      "format": "int32",
      "type": "integer"
    }
  },
  "name": "ContainerProbe"
}