Microsoft Azure · Schema

ManagedCluster

Managed cluster resource.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string Resource ID.
name string Resource name.
type string Resource type.
location string The geo-location where the resource lives.
tags object Resource tags.
sku object
identity object
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-managedcluster-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedCluster",
  "title": "ManagedCluster",
  "type": "object",
  "description": "Managed cluster resource.",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "Resource ID.",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "readOnly": true,
      "description": "Resource name.",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "Resource type.",
      "example": "example_value"
    },
    "location": {
      "type": "string",
      "description": "The geo-location where the resource lives.",
      "example": "example_value"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Resource tags.",
      "example": "example_value"
    },
    "sku": {
      "$ref": "#/components/schemas/ManagedClusterSKU"
    },
    "identity": {
      "$ref": "#/components/schemas/ManagedClusterIdentity"
    },
    "properties": {
      "$ref": "#/components/schemas/ManagedClusterProperties"
    }
  },
  "required": [
    "location"
  ]
}