Module: Elasticsearch::API::DanglingIndices::Actions
- Included in:
- DanglingIndicesClient
- Defined in:
- lib/elasticsearch/api/namespace/dangling_indices.rb,
lib/elasticsearch/api/actions/dangling_indices/params_registry.rb,
lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb,
lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb,
lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb
Defined Under Namespace
Modules: ParamsRegistry
Instance Method Summary collapse
-
#delete_dangling_index(arguments = {}) ⇒ Object
Deletes the specified dangling index.
-
#import_dangling_index(arguments = {}) ⇒ Object
Imports the specified dangling index.
-
#list_dangling_indices(arguments = {}) ⇒ Object
Returns all dangling indices.
Instance Method Details
#delete_dangling_index(arguments = {}) ⇒ Object
Deletes the specified dangling index
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb', line 32 def delete_dangling_index(arguments = {}) raise ArgumentError, "Required argument 'index_uuid' missing" unless arguments[:index_uuid] headers = arguments.delete(:headers) || {} arguments = arguments.clone _index_uuid = arguments.delete(:index_uuid) method = Elasticsearch::API::HTTP_DELETE path = "_dangling/#{Utils.__listify(_index_uuid)}" params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) body = nil perform_request(method, path, params, body, headers).body end |
#import_dangling_index(arguments = {}) ⇒ Object
Imports the specified dangling index
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb', line 32 def import_dangling_index(arguments = {}) raise ArgumentError, "Required argument 'index_uuid' missing" unless arguments[:index_uuid] headers = arguments.delete(:headers) || {} arguments = arguments.clone _index_uuid = arguments.delete(:index_uuid) method = Elasticsearch::API::HTTP_POST path = "_dangling/#{Utils.__listify(_index_uuid)}" params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) body = nil perform_request(method, path, params, body, headers).body end |
#list_dangling_indices(arguments = {}) ⇒ Object
Returns all dangling indices.
28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb', line 28 def list_dangling_indices(arguments = {}) headers = arguments.delete(:headers) || {} arguments = arguments.clone method = Elasticsearch::API::HTTP_GET path = "_dangling" params = {} body = nil perform_request(method, path, params, body, headers).body end |