Upgrade Kibana, APM, Integrations Server, AppSearch, Enterprise Search inside Deployment
Upgrades a running cluster.
Path parameters
-
Identifier for the Deployment.
-
The kind of stateless resource
Values are
kibana
,apm
,appsearch
,enterprise_search
, orintegrations_server
. -
User-specified RefId for the Resource (or '_main' if there is only one).
Query parameters
-
validate_only boolean
When
true
, returns the update version without performing the upgradeDefault value is
false
.
Responses
-
The upgrade command was issued successfully. Use the "GET" command on the /{deployment_id} resource to monitor progress
-
- The Deployment specified by {deployment_id} cannot be found. (code:
deployments.deployment_not_found
) - The Resource specified by {ref_id} cannot be found. (code:
deployments.deployment_resource_not_found
)
- The Deployment specified by {deployment_id} cannot be found. (code:
POST /deployments/{deployment_id}/{stateless_resource_kind}/{ref_id}/_upgrade
curl \
-X POST https://api.elastic-cloud.com/api/v1/deployments/{deployment_id}/{stateless_resource_kind}/{ref_id}/_upgrade
Response examples (202)
{
"resource_id": "string",
"stack_version": "string"
}
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}