セキュリティインデックス設定の取得

セキュリティ内部インデックスの設定を取得します。

前提条件

  • このAPIを使用するには、少なくともread_securityクラスタ特権が必要です。

説明

このAPIは、ユーザーが設定可能なセキュリティ内部インデックス(.securityおよび関連インデックス)の設定を取得することを可能にします。表示されるのは、ユーザーが設定可能なインデックス設定のサブセットのみです。これには以下が含まれます:

  • index.auto_expand_replicas
  • index.number_of_replicas

セキュリティ設定を取得する例:

Python

  1. resp = client.security.get_settings()
  2. print(resp)

Js

  1. const response = await client.security.getSettings();
  2. console.log(response);

コンソール

  1. GET /_security/settings

設定可能な設定は、セキュリティインデックス設定の更新 APIを使用して変更できます。