{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterAPIServerAccessProfile", "title": "ManagedClusterAPIServerAccessProfile", "type": "object", "description": "Access profile for managed cluster API server.", "properties": { "authorizedIPRanges": { "type": "array", "items": { "type": "string" }, "description": "IP ranges authorized to access the Kubernetes API server.", "example": [] }, "enablePrivateCluster": { "type": "boolean", "description": "Whether to create the cluster as a private cluster or not.", "example": true }, "privateDNSZone": { "type": "string", "description": "The private DNS zone mode for the cluster.", "example": "example_value" }, "enablePrivateClusterPublicFQDN": { "type": "boolean", "description": "Whether to create a public FQDN for private cluster or not.", "example": true }, "disableRunCommand": { "type": "boolean", "description": "Whether to disable run command for the cluster.", "example": true }, "enableVnetIntegration": { "type": "boolean", "description": "Whether to enable API server VNET integration for the cluster.", "example": true }, "subnetId": { "type": "string", "description": "The subnet to be used when API server VNET integration is enabled.", "example": "500123" } } }