123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- [role="xpack"]
- [testenv="platinum"]
- [[autoscaling-get-autoscaling-policy]]
- === Get autoscaling policy API
- ++++
- <titleabbrev>Get autoscaling policy</titleabbrev>
- ++++
- Get autoscaling policy.
- [[autoscaling-get-autoscaling-policy-request]]
- ==== {api-request-title}
- [source,console]
- --------------------------------------------------
- PUT /_autoscaling/policy/my_autoscaling_policy
- {
- "policy": {
- "deciders": {
- "always": {
- }
- }
- }
- }
- --------------------------------------------------
- // TESTSETUP
- //////////////////////////
- [source,console]
- --------------------------------------------------
- DELETE /_autoscaling/policy/my_autoscaling_policy
- --------------------------------------------------
- // TEST
- // TEARDOWN
- //////////////////////////
- [source,console]
- --------------------------------------------------
- GET /_autoscaling/policy/<name>
- --------------------------------------------------
- // TEST[s/<name>/my_autoscaling_policy/]
- [[autoscaling-get-autoscaling-policy-prereqs]]
- ==== {api-prereq-title}
- * If the {es} {security-features} are enabled, you must have
- `manage_autoscaling` cluster privileges. For more information, see
- <<security-privileges>>.
- [[autoscaling-get-autoscaling-policy-desc]]
- ==== {api-description-title}
- This API gets an autoscaling policy with the provided name.
- [[autoscaling-get-autoscaling-policy-examples]]
- ==== {api-examples-title}
- This example gets an autoscaling policy named `my_autosaling_policy`.
- [source,console]
- --------------------------------------------------
- GET /_autoscaling/policy/my_autoscaling_policy
- --------------------------------------------------
- // TEST
- The API returns the following result:
- [source,console-result]
- --------------------------------------------------
- {
- "policy": {
- "deciders": <deciders>
- }
- }
- --------------------------------------------------
- // TEST[s/<deciders>/$body.policy.deciders/]
|