Azure Container Instances · JSON Structure

Azure Container Instances Gpu Resource Structure

The GPU resource.

Type: object Properties: 2 Required: 2
AzureCloudContainer InstancesContainersMicrosoftServerless

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

Properties

count sku

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-gpu-resource-structure.json",
  "description": "The GPU resource.",
  "type": "object",
  "properties": {
    "count": {
      "description": "The count of the GPU resource.",
      "format": "int32",
      "type": "integer"
    },
    "sku": {
      "description": "The SKU of the GPU resource.",
      "enum": [
        "K80",
        "P100",
        "V100"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "GpuSku"
      }
    }
  },
  "required": [
    "count",
    "sku"
  ],
  "name": "GpuResource"
}