From 94503ea959c740f7ced7a518c6664e33ecf15399 Mon Sep 17 00:00:00 2001 From: Keith Chan <12404772+keithhc2@users.noreply.github.com> Date: Mon, 30 Aug 2021 11:54:46 -0700 Subject: [PATCH] Language tweaks --- _opensearch/rest-api/update-mapping.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_opensearch/rest-api/update-mapping.md b/_opensearch/rest-api/update-mapping.md index 0d0d451c..0108442f 100644 --- a/_opensearch/rest-api/update-mapping.md +++ b/_opensearch/rest-api/update-mapping.md @@ -47,12 +47,12 @@ All update mapping parameters are optional. Parameter | Data Type | Description :--- | :--- | :--- -allow_no_indices | Boolean | If false, the request returns an error if any wildcard expresion or index alias targets any closed or missing indices. Defaults to false. +allow_no_indices | Boolean | Whether to ignore wildcards that don’t match any indices. Default is true. expand_wildcards | String | Expands wildcard expressions to different indices. Combine multiple values with commas. Available values are `all` (match all indices), `open` (match open indices), `closed` (match closed indices), `hidden` (match hidden indices), and `none` (do not accept wildcard expressions), which must be used with `open`, `closed`, or both. Default is `open`. ignore_unavailable | Boolean | If true, OpenSearch does not include missing or closed indices in the response. master_timeout | Time | How long to wait for a connection to the master node. Default is `30s`. timeout | Time | How long to wait for the response to return. Default is `30s`. -write_index_only | Boolean | If true, the specified mappings are applied only to the write index. +write_index_only | Boolean | Whether OpenSearch should apply mapping updates only to the write index. ## Request body