{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LKEClusterUpdateRequest", "title": "LKEClusterUpdateRequest", "type": "object", "properties": { "label": { "type": "string", "minLength": 1, "maxLength": 32, "description": "The label for the cluster." }, "tags": { "type": "array", "items": { "type": "string" }, "description": "Tags for the cluster." }, "k8s_version": { "type": "string", "description": "The target Kubernetes version." }, "control_plane": { "type": "object", "properties": { "high_availability": { "type": "boolean", "description": "Whether to enable high availability." } } } } }