Set settings overrides
editSet settings overrides
editThis endpoint is deprecated and scheduled to be removed in the next major version. Use set resource instances overrides instead.
Overrides the settings for the specified instances in the Elasticsearch cluster.
Request
editPUT /api/v1/clusters/elasticsearch/{cluster_id}/instances/{instance_ids}/settings
Path parameters
editName | Type | Required | Description |
---|---|---|---|
|
|
Y |
The Elasticsearch cluster identifier. |
|
|
Y |
A comma-separated list of instance identifiers. |
Query parameters
editName | Type | Required | Description |
---|---|---|---|
|
|
N |
When |
|
|
N |
After overrides are applied, restarts the instances. |
Request body
edit(ElasticsearchClusterInstanceSettingsOverrides
) (required) The settings to override for the specified instances.
Responses
edit-
200
-
(
ElasticsearchClusterInstanceSettingsOverrides
)Returns the updated settings overrides for the specified instances
-
404
-
One or more of the instances specified at {instance_ids} could not be found. (code:
clusters.instances_not_found
)Headers
-
x-cloud-error-codes
(string
; allowed values: [clusters.instances_not_found
]) - The error codes associated with the response
-
-
449
-
Elevated permissions are required. (code:
root.unauthorized.rbac.elevated_permissions_required
)Headers
-
x-cloud-error-codes
(string
; allowed values: [root.unauthorized.rbac.elevated_permissions_required
]) - The error codes associated with the response
-
Request example
editcurl -XPUT https://{{hostname}}/api/v1/clusters/elasticsearch/{cluster_id}/instances/{instance_ids}/settings \ -H "Authorization: ApiKey $ECE_API_KEY" \ -H 'Content-Type: application/json' \ -d ' { "instance_capacity" : 0, "storage_multiplier" : 0.1 } '