Skip to content

Commit 19a34a8

Browse files
committed
[API] Adds note about Serverless only to project.tags
Generates 469fd6b822a8ad039ffde61fd2ce755205d14292
1 parent 6aa3eee commit 19a34a8

File tree

23 files changed

+23
-22
lines changed

23 files changed

+23
-22
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module Actions
4444
# @option arguments [String] :default_operator The default operator for query string query (AND or OR) Server default: or.
4545
# @option arguments [String] :df The field to use as default where no field prefix is given in the query string
4646
# @option arguments [String, Array<String>] :docvalue_fields A comma-separated list of fields to return as the docvalue representation of a field for each hit
47-
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
47+
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open.
4848
# @option arguments [Boolean] :explain Specify whether to return detailed information about score computation as part of a hit
4949
# @option arguments [Boolean] :ignore_throttled Whether specified concrete, expanded or aliased indices should be ignored when throttled
5050
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)

elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# or `:desc` as a suffix to the column name.
3535
# @option arguments [String, Array<String>] :expand_wildcards The type of index that wildcard patterns can match.
3636
# If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
37-
# It supports comma-separated values, such as `open,hidden`.
37+
# It supports comma-separated values, such as `open,hidden`. Server default: all.
3838
# @option arguments [Time] :master_timeout The period to wait for a connection to the master node.
3939
# If the master node is not available before the timeout expires, the request fails and returns an error.
4040
# To indicated that the request should never timeout, you can set it to `-1`. Server default: 30s.

elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module Actions
3737
#
3838
# @option arguments [String, Array] :index Comma-separated list of data streams, indices, and aliases used to limit the request.
3939
# Supports wildcards (`*`). To target all data streams and indices, omit this parameter or use `*` or `_all`.
40-
# @option arguments [String, Array<String>] :expand_wildcards The type of index that wildcard patterns can match.
40+
# @option arguments [String, Array<String>] :expand_wildcards The type of index that wildcard patterns can match. Server default: all.
4141
# @option arguments [String] :health The health status used to limit returned indices. By default, the response includes indices of any health status.
4242
# @option arguments [Boolean] :include_unloaded_segments If true, the response includes information from segments that are not loaded into memory.
4343
# @option arguments [Boolean] :pri If true, the response only includes information from primary shards.

elasticsearch-api/lib/elasticsearch/api/actions/cluster/health.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# The cluster status is controlled by the worst index status.
3333
#
3434
# @option arguments [String, Array] :index Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (`*`) are supported. To target all data streams and indices in a cluster, omit this parameter or use _all or `*`.
35-
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
35+
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: all.
3636
# @option arguments [String] :level Can be one of cluster, indices or shards. Controls the details level of the health information returned. Server default: cluster.
3737
# @option arguments [Boolean] :local If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the master node.
3838
# @option arguments [Time] :master_timeout Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s.

elasticsearch-api/lib/elasticsearch/api/actions/cluster/state.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module Actions
4040
# @option arguments [String, Array<String>] :metric Limit the information returned to the specified metrics
4141
# @option arguments [String, Array] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
4242
# @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) Server default: true.
43-
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
43+
# @option arguments [String, Array<String>] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open.
4444
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
4545
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
4646
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)

elasticsearch-api/lib/elasticsearch/api/actions/indices/data_streams_stats.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# Wildcard expressions (`*`) are supported.
3030
# To target all data streams in a cluster, omit this parameter or use `*`.
3131
# @option arguments [String, Array<String>] :expand_wildcards Type of data stream that wildcard patterns can match.
32-
# Supports comma-separated values, such as `open,hidden`. Server default: open.
32+
# Supports comma-separated values, such as `open,hidden`. Server default: open,closed.
3333
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3434
# when they occur.
3535
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response

elasticsearch-api/lib/elasticsearch/api/actions/indices/delete.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module Actions
3737
# This behavior applies even if the request targets other open indices. Server default: true.
3838
# @option arguments [String, Array<String>] :expand_wildcards Type of index that wildcard patterns can match.
3939
# If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
40-
# Supports comma-separated values, such as `open,hidden`. Server default: open.
40+
# Supports comma-separated values, such as `open,hidden`. Server default: open,closed.
4141
# @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index.
4242
# @option arguments [Time] :master_timeout Period to wait for a connection to the master node.
4343
# If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s.

elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_lifecycle.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# Removes the data stream lifecycle from a data stream, rendering it not managed by the data stream lifecycle.
2727
#
2828
# @option arguments [String, Array<String>] :name A comma-separated list of data streams of which the data stream lifecycle will be deleted; use `*` to get all data streams (*Required*)
29-
# @option arguments [String, Array<String>] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open)
29+
# @option arguments [String, Array<String>] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) Server default: open.
3030
# @option arguments [Time] :master_timeout Specify timeout for connection to master Server default: 30s.
3131
# @option arguments [Time] :timeout Explicit timestamp for the document
3232
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_stream_options.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# Removes the data stream options from a data stream.
2727
#
2828
# @option arguments [String, Array<String>] :name A comma-separated list of data streams of which the data stream options will be deleted; use `*` to get all data streams (*Required*)
29-
# @option arguments [String, Array<String>] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open)
29+
# @option arguments [String, Array<String>] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) Server default: open.
3030
# @option arguments [Time] :master_timeout Specify timeout for connection to master Server default: 30s.
3131
# @option arguments [Time] :timeout Explicit timestamp for the document
3232
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/indices/exists_alias.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# This behavior applies even if the request targets other open indices. Server default: true.
3333
# @option arguments [String, Array<String>] :expand_wildcards Type of index that wildcard patterns can match.
3434
# If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
35-
# Supports comma-separated values, such as `open,hidden`. Server default: open.
35+
# Supports comma-separated values, such as `open,hidden`. Server default: all.
3636
# @option arguments [Boolean] :ignore_unavailable If `false`, requests that include a missing data stream or index in the target indices or data streams return an error.
3737
# @option arguments [Time] :master_timeout Period to wait for a connection to the master node.
3838
# If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s.

0 commit comments

Comments
 (0)