elasticsearch-api 7.17.1 → 7.17.7
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
- data/lib/elasticsearch/api/actions/snapshot/get.rb +14 -0
- data/lib/elasticsearch/api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d73b4a482e7db8d6e3ab423ca300c421d8dff437d8b76e0d4f0d9230d5b96d83
|
|
4
|
+
data.tar.gz: 221463bbcf471802fbbbe2886282232ca0255a2b987e67bf94048f97d2509cee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd406f8d4edbca334f57047afa635b91c85cf6edee016af8032099649b1aa71a5a543117a86acdf5d440f3c157c6eac73519b23c59c3abd97f3e6b68c2a63323
|
|
7
|
+
data.tar.gz: 21d33a3548f623f59f2cb210edaa36c8bee8c9a7b29c789f998029ed0ec0bea20d51ea080ddc3c130744d842df1901a554a83911f4fa3a655ea728f368fa8790
|
|
@@ -27,6 +27,13 @@ module Elasticsearch
|
|
|
27
27
|
# @option arguments [Boolean] :ignore_unavailable Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown
|
|
28
28
|
# @option arguments [Boolean] :index_details Whether to include details of each index in the snapshot, if those details are available. Defaults to false.
|
|
29
29
|
# @option arguments [Boolean] :include_repository Whether to include the repository name in the snapshot info. Defaults to true.
|
|
30
|
+
# @option arguments [String] :sort Allows setting a sort order for the result. Defaults to start_time (options: start_time, duration, name, repository, index_count, shard_count, failed_shard_count)
|
|
31
|
+
# @option arguments [Integer] :size Maximum number of snapshots to return. Defaults to 0 which means return all that match without limit.
|
|
32
|
+
# @option arguments [String] :order Sort order (options: asc, desc)
|
|
33
|
+
# @option arguments [String] :from_sort_value Value of the current sort column at which to start retrieval.
|
|
34
|
+
# @option arguments [String] :after Offset identifier to start pagination from as returned by the 'next' field in the response body.
|
|
35
|
+
# @option arguments [Integer] :offset Numeric offset to start pagination based on the snapshots matching the request. Defaults to 0
|
|
36
|
+
# @option arguments [String] :slm_policy_filter Filter snapshots by a comma-separated list of SLM policy names that snapshots belong to. Accepts wildcards. Use the special pattern '_none' to match snapshots without an SLM policy
|
|
30
37
|
# @option arguments [Boolean] :verbose Whether to show verbose snapshot info or only show the basic info found in the repository index blob
|
|
31
38
|
# @option arguments [Hash] :headers Custom HTTP headers
|
|
32
39
|
#
|
|
@@ -64,6 +71,13 @@ module Elasticsearch
|
|
|
64
71
|
:ignore_unavailable,
|
|
65
72
|
:index_details,
|
|
66
73
|
:include_repository,
|
|
74
|
+
:sort,
|
|
75
|
+
:size,
|
|
76
|
+
:order,
|
|
77
|
+
:from_sort_value,
|
|
78
|
+
:after,
|
|
79
|
+
:offset,
|
|
80
|
+
:slm_policy_filter,
|
|
67
81
|
:verbose
|
|
68
82
|
].freeze)
|
|
69
83
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.17.
|
|
4
|
+
version: 7.17.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karel Minarik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -719,7 +719,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
719
719
|
- !ruby/object:Gem::Version
|
|
720
720
|
version: '0'
|
|
721
721
|
requirements: []
|
|
722
|
-
rubygems_version: 3.3.
|
|
722
|
+
rubygems_version: 3.3.7
|
|
723
723
|
signing_key:
|
|
724
724
|
specification_version: 4
|
|
725
725
|
summary: Ruby API for Elasticsearch.
|