Skip to content

Auto-generated code for 8.18 #2721

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

Open
wants to merge 1 commit into
base: 8.18
Choose a base branch
from
Open
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 @@ -28,6 +28,8 @@ module Actions
# @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 [Boolean] :include_defaults Return all default configurations for the component template (default: false)
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [String] :settings_filter Filter out results, for example to filter out sensitive information. Supports wildcards or full settings keys
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/indices-component-template.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Actions
#
# @option arguments [String] :name The name of the template
# @option arguments [Boolean] :create Whether the index template should only be added if new or can also replace an existing one
# @option arguments [Time] :timeout Explicit operation timeout
# @option arguments [String] :cause User defined reason for create the component template
# @option arguments [Time] :master_timeout Specify timeout for connection to master
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The template definition (*Required*)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module Actions
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, hidden, none, all)
# @option arguments [String] :keep_alive Specific the time to live for the point in time (*Required*)
# @option arguments [Boolean] :allow_partial_search_results Specify whether to tolerate shards missing when creating the point-in-time, or otherwise throw an exception. (default: false)
# @option arguments [Number] :max_concurrent_shard_requests The number of concurrent shard requests per node executed concurrently when opening this point-in-time. This value should be used to limit the impact of opening the point-in-time on the cluster
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body An index_filter specified with the Query DSL
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ module Actions
# @option arguments [Integer] :extent Size, in pixels, of a side of the vector tile.
# @option arguments [Integer] :grid_precision Additional zoom levels available through the aggs layer. Accepts 0-8.
# @option arguments [String] :grid_type Determines the geometry type for features in the aggs layer. (options: grid, point, centroid)
# @option arguments [String] :grid_agg Aggregation used to create a grid for `field`. (options: geotile, geohex)
# @option arguments [Integer] :size Maximum number of features to return in the hits layer. Accepts 0-10000.
# @option arguments [Boolean|long] :track_total_hits Indicate if the number of documents that match the query should be tracked. A number can also be specified, to accurately track the total hit count up to the number.
# @option arguments [Boolean] :with_labels If true, the hits and aggs layers will contain additional point features with suggested label positions for the original features.
Expand Down