IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete autoscaling policy API
editDelete autoscaling policy API
editThis feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.
Delete autoscaling policy.
Prerequisites
edit-
If the Elasticsearch security features are enabled, you must have the
manage_autoscaling
cluster privilege to use this API. - If the operator privileges feature is enabled, only operator users can use this API.
Description
editThis API deletes an autoscaling policy with the provided name.
Examples
editThis example deletes an autoscaling policy named my_autoscaling_policy
.
response = client.autoscaling.delete_autoscaling_policy( name: 'my_autoscaling_policy' ) puts response
DELETE /_autoscaling/policy/my_autoscaling_policy
The API returns the following result:
{ "acknowledged": true }
This example deletes all autoscaling policies.
response = client.autoscaling.delete_autoscaling_policy( name: '*' ) puts response
DELETE /_autoscaling/policy/*
The API returns the following result:
{ "acknowledged": true }