Skip to content

Commit d9b3ee4

Browse files
committed
[API] generates 463a5d25a46a6de207259ffbdc8c179ba40c34ba
1 parent 9d7e742 commit d9b3ee4

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,16 @@ module Actions
4040
# from the cluster state of the master node. In both cases the coordinating
4141
# node will send requests for further information to each selected node.
4242
# @option arguments [Time] :master_timeout Period to wait for a connection to the master node. Server default: 30s.
43+
# @option arguments [String, Array<String>] :expand_wildcards Type of index that wildcard expressions can match. If the request can target data streams, this argument
44+
# determines whether wildcard expressions match hidden data streams. Supports comma-separated values,
45+
# such as open,hidden. Server default: open.
46+
# @option arguments [Boolean] :allow_no_indices If false, the request returns an error if any wildcard expression, index alias, or _all value targets only
47+
# missing or closed indices. This behavior applies even if the request targets other open indices. For example,
48+
# a request targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar. Server default: true.
49+
# @option arguments [Boolean] :ignore_throttled If true, concrete, expanded or aliased indices are ignored when frozen.
50+
# @option arguments [Boolean] :ignore_unavailable If true, missing or closed indices are not included in the response.
51+
# @option arguments [Boolean] :allow_closed If true, allow closed indices to be returned in the response otherwise if false, keep the legacy behaviour
52+
# of throwing an exception if index pattern matches closed indices
4353
# @option arguments [String] :format Specifies the format to return the columnar data in, can be set to
4454
# `text`, `json`, `cbor`, `yaml`, or `smile`. Server default: text.
4555
# @option arguments [Boolean] :help When set to `true` will output available columns. This option

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,15 @@ module API
2323
module Indices
2424
module Actions
2525
# Downsample an index.
26-
# Aggregate a time series (TSDS) index and store pre-computed statistical summaries (`min`, `max`, `sum`, `value_count` and `avg`) for each metric field grouped by a configured time interval.
26+
# Downsamples a time series (TSDS) index and reduces its size by keeping the last value or by pre-aggregating metrics:
27+
# - When running in `aggregate` mode, it pre-calculates and stores statistical summaries (`min`, `max`, `sum`, `value_count` and `avg`)
28+
# for each metric field grouped by a configured time interval and their dimensions.
29+
# - When running in `last_value` mode, it keeps the last value for each metric in the configured interval and their dimensions.
2730
# For example, a TSDS index that contains metrics sampled every 10 seconds can be downsampled to an hourly index.
2831
# All documents within an hour interval are summarized and stored as a single document in the downsample index.
2932
# NOTE: Only indices in a time series data stream are supported.
3033
# Neither field nor document level security can be defined on the source index.
31-
# The source index must be read only (`index.blocks.write: true`).
34+
# The source index must be read-only (`index.blocks.write: true`).
3235
# This functionality is Experimental and may be changed or removed
3336
# completely in a future release. Elastic will take a best effort approach
3437
# to fix any issues, but experimental features are not subject to the

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ module API
2323
module Inference
2424
module Actions
2525
# Delete an inference endpoint
26+
# This API requires the manage_inference cluster privilege (the built-in `inference_admin` role grants this privilege).
2627
#
2728
# @option arguments [String] :task_type The task type
2829
# @option arguments [String] :inference_id The inference identifier. (*Required*)
29-
# @option arguments [Boolean] :dry_run When true, the endpoint is not deleted and a list of ingest processors which reference this endpoint is returned.
30+
# @option arguments [Boolean] :dry_run When true, checks the semantic_text fields and inference processors that reference the endpoint and returns them in a list, but does not delete the endpoint.
3031
# @option arguments [Boolean] :force When true, the inference endpoint is forcefully deleted even if it is still being used by ingest processors or semantic text fields.
3132
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3233
# when they occur.

elasticsearch-api/lib/elasticsearch/api/actions/inference/get.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module API
2323
module Inference
2424
module Actions
2525
# Get an inference endpoint
26+
# This API requires the `monitor_inference` cluster privilege (the built-in `inference_admin` and `inference_user` roles grant this privilege).
2627
#
2728
# @option arguments [String] :task_type The task type
2829
# @option arguments [String] :inference_id The inference Id

elasticsearch-api/lib/elasticsearch/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
module Elasticsearch
1919
module API
2020
VERSION = '9.3.0'.freeze
21-
ES_SPECIFICATION_COMMIT = '98c5b22290079f35175cc17cccc4f621c12441c0'.freeze
21+
ES_SPECIFICATION_COMMIT = '463a5d25a46a6de207259ffbdc8c179ba40c34ba'.freeze
2222
end
2323
end

0 commit comments

Comments
 (0)