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/bulk.rb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ module Actions
36
36
# @option arguments [Boolean] :require_alias Sets require_alias for all incoming documents. Defaults to unset (false)
37
37
# @option arguments [Boolean] :require_data_stream When true, requires the destination to be a data stream (existing or to-be-created). Default is false
38
38
# @option arguments [Boolean] :list_executed_pipelines Sets list_executed_pipelines for all incoming documents. Defaults to unset (false)
39
+
# @option arguments [Boolean] :include_source_on_error True or false if to include the document source in the error message in case of parsing errors. Defaults to true.
# @option arguments [String|Array] :body The operation definition and data (action-data pairs), separated by newlines. Array of Strings, Header/Data pairs,
41
42
# or the conveniency "combined" format can be passed, refer to Elasticsearch::API::Utils.__bulkify documentation.
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/create.rb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ module Actions
34
34
# @option arguments [Number] :version Explicit version number for concurrency control
35
35
# @option arguments [String] :version_type Specific version type (options: internal, external, external_gte)
36
36
# @option arguments [String] :pipeline The pipeline id to preprocess incoming documents with
37
+
# @option arguments [Boolean] :include_source_on_error True or false if to include the document source in the error message in case of parsing errors. Defaults to true.
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/index.rb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ module Actions
37
37
# @option arguments [String] :pipeline The pipeline id to preprocess incoming documents with
38
38
# @option arguments [Boolean] :require_alias When true, requires destination to be an alias. Default is false
39
39
# @option arguments [Boolean] :require_data_stream When true, requires the destination to be a data stream (existing or to-be-created). Default is false
40
+
# @option arguments [Boolean] :include_source_on_error True or false if to include the document source in the error message in case of parsing errors. Defaults to true.
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/indices/resolve_cluster.rb
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,14 @@ module Elasticsearch
22
22
moduleAPI
23
23
moduleIndices
24
24
moduleActions
25
-
# Resolves the specified index expressions to return information about each cluster, including the local cluster, if included.
25
+
# Resolves the specified index expressions to return information about each cluster. If no index expression is provided, this endpoint will return information about all the remote clusters that are configured on the local cluster.
26
26
#
27
27
# @option arguments [List] :name A comma-separated list of cluster:index names or wildcard expressions
28
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
29
-
# @option arguments [Boolean] :ignore_throttled Whether specified concrete, expanded or aliased indices should be ignored when throttled
30
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
31
-
# @option arguments [String] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) (options: open, closed, hidden, none, all)
28
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed). Only allowed when providing an index expression.
29
+
# @option arguments [Boolean] :ignore_throttled Whether specified concrete, expanded or aliased indices should be ignored when throttled. Only allowed when providing an index expression.
30
+
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified). Only allowed when providing an index expression.
31
+
# @option arguments [String] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open). Only allowed when providing an index expression. (options: open, closed, hidden, none, all)
32
+
# @option arguments [Time] :timeout The maximum time to wait for remote clusters to respond
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/update.rb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ module Actions
37
37
# @option arguments [Number] :if_seq_no only perform the update operation if the last operation that has changed the document has the specified sequence number
38
38
# @option arguments [Number] :if_primary_term only perform the update operation if the last operation that has changed the document has the specified primary term
39
39
# @option arguments [Boolean] :require_alias When true, requires destination is an alias. Default is false
40
+
# @option arguments [Boolean] :include_source_on_error True or false if to include the document source in the error message in case of parsing errors. Defaults to true.
0 commit comments