{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterWindowsProfile", "title": "ManagedClusterWindowsProfile", "type": "object", "description": "Profile for Windows VMs in the managed cluster.", "required": [ "adminUsername" ], "properties": { "adminUsername": { "type": "string", "description": "The administrator username to use for Windows VMs.", "example": "example_value" }, "adminPassword": { "type": "string", "format": "password", "description": "The administrator password to use for Windows VMs.", "example": "example_value" }, "licenseType": { "type": "string", "description": "The license type to use for Windows VMs.", "enum": [ "None", "Windows_Server" ], "example": "None" }, "enableCSIProxy": { "type": "boolean", "description": "Whether to enable CSI proxy.", "example": true } } }