elasticsearch-api 6.3.0 → 6.3.1

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/lib/elasticsearch/api/actions/delete_template.rb +21 -0
  3. data/lib/elasticsearch/api/actions/field_stats.rb +36 -0
  4. data/lib/elasticsearch/api/actions/get_template.rb +27 -0
  5. data/lib/elasticsearch/api/actions/indices/delete_mapping.rb +26 -0
  6. data/lib/elasticsearch/api/actions/indices/delete_warmer.rb +32 -0
  7. data/lib/elasticsearch/api/actions/indices/get_aliases.rb +37 -0
  8. data/lib/elasticsearch/api/actions/indices/get_warmer.rb +62 -0
  9. data/lib/elasticsearch/api/actions/indices/optimize.rb +77 -0
  10. data/lib/elasticsearch/api/actions/indices/put_warmer.rb +65 -0
  11. data/lib/elasticsearch/api/actions/indices/seal.rb +24 -0
  12. data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +44 -0
  13. data/lib/elasticsearch/api/actions/indices/status.rb +63 -0
  14. data/lib/elasticsearch/api/actions/list_benchmarks.rb +27 -0
  15. data/lib/elasticsearch/api/actions/mlt.rb +130 -0
  16. data/lib/elasticsearch/api/actions/mpercolate.rb +62 -0
  17. data/lib/elasticsearch/api/actions/nodes/shutdown.rb +39 -0
  18. data/lib/elasticsearch/api/actions/percolate.rb +73 -0
  19. data/lib/elasticsearch/api/actions/put_template.rb +25 -0
  20. data/lib/elasticsearch/api/actions/remote/info.rb +21 -0
  21. data/lib/elasticsearch/api/actions/search_exists.rb +63 -0
  22. data/lib/elasticsearch/api/actions/suggest.rb +49 -0
  23. data/lib/elasticsearch/api/version.rb +1 -1
  24. data/spec/elasticsearch/api/actions/delete_template_spec.rb +17 -0
  25. data/spec/elasticsearch/api/actions/field_stats_spec.rb +17 -0
  26. data/spec/elasticsearch/api/actions/get_template_spec.rb +52 -0
  27. data/spec/elasticsearch/api/actions/indices/delete_mapping_spec.rb +77 -0
  28. data/spec/elasticsearch/api/actions/indices/delete_warmer_spec.rb +86 -0
  29. data/spec/elasticsearch/api/actions/indices/get_aliases_spec.rb +55 -0
  30. data/spec/elasticsearch/api/actions/indices/get_warmer_spec.rb +48 -0
  31. data/spec/elasticsearch/api/actions/indices/optimize_spec.rb +63 -0
  32. data/spec/elasticsearch/api/actions/indices/put_warmer_spec.rb +101 -0
  33. data/spec/elasticsearch/api/actions/indices/seal_spec.rb +18 -0
  34. data/spec/elasticsearch/api/actions/indices/snapshot_index_spec.rb +89 -0
  35. data/spec/elasticsearch/api/actions/indices/status_spec.rb +92 -0
  36. data/spec/elasticsearch/api/actions/list_benchmarks_spec.rb +17 -0
  37. data/spec/elasticsearch/api/actions/mlt_spec.rb +130 -0
  38. data/spec/elasticsearch/api/actions/mpercolate_spec.rb +49 -0
  39. data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +59 -0
  40. data/spec/elasticsearch/api/actions/percolate_spec.rb +67 -0
  41. data/spec/elasticsearch/api/actions/put_template_spec.rb +17 -0
  42. data/spec/elasticsearch/api/actions/remote/info_spec.rb +18 -0
  43. data/spec/elasticsearch/api/actions/search_exists_spec.rb +63 -0
  44. data/spec/elasticsearch/api/actions/suggest_spec.rb +77 -0
  45. metadata +65 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4041f561fb1eeba572e39978c8126a61f6d5f672eb927e02967c07afa795e82a
4
- data.tar.gz: 1f6da8dd8630042207f6e69ffb55be11648a33013c5835055f59f28887fa590a
3
+ metadata.gz: 19da5f199e6925708551fbd62950e92b9f771871565b1c0a1c25be84e6a3fa5b
4
+ data.tar.gz: 30de598a45c430f98d5b953cf1b64242af3f51f103e97b8f4990819ac22f4535
5
5
  SHA512:
6
- metadata.gz: 228212c3a32733b759dbd6dc0f006ea6cfd923d068dbb189d3c59c67c8916081ec78a2d8869d668bf75f75e1bed5fd364bd6d722bf56c2b8ce97db3c9ecb4c7a
7
- data.tar.gz: f39a27ae8e93cda46cc3b6780e2a5967fb13197d809187fec0c031a4e0f63a908887764208e57a3e8daee894d7cfdbb184b1b5cd4157419bc96373cf4606ae0d
6
+ metadata.gz: 9dcbc29d2eecabd9af6ab0dd998065e6345f920f1fee6036af092474ffc898bc2acdd79b4bb2961284da0b02b72ea62c96bd5924761fcf22d87a27c73596f3c8
7
+ data.tar.gz: df636763d7c09ef2b6e68d5568445d22d9f53a1cc0e6d8b3590a7982236433b0feff98988b834ab3d7d267e6103ad8d8c943bd60024c44539acaf7abb03dea08
@@ -0,0 +1,21 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Actions
4
+
5
+ # Retrieve an indexed template from Elasticsearch
6
+ #
7
+ # @option arguments [String] :id Template ID
8
+ #
9
+ # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-template.html
10
+ #
11
+ def delete_template(arguments={})
12
+ method = HTTP_DELETE
13
+ path = "_search/template/#{arguments[:id]}"
14
+ params = {}
15
+ body = nil
16
+
17
+ perform_request(method, path, params, body).body
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,36 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Actions
4
+
5
+ # Returns statistical information about a field without executing a search.
6
+ #
7
+ # @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
8
+ # @option arguments [List] :fields A comma-separated list of fields for to get field statistics for (min value, max value, and more)
9
+ # @option arguments [String] :level Defines if field stats should be returned on a per index level or on a cluster wide level (options: indices, cluster)
10
+ # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
11
+ # @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)
12
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
13
+ #
14
+ # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/search-field-stats.html
15
+ #
16
+ def field_stats(arguments={})
17
+ method = 'GET'
18
+ path = Utils.__pathify Utils.__escape(arguments[:index]), "_field_stats"
19
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
20
+ body = arguments[:body]
21
+
22
+ perform_request(method, path, params, body).body
23
+ end
24
+
25
+ # Register this action with its valid params when the module is loaded.
26
+ #
27
+ # @since 6.2.0
28
+ ParamsRegistry.register(:field_stats, [
29
+ :fields,
30
+ :level,
31
+ :ignore_unavailable,
32
+ :allow_no_indices,
33
+ :expand_wildcards ].freeze)
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,27 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Actions
4
+
5
+ # Retrieve an indexed script from Elasticsearch
6
+ #
7
+ # @option arguments [String] :id Template ID (*Required*)
8
+ # @option arguments [Hash] :body The document
9
+ #
10
+ # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-template.html
11
+ #
12
+ def get_template(arguments={})
13
+ raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
14
+ method = HTTP_GET
15
+ path = "_scripts/#{arguments[:id]}"
16
+ params = {}
17
+ body = arguments[:body]
18
+
19
+ if Array(arguments[:ignore]).include?(404)
20
+ Utils.__rescue_from_not_found { perform_request(method, path, params, body).body }
21
+ else
22
+ perform_request(method, path, params, body).body
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,26 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Delete all documents and mapping for a specific document type.
7
+ #
8
+ # @option arguments [List] :index A comma-separated list of index names; use `_all` for all indices (*Required*)
9
+ # @option arguments [String] :type The name of the document type to delete (*Required*)
10
+ #
11
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-delete-mapping/
12
+ #
13
+ def delete_mapping(arguments={})
14
+ raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
15
+ raise ArgumentError, "Required argument 'type' missing" unless arguments[:type]
16
+ method = HTTP_DELETE
17
+ path = Utils.__pathify Utils.__listify(arguments[:index]), Utils.__escape(arguments[:type])
18
+ params = {}
19
+ body = nil
20
+
21
+ perform_request(method, path, params, body).body
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,32 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Delete one or more warmers for a list of indices.
7
+ #
8
+ # @example Delete a warmer named _mywarmer_ for index named _myindex_
9
+ #
10
+ # client.indices.delete_warmer index: 'myindex', name: 'mywarmer'
11
+ #
12
+ # @option arguments [List] :index A comma-separated list of index names to register warmer for; use `_all`
13
+ # or empty string to perform the operation on all indices (*Required*)
14
+ # @option arguments [String] :name The name of the warmer (supports wildcards); leave empty to delete all warmers
15
+ # @option arguments [List] :type A comma-separated list of document types to register warmer for; use `_all`
16
+ # or empty string to perform the operation on all types
17
+ #
18
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-warmers/
19
+ #
20
+ def delete_warmer(arguments={})
21
+ raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
22
+ method = HTTP_DELETE
23
+ path = Utils.__pathify Utils.__listify(arguments[:index]), '_warmer', Utils.__listify(arguments[:name])
24
+ params = {}
25
+ body = nil
26
+
27
+ perform_request(method, path, params, body).body
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,37 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Get a list of all aliases, or aliases for a specific index.
7
+ #
8
+ # @example Get a list of all aliases
9
+ #
10
+ # client.indices.get_aliases
11
+ #
12
+ # @option arguments [List] :index A comma-separated list of index names to filter aliases
13
+ # @option arguments [List] :name A comma-separated list of alias names to filter
14
+ # @option arguments [Time] :timeout Explicit timestamp for the document
15
+ # @option arguments [Boolean] :local Return local information,
16
+ # do not retrieve the state from master node (default: false)
17
+ #
18
+ # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-aliases.html
19
+ #
20
+ def get_aliases(arguments={})
21
+ method = HTTP_GET
22
+ path = Utils.__pathify Utils.__listify(arguments[:index]), '_aliases', Utils.__listify(arguments[:name])
23
+
24
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
25
+ body = nil
26
+
27
+ perform_request(method, path, params, body).body
28
+ end
29
+
30
+ # Register this action with its valid params when the module is loaded.
31
+ #
32
+ # @since 6.2.0
33
+ ParamsRegistry.register(:get_aliases, [ :timeout, :local ].freeze)
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,62 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Get one or more warmers for an index.
7
+ #
8
+ # @example Get all warmers
9
+ #
10
+ # client.indices.get_warmer index: '_all'
11
+ #
12
+ # @example Get all warmers matching a wildcard expression
13
+ #
14
+ # client.indices.get_warmer index: '_all', name: 'ba*'
15
+ #
16
+ # @example Get all warmers for a single index
17
+ #
18
+ # client.indices.get_warmer index: 'foo'
19
+ #
20
+ # @example Get a specific warmer
21
+ #
22
+ # client.indices.get_warmer index: 'foo', name: 'bar'
23
+ #
24
+ # @option arguments [List] :index A comma-separated list of index names to restrict the operation;
25
+ # use `_all` to perform the operation on all indices (*Required*)
26
+ # @option arguments [String] :name The name of the warmer (supports wildcards); leave empty to get all warmers
27
+ # @option arguments [List] :type A comma-separated list of document types to restrict the operation;
28
+ # leave empty to perform the operation on all types
29
+ # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
30
+ # no concrete indices. (This includes `_all` string or when no
31
+ # indices have been specified)
32
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
33
+ # are open, closed or both. (options: open, closed)
34
+ # @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
35
+ # `missing` ones (options: none, missing) @until 1.0
36
+ # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
37
+ # unavailable (missing, closed, etc)
38
+ #
39
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-warmers/
40
+ #
41
+ def get_warmer(arguments={})
42
+ method = HTTP_GET
43
+ path = Utils.__pathify( Utils.__listify(arguments[:index]), '_warmer', Utils.__escape(arguments[:name]) )
44
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
45
+ body = nil
46
+
47
+ perform_request(method, path, params, body).body
48
+ end
49
+
50
+ # Register this action with its valid params when the module is loaded.
51
+ #
52
+ # @since 6.2.0
53
+ ParamsRegistry.register(:get_warmer, [
54
+ :ignore_indices,
55
+ :ignore_unavailable,
56
+ :allow_no_indices,
57
+ :expand_wildcards,
58
+ :local ].freeze)
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,77 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Perform an index optimization.
7
+ #
8
+ # The "optimize" operation merges the index segments, increasing search performance.
9
+ # It corresponds to a Lucene "merge" operation.
10
+ #
11
+ # @deprecated The "optimize" action has been deprecated in favor of forcemerge [https://github.com/elastic/elasticsearch/pull/13778]
12
+ #
13
+ # @example Fully optimize an index (merge to one segment)
14
+ #
15
+ # client.indices.optimize index: 'foo', max_num_segments: 1, wait_for_merge: false
16
+ #
17
+ # @note The optimize operation is handled automatically by Elasticsearch, you don't need to perform it manually.
18
+ # The operation is expensive in terms of resources (I/O, CPU, memory) and can take a long time to
19
+ # finish, potentially reducing operability of your cluster; schedule the manual optimization accordingly.
20
+ #
21
+ # @option arguments [List] :index A comma-separated list of index names; use `_all`
22
+ # or empty string to perform the operation on all indices
23
+ # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
24
+ # no concrete indices. (This includes `_all` string or when no
25
+ # indices have been specified)
26
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
27
+ # are open, closed or both. (options: open, closed)
28
+ # @option arguments [Boolean] :flush Specify whether the index should be flushed after performing the operation
29
+ # (default: true)
30
+ # @option arguments [Boolean] :force Force a merge operation to run, even when the index has a single segment
31
+ # (default: true)
32
+ # @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
33
+ # `missing` ones (options: none, missing) @until 1.0
34
+ # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
35
+ # unavailable (missing, closed, etc)
36
+ # @option arguments [Number] :max_num_segments The number of segments the index should be merged into
37
+ # (default: dynamic)
38
+ # @option arguments [Time] :master_timeout Specify timeout for connection to master
39
+ # @option arguments [Boolean] :only_expunge_deletes Specify whether the operation should only expunge
40
+ # deleted documents
41
+ # @option arguments [Boolean] :refresh Specify whether the index should be refreshed after performing the operation
42
+ # (default: true)
43
+ # @option arguments [Boolean] :wait_for_merge Specify whether the request should block until the merge process
44
+ # is finished (default: true)
45
+ #
46
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-optimize/
47
+ #
48
+ def optimize(arguments={})
49
+ method = HTTP_POST
50
+ path = Utils.__pathify Utils.__listify(arguments[:index]), '_optimize'
51
+
52
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
53
+ body = nil
54
+
55
+ perform_request(method, path, params, body).body
56
+ end
57
+
58
+ # Register this action with its valid params when the module is loaded.
59
+ #
60
+ # @since 6.2.0
61
+ ParamsRegistry.register(:optimize, [
62
+ :ignore_indices,
63
+ :ignore_unavailable,
64
+ :allow_no_indices,
65
+ :expand_wildcards,
66
+ :flush,
67
+ :force,
68
+ :master_timeout,
69
+ :max_num_segments,
70
+ :only_expunge_deletes,
71
+ :operation_threading,
72
+ :refresh,
73
+ :wait_for_merge ].freeze)
74
+ end
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,65 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # Create or update an index warmer.
7
+ #
8
+ # An index warmer will run before an index is refreshed, ie. available for search.
9
+ # It allows you to register "heavy" queries with popular filters, facets or sorts,
10
+ # increasing performance when the index is searched for the first time.
11
+ #
12
+ # @example Register a warmer which will populate the caches for `published` filter and sorting on `created_at`
13
+ #
14
+ # client.indices.put_warmer index: 'myindex',
15
+ # name: 'main',
16
+ # body: {
17
+ # query: { filtered: { filter: { term: { published: true } } } },
18
+ # sort: [ "created_at" ]
19
+ # }
20
+ #
21
+ # @option arguments [List] :index A comma-separated list of index names to register the warmer for; use `_all`
22
+ # or empty string to perform the operation on all indices (*Required*)
23
+ # @option arguments [String] :name The name of the warmer (*Required*)
24
+ # @option arguments [List] :type A comma-separated list of document types to register the warmer for;
25
+ # leave empty to perform the operation on all types
26
+ # @option arguments [Hash] :body The search request definition for the warmer
27
+ # (query, filters, facets, sorting, etc) (*Required*)
28
+ # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
29
+ # no concrete indices. (This includes `_all` string or when no
30
+ # indices have been specified)
31
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
32
+ # are open, closed or both. (options: open, closed)
33
+ # @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
34
+ # `missing` ones (options: none, missing) @until 1.0
35
+ # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
36
+ # unavailable (missing, closed, etc)
37
+ #
38
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-warmers/
39
+ #
40
+ def put_warmer(arguments={})
41
+ raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
42
+ raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
43
+ method = HTTP_PUT
44
+ path = Utils.__pathify( Utils.__listify(arguments[:index]),
45
+ Utils.__listify(arguments[:type]),
46
+ '_warmer',
47
+ Utils.__listify(arguments[:name]) )
48
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
49
+ body = arguments[:body]
50
+
51
+ perform_request(method, path, params, body).body
52
+ end
53
+
54
+ # Register this action with its valid params when the module is loaded.
55
+ #
56
+ # @since 6.2.0
57
+ ParamsRegistry.register(:put_warmer, [
58
+ :ignore_indices,
59
+ :ignore_unavailable,
60
+ :allow_no_indices,
61
+ :expand_wildcards ].freeze)
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,24 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # "Seal" and index or indices for faster recovery
7
+ #
8
+ # @option arguments [List] :index A comma-separated list of index names;
9
+ # use `_all` or empty string for all indices
10
+ #
11
+ # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-seal.html
12
+ #
13
+ def seal(arguments={})
14
+ method = 'POST'
15
+ path = Utils.__pathify Utils.__listify(arguments[:index]), '_seal'
16
+ params = {}
17
+ body = nil
18
+
19
+ perform_request(method, path, params, body).body
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,44 @@
1
+ module Elasticsearch
2
+ module API
3
+ module Indices
4
+ module Actions
5
+
6
+ # When using the shared storage gateway, manually trigger the snapshot operation.
7
+ #
8
+ # @deprecated The shared gateway has been deprecated [https://github.com/elasticsearch/elasticsearch/issues/2458]
9
+ #
10
+ # @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string
11
+ # to perform the operation on all indices
12
+ # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
13
+ # no concrete indices. (This includes `_all` string or when no
14
+ # indices have been specified)
15
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
16
+ # are open, closed or both. (options: open, closed)
17
+ # @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
18
+ # `missing` ones (options: none, missing) @until 1.0
19
+ # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
20
+ # unavailable (missing, closed, etc)
21
+ #
22
+ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-gateway-snapshot/
23
+ #
24
+ def snapshot_index(arguments={})
25
+ method = HTTP_POST
26
+ path = Utils.__pathify Utils.__listify(arguments[:index]), '_gateway/snapshot'
27
+ params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
28
+ body = nil
29
+
30
+ perform_request(method, path, params, body).body
31
+ end
32
+
33
+ # Register this action with its valid params when the module is loaded.
34
+ #
35
+ # @since 6.2.0
36
+ ParamsRegistry.register(:snapshot_index, [
37
+ :ignore_indices,
38
+ :ignore_unavailable,
39
+ :allow_no_indices,
40
+ :expand_wildcards ].freeze)
41
+ end
42
+ end
43
+ end
44
+ end