Skip to content

Commit 0d4e3c3

Browse files
committed
[API] Updates generated code to faf5d46d7276ac2068ec0cf130fde1126bebacf9
1 parent d5a1b84 commit 0d4e3c3

File tree

74 files changed

+159
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+159
-200
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/cat/tasks.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ module Actions
2525
# Get task information.
2626
# Get information about tasks currently running in the cluster.
2727
# IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the task management API.
28-
# This functionality is Experimental and may be changed or removed
29-
# completely in a future release. Elastic will take a best effort approach
30-
# to fix any issues, but experimental features are not subject to the
31-
# support SLA of official GA features.
28+
# This functionality is in technical preview and may be changed or removed in a future
29+
# release. Elastic will apply best effort to fix any issues, but features in technical
30+
# preview are not subject to the support SLA of official GA features.
3231
#
3332
# @option arguments [Array<String>] :actions The task action names, which are used to limit the response.
3433
# @option arguments [Boolean] :detailed If `true`, the response includes detailed information about shard recoveries.

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ 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)
47-
# @option arguments [Time] :master_timeout Specify timeout for connection to master Server default: 30s.
47+
# @option arguments [Time] :master_timeout Timeout for waiting for new cluster state in case it is blocked Server default: 30s.
4848
# @option arguments [Integer] :wait_for_metadata_version Wait for the metadata version to be equal or greater than the specified metadata version
4949
# @option arguments [Time] :wait_for_timeout The maximum time to wait for wait_for_metadata_version before timing out
5050
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/connector/check_in.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ module Connector
2424
module Actions
2525
# Check in a connector.
2626
# Update the `last_seen` field in the connector and set it to the current timestamp.
27-
# This functionality is Experimental and may be changed or removed
28-
# completely in a future release. Elastic will take a best effort approach
29-
# to fix any issues, but experimental features are not subject to the
30-
# support SLA of official GA features.
27+
# This functionality is in technical preview and may be changed or removed in a future
28+
# release. Elastic will apply best effort to fix any issues, but features in technical
29+
# preview are not subject to the support SLA of official GA features.
3130
#
3231
# @option arguments [String] :connector_id The unique identifier of the connector to be checked in (*Required*)
3332
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/connector/sync_job_check_in.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ module Actions
2626
# Check in a connector sync job and set the `last_seen` field to the current time before updating it in the internal index.
2727
# To sync data using self-managed connectors, you need to deploy the Elastic connector service on your own infrastructure.
2828
# This service runs automatically on Elastic Cloud for Elastic managed connectors.
29-
# This functionality is Experimental and may be changed or removed
30-
# completely in a future release. Elastic will take a best effort approach
31-
# to fix any issues, but experimental features are not subject to the
32-
# support SLA of official GA features.
29+
# This functionality is in technical preview and may be changed or removed in a future
30+
# release. Elastic will apply best effort to fix any issues, but features in technical
31+
# preview are not subject to the support SLA of official GA features.
3332
#
3433
# @option arguments [String] :connector_sync_job_id The unique identifier of the connector sync job to be checked in. (*Required*)
3534
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/connector/sync_job_claim.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ module Actions
2929
# It supports the implementation of services that utilize the connector protocol to communicate with Elasticsearch.
3030
# To sync data using self-managed connectors, you need to deploy the Elastic connector service on your own infrastructure.
3131
# This service runs automatically on Elastic Cloud for Elastic managed connectors.
32-
# This functionality is Experimental and may be changed or removed
33-
# completely in a future release. Elastic will take a best effort approach
34-
# to fix any issues, but experimental features are not subject to the
35-
# support SLA of official GA features.
32+
# This functionality is in technical preview and may be changed or removed in a future
33+
# release. Elastic will apply best effort to fix any issues, but features in technical
34+
# preview are not subject to the support SLA of official GA features.
3635
#
3736
# @option arguments [String] :connector_sync_job_id The unique identifier of the connector sync job. (*Required*)
3837
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

elasticsearch-api/lib/elasticsearch/api/actions/connector/sync_job_error.rb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ module Actions
2626
# Set the `error` field for a connector sync job and set its `status` to `error`.
2727
# To sync data using self-managed connectors, you need to deploy the Elastic connector service on your own infrastructure.
2828
# This service runs automatically on Elastic Cloud for Elastic managed connectors.
29-
# This functionality is Experimental and may be changed or removed
30-
# completely in a future release. Elastic will take a best effort approach
31-
# to fix any issues, but experimental features are not subject to the
32-
# support SLA of official GA features.
29+
# This functionality is in technical preview and may be changed or removed in a future
30+
# release. Elastic will apply best effort to fix any issues, but features in technical
31+
# preview are not subject to the support SLA of official GA features.
3332
#
3433
# @option arguments [String] :connector_sync_job_id The unique identifier for the connector sync job. (*Required*)
3534
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors

0 commit comments

Comments
 (0)