セキュリティインデックス設定の取得
セキュリティ内部インデックスの設定を取得します。
前提条件
- このAPIを使用するには、少なくとも
read_security
クラスタ特権が必要です。
説明
このAPIは、ユーザーが設定可能なセキュリティ内部インデックス(.security
および関連インデックス)の設定を取得することを可能にします。表示されるのは、ユーザーが設定可能なインデックス設定のサブセットのみです。これには以下が含まれます:
index.auto_expand_replicas
index.number_of_replicas
例
セキュリティ設定を取得する例:
Python
resp = client.security.get_settings()
print(resp)
Js
const response = await client.security.getSettings();
console.log(response);
コンソール
GET /_security/settings
設定可能な設定は、セキュリティインデックス設定の更新 APIを使用して変更できます。