{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterWorkloadAutoScalerProfile", "title": "ManagedClusterWorkloadAutoScalerProfile", "type": "object", "description": "Workload Auto-scaler profile for the managed cluster.", "properties": { "keda": { "type": "object", "description": "KEDA (Kubernetes Event-driven Autoscaling) settings.", "properties": { "enabled": { "type": "boolean", "description": "Whether to enable KEDA." } }, "example": "example_value" }, "verticalPodAutoscaler": { "type": "object", "description": "VPA (Vertical Pod Autoscaler) settings.", "properties": { "enabled": { "type": "boolean", "description": "Whether to enable VPA." }, "controlledValues": { "type": "string", "description": "Controls which resource value autoscaler acts on.", "enum": [ "RequestsAndLimits", "RequestsOnly" ] } }, "example": "example_value" } } }