Microsoft Azure · Schema

ManagedClusterSKU

The SKU of a managed cluster.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
name string The name of the managed cluster SKU.
tier string The tier of the managed cluster SKU.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-managedclustersku-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedClusterSKU",
  "title": "ManagedClusterSKU",
  "type": "object",
  "description": "The SKU of a managed cluster.",
  "properties": {
    "name": {
      "type": "string",
      "enum": [
        "Base"
      ],
      "description": "The name of the managed cluster SKU.",
      "example": "Base"
    },
    "tier": {
      "type": "string",
      "enum": [
        "Premium",
        "Standard",
        "Free"
      ],
      "description": "The tier of the managed cluster SKU.",
      "example": "Premium"
    }
  }
}