{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterAutoUpgradeProfile", "title": "ManagedClusterAutoUpgradeProfile", "type": "object", "description": "Auto upgrade profile for a managed cluster.", "properties": { "upgradeChannel": { "type": "string", "description": "The upgrade channel for auto upgrade.", "enum": [ "rapid", "stable", "patch", "node-image", "none" ], "example": "rapid" }, "nodeOSUpgradeChannel": { "type": "string", "description": "The node OS upgrade channel. Manner in which the OS on your nodes is updated.", "enum": [ "None", "Unmanaged", "SecurityPatch", "NodeImage" ], "example": "None" } } }