{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-update-cluster-kafka-version-request-schema.json", "title": "UpdateClusterKafkaVersionRequest", "description": "UpdateClusterKafkaVersionRequest schema from Amazon MSK API", "type": "object", "properties": { "ConfigurationInfo": { "allOf": [ { "$ref": "#/components/schemas/ConfigurationInfo" }, { "xml": { "name": "configurationInfo" }, "description": "\n
The custom configuration that should be applied on the new version of cluster.
" } ] }, "CurrentVersion": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "currentVersion" }, "description": "\nCurrent cluster version.
" } ] }, "TargetKafkaVersion": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "targetKafkaVersion" }, "description": "\nTarget Kafka version.
" } ] } }, "required": [ "TargetKafkaVersion", "CurrentVersion" ] }