opensearch-ruby 4.0.0.pre.beta.2 → 4.0.0.pre.beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/USER_GUIDE.md +23 -5
- data/lib/opensearch/api/actions/cluster/allocation_explain.rb +1 -1
- data/lib/opensearch/api/actions/cluster/delete_component_template.rb +1 -1
- data/lib/opensearch/api/actions/cluster/exists_component_template.rb +1 -1
- data/lib/opensearch/api/actions/cluster/get_component_template.rb +2 -2
- data/lib/opensearch/api/actions/cluster/get_settings.rb +2 -2
- data/lib/opensearch/api/actions/cluster/health.rb +4 -4
- data/lib/opensearch/api/actions/cluster/pending_tasks.rb +1 -1
- data/lib/opensearch/api/actions/cluster/post_voting_config_exclusions.rb +2 -2
- data/lib/opensearch/api/actions/cluster/put_component_template.rb +2 -2
- data/lib/opensearch/api/actions/cluster/put_decommission_awareness.rb +1 -1
- data/lib/opensearch/api/actions/cluster/put_settings.rb +2 -2
- data/lib/opensearch/api/actions/cluster/put_weighted_routing.rb +1 -1
- data/lib/opensearch/api/actions/cluster/reroute.rb +2 -2
- data/lib/opensearch/api/actions/cluster/state.rb +3 -3
- data/lib/opensearch/api/actions/cluster/stats.rb +2 -2
- data/lib/opensearch/api/actions/ingest/delete_pipeline.rb +4 -4
- data/lib/opensearch/api/actions/ingest/get_pipeline.rb +3 -3
- data/lib/opensearch/api/actions/ingest/processor_grok.rb +2 -2
- data/lib/opensearch/api/actions/ingest/put_pipeline.rb +5 -5
- data/lib/opensearch/api/actions/ingest/simulate.rb +3 -3
- data/lib/opensearch/api/actions/ltr/stats.rb +41 -0
- data/lib/opensearch/api/actions/sm/create_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/delete_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/explain_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/get_policies.rb +5 -5
- data/lib/opensearch/api/actions/sm/get_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/start_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/stop_policy.rb +1 -1
- data/lib/opensearch/api/actions/sm/update_policy.rb +1 -1
- data/lib/opensearch/api/actions/snapshot/cleanup_repository.rb +3 -3
- data/lib/opensearch/api/actions/snapshot/clone.rb +6 -6
- data/lib/opensearch/api/actions/snapshot/create.rb +6 -6
- data/lib/opensearch/api/actions/snapshot/create_repository.rb +6 -6
- data/lib/opensearch/api/actions/snapshot/delete.rb +3 -3
- data/lib/opensearch/api/actions/snapshot/delete_repository.rb +4 -4
- data/lib/opensearch/api/actions/snapshot/get.rb +5 -5
- data/lib/opensearch/api/actions/snapshot/get_repository.rb +4 -4
- data/lib/opensearch/api/actions/snapshot/restore.rb +5 -5
- data/lib/opensearch/api/actions/snapshot/status.rb +4 -4
- data/lib/opensearch/api/actions/snapshot/verify_repository.rb +3 -3
- data/lib/opensearch/api/actions/tasks/cancel.rb +5 -5
- data/lib/opensearch/api/actions/tasks/get.rb +3 -3
- data/lib/opensearch/api/actions/tasks/list.rb +7 -7
- data/lib/opensearch/transport/client.rb +15 -3
- data/lib/opensearch/version.rb +1 -1
- data/lib/opensearch.rb +4 -0
- data.tar.gz.sig +0 -0
- metadata +3 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52165e3bcc6883923f6bbfc57aeaf73b0cd9d054983804de6432baece83483ee
|
4
|
+
data.tar.gz: 0eb577153a23b0d91f091e901e8a209b6a880da271a5e426a27586bdccaa2710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 900fd3c53f3b222fece0968e1094a87f5ce2cd6a7174d8a54470d74a19af5db6982351459d5efdedd03545ac824123daefb2373ae109a263fca50bbd755ba357
|
7
|
+
data.tar.gz: c72d67452b64da318baf2d9f71b2aff32ebb7c0e6f1eb493b5c91ddd7ab3b54590108b56dcc2ce5a705868cbf2c7772742029d55a85629de7a42cea129ce52e2
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/USER_GUIDE.md
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
- [Basic Usage](#basic-usage)
|
4
4
|
- [OpenSearch DSL](#opensearch-dsl)
|
5
5
|
- [Guides by Topics](#guides-by-topics)
|
6
|
+
- [Using a Request Signer](#using-a-request-signer)
|
6
7
|
- [Amazon OpenSearch Service](#amazon-opensearch-service)
|
7
8
|
|
8
9
|
# User Guide
|
@@ -24,12 +25,12 @@ bundle install
|
|
24
25
|
Import the client:
|
25
26
|
|
26
27
|
```ruby
|
27
|
-
require 'opensearch'
|
28
|
+
require 'opensearch-ruby'
|
28
29
|
```
|
29
30
|
|
30
31
|
## Basic Usage
|
31
32
|
```ruby
|
32
|
-
require 'opensearch'
|
33
|
+
require 'opensearch-ruby'
|
33
34
|
|
34
35
|
client = OpenSearch::Client.new(
|
35
36
|
host: 'https://localhost:9200',
|
@@ -114,8 +115,8 @@ puts response
|
|
114
115
|
The `opensearch-dsl` library is designed as a group of standalone Ruby modules, classes and DSL methods, which provide an idiomatic way to build complex search definitions
|
115
116
|
|
116
117
|
```ruby
|
117
|
-
require 'opensearch'
|
118
|
-
require 'opensearch
|
118
|
+
require 'opensearch-ruby'
|
119
|
+
require 'opensearch-dsl'
|
119
120
|
include OpenSearch::DSL
|
120
121
|
|
121
122
|
response = client.search index: index_name, body: search {
|
@@ -142,8 +143,25 @@ response = client.search index: index_name, body: search {
|
|
142
143
|
- [Transport Options](guides/transport_options.md)
|
143
144
|
- [Custom HTTP Requests](guides/json.md)
|
144
145
|
|
146
|
+
|
147
|
+
## Using a Request Signer
|
148
|
+
The OpenSearch ruby client supports request signing as an authentication mechanism. When instantiating a client, you can pass a request signer object to sign requests. This object is often created via a 3rd party library such as `opensearch-aws-sigv4`, but you can also create your own (Check the [DEVELOPER_GUIDE](./DEVELOPER_GUIDE.md) for more details). Below is a very simple example of a request signer object that simply signs the request with a timestamp:
|
149
|
+
|
150
|
+
```ruby
|
151
|
+
require 'opensearch-ruby'
|
152
|
+
|
153
|
+
client = OpenSearch::Client.new(
|
154
|
+
host: 'https://localhost:9200',
|
155
|
+
request_signer: Struct.new(:signer) do
|
156
|
+
def self.sign_request(**args)
|
157
|
+
args[:headers].merge({ 'X-signature' => Time.now.utc })
|
158
|
+
end
|
159
|
+
end
|
160
|
+
)
|
161
|
+
```
|
162
|
+
|
145
163
|
## Amazon OpenSearch Service
|
146
164
|
|
147
|
-
Requests to [OpenSearch Service and OpenSearch Serverless](https://docs.aws.amazon.com/opensearch-service/index.html) must be signed using the AWS signing protocol.
|
165
|
+
Requests to [OpenSearch Service and OpenSearch Serverless](https://docs.aws.amazon.com/opensearch-service/index.html) must be signed using the AWS signing protocol. The `opensearch-aws-sigv4` gem provides a request signer object that can be passed to the `OpenSearch::Client` during instantiation to sign requests.
|
148
166
|
|
149
167
|
For more information, checkout the [USER_GUIDE](https://github.com/opensearch-project/opensearch-ruby-aws-sigv4/blob/main/USER_GUIDE.md) of [opensearch-aws-sigv4 gem](https://github.com/opensearch-project/opensearch-ruby-aws-sigv4).
|
@@ -16,7 +16,7 @@ module OpenSearch
|
|
16
16
|
# Explains how shards are allocated in the current cluster and provides an explanation for why unassigned shards can't be allocated to a node.
|
17
17
|
#
|
18
18
|
# @option args [Boolean] :include_disk_info When `true`, returns information about disk usage and shard sizes.
|
19
|
-
# @option args [Boolean] :include_yes_decisions When `true`, returns any `YES` decisions in the allocation explanation.
|
19
|
+
# @option args [Boolean] :include_yes_decisions When `true`, returns any `YES` decisions in the allocation explanation. `YES` decisions indicate when a particular shard allocation attempt was successful for the given node.
|
20
20
|
# @option args [Hash] :body The index, shard, and primary flag for which to generate an explanation. Leave this empty to generate an explanation for the first unassigned shard.
|
21
21
|
def allocation_explain(args = {})
|
22
22
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -16,7 +16,7 @@ module OpenSearch
|
|
16
16
|
# Deletes a component template.
|
17
17
|
#
|
18
18
|
# @option args [String] :name *Required* The name of the component template to delete. Supports wildcard (*) expressions.
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
21
21
|
# @option args [String] :timeout A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
def delete_component_template(args = {})
|
@@ -16,7 +16,7 @@ module OpenSearch
|
|
16
16
|
# Returns information about whether a particular component template exist.
|
17
17
|
#
|
18
18
|
# @option args [String] :name *Required* The name of the component template. Wildcard (*) expressions are supported.
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [Boolean] :local When `true`, the request retrieves information from the local node only. When `false, information is retrieved from the cluster manager node.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
def exists_component_template(args = {})
|
@@ -15,8 +15,8 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns one or more component templates.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
-
# @option args [Boolean] :flat_settings
|
18
|
+
# @option args [String] :cluster_manager_timeout (default: 30s) The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
|
+
# @option args [Boolean] :flat_settings Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`.
|
20
20
|
# @option args [Boolean] :local When `true`, the request retrieves information from the local node only. When `false`, information is retrieved from the cluster manager node.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
# @option args [String] :name The name of the component template to retrieve. Wildcard (`*`) expressions are supported.
|
@@ -15,8 +15,8 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns cluster settings.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
-
# @option args [Boolean] :flat_settings
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
|
+
# @option args [Boolean] :flat_settings Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`.
|
20
20
|
# @option args [Boolean] :include_defaults When `true`, returns default cluster settings from the local node.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
# @option args [String] :timeout A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
@@ -16,13 +16,13 @@ module OpenSearch
|
|
16
16
|
# Returns basic information about the health of the cluster.
|
17
17
|
#
|
18
18
|
# @option args [String] :awareness_attribute The name of the awareness attribute for which to return the cluster health status (for example, `zone`). Applicable only if `level` is set to `awareness_attributes`.
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
20
|
-
# @option args [Enumerable<String>, String] :expand_wildcards Specifies the type of index that wildcard expressions can match. Supports comma-separated values.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
|
+
# @option args [Enumerable<String>, String] :expand_wildcards (default: open) Specifies the type of index that wildcard expressions can match. Supports comma-separated values.
|
21
21
|
# @option args [String] :level (default: cluster) Controls the amount of detail included in the cluster health response.
|
22
22
|
# @option args [Boolean] :local Whether to return information from the local node only instead of from the cluster manager node.
|
23
23
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
24
|
-
# @option args [String] :timeout
|
25
|
-
# @option args [Integer, String] :wait_for_active_shards Waits until the specified number of shards is active before returning a response. Use `all` for all shards.
|
24
|
+
# @option args [String] :timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
25
|
+
# @option args [Integer, String] :wait_for_active_shards (default: 0) Waits until the specified number of shards is active before returning a response. Use `all` for all shards.
|
26
26
|
# @option args [String] :wait_for_events Waits until all currently queued events with the given priority are processed.
|
27
27
|
# @option args [Boolean] :wait_for_no_initializing_shards Whether to wait until there are no initializing shards in the cluster.
|
28
28
|
# @option args [Boolean] :wait_for_no_relocating_shards Whether to wait until there are no relocating shards in the cluster.
|
@@ -16,7 +16,7 @@ module OpenSearch
|
|
16
16
|
# Returns a list of pending cluster-level tasks, such as index creation, mapping updates,
|
17
17
|
# or new allocations.
|
18
18
|
#
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [Boolean] :local When `true`, the request retrieves information from the local node only. When `false`, information is retrieved from the cluster manager node.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
def pending_tasks(args = {})
|
@@ -15,8 +15,8 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Updates the cluster voting configuration by excluding certain node IDs or names.
|
17
17
|
#
|
18
|
-
# @option args [Enumerable<String>, String] :node_ids A comma-separated list of node IDs to exclude from the voting configuration. When using this setting, you cannot also specify `node_names`.
|
19
|
-
# @option args [Enumerable<String>, String] :node_names A comma-separated list of node names to exclude from the voting configuration. When using this setting, you cannot also specify `node_ids`.
|
18
|
+
# @option args [Enumerable<String>, String] :node_ids A comma-separated list of node IDs to exclude from the voting configuration. When using this setting, you cannot also specify `node_names`. Either `node_ids` or `node_names` are required to receive a valid response.
|
19
|
+
# @option args [Enumerable<String>, String] :node_names A comma-separated list of node names to exclude from the voting configuration. When using this setting, you cannot also specify `node_ids`. Either `node_ids` or `node_names` are required to receive a valid response.
|
20
20
|
# @option args [String] :timeout When adding a voting configuration exclusion, the API waits for the specified nodes to be excluded from the voting configuration before returning a response. If the timeout expires before the appropriate condition is satisfied, the request fails and returns an error.
|
21
21
|
def post_voting_config_exclusions(args = {})
|
22
22
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -15,8 +15,8 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Creates or updates a component template.
|
17
17
|
#
|
18
|
-
# @option args [String] :name *Required* The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :name *Required* The name of the component template to create. OpenSearch includes the following built-in component templates: `logs-mappings`, `logs-settings`, `metrics-mappings`, `metrics-settings`, `synthetics-mapping`, and `synthetics-settings`. OpenSearch uses these templates to configure backing indexes for its data streams. If you want to overwrite one of these templates, set the replacement template `version` to a higher value than the current version. If you want to disable all built-in component and index templates, set `stack.templates.enabled` to `false` using the [Cluster Update Settings API](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-settings/).
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [Boolean] :create When `true`, this request cannot replace or update existing component templates.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
# @option args [String] :timeout A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
@@ -16,7 +16,7 @@ module OpenSearch
|
|
16
16
|
# Decommissions a cluster zone based on awareness. This can greatly benefit multi-zone deployments, where awareness attributes can aid in applying new upgrades to a cluster in a controlled fashion.
|
17
17
|
#
|
18
18
|
# @option args [String] :awareness_attribute_name *Required* The name of the awareness attribute.
|
19
|
-
# @option args [String] :awareness_attribute_value *Required* The value of the awareness attribute.
|
19
|
+
# @option args [String] :awareness_attribute_value *Required* The value of the awareness attribute. For example, if you have shards allocated in two different zones, you can give each zone a value of `zone-a` or `zoneb`. The cluster decommission operation decommissions the zone listed in the method.
|
20
20
|
def put_decommission_awareness(args = {})
|
21
21
|
args = Utils.clone_and_normalize_arguments(args)
|
22
22
|
raise ArgumentError, "Required argument 'awareness_attribute_name' missing" if args['awareness_attribute_name'].nil?
|
@@ -15,8 +15,8 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Updates the cluster settings.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
-
# @option args [Boolean] :flat_settings
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
|
+
# @option args [Boolean] :flat_settings Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`.
|
20
20
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
21
21
|
# @option args [String] :timeout A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
# @option args [Hash] :body *Required* The cluster settings to update.
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Updates weighted shard routing weights.
|
17
17
|
#
|
18
|
-
# @option args [String] :attribute *Required* The name of
|
18
|
+
# @option args [String] :attribute *Required* The name of awareness attribute, usually `zone`.
|
19
19
|
# @option args [Hash] :body
|
20
20
|
def put_weighted_routing(args = {})
|
21
21
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -15,9 +15,9 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Allows to manually change the allocation of individual shards in the cluster.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
19
|
# @option args [Boolean] :dry_run When `true`, the request simulates the operation and returns the resulting state.
|
20
|
-
# @option args [Boolean] :explain When `true`, the response contains an explanation of why certain commands can or cannot be executed.
|
20
|
+
# @option args [Boolean] :explain When `true`, the response contains an explanation of why reroute certain commands can or cannot be executed.
|
21
21
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
22
22
|
# @option args [Enumerable<String>, String] :metric Limits the information returned to the specified metrics.
|
23
23
|
# @option args [Boolean] :retry_failed When `true`, retries shard allocation if it was blocked because of too many subsequent failures.
|
@@ -16,15 +16,15 @@ module OpenSearch
|
|
16
16
|
# Returns comprehensive information about the state of the cluster.
|
17
17
|
#
|
18
18
|
# @option args [Boolean] :allow_no_indices Whether to ignore a wildcard index expression that resolves into no concrete indexes. This includes the `_all` string or when no indexes have been specified.
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [Enumerable<String>, String] :expand_wildcards Specifies the type of index that wildcard expressions can match. Supports comma-separated values.
|
21
|
-
# @option args [Boolean] :flat_settings
|
21
|
+
# @option args [Boolean] :flat_settings Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`.
|
22
22
|
# @option args [Boolean] :ignore_unavailable Whether the specified concrete indexes should be ignored when unavailable (missing or closed).
|
23
23
|
# @option args [Boolean] :local Whether to return information from the local node only instead of from the cluster manager node.
|
24
24
|
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
|
25
25
|
# @option args [Integer] :wait_for_metadata_version Wait for the metadata version to be equal or greater than the specified metadata version.
|
26
26
|
# @option args [String] :wait_for_timeout The maximum time to wait for `wait_for_metadata_version` before timing out.
|
27
|
-
# @option args [Enumerable<String>] :metric Limits the information returned to only the specified
|
27
|
+
# @option args [Enumerable<String>] :metric Limits the information returned to only the [specified metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#metric-groups).
|
28
28
|
# @option args [Enumerable<String>, String] :index A comma-separated list of data streams, indexes, and aliases used to limit the request. Supports wildcards (`*`). To target all data streams and indexes, omit this parameter or use `*` or `_all`.
|
29
29
|
def state(args = {})
|
30
30
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -15,9 +15,9 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns a high-level overview of cluster statistics.
|
17
17
|
#
|
18
|
-
# @option args [Boolean] :flat_settings
|
18
|
+
# @option args [Boolean] :flat_settings Whether to return settings in the flat form, which can improve readability, especially for heavily nested settings. For example, the flat form of `"cluster": { "max_shards_per_node": 500 }` is `"cluster.max_shards_per_node": "500"`.
|
19
19
|
# @option args [String] :timeout The amount of time to wait for each node to respond. If a node does not respond before its timeout expires, the response does not include its stats. However, timed out nodes are included in the response's `_nodes.failed` property. Defaults to no timeout.
|
20
|
-
# @option args [Enumerable<String>] :index_metric A comma-separated list of index metric groups, for example, `docs,store`.
|
20
|
+
# @option args [Enumerable<String>] :index_metric A comma-separated list of [index metric groups](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/#index-metric-groups), for example, `docs,store`.
|
21
21
|
# @option args [Enumerable<String>] :metric Limit the information returned to the specified metrics.
|
22
22
|
# @option args [Enumerable<String>, String] :node_id A comma-separated list of node IDs used to filter results. Supports [node filters](https://opensearch.org/docs/latest/api-reference/nodes-apis/index/#node-filters).
|
23
23
|
def stats(args = {})
|
@@ -13,12 +13,12 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Ingest
|
15
15
|
module Actions
|
16
|
-
# Deletes
|
16
|
+
# Deletes an ingest pipeline.
|
17
17
|
#
|
18
|
-
# @option args [String] :id *Required*
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :id *Required* The pipeline ID or wildcard expression of pipeline IDs used to limit the request. To delete all ingest pipelines in a cluster, use a value of `*`.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time allowed to establish a connection to the cluster manager node.
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
|
21
|
-
# @option args [String] :timeout
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
22
|
def delete_pipeline(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
24
24
|
raise ArgumentError, "Required argument 'id' missing" if args['id'].nil?
|
@@ -13,11 +13,11 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Ingest
|
15
15
|
module Actions
|
16
|
-
# Returns
|
16
|
+
# Returns an ingest pipeline.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time allowed to establish a connection to the cluster manager node.
|
19
19
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
|
20
|
-
# @option args [String] :id
|
20
|
+
# @option args [String] :id A comma-separated list of pipeline IDs to retrieve. Wildcard (`*`) expressions are supported. To get all ingest pipelines, omit this parameter or use `*`.
|
21
21
|
def get_pipeline(args = {})
|
22
22
|
args = Utils.clone_and_normalize_arguments(args)
|
23
23
|
_id = args.delete('id')
|
@@ -13,9 +13,9 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Ingest
|
15
15
|
module Actions
|
16
|
-
# Returns a list of
|
16
|
+
# Returns a list of built-in grok patterns.
|
17
17
|
#
|
18
|
-
# @option args [Boolean] :s
|
18
|
+
# @option args [Boolean] :s Determines how to sort returned grok patterns by key name.
|
19
19
|
def processor_grok(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
headers = args.delete('headers') || {}
|
@@ -13,13 +13,13 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Ingest
|
15
15
|
module Actions
|
16
|
-
# Creates or updates
|
16
|
+
# Creates or updates an ingest pipeline.
|
17
17
|
#
|
18
|
-
# @option args [String] :id *Required* ID of the ingest pipeline
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :id *Required* The ID of the ingest pipeline.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time allowed to establish a connection to the cluster manager node.
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
|
21
|
-
# @option args [String] :timeout
|
22
|
-
# @option args [Hash] :body *Required* The ingest definition
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
|
+
# @option args [Hash] :body *Required* The ingest definition.
|
23
23
|
def put_pipeline(args = {})
|
24
24
|
args = Utils.clone_and_normalize_arguments(args)
|
25
25
|
raise ArgumentError, "Required argument 'id' missing" if args['id'].nil?
|
@@ -13,10 +13,10 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Ingest
|
15
15
|
module Actions
|
16
|
-
#
|
16
|
+
# Simulates an ingest pipeline with example documents.
|
17
17
|
#
|
18
|
-
# @option args [Boolean] :verbose
|
19
|
-
# @option args [String] :id
|
18
|
+
# @option args [Boolean] :verbose When `true`, the response includes output data for each processor in the pipeline
|
19
|
+
# @option args [String] :id The pipeline to test. If you don't specify a `pipeline` in the request body, this parameter is required.
|
20
20
|
# @option args [Hash] :body *Required* The simulate definition
|
21
21
|
def simulate(args = {})
|
22
22
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# SPDX-License-Identifier: Apache-2.0
|
2
|
+
#
|
3
|
+
# The OpenSearch Contributors require contributions made to
|
4
|
+
# this file be licensed under the Apache-2.0 license or a
|
5
|
+
# compatible open source license.
|
6
|
+
|
7
|
+
# This file is generated from the OpenSearch REST API spec.
|
8
|
+
# Do not modify it by hand. Instead, modify the generator or the spec.
|
9
|
+
|
10
|
+
# frozen_string_literal: true
|
11
|
+
|
12
|
+
module OpenSearch
|
13
|
+
module API
|
14
|
+
module Ltr
|
15
|
+
module Actions
|
16
|
+
# Provides information about the current status of the LTR plugin.
|
17
|
+
#
|
18
|
+
# @option args [Enumerable<String>] :node_id Comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes.
|
19
|
+
# @option args [String] :timeout The time in milliseconds to wait for a response.
|
20
|
+
# @option args [Enumerable<String>] :stat Comma-separated list of stats to retrieve; use `_all` or empty string to retrieve all stats.
|
21
|
+
def stats(args = {})
|
22
|
+
args = Utils.clone_and_normalize_arguments(args)
|
23
|
+
_node_id = args.delete('node_id')
|
24
|
+
_stat = args.delete('stat')
|
25
|
+
|
26
|
+
headers = args.delete('headers') || {}
|
27
|
+
body = args.delete('body')
|
28
|
+
method = 'GET'
|
29
|
+
url = Utils.build_url('_plugins/_ltr', _node_id, 'stats', _stat)
|
30
|
+
|
31
|
+
Utils.validate_query_params! args, STATS_QUERY_PARAMS
|
32
|
+
transport.perform_request(method, url, args, body, headers).body
|
33
|
+
end
|
34
|
+
|
35
|
+
STATS_QUERY_PARAMS = Set.new(%w[
|
36
|
+
timeout
|
37
|
+
]).freeze
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Creates a snapshot management policy.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
# @option args [Hash] :body
|
20
20
|
def create_policy(args = {})
|
21
21
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Deletes a snapshot management policy.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
def delete_policy(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
raise ArgumentError, "Required argument 'policy_name' missing" if args['policy_name'].nil?
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Explains the state of the snapshot management policy.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
def explain_policy(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
raise ArgumentError, "Required argument 'policy_name' missing" if args['policy_name'].nil?
|
@@ -15,11 +15,11 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Retrieves all snapshot management policies with optional pagination and filtering.
|
17
17
|
#
|
18
|
-
# @option args [Integer] :from
|
19
|
-
# @option args [String] :queryString
|
20
|
-
# @option args [Integer] :size The number of policies to return.
|
21
|
-
# @option args [String] :sortField The field to sort on.
|
22
|
-
# @option args [String] :sortOrder (default: asc) The order
|
18
|
+
# @option args [Integer] :from (default: 0) The index to retrieve snapshot management policies from.
|
19
|
+
# @option args [String] :queryString Filters the returned snapshot management policies based on query string.
|
20
|
+
# @option args [Integer] :size The number of snapshot management policies to return.
|
21
|
+
# @option args [String] :sortField The name of the query field to sort on.
|
22
|
+
# @option args [String] :sortOrder (default: asc) The order to sort the snapshot management policy result.
|
23
23
|
def get_policies(args = {})
|
24
24
|
args = Utils.clone_and_normalize_arguments(args)
|
25
25
|
headers = args.delete('headers') || {}
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Retrieves a specific snapshot management policy by name.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management name.
|
19
19
|
def get_policy(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
raise ArgumentError, "Required argument 'policy_name' missing" if args['policy_name'].nil?
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Starts a snapshot management policy.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
def start_policy(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
raise ArgumentError, "Required argument 'policy_name' missing" if args['policy_name'].nil?
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Stops a snapshot management policy.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
def stop_policy(args = {})
|
20
20
|
args = Utils.clone_and_normalize_arguments(args)
|
21
21
|
raise ArgumentError, "Required argument 'policy_name' missing" if args['policy_name'].nil?
|
@@ -15,7 +15,7 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Updates an existing snapshot management policy. Requires `if_seq_no` and `if_primary_term`.
|
17
17
|
#
|
18
|
-
# @option args [String] :policy_name *Required* The
|
18
|
+
# @option args [String] :policy_name *Required* The snapshot management policy name.
|
19
19
|
# @option args [Integer] :if_primary_term *Required* The primary term of the policy to update.
|
20
20
|
# @option args [Integer] :if_seq_no *Required* The sequence number of the policy to update.
|
21
21
|
# @option args [Hash] :body
|
@@ -13,12 +13,12 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
# Removes stale data from repository.
|
16
|
+
# Removes any stale data from a snapshot repository.
|
17
17
|
#
|
18
18
|
# @option args [String] :repository *Required* Snapshot repository to clean up.
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node.
|
21
|
-
# @option args [String] :timeout
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
22
|
def cleanup_repository(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
24
24
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -13,14 +13,14 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
#
|
16
|
+
# Creates a clone of all or part of a snapshot in the same repository as the original snapshot.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :snapshot *Required* The name of the snapshot
|
20
|
-
# @option args [String] :target_snapshot *Required* The name of the cloned snapshot
|
21
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name of repository which will contain the snapshots clone.
|
19
|
+
# @option args [String] :snapshot *Required* The name of the original snapshot.
|
20
|
+
# @option args [String] :target_snapshot *Required* The name of the cloned snapshot.
|
21
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
22
22
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
23
|
-
# @option args [Hash] :body *Required* The snapshot clone definition
|
23
|
+
# @option args [Hash] :body *Required* The snapshot clone definition.
|
24
24
|
def clone(args = {})
|
25
25
|
args = Utils.clone_and_normalize_arguments(args)
|
26
26
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -13,14 +13,14 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
# Creates a snapshot
|
16
|
+
# Creates a snapshot within an existing repository.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :snapshot *Required*
|
20
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name of the repository where the snapshot will be stored.
|
19
|
+
# @option args [String] :snapshot *Required* The name of the snapshot. Must be unique in the repository.
|
20
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
21
21
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
|
22
|
-
# @option args [Boolean] :wait_for_completion
|
23
|
-
# @option args [Hash] :body The snapshot definition
|
22
|
+
# @option args [Boolean] :wait_for_completion When `true`, the request returns a response when the snapshot is complete. When `false`, the request returns a response when the snapshot initializes.
|
23
|
+
# @option args [Hash] :body The snapshot definition.
|
24
24
|
def create(args = {})
|
25
25
|
args = Utils.clone_and_normalize_arguments(args)
|
26
26
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -13,14 +13,14 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
# Creates a repository.
|
16
|
+
# Creates a snapshot repository.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name for the newly registered repository.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
21
|
-
# @option args [String] :timeout
|
22
|
-
# @option args [Boolean] :verify
|
23
|
-
# @option args [Hash] :body *Required* The repository definition
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
|
+
# @option args [Boolean] :verify When `true`, verifies the creation of the snapshot repository.
|
23
|
+
# @option args [Hash] :body *Required* The repository definition.
|
24
24
|
def create_repository(args = {})
|
25
25
|
args = Utils.clone_and_normalize_arguments(args)
|
26
26
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -15,9 +15,9 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Deletes a snapshot.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :snapshot *Required* A comma-separated list of snapshot names
|
20
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name of the snapshot repository to delete.
|
19
|
+
# @option args [String] :snapshot *Required* A comma-separated list of snapshot names to delete from the repository.
|
20
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
21
21
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
22
22
|
def delete(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
@@ -13,12 +13,12 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
# Deletes a repository.
|
16
|
+
# Deletes a snapshot repository.
|
17
17
|
#
|
18
|
-
# @option args [Enumerable<String>, String] :repository *Required*
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [Enumerable<String>, String] :repository *Required* The name of the snapshot repository to unregister. Wildcard (`*`) patterns are supported.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
21
|
-
# @option args [String] :timeout
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
22
|
def delete_repository(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
24
24
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -15,12 +15,12 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns information about a snapshot.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [Enumerable<String>, String] :snapshot *Required*
|
20
|
-
# @option args [String] :cluster_manager_timeout
|
21
|
-
# @option args [Boolean] :ignore_unavailable
|
18
|
+
# @option args [String] :repository *Required* A comma-separated list of snapshot repository names used to limit the request. Wildcard (*) expressions are supported.
|
19
|
+
# @option args [Enumerable<String>, String] :snapshot *Required* A comma-separated list of snapshot names to retrieve. Also accepts wildcard expressions. (`*`). - To get information about all snapshots in a registered repository, use a wildcard (`*`) or `_all`. - To get information about any snapshots that are currently running, use `_current`.
|
20
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
21
|
+
# @option args [Boolean] :ignore_unavailable When `false`, the request returns an error for any snapshots that are unavailable.
|
22
22
|
# @option args [String] :master_timeout DEPRECATED Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.
|
23
|
-
# @option args [Boolean] :verbose
|
23
|
+
# @option args [Boolean] :verbose When `true`, returns additional information about each snapshot such as the version of OpenSearch which took the snapshot, the start and end times of the snapshot, and the number of shards contained in the snapshot.
|
24
24
|
def get(args = {})
|
25
25
|
args = Utils.clone_and_normalize_arguments(args)
|
26
26
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -13,12 +13,12 @@ module OpenSearch
|
|
13
13
|
module API
|
14
14
|
module Snapshot
|
15
15
|
module Actions
|
16
|
-
# Returns information about a repository.
|
16
|
+
# Returns information about a snapshot repository.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
-
# @option args [Boolean] :local
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
|
+
# @option args [Boolean] :local Whether to get information from the local node.
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
21
|
-
# @option args [Enumerable<String>, String] :repository A comma-separated list of repository names
|
21
|
+
# @option args [Enumerable<String>, String] :repository A comma-separated list of repository names.
|
22
22
|
def get_repository(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
24
24
|
_repository = args.delete('repository')
|
@@ -15,12 +15,12 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Restores a snapshot.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :snapshot *Required*
|
20
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name of the repository containing the snapshot
|
19
|
+
# @option args [String] :snapshot *Required* The name of the snapshot to restore.
|
20
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
21
21
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
22
|
-
# @option args [Boolean] :wait_for_completion
|
23
|
-
# @option args [Hash] :body
|
22
|
+
# @option args [Boolean] :wait_for_completion -| Whether to return a response after the restore operation has completed. When `false`, the request returns a response when the restore operation initializes. When `true`, the request returns a response when the restore operation completes.
|
23
|
+
# @option args [Hash] :body Determines which settings and indexes to restore when restoring a snapshot
|
24
24
|
def restore(args = {})
|
25
25
|
args = Utils.clone_and_normalize_arguments(args)
|
26
26
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -15,11 +15,11 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns information about the status of a snapshot.
|
17
17
|
#
|
18
|
-
# @option args [String] :cluster_manager_timeout
|
19
|
-
# @option args [Boolean] :ignore_unavailable Whether to ignore unavailable snapshots,
|
18
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
19
|
+
# @option args [Boolean] :ignore_unavailable Whether to ignore any unavailable snapshots, When `false`, a `SnapshotMissingException` is thrown.
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
21
|
-
# @option args [String] :repository
|
22
|
-
# @option args [Enumerable<String>, String] :snapshot A comma-separated list of snapshot names
|
21
|
+
# @option args [String] :repository The name of the repository containing the snapshot.
|
22
|
+
# @option args [Enumerable<String>, String] :snapshot A comma-separated list of snapshot names.
|
23
23
|
def status(args = {})
|
24
24
|
args = Utils.clone_and_normalize_arguments(args)
|
25
25
|
_repository = args.delete('repository')
|
@@ -15,10 +15,10 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Verifies a repository.
|
17
17
|
#
|
18
|
-
# @option args [String] :repository *Required*
|
19
|
-
# @option args [String] :cluster_manager_timeout
|
18
|
+
# @option args [String] :repository *Required* The name of the repository containing the snapshot.
|
19
|
+
# @option args [String] :cluster_manager_timeout The amount of time to wait for a response from the cluster manager node. For more information about supported time units, see [Common parameters](https://opensearch.org/docs/latest/api-reference/common-parameters/#time-units).
|
20
20
|
# @option args [String] :master_timeout DEPRECATED Explicit operation timeout for connection to cluster-manager node
|
21
|
-
# @option args [String] :timeout
|
21
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
22
22
|
def verify_repository(args = {})
|
23
23
|
args = Utils.clone_and_normalize_arguments(args)
|
24
24
|
raise ArgumentError, "Required argument 'repository' missing" if args['repository'].nil?
|
@@ -15,11 +15,11 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Cancels a task, if it can be cancelled through an API.
|
17
17
|
#
|
18
|
-
# @option args [Enumerable<String>, String] :actions
|
19
|
-
# @option args [Enumerable<String>] :nodes
|
20
|
-
# @option args [String] :parent_task_id
|
21
|
-
# @option args [Boolean] :wait_for_completion
|
22
|
-
# @option args [String] :task_id
|
18
|
+
# @option args [Enumerable<String>, String] :actions A comma-separated list of actions that should be returned. Keep empty to return all.
|
19
|
+
# @option args [Enumerable<String>] :nodes A comma-separated list of node IDs or names used to limit the returned information. Use `_local` to return information from the node you're connecting to, specify the node name to get information from a specific node, or keep the parameter empty to get information from all nodes.
|
20
|
+
# @option args [String] :parent_task_id Returns tasks with a specified parent task ID (`node_id:task_number`). Keep empty or set to -1 to return all.
|
21
|
+
# @option args [Boolean] :wait_for_completion Waits for the matching task to complete. When `true`, the request is blocked until the task has completed.
|
22
|
+
# @option args [String] :task_id The task ID.
|
23
23
|
def cancel(args = {})
|
24
24
|
args = Utils.clone_and_normalize_arguments(args)
|
25
25
|
_task_id = args.delete('task_id')
|
@@ -15,9 +15,9 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns information about a task.
|
17
17
|
#
|
18
|
-
# @option args [String] :task_id *Required*
|
19
|
-
# @option args [String] :timeout
|
20
|
-
# @option args [Boolean] :wait_for_completion
|
18
|
+
# @option args [String] :task_id *Required* The task ID.
|
19
|
+
# @option args [String] :timeout (default: 30s) The amount of time to wait for a response.
|
20
|
+
# @option args [Boolean] :wait_for_completion Waits for the matching task to complete. When `true`, the request is blocked until the task has completed.
|
21
21
|
def get(args = {})
|
22
22
|
args = Utils.clone_and_normalize_arguments(args)
|
23
23
|
raise ArgumentError, "Required argument 'task_id' missing" if args['task_id'].nil?
|
@@ -15,13 +15,13 @@ module OpenSearch
|
|
15
15
|
module Actions
|
16
16
|
# Returns a list of tasks.
|
17
17
|
#
|
18
|
-
# @option args [Enumerable<String>, String] :actions
|
19
|
-
# @option args [Boolean] :detailed
|
20
|
-
# @option args [String] :group_by
|
21
|
-
# @option args [Enumerable<String>] :nodes
|
22
|
-
# @option args [String] :parent_task_id
|
23
|
-
# @option args [String] :timeout
|
24
|
-
# @option args [Boolean] :wait_for_completion
|
18
|
+
# @option args [Enumerable<String>, String] :actions A comma-separated list of actions that should be returned. Keep empty to return all.
|
19
|
+
# @option args [Boolean] :detailed When `true`, the response includes detailed information about shard recoveries.
|
20
|
+
# @option args [String] :group_by (default: nodes) Groups tasks by parent/child relationships or nodes.
|
21
|
+
# @option args [Enumerable<String>] :nodes A comma-separated list of node IDs or names used to limit the returned information. Use `_local` to return information from the node you're connecting to, specify the node name to get information from a specific node, or keep the parameter empty to get information from all nodes.
|
22
|
+
# @option args [String] :parent_task_id Returns tasks with a specified parent task ID (`node_id:task_number`). Keep empty or set to -1 to return all.
|
23
|
+
# @option args [String] :timeout The amount of time to wait for a response.
|
24
|
+
# @option args [Boolean] :wait_for_completion Waits for the matching task to complete. When `true`, the request is blocked until the task has completed.
|
25
25
|
def list(args = {})
|
26
26
|
args = Utils.clone_and_normalize_arguments(args)
|
27
27
|
headers = args.delete('headers') || {}
|
@@ -105,6 +105,8 @@ module OpenSearch
|
|
105
105
|
#
|
106
106
|
# @option arguments [Integer] :request_timeout The request timeout to be passed to transport in options
|
107
107
|
#
|
108
|
+
# @option arguments [Object] :request_signer An object that responds to `#sign_request` and returns a hash of headers
|
109
|
+
#
|
108
110
|
# @option arguments [Symbol] :adapter A specific adapter for Faraday (e.g. `:patron`)
|
109
111
|
#
|
110
112
|
# @option arguments [Hash] :transport_options Options to be passed to the `Faraday::Connection` constructor
|
@@ -147,6 +149,7 @@ module OpenSearch
|
|
147
149
|
@arguments[:http] ||= {}
|
148
150
|
@options[:http] ||= {}
|
149
151
|
@options[:ignore_404_on_delete] ||= false
|
152
|
+
@options[:request_signer] ||= nil
|
150
153
|
|
151
154
|
set_api_key if (@api_key = @arguments[:api_key])
|
152
155
|
set_compatibility_header if ENV['ELASTIC_CLIENT_APIVERSIONING']
|
@@ -183,13 +186,22 @@ module OpenSearch
|
|
183
186
|
end
|
184
187
|
|
185
188
|
# Performs a request through delegation to {#transport}.
|
186
|
-
def perform_request(method, path, params = {}, body = nil, headers =
|
189
|
+
def perform_request(method, path, params = {}, body = nil, headers = {})
|
187
190
|
method = @send_get_body_as if method == 'GET' && body
|
188
|
-
if (opaque_id = params.delete(
|
189
|
-
headers = {} if headers.nil?
|
191
|
+
if (opaque_id = params.delete('opaque_id'))
|
190
192
|
opaque_id = @opaque_id_prefix ? "#{@opaque_id_prefix}#{opaque_id}" : opaque_id
|
191
193
|
headers.merge!('X-Opaque-Id' => opaque_id)
|
192
194
|
end
|
195
|
+
if @options[:request_signer]
|
196
|
+
connection = transport.get_connection
|
197
|
+
headers = @options[:request_signer].sign_request(
|
198
|
+
method: method, path: path, params: params, body: body, headers: headers,
|
199
|
+
host: connection.host[:host],
|
200
|
+
port: connection.host[:port],
|
201
|
+
url: connection.full_url(path, params),
|
202
|
+
logger: @arguments[:logger]
|
203
|
+
)
|
204
|
+
end
|
193
205
|
transport.perform_request(method, path, params, body, headers)
|
194
206
|
end
|
195
207
|
|
data/lib/opensearch/version.rb
CHANGED
data/lib/opensearch.rb
CHANGED
@@ -64,6 +64,10 @@ module OpenSearch
|
|
64
64
|
@list ||= OpenSearch::API::Namespace.new(transport, OpenSearch::API::List::Actions)
|
65
65
|
end
|
66
66
|
|
67
|
+
def ltr
|
68
|
+
@ltr ||= OpenSearch::API::Namespace.new(transport, OpenSearch::API::Ltr::Actions)
|
69
|
+
end
|
70
|
+
|
67
71
|
def ml
|
68
72
|
@ml ||= OpenSearch::API::Namespace.new(transport, OpenSearch::API::Ml::Actions)
|
69
73
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opensearch-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.0.pre.beta.
|
4
|
+
version: 4.0.0.pre.beta.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
31
31
|
m0rB25J1sO2yjlalRdBoV5p7OKaWG4CGMr+q6vCC2za7yrtZiYOOv+KpWmheTwds
|
32
32
|
P1nbdIL2eAXGfNU3cbtYisS1sSYi7VSkS52pVk8Jgtw=
|
33
33
|
-----END CERTIFICATE-----
|
34
|
-
date: 2025-03-
|
34
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
35
35
|
dependencies:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: faraday
|
@@ -263,6 +263,7 @@ files:
|
|
263
263
|
- lib/opensearch/api/actions/list/help.rb
|
264
264
|
- lib/opensearch/api/actions/list/indices.rb
|
265
265
|
- lib/opensearch/api/actions/list/shards.rb
|
266
|
+
- lib/opensearch/api/actions/ltr/stats.rb
|
266
267
|
- lib/opensearch/api/actions/mget.rb
|
267
268
|
- lib/opensearch/api/actions/ml/chunk_model.rb
|
268
269
|
- lib/opensearch/api/actions/ml/create_connector.rb
|
metadata.gz.sig
CHANGED
Binary file
|