{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-structure/openapi-upgrade-elasticsearch-domain-response-structure.json", "name": "UpgradeElasticsearchDomainResponse", "description": " Container for response returned by UpgradeElasticsearchDomain operation. ", "type": "object", "properties": { "DomainName": { "$ref": "#/components/schemas/DomainName" }, "TargetVersion": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchVersionString" }, { "description": "The version of Elasticsearch that you intend to upgrade the domain to." } ] }, "PerformCheckOnly": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": " This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed. This will not actually perform the Upgrade. " } ] }, "ChangeProgressDetails": { "$ref": "#/components/schemas/ChangeProgressDetails" } } }