ManagedClusterSKU

The SKU of a Managed Cluster.

AzureCloudContainersDevOpsKubernetesOrchestration

Properties

Name Type Description
name string The name of a managed cluster SKU.
tier string If not specified, the default is Free. See AKS Pricing Tier for more details.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-kubernetes-service-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",
      "description": "The name of a managed cluster SKU.",
      "enum": [
        "Base",
        "Automatic"
      ],
      "example": "Base"
    },
    "tier": {
      "type": "string",
      "description": "If not specified, the default is Free. See AKS Pricing Tier for more details.",
      "enum": [
        "Free",
        "Standard",
        "Premium"
      ],
      "example": "Free"
    }
  }
}