Restores a shutdown resource
Restores a shutdown resource belonging to a given Deployment.
Path parameters
-
Identifier for the Deployment
-
The kind of resource
Values are
elasticsearch
,kibana
,apm
,appsearch
,enterprise_search
, orintegrations_server
. -
User-specified RefId for the Resource (or '_main' if there is only one)
Query parameters
-
restore_snapshot boolean
Whether or not to restore a snapshot for those resources that allow it.
Default value is
false
.
Responses
-
Standard Deployment Resource Crud Response
-
- The Resource does not have a pending plan. (code:
deployments.resource_does_not_have_a_pending_plan
) - The resource is not shut down. (code:
deployments.resource_not_shutdown
)
- The Resource does not have a pending plan. (code:
-
The Deployment specified by {deployment_id} cannot be found. (code:
deployments.deployment_not_found
)
POST /deployments/{deployment_id}/{resource_kind}/{ref_id}/_restore
curl \
-X POST https://api.elastic-cloud.com/api/v1/deployments/{deployment_id}/{resource_kind}/{ref_id}/_restore
Response examples (200)
{
"id": "string",
"kind": "string",
"ref_id": "string"
}
Response examples (400)
# Headers
x-cloud-error-codes: deployments.resource_does_not_have_a_pending_plan
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (404)
# Headers
x-cloud-error-codes: deployments.deployment_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}