获取自动扩缩策略 API
编辑获取自动扩缩策略 API
编辑此功能旨在供 Elasticsearch Service、 Elastic Cloud Enterprise 和 Elastic Cloud on Kubernetes 间接使用。不支持直接使用。
获取 自动扩缩策略。
请求
编辑resp = client.autoscaling.get_autoscaling_policy( name="<name>", ) print(resp)
const response = await client.autoscaling.getAutoscalingPolicy({ name: "<name>", }); console.log(response);
GET /_autoscaling/policy/<name>
描述
编辑此 API 获取具有所提供名称的自动扩缩策略。
示例
编辑此示例获取名为 my_autoscaling_policy
的自动扩缩策略。
resp = client.autoscaling.get_autoscaling_policy( name="my_autoscaling_policy", ) print(resp)
const response = await client.autoscaling.getAutoscalingPolicy({ name: "my_autoscaling_policy", }); console.log(response);
GET /_autoscaling/policy/my_autoscaling_policy
API 返回以下结果
{ "roles": <roles>, "deciders": <deciders> }