You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/simulate/ingest.rb
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,10 @@ module Actions
45
45
# If you specify this parameter in the request path, it is used for any documents that do not explicitly specify an index argument.
46
46
# @option arguments [String] :pipeline The pipeline to use as the default pipeline.
47
47
# This value can be used to override the default pipeline of the index.
48
-
# @option arguments [String] :merge_type The method to be used when merging mapping_additions existing mappings. Mappings can be merged in the way mapping changes are merged into an existing index, or in
49
-
# the way mapping changes are merged into existing templates. Some changes are allowed to templates that are not allowed to indices. For example,
50
-
# a field cannot be changed to an incompatible type in an index, but can in a template. Server default: index.
48
+
# @option arguments [String] :merge_type The mapping merge type if mapping overrides are being provided in mapping_addition.
49
+
# The allowed values are one of index or template.
50
+
# The index option merges mappings the way they would be merged into an existing index.
51
+
# The template option merges mappings the way they would be merged into a template. Server default: index.
51
52
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
52
53
# when they occur.
53
54
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response
0 commit comments