UpgradeElasticsearchDomainResponse

Container for response returned by UpgradeElasticsearchDomain operation.

AnalyticsElasticsearchSearch

Properties

Name Type Description
DomainName object
TargetVersion object
PerformCheckOnly object
ChangeProgressDetails object
View JSON Schema on GitHub

JSON Schema

openapi-upgrade-elasticsearch-domain-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-upgrade-elasticsearch-domain-response-schema.json",
  "title": "UpgradeElasticsearchDomainResponse",
  "description": " Container for response returned by <code> <a>UpgradeElasticsearchDomain</a> </code> 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"
    }
  }
}