Skip to content

Auto-generated code for main #2554

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module Actions
# support SLA of official GA features.
#
# @option arguments [String] :connector_id The unique identifier of the connector to be returned.
# @option arguments [Boolean] :include_deleted A flag indicating whether to return connectors that have been soft-deleted.
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/get-connector-api.html
Expand All @@ -52,7 +53,7 @@ def get(arguments = {})

method = Elasticsearch::API::HTTP_GET
path = "_connector/#{Utils.__listify(_connector_id)}"
params = {}
params = Utils.process_params(arguments)

Elasticsearch::API::Response.new(
perform_request(method, path, params, body, headers, request_opts)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module Actions
# @option arguments [List] :connector_name A comma-separated list of connector names to fetch connector documents for
# @option arguments [List] :service_type A comma-separated list of connector service types to fetch connector documents for
# @option arguments [String] :query A search string for querying connectors, filtering results by matching against connector names, descriptions, and index names
# @option arguments [Boolean] :include_deleted A flag indicating whether to return connectors that have been soft-deleted.
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/list-connector-api.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ module Actions
#
# @option arguments [List] :name The comma separated names of the index templates
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
# @option arguments [Time] :master_timeout Timeout for waiting for new cluster state in case it is blocked
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false) *Deprecated*
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-template-exists-v1.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ module Actions
#
# @option arguments [String] :name A pattern that returned template names must match
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
# @option arguments [Time] :master_timeout Timeout for waiting for new cluster state in case it is blocked
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false) *Deprecated*
# @option arguments [Boolean] :include_defaults Return all relevant default configurations for the index template (default: false)
# @option arguments [Hash] :headers Custom HTTP headers
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ module Actions
#
# @option arguments [List] :name The comma separated names of the index templates
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
# @option arguments [Time] :master_timeout Timeout for waiting for new cluster state in case it is blocked
# @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false) *Deprecated*
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-template-v1.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ module Actions
# @option arguments [Time] :master_timeout Specify timeout for connection to master
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the newly created rollover index before the operation returns.
# @option arguments [Boolean] :lazy If set to true, the rollover action will only mark a data stream to signal that it needs to be rolled over at the next write. Only allowed on data streams.
# @option arguments [Boolean] :target_failure_store If set to true, the rollover action will be applied on the failure store of the data stream.
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The conditions that needs to be met for executing rollover
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ module Actions
# @option arguments [String] :type The type of trial license to generate (default: "trial")
# @option arguments [Boolean] :acknowledge whether the user has acknowledged acknowledge messages (default: false)
# @option arguments [Time] :master_timeout Timeout for processing on master node
# @option arguments [Time] :timeout Timeout for acknowledgement of update from all nodes in cluster
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/start-trial.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module XPack
module Actions
# Retrieves information about the installed X-Pack features.
#
# @option arguments [Boolean] :human Defines whether additional human-readable information is included in the response. In particular, it adds descriptions and a tag line. The default value is true.
# @option arguments [List] :categories Comma-separated list of info categories. Can be any of: build, license, features
# @option arguments [Boolean] :accept_enterprise If this param is used it must be set to true *Deprecated*
# @option arguments [Hash] :headers Custom HTTP headers
Expand Down
Loading