ノード削除API
この機能は、Elasticsearch Service、Elastic Cloud Enterprise、およびElastic Cloud on Kubernetesによる間接的な使用を目的としています。直接の使用はサポートされていません。
希望するノードを削除します。
リクエスト
Python
resp = client.perform_request(
"DELETE",
"/_internal/desired_nodes",
)
print(resp)
Js
const response = await client.transport.request({
method: "DELETE",
path: "/_internal/desired_nodes",
});
console.log(response);
コンソール
DELETE /_internal/desired_nodes
説明
このAPIは、希望するノードを削除します。
例
この例では、現在の希望するノードを削除します。
Python
resp = client.perform_request(
"DELETE",
"/_internal/desired_nodes",
)
print(resp)
Js
const response = await client.transport.request({
method: "DELETE",
path: "/_internal/desired_nodes",
});
console.log(response);
コンソール
DELETE /_internal/desired_nodes