elasticsearch-api 7.7.0 → 7.9.0
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/Gemfile +17 -3
- data/Rakefile +16 -3
- data/elasticsearch-api.gemspec +16 -3
- data/lib/elasticsearch-api.rb +16 -3
- data/lib/elasticsearch/api.rb +18 -4
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +41 -0
- data/lib/elasticsearch/api/actions/benchmark.rb +81 -0
- data/lib/elasticsearch/api/actions/bulk.rb +23 -11
- data/lib/elasticsearch/api/actions/cat/aliases.rb +20 -9
- data/lib/elasticsearch/api/actions/cat/allocation.rb +20 -9
- data/lib/elasticsearch/api/actions/cat/count.rb +19 -6
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +20 -9
- data/lib/elasticsearch/api/actions/cat/health.rb +19 -8
- data/lib/elasticsearch/api/actions/cat/help.rb +18 -5
- data/lib/elasticsearch/api/actions/cat/indices.rb +23 -18
- data/lib/elasticsearch/api/actions/cat/master.rb +18 -5
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +18 -5
- data/lib/elasticsearch/api/actions/cat/nodes.rb +21 -12
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +19 -8
- data/lib/elasticsearch/api/actions/cat/plugins.rb +18 -5
- data/lib/elasticsearch/api/actions/cat/recovery.rb +21 -12
- data/lib/elasticsearch/api/actions/cat/repositories.rb +18 -5
- data/lib/elasticsearch/api/actions/cat/segments.rb +20 -9
- data/lib/elasticsearch/api/actions/cat/shards.rb +21 -12
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +20 -9
- data/lib/elasticsearch/api/actions/cat/tasks.rb +19 -8
- data/lib/elasticsearch/api/actions/cat/templates.rb +19 -6
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +20 -9
- data/lib/elasticsearch/api/actions/clear_scroll.rb +20 -7
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +25 -7
- data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +22 -5
- data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +51 -0
- data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +63 -0
- data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +23 -6
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +18 -5
- data/lib/elasticsearch/api/actions/cluster/health.rb +23 -18
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +18 -5
- data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +55 -0
- data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +22 -5
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +18 -5
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +18 -5
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +19 -8
- data/lib/elasticsearch/api/actions/cluster/state.rb +21 -12
- data/lib/elasticsearch/api/actions/cluster/stats.rb +19 -6
- data/lib/elasticsearch/api/actions/count.rb +27 -23
- data/lib/elasticsearch/api/actions/create.rb +21 -12
- data/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb +60 -0
- data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +60 -0
- data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +43 -0
- data/lib/elasticsearch/api/actions/dangling_indices/params_registry.rb +60 -0
- data/lib/elasticsearch/api/actions/delete.rb +22 -13
- data/lib/elasticsearch/api/actions/delete_by_query.rb +24 -19
- data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +19 -6
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +47 -0
- data/lib/elasticsearch/api/actions/delete_script.rb +18 -5
- data/lib/elasticsearch/api/actions/exists.rb +21 -10
- data/lib/elasticsearch/api/actions/exists_source.rb +21 -10
- data/lib/elasticsearch/api/actions/explain.rb +30 -14
- data/lib/elasticsearch/api/actions/field_caps.rb +31 -14
- data/lib/elasticsearch/api/actions/get.rb +21 -10
- data/lib/elasticsearch/api/actions/get_script.rb +18 -5
- data/lib/elasticsearch/api/actions/get_script_context.rb +22 -5
- data/lib/elasticsearch/api/actions/get_script_languages.rb +22 -5
- data/lib/elasticsearch/api/actions/get_source.rb +21 -10
- data/lib/elasticsearch/api/actions/index.rb +23 -16
- data/lib/elasticsearch/api/actions/indices/add_block.rb +68 -0
- data/lib/elasticsearch/api/actions/indices/analyze.rb +28 -10
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/clone.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/close.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/create.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/delete.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +19 -6
- data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +62 -0
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/exists.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +65 -0
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/flush.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/freeze.rb +16 -3
- data/lib/elasticsearch/api/actions/indices/get.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +21 -10
- data/lib/elasticsearch/api/actions/indices/get_index_template.rb +66 -0
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +22 -11
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/get_template.rb +19 -6
- data/lib/elasticsearch/api/actions/indices/get_upgrade.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/open.rb +19 -8
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +19 -6
- data/lib/elasticsearch/api/actions/indices/put_index_template.rb +66 -0
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +25 -12
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/put_template.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/recovery.rb +19 -6
- data/lib/elasticsearch/api/actions/indices/refresh.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/resolve_index.rb +60 -0
- data/lib/elasticsearch/api/actions/indices/rollover.rb +19 -6
- data/lib/elasticsearch/api/actions/indices/segments.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +21 -12
- data/lib/elasticsearch/api/actions/indices/shrink.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +65 -0
- data/lib/elasticsearch/api/actions/indices/simulate_template.rb +67 -0
- data/lib/elasticsearch/api/actions/indices/split.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/stats.rb +21 -14
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +16 -3
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +18 -5
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +20 -9
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +33 -19
- data/lib/elasticsearch/api/actions/info.rb +18 -5
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +18 -5
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +19 -6
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +18 -5
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +18 -5
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +20 -7
- data/lib/elasticsearch/api/actions/mget.rb +21 -8
- data/lib/elasticsearch/api/actions/msearch.rb +22 -11
- data/lib/elasticsearch/api/actions/msearch_template.rb +22 -11
- data/lib/elasticsearch/api/actions/mtermvectors.rb +32 -16
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +20 -9
- data/lib/elasticsearch/api/actions/nodes/info.rb +20 -9
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +19 -6
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +56 -0
- data/lib/elasticsearch/api/actions/nodes/stats.rb +22 -15
- data/lib/elasticsearch/api/actions/nodes/usage.rb +20 -9
- data/lib/elasticsearch/api/actions/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/ping.rb +18 -5
- data/lib/elasticsearch/api/actions/put_script.rb +19 -6
- data/lib/elasticsearch/api/actions/rank_eval.rb +26 -13
- data/lib/elasticsearch/api/actions/reindex.rb +18 -5
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +19 -6
- data/lib/elasticsearch/api/actions/remote/info.rb +37 -0
- data/lib/elasticsearch/api/actions/render_search_template.rb +28 -10
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +29 -7
- data/lib/elasticsearch/api/actions/scroll.rb +29 -11
- data/lib/elasticsearch/api/actions/search.rb +34 -24
- data/lib/elasticsearch/api/actions/search_shards.rb +20 -9
- data/lib/elasticsearch/api/actions/search_template.rb +22 -13
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/create.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +19 -6
- data/lib/elasticsearch/api/actions/snapshot/get.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +19 -6
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +18 -5
- data/lib/elasticsearch/api/actions/snapshot/status.rb +19 -6
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +18 -5
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +22 -7
- data/lib/elasticsearch/api/actions/tasks/get.rb +18 -5
- data/lib/elasticsearch/api/actions/tasks/list.rb +19 -8
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +16 -3
- data/lib/elasticsearch/api/actions/termvectors.rb +26 -11
- data/lib/elasticsearch/api/actions/update.rb +21 -10
- data/lib/elasticsearch/api/actions/update_by_query.rb +24 -19
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +19 -6
- data/lib/elasticsearch/api/namespace/cat.rb +16 -4
- data/lib/elasticsearch/api/namespace/cluster.rb +16 -3
- data/lib/elasticsearch/api/namespace/common.rb +16 -3
- data/lib/elasticsearch/api/namespace/dangling_indices.rb +35 -0
- data/lib/elasticsearch/api/namespace/indices.rb +16 -3
- data/lib/elasticsearch/api/namespace/ingest.rb +16 -3
- data/lib/elasticsearch/api/namespace/nodes.rb +16 -3
- data/lib/elasticsearch/api/namespace/remote.rb +16 -3
- data/lib/elasticsearch/api/namespace/snapshot.rb +16 -3
- data/lib/elasticsearch/api/namespace/tasks.rb +16 -3
- data/lib/elasticsearch/api/utils.rb +16 -3
- data/lib/elasticsearch/api/version.rb +17 -4
- data/spec/elasticsearch/api/actions/abort_benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/bulk_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/count_spec.rb +18 -5
- data/spec/elasticsearch/api/actions/create_document_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +36 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +24 -12
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/get_document_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/get_script_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/hashie_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/index_document_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +63 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +23 -11
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +23 -16
- data/spec/elasticsearch/api/actions/info_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +22 -10
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +26 -16
- data/spec/elasticsearch/api/actions/mget_spec.rb +21 -9
- data/spec/elasticsearch/api/actions/msearch_spec.rb +21 -9
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +21 -9
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +23 -10
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +25 -20
- data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/ping_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/put_script_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/reindex_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/remote/info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +18 -5
- data/spec/elasticsearch/api/actions/scroll_spec.rb +17 -4
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/search_spec.rb +23 -10
- data/spec/elasticsearch/api/actions/search_template_spec.rb +21 -9
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +21 -10
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +16 -3
- data/spec/elasticsearch/api/actions/update_document_spec.rb +16 -3
- data/spec/elasticsearch/api/api_spec.rb +16 -3
- data/spec/elasticsearch/api/client_spec.rb +16 -3
- data/spec/elasticsearch/api/rest_api_yaml_spec.rb +0 -1
- data/spec/elasticsearch/api/utils_spec.rb +16 -3
- data/spec/rest_yaml_tests_helper.rb +16 -7
- data/spec/spec_helper.rb +22 -8
- data/utils/Gemfile +16 -3
- data/utils/thor/.rubocop.yml +2 -0
- data/utils/thor/generate_source.rb +70 -22
- data/utils/thor/generator/endpoint_specifics.rb +24 -4
- data/utils/thor/generator/files_helper.rb +16 -3
- data/utils/thor/lister.rb +16 -3
- data/utils/thor/templates/_documentation_top.erb +12 -1
- data/utils/thor/templates/method.erb +16 -3
- data/utils/thor/templates/test_helper.rb +16 -3
- metadata +40 -11
- data/lib/elasticsearch/api/actions/indices/create_data_stream.rb +0 -37
- data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +0 -35
- data/lib/elasticsearch/api/actions/indices/get_data_streams.rb +0 -37
- data/spec/README.md +0 -61
- data/test/integration/yaml_test_runner.rb +0 -579
- data/test/test_helper.rb +0 -105
data/utils/Gemfile
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
source 'https://rubygems.org'
|
|
6
19
|
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
# encoding: UTF-8
|
|
6
19
|
|
|
@@ -37,6 +50,7 @@ module Elasticsearch
|
|
|
37
50
|
method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
|
|
38
51
|
method_option :tests, type: :boolean, default: false, desc: 'Generate test files'
|
|
39
52
|
method_option :api, type: :array, default: %w[oss xpack], desc: 'APIs to generate (oss, x-pack)'
|
|
53
|
+
|
|
40
54
|
def generate
|
|
41
55
|
self.class.source_root File.expand_path(__dir__)
|
|
42
56
|
@xpack = options[:api].include? 'xpack'
|
|
@@ -100,12 +114,13 @@ module Elasticsearch
|
|
|
100
114
|
names = @endpoint_name.split('.')
|
|
101
115
|
if @current_api == :xpack
|
|
102
116
|
names = (names.first == 'xpack' ? names : ['xpack', names].flatten)
|
|
103
|
-
# Return an array
|
|
104
|
-
# 'index_lifecycle_management'
|
|
117
|
+
# Return an array to expand 'ccr', 'ilm', 'ml' and 'slm'
|
|
105
118
|
names.map do |name|
|
|
106
119
|
name
|
|
107
120
|
.gsub(/^ml$/, 'machine_learning')
|
|
108
121
|
.gsub(/^ilm$/, 'index_lifecycle_management')
|
|
122
|
+
.gsub(/^ccr/, 'cross_cluster_replication')
|
|
123
|
+
.gsub(/^slm/, 'snapshot_lifecycle_management')
|
|
109
124
|
end
|
|
110
125
|
else
|
|
111
126
|
names
|
|
@@ -133,19 +148,24 @@ module Elasticsearch
|
|
|
133
148
|
end
|
|
134
149
|
|
|
135
150
|
def __http_method
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
151
|
+
return '_id ? Elasticsearch::API::HTTP_PUT : Elasticsearch::API::HTTP_POST' if @endpoint_name == 'index'
|
|
152
|
+
|
|
153
|
+
default_method = @spec['url']['paths'].map { |a| a['methods'] }.flatten.first
|
|
154
|
+
if @spec['body'] && default_method == 'GET'
|
|
155
|
+
# When default method is GET and body is required, we should always use POST
|
|
156
|
+
if @spec['body']['required']
|
|
157
|
+
'Elasticsearch::API::HTTP_POST'
|
|
158
|
+
else
|
|
159
|
+
<<~SRC
|
|
160
|
+
if arguments[:body]
|
|
161
|
+
Elasticsearch::API::HTTP_POST
|
|
162
|
+
else
|
|
163
|
+
Elasticsearch::API::HTTP_GET
|
|
164
|
+
end
|
|
165
|
+
SRC
|
|
166
|
+
end
|
|
147
167
|
else
|
|
148
|
-
"Elasticsearch::API::HTTP_#{
|
|
168
|
+
"Elasticsearch::API::HTTP_#{default_method}"
|
|
149
169
|
end
|
|
150
170
|
end
|
|
151
171
|
|
|
@@ -209,10 +229,38 @@ module Elasticsearch
|
|
|
209
229
|
info['type'] = 'String' if info['type'] == 'enum' # Rename 'enums' to 'strings'
|
|
210
230
|
tipo = info['type'] ? info['type'].capitalize : 'String'
|
|
211
231
|
description = info['description'] ? info['description'].strip : '[TODO]'
|
|
212
|
-
options = info['options'] ? "
|
|
213
|
-
required = info['required'] ? '
|
|
214
|
-
deprecated = info['deprecated'] ? '
|
|
215
|
-
|
|
232
|
+
options = info['options'] ? "(options: #{info['options'].join(', ').strip})" : nil
|
|
233
|
+
required = info['required'] ? '(*Required*)' : ''
|
|
234
|
+
deprecated = info['deprecated'] ? '*Deprecated*' : ''
|
|
235
|
+
optionals = [required, deprecated, options].join(' ').strip
|
|
236
|
+
|
|
237
|
+
"# @option arguments [#{tipo}] :#{name} #{description} #{optionals}\n"
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
def stability_doc_helper(stability)
|
|
241
|
+
return if stability == 'stable'
|
|
242
|
+
|
|
243
|
+
if stability == 'experimental'
|
|
244
|
+
<<~MSG
|
|
245
|
+
# This functionality is Experimental and may be changed or removed
|
|
246
|
+
# completely in a future release. Elastic will take a best effort approach
|
|
247
|
+
# to fix any issues, but experimental features are not subject to the
|
|
248
|
+
# support SLA of official GA features.
|
|
249
|
+
MSG
|
|
250
|
+
elsif stability == 'beta'
|
|
251
|
+
<<~MSG
|
|
252
|
+
# This functionality is in Beta and is subject to change. The design and
|
|
253
|
+
# code is less mature than official GA features and is being provided
|
|
254
|
+
# as-is with no warranties. Beta features are not subject to the support
|
|
255
|
+
# SLA of official GA features.
|
|
256
|
+
MSG
|
|
257
|
+
else
|
|
258
|
+
<<~MSG
|
|
259
|
+
# This functionality is subject to potential breaking changes within a
|
|
260
|
+
# minor version, meaning that your referencing code may break when this
|
|
261
|
+
# library is upgraded.
|
|
262
|
+
MSG
|
|
263
|
+
end
|
|
216
264
|
end
|
|
217
265
|
|
|
218
266
|
def generate_tests
|
|
@@ -247,7 +295,7 @@ module Elasticsearch
|
|
|
247
295
|
end
|
|
248
296
|
|
|
249
297
|
def run_rubocop(api)
|
|
250
|
-
system("rubocop --format autogenconf -x #{FilesHelper::output_dir(api)}")
|
|
298
|
+
system("rubocop -c ./thor/.rubocop.yml --format autogenconf -x #{FilesHelper::output_dir(api)}")
|
|
251
299
|
end
|
|
252
300
|
end
|
|
253
301
|
end
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
module Elasticsearch
|
|
6
19
|
module API
|
|
@@ -65,7 +78,7 @@ module Elasticsearch
|
|
|
65
78
|
def module_name_helper(name)
|
|
66
79
|
return name.upcase if %w[sql ssl].include? name
|
|
67
80
|
|
|
68
|
-
name.split(
|
|
81
|
+
name.split('_').map(&:capitalize).join
|
|
69
82
|
end
|
|
70
83
|
|
|
71
84
|
def termvectors_path
|
|
@@ -156,6 +169,13 @@ module Elasticsearch
|
|
|
156
169
|
end
|
|
157
170
|
SRC
|
|
158
171
|
end
|
|
172
|
+
|
|
173
|
+
def bulk_doc_helper(info)
|
|
174
|
+
<<~SRC
|
|
175
|
+
# @option arguments [String|Array] :body #{info}. Array of Strings, Header/Data pairs,
|
|
176
|
+
# or the conveniency "combined" format can be passed, refer to Elasticsearch::API::Utils.__bulkify documentation.
|
|
177
|
+
SRC
|
|
178
|
+
end
|
|
159
179
|
end
|
|
160
180
|
end
|
|
161
181
|
end
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
require 'pathname'
|
|
6
19
|
require_relative '../../../lib/elasticsearch/api/version.rb'
|
data/utils/thor/lister.rb
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
# encoding: UTF-8
|
|
6
19
|
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<%- else %>
|
|
4
4
|
<%= ' '*(@namespace_depth+3) %># TODO: Description
|
|
5
5
|
<%- end %>
|
|
6
|
+
<%= stability_doc_helper(@spec['stability']) -%>
|
|
6
7
|
<%= ' '*(@namespace_depth+3) %>#
|
|
7
8
|
<%- unless @parts.nil? || @parts.empty? %><%# URL parts -%>
|
|
8
9
|
<%- @parts.each do |name, info| -%>
|
|
@@ -14,7 +15,17 @@
|
|
|
14
15
|
<%= docs_helper(name, info) -%>
|
|
15
16
|
<%- end -%>
|
|
16
17
|
# @option arguments [Hash] :headers Custom HTTP headers
|
|
17
|
-
|
|
18
|
+
<%- if @spec['body'] -%>
|
|
19
|
+
<%- if @method_name == 'bulk' -%>
|
|
20
|
+
<%= bulk_doc_helper(@spec['body']['description']) -%>
|
|
21
|
+
<%- else -%>
|
|
22
|
+
<%= ' '*(@namespace_depth+1) +
|
|
23
|
+
'# @option arguments [Hash] :body ' + (@spec['body']['description'] ?
|
|
24
|
+
@spec['body']['description'].strip : 'TODO: Description') +
|
|
25
|
+
(@spec['body']['required'] ? ' (*Required*)' : '') + "\n"
|
|
26
|
+
-%>
|
|
27
|
+
<%- end -%>
|
|
28
|
+
<%- end -%>
|
|
18
29
|
<% if @deprecation_note -%>
|
|
19
30
|
#
|
|
20
31
|
# *Deprecation notice*:
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
module Elasticsearch
|
|
6
19
|
<%- if @current_api == :xpack -%>
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
# Licensed to Elasticsearch B.V under one or more
|
|
2
|
-
#
|
|
3
|
-
#
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
4
17
|
|
|
5
18
|
RUBY_1_8 = defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
|
|
6
19
|
|
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.
|
|
4
|
+
version: 7.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karel Minarik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|
|
@@ -357,6 +357,8 @@ files:
|
|
|
357
357
|
- elasticsearch-api.gemspec
|
|
358
358
|
- lib/elasticsearch-api.rb
|
|
359
359
|
- lib/elasticsearch/api.rb
|
|
360
|
+
- lib/elasticsearch/api/actions/abort_benchmark.rb
|
|
361
|
+
- lib/elasticsearch/api/actions/benchmark.rb
|
|
360
362
|
- lib/elasticsearch/api/actions/bulk.rb
|
|
361
363
|
- lib/elasticsearch/api/actions/cat/aliases.rb
|
|
362
364
|
- lib/elasticsearch/api/actions/cat/allocation.rb
|
|
@@ -382,11 +384,14 @@ files:
|
|
|
382
384
|
- lib/elasticsearch/api/actions/clear_scroll.rb
|
|
383
385
|
- lib/elasticsearch/api/actions/cluster/allocation_explain.rb
|
|
384
386
|
- lib/elasticsearch/api/actions/cluster/delete_component_template.rb
|
|
387
|
+
- lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb
|
|
388
|
+
- lib/elasticsearch/api/actions/cluster/exists_component_template.rb
|
|
385
389
|
- lib/elasticsearch/api/actions/cluster/get_component_template.rb
|
|
386
390
|
- lib/elasticsearch/api/actions/cluster/get_settings.rb
|
|
387
391
|
- lib/elasticsearch/api/actions/cluster/health.rb
|
|
388
392
|
- lib/elasticsearch/api/actions/cluster/params_registry.rb
|
|
389
393
|
- lib/elasticsearch/api/actions/cluster/pending_tasks.rb
|
|
394
|
+
- lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb
|
|
390
395
|
- lib/elasticsearch/api/actions/cluster/put_component_template.rb
|
|
391
396
|
- lib/elasticsearch/api/actions/cluster/put_settings.rb
|
|
392
397
|
- lib/elasticsearch/api/actions/cluster/remote_info.rb
|
|
@@ -395,9 +400,14 @@ files:
|
|
|
395
400
|
- lib/elasticsearch/api/actions/cluster/stats.rb
|
|
396
401
|
- lib/elasticsearch/api/actions/count.rb
|
|
397
402
|
- lib/elasticsearch/api/actions/create.rb
|
|
403
|
+
- lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb
|
|
404
|
+
- lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb
|
|
405
|
+
- lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb
|
|
406
|
+
- lib/elasticsearch/api/actions/dangling_indices/params_registry.rb
|
|
398
407
|
- lib/elasticsearch/api/actions/delete.rb
|
|
399
408
|
- lib/elasticsearch/api/actions/delete_by_query.rb
|
|
400
409
|
- lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb
|
|
410
|
+
- lib/elasticsearch/api/actions/delete_by_rethrottle.rb
|
|
401
411
|
- lib/elasticsearch/api/actions/delete_script.rb
|
|
402
412
|
- lib/elasticsearch/api/actions/exists.rb
|
|
403
413
|
- lib/elasticsearch/api/actions/exists_source.rb
|
|
@@ -409,18 +419,19 @@ files:
|
|
|
409
419
|
- lib/elasticsearch/api/actions/get_script_languages.rb
|
|
410
420
|
- lib/elasticsearch/api/actions/get_source.rb
|
|
411
421
|
- lib/elasticsearch/api/actions/index.rb
|
|
422
|
+
- lib/elasticsearch/api/actions/indices/add_block.rb
|
|
412
423
|
- lib/elasticsearch/api/actions/indices/analyze.rb
|
|
413
424
|
- lib/elasticsearch/api/actions/indices/clear_cache.rb
|
|
414
425
|
- lib/elasticsearch/api/actions/indices/clone.rb
|
|
415
426
|
- lib/elasticsearch/api/actions/indices/close.rb
|
|
416
427
|
- lib/elasticsearch/api/actions/indices/create.rb
|
|
417
|
-
- lib/elasticsearch/api/actions/indices/create_data_stream.rb
|
|
418
428
|
- lib/elasticsearch/api/actions/indices/delete.rb
|
|
419
429
|
- lib/elasticsearch/api/actions/indices/delete_alias.rb
|
|
420
|
-
- lib/elasticsearch/api/actions/indices/
|
|
430
|
+
- lib/elasticsearch/api/actions/indices/delete_index_template.rb
|
|
421
431
|
- lib/elasticsearch/api/actions/indices/delete_template.rb
|
|
422
432
|
- lib/elasticsearch/api/actions/indices/exists.rb
|
|
423
433
|
- lib/elasticsearch/api/actions/indices/exists_alias.rb
|
|
434
|
+
- lib/elasticsearch/api/actions/indices/exists_index_template.rb
|
|
424
435
|
- lib/elasticsearch/api/actions/indices/exists_template.rb
|
|
425
436
|
- lib/elasticsearch/api/actions/indices/exists_type.rb
|
|
426
437
|
- lib/elasticsearch/api/actions/indices/flush.rb
|
|
@@ -429,8 +440,8 @@ files:
|
|
|
429
440
|
- lib/elasticsearch/api/actions/indices/freeze.rb
|
|
430
441
|
- lib/elasticsearch/api/actions/indices/get.rb
|
|
431
442
|
- lib/elasticsearch/api/actions/indices/get_alias.rb
|
|
432
|
-
- lib/elasticsearch/api/actions/indices/get_data_streams.rb
|
|
433
443
|
- lib/elasticsearch/api/actions/indices/get_field_mapping.rb
|
|
444
|
+
- lib/elasticsearch/api/actions/indices/get_index_template.rb
|
|
434
445
|
- lib/elasticsearch/api/actions/indices/get_mapping.rb
|
|
435
446
|
- lib/elasticsearch/api/actions/indices/get_settings.rb
|
|
436
447
|
- lib/elasticsearch/api/actions/indices/get_template.rb
|
|
@@ -438,15 +449,19 @@ files:
|
|
|
438
449
|
- lib/elasticsearch/api/actions/indices/open.rb
|
|
439
450
|
- lib/elasticsearch/api/actions/indices/params_registry.rb
|
|
440
451
|
- lib/elasticsearch/api/actions/indices/put_alias.rb
|
|
452
|
+
- lib/elasticsearch/api/actions/indices/put_index_template.rb
|
|
441
453
|
- lib/elasticsearch/api/actions/indices/put_mapping.rb
|
|
442
454
|
- lib/elasticsearch/api/actions/indices/put_settings.rb
|
|
443
455
|
- lib/elasticsearch/api/actions/indices/put_template.rb
|
|
444
456
|
- lib/elasticsearch/api/actions/indices/recovery.rb
|
|
445
457
|
- lib/elasticsearch/api/actions/indices/refresh.rb
|
|
458
|
+
- lib/elasticsearch/api/actions/indices/resolve_index.rb
|
|
446
459
|
- lib/elasticsearch/api/actions/indices/rollover.rb
|
|
447
460
|
- lib/elasticsearch/api/actions/indices/segments.rb
|
|
448
461
|
- lib/elasticsearch/api/actions/indices/shard_stores.rb
|
|
449
462
|
- lib/elasticsearch/api/actions/indices/shrink.rb
|
|
463
|
+
- lib/elasticsearch/api/actions/indices/simulate_index_template.rb
|
|
464
|
+
- lib/elasticsearch/api/actions/indices/simulate_template.rb
|
|
450
465
|
- lib/elasticsearch/api/actions/indices/split.rb
|
|
451
466
|
- lib/elasticsearch/api/actions/indices/stats.rb
|
|
452
467
|
- lib/elasticsearch/api/actions/indices/unfreeze.rb
|
|
@@ -468,6 +483,7 @@ files:
|
|
|
468
483
|
- lib/elasticsearch/api/actions/nodes/info.rb
|
|
469
484
|
- lib/elasticsearch/api/actions/nodes/params_registry.rb
|
|
470
485
|
- lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb
|
|
486
|
+
- lib/elasticsearch/api/actions/nodes/shutdown.rb
|
|
471
487
|
- lib/elasticsearch/api/actions/nodes/stats.rb
|
|
472
488
|
- lib/elasticsearch/api/actions/nodes/usage.rb
|
|
473
489
|
- lib/elasticsearch/api/actions/params_registry.rb
|
|
@@ -476,6 +492,7 @@ files:
|
|
|
476
492
|
- lib/elasticsearch/api/actions/rank_eval.rb
|
|
477
493
|
- lib/elasticsearch/api/actions/reindex.rb
|
|
478
494
|
- lib/elasticsearch/api/actions/reindex_rethrottle.rb
|
|
495
|
+
- lib/elasticsearch/api/actions/remote/info.rb
|
|
479
496
|
- lib/elasticsearch/api/actions/render_search_template.rb
|
|
480
497
|
- lib/elasticsearch/api/actions/scripts_painless_execute.rb
|
|
481
498
|
- lib/elasticsearch/api/actions/scroll.rb
|
|
@@ -504,6 +521,7 @@ files:
|
|
|
504
521
|
- lib/elasticsearch/api/namespace/cat.rb
|
|
505
522
|
- lib/elasticsearch/api/namespace/cluster.rb
|
|
506
523
|
- lib/elasticsearch/api/namespace/common.rb
|
|
524
|
+
- lib/elasticsearch/api/namespace/dangling_indices.rb
|
|
507
525
|
- lib/elasticsearch/api/namespace/indices.rb
|
|
508
526
|
- lib/elasticsearch/api/namespace/ingest.rb
|
|
509
527
|
- lib/elasticsearch/api/namespace/nodes.rb
|
|
@@ -512,7 +530,8 @@ files:
|
|
|
512
530
|
- lib/elasticsearch/api/namespace/tasks.rb
|
|
513
531
|
- lib/elasticsearch/api/utils.rb
|
|
514
532
|
- lib/elasticsearch/api/version.rb
|
|
515
|
-
- spec/
|
|
533
|
+
- spec/elasticsearch/api/actions/abort_benchmark_spec.rb
|
|
534
|
+
- spec/elasticsearch/api/actions/benchmark_spec.rb
|
|
516
535
|
- spec/elasticsearch/api/actions/bulk_spec.rb
|
|
517
536
|
- spec/elasticsearch/api/actions/cat/aliases_spec.rb
|
|
518
537
|
- spec/elasticsearch/api/actions/cat/allocation_spec.rb
|
|
@@ -546,6 +565,9 @@ files:
|
|
|
546
565
|
- spec/elasticsearch/api/actions/cluster/stats_spec.rb
|
|
547
566
|
- spec/elasticsearch/api/actions/count_spec.rb
|
|
548
567
|
- spec/elasticsearch/api/actions/create_document_spec.rb
|
|
568
|
+
- spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb
|
|
569
|
+
- spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb
|
|
570
|
+
- spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb
|
|
549
571
|
- spec/elasticsearch/api/actions/delete_by_query_spec.rb
|
|
550
572
|
- spec/elasticsearch/api/actions/delete_document_spec.rb
|
|
551
573
|
- spec/elasticsearch/api/actions/delete_script_spec.rb
|
|
@@ -557,6 +579,7 @@ files:
|
|
|
557
579
|
- spec/elasticsearch/api/actions/get_script_spec.rb
|
|
558
580
|
- spec/elasticsearch/api/actions/hashie_spec.rb
|
|
559
581
|
- spec/elasticsearch/api/actions/index_document_spec.rb
|
|
582
|
+
- spec/elasticsearch/api/actions/indices/add_block_spec.rb
|
|
560
583
|
- spec/elasticsearch/api/actions/indices/analyze_spec.rb
|
|
561
584
|
- spec/elasticsearch/api/actions/indices/clear_cache_spec.rb
|
|
562
585
|
- spec/elasticsearch/api/actions/indices/clone_spec.rb
|
|
@@ -608,10 +631,12 @@ files:
|
|
|
608
631
|
- spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb
|
|
609
632
|
- spec/elasticsearch/api/actions/nodes/info_spec.rb
|
|
610
633
|
- spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb
|
|
634
|
+
- spec/elasticsearch/api/actions/nodes/shutdown_spec.rb
|
|
611
635
|
- spec/elasticsearch/api/actions/nodes/stats_spec.rb
|
|
612
636
|
- spec/elasticsearch/api/actions/ping_spec.rb
|
|
613
637
|
- spec/elasticsearch/api/actions/put_script_spec.rb
|
|
614
638
|
- spec/elasticsearch/api/actions/reindex_spec.rb
|
|
639
|
+
- spec/elasticsearch/api/actions/remote/info_spec.rb
|
|
615
640
|
- spec/elasticsearch/api/actions/render_search_template_spec.rb
|
|
616
641
|
- spec/elasticsearch/api/actions/scroll_spec.rb
|
|
617
642
|
- spec/elasticsearch/api/actions/search_shards_spec.rb
|
|
@@ -638,11 +663,10 @@ files:
|
|
|
638
663
|
- spec/elasticsearch/api/utils_spec.rb
|
|
639
664
|
- spec/rest_yaml_tests_helper.rb
|
|
640
665
|
- spec/spec_helper.rb
|
|
641
|
-
- test/integration/yaml_test_runner.rb
|
|
642
|
-
- test/test_helper.rb
|
|
643
666
|
- utils/Gemfile
|
|
644
667
|
- utils/README.md
|
|
645
668
|
- utils/Thorfile
|
|
669
|
+
- utils/thor/.rubocop.yml
|
|
646
670
|
- utils/thor/generate_source.rb
|
|
647
671
|
- utils/thor/generator/endpoint_specifics.rb
|
|
648
672
|
- utils/thor/generator/files_helper.rb
|
|
@@ -683,7 +707,8 @@ signing_key:
|
|
|
683
707
|
specification_version: 4
|
|
684
708
|
summary: Ruby API for Elasticsearch.
|
|
685
709
|
test_files:
|
|
686
|
-
- spec/
|
|
710
|
+
- spec/elasticsearch/api/actions/abort_benchmark_spec.rb
|
|
711
|
+
- spec/elasticsearch/api/actions/benchmark_spec.rb
|
|
687
712
|
- spec/elasticsearch/api/actions/bulk_spec.rb
|
|
688
713
|
- spec/elasticsearch/api/actions/cat/aliases_spec.rb
|
|
689
714
|
- spec/elasticsearch/api/actions/cat/allocation_spec.rb
|
|
@@ -717,6 +742,9 @@ test_files:
|
|
|
717
742
|
- spec/elasticsearch/api/actions/cluster/stats_spec.rb
|
|
718
743
|
- spec/elasticsearch/api/actions/count_spec.rb
|
|
719
744
|
- spec/elasticsearch/api/actions/create_document_spec.rb
|
|
745
|
+
- spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb
|
|
746
|
+
- spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb
|
|
747
|
+
- spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb
|
|
720
748
|
- spec/elasticsearch/api/actions/delete_by_query_spec.rb
|
|
721
749
|
- spec/elasticsearch/api/actions/delete_document_spec.rb
|
|
722
750
|
- spec/elasticsearch/api/actions/delete_script_spec.rb
|
|
@@ -728,6 +756,7 @@ test_files:
|
|
|
728
756
|
- spec/elasticsearch/api/actions/get_script_spec.rb
|
|
729
757
|
- spec/elasticsearch/api/actions/hashie_spec.rb
|
|
730
758
|
- spec/elasticsearch/api/actions/index_document_spec.rb
|
|
759
|
+
- spec/elasticsearch/api/actions/indices/add_block_spec.rb
|
|
731
760
|
- spec/elasticsearch/api/actions/indices/analyze_spec.rb
|
|
732
761
|
- spec/elasticsearch/api/actions/indices/clear_cache_spec.rb
|
|
733
762
|
- spec/elasticsearch/api/actions/indices/clone_spec.rb
|
|
@@ -779,10 +808,12 @@ test_files:
|
|
|
779
808
|
- spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb
|
|
780
809
|
- spec/elasticsearch/api/actions/nodes/info_spec.rb
|
|
781
810
|
- spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb
|
|
811
|
+
- spec/elasticsearch/api/actions/nodes/shutdown_spec.rb
|
|
782
812
|
- spec/elasticsearch/api/actions/nodes/stats_spec.rb
|
|
783
813
|
- spec/elasticsearch/api/actions/ping_spec.rb
|
|
784
814
|
- spec/elasticsearch/api/actions/put_script_spec.rb
|
|
785
815
|
- spec/elasticsearch/api/actions/reindex_spec.rb
|
|
816
|
+
- spec/elasticsearch/api/actions/remote/info_spec.rb
|
|
786
817
|
- spec/elasticsearch/api/actions/render_search_template_spec.rb
|
|
787
818
|
- spec/elasticsearch/api/actions/scroll_spec.rb
|
|
788
819
|
- spec/elasticsearch/api/actions/search_shards_spec.rb
|
|
@@ -809,5 +840,3 @@ test_files:
|
|
|
809
840
|
- spec/elasticsearch/api/utils_spec.rb
|
|
810
841
|
- spec/rest_yaml_tests_helper.rb
|
|
811
842
|
- spec/spec_helper.rb
|
|
812
|
-
- test/integration/yaml_test_runner.rb
|
|
813
|
-
- test/test_helper.rb
|