セキュリティインデックス設定の更新
セキュリティ内部インデックスの設定を更新します。
前提条件
- このAPIを使用するには、少なくとも
manage_security
クラスター権限が必要です。
リクエストボディ
security
- (オプション、オブジェクト)APIを介して構成されたネイティブ領域ユーザーおよびロールを含む、ほとんどのセキュリティ構成に使用されるインデックスの設定。
security-tokens
- (オプション、オブジェクト)トークンを保存するために使用されるインデックスの設定。
security-profile
- (オプション、オブジェクト)プロファイル情報を保存するために使用されるインデックスの設定。
説明
このAPIは、ユーザーがセキュリティ内部インデックス(.security
および関連インデックス)の設定を変更できるようにします。変更可能な設定のサブセットのみが許可されています。これには、
index.auto_expand_replicas
index.number_of_replicas
## 例
セキュリティ設定を変更する例:
#### Python
``````python
resp = client.perform_request(
"PUT",
"/_security/settings",
headers={"Content-Type": "application/json"},
body={
"security": {
"index.auto_expand_replicas": "0-all"
},
"security-tokens": {
"index.auto_expand_replicas": "0-all"
},
"security-profile": {
"index.auto_expand_replicas": "0-all"
}
},
)
print(resp)
`
Js
const response = await client.transport.request({
method: "PUT",
path: "/_security/settings",
body: {
security: {
"index.auto_expand_replicas": "0-all",
},
"security-tokens": {
"index.auto_expand_replicas": "0-all",
},
"security-profile": {
"index.auto_expand_replicas": "0-all",
},
},
});
console.log(response);
コンソール
PUT /_security/settings
{
"security": {
"index.auto_expand_replicas": "0-all"
},
"security-tokens": {
"index.auto_expand_replicas": "0-all"
},
"security-profile": {
"index.auto_expand_replicas": "0-all"
}
}
構成された設定は、セキュリティインデックス設定の取得 APIを使用して取得できます。特定のインデックスがシステムで使用されていない場合でも、その設定が提供されていると、リクエストは拒否されます - このAPIは、これらのインデックスが使用される前に設定を構成することをまだサポートしていません。