elasticsearch-api 6.8.0 → 7.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +26 -5
- data/LICENSE +202 -0
- data/README.md +24 -21
- data/Rakefile +43 -45
- data/elasticsearch-api.gemspec +56 -55
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +19 -3
- data/lib/elasticsearch/api/actions/benchmark.rb +21 -5
- data/lib/elasticsearch/api/actions/bulk.rb +54 -69
- data/lib/elasticsearch/api/actions/cat/aliases.rb +45 -45
- data/lib/elasticsearch/api/actions/cat/allocation.rb +45 -41
- data/lib/elasticsearch/api/actions/cat/count.rb +38 -39
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +42 -29
- data/lib/elasticsearch/api/actions/cat/health.rb +37 -29
- data/lib/elasticsearch/api/actions/cat/help.rb +31 -9
- data/lib/elasticsearch/api/actions/cat/indices.rb +51 -51
- data/lib/elasticsearch/api/actions/cat/master.rb +36 -26
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +36 -14
- data/lib/elasticsearch/api/actions/cat/nodes.rb +43 -39
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +38 -26
- data/lib/elasticsearch/api/actions/cat/plugins.rb +36 -14
- data/lib/elasticsearch/api/actions/cat/recovery.rb +47 -47
- data/lib/elasticsearch/api/actions/cat/repositories.rb +36 -22
- data/lib/elasticsearch/api/actions/cat/segments.rb +42 -19
- data/lib/elasticsearch/api/actions/cat/shards.rb +45 -50
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +44 -25
- data/lib/elasticsearch/api/actions/cat/tasks.rb +40 -16
- data/lib/elasticsearch/api/actions/cat/templates.rb +43 -16
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +46 -35
- data/lib/elasticsearch/api/actions/clear_scroll.rb +40 -17
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +38 -11
- data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +62 -0
- 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 +64 -0
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +33 -15
- data/lib/elasticsearch/api/actions/cluster/health.rb +46 -27
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +32 -14
- data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +55 -0
- data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +66 -0
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +35 -15
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +27 -12
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +38 -33
- data/lib/elasticsearch/api/actions/cluster/state.rb +53 -44
- data/lib/elasticsearch/api/actions/cluster/stats.rb +38 -19
- data/lib/elasticsearch/api/actions/count.rb +60 -36
- data/lib/elasticsearch/api/actions/create.rb +37 -25
- 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 +62 -47
- data/lib/elasticsearch/api/actions/delete_by_query.rb +82 -57
- data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +36 -11
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +47 -0
- data/lib/elasticsearch/api/actions/delete_script.rb +37 -12
- data/lib/elasticsearch/api/actions/exists.rb +61 -34
- data/lib/elasticsearch/api/actions/exists_source.rb +60 -24
- data/lib/elasticsearch/api/actions/explain.rb +68 -44
- data/lib/elasticsearch/api/actions/field_caps.rb +49 -19
- data/lib/elasticsearch/api/actions/get.rb +60 -40
- data/lib/elasticsearch/api/actions/get_script.rb +37 -13
- data/lib/elasticsearch/api/actions/get_script_context.rb +45 -0
- data/lib/elasticsearch/api/actions/get_script_languages.rb +45 -0
- data/lib/elasticsearch/api/actions/get_source.rb +57 -38
- data/lib/elasticsearch/api/actions/index.rb +67 -74
- data/lib/elasticsearch/api/actions/indices/add_block.rb +68 -0
- data/lib/elasticsearch/api/actions/indices/analyze.rb +41 -34
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +44 -41
- data/lib/elasticsearch/api/actions/indices/clone.rb +65 -0
- data/lib/elasticsearch/api/actions/indices/close.rb +41 -21
- data/lib/elasticsearch/api/actions/indices/create.rb +39 -69
- data/lib/elasticsearch/api/actions/indices/delete.rb +41 -34
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +41 -19
- data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +62 -0
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +36 -20
- data/lib/elasticsearch/api/actions/indices/exists.rb +43 -21
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +46 -18
- data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +65 -0
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +37 -14
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +42 -17
- data/lib/elasticsearch/api/actions/indices/flush.rb +41 -19
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +45 -11
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +42 -40
- data/lib/elasticsearch/api/actions/indices/freeze.rb +24 -7
- data/lib/elasticsearch/api/actions/indices/get.rb +42 -18
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +47 -22
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +59 -37
- data/lib/elasticsearch/api/actions/indices/get_index_template.rb +66 -0
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +57 -32
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +50 -36
- data/lib/elasticsearch/api/actions/indices/get_template.rb +40 -22
- data/lib/elasticsearch/api/actions/indices/get_upgrade.rb +62 -0
- data/lib/elasticsearch/api/actions/indices/open.rb +40 -20
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +43 -26
- data/lib/elasticsearch/api/actions/indices/put_index_template.rb +66 -0
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +58 -40
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +46 -36
- data/lib/elasticsearch/api/actions/indices/put_template.rb +40 -24
- data/lib/elasticsearch/api/actions/indices/recovery.rb +38 -22
- data/lib/elasticsearch/api/actions/indices/refresh.rb +39 -25
- data/lib/elasticsearch/api/actions/indices/resolve_index.rb +60 -0
- data/lib/elasticsearch/api/actions/indices/rollover.rb +47 -18
- data/lib/elasticsearch/api/actions/indices/segments.rb +40 -16
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +41 -13
- data/lib/elasticsearch/api/actions/indices/shrink.rb +40 -17
- 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 +40 -18
- data/lib/elasticsearch/api/actions/indices/stats.rb +68 -104
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +24 -7
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +33 -31
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +42 -14
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +64 -57
- data/lib/elasticsearch/api/actions/info.rb +29 -13
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +36 -11
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +37 -9
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +27 -13
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +37 -13
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +39 -10
- data/lib/elasticsearch/api/actions/mget.rb +55 -43
- data/lib/elasticsearch/api/actions/msearch.rb +67 -50
- data/lib/elasticsearch/api/actions/msearch_template.rb +62 -29
- data/lib/elasticsearch/api/actions/mtermvectors.rb +59 -32
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +46 -22
- data/lib/elasticsearch/api/actions/nodes/info.rb +43 -40
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +37 -21
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +22 -5
- data/lib/elasticsearch/api/actions/nodes/stats.rb +53 -33
- data/lib/elasticsearch/api/actions/nodes/usage.rb +46 -12
- data/lib/elasticsearch/api/actions/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/ping.rb +30 -18
- data/lib/elasticsearch/api/actions/put_script.rb +44 -31
- data/lib/elasticsearch/api/actions/rank_eval.rb +49 -16
- data/lib/elasticsearch/api/actions/reindex.rb +45 -48
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +36 -11
- data/lib/elasticsearch/api/actions/remote/info.rb +18 -2
- data/lib/elasticsearch/api/actions/render_search_template.rb +41 -15
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +38 -14
- data/lib/elasticsearch/api/actions/scroll.rb +51 -51
- data/lib/elasticsearch/api/actions/search.rb +96 -121
- data/lib/elasticsearch/api/actions/search_shards.rb +43 -15
- data/lib/elasticsearch/api/actions/search_template.rb +64 -37
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +58 -0
- data/lib/elasticsearch/api/actions/snapshot/clone.rb +66 -0
- data/lib/elasticsearch/api/actions/snapshot/create.rb +39 -26
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +37 -23
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +38 -21
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +35 -17
- data/lib/elasticsearch/api/actions/snapshot/get.rb +40 -29
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +38 -20
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +39 -31
- data/lib/elasticsearch/api/actions/snapshot/status.rb +41 -21
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +36 -12
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +39 -12
- data/lib/elasticsearch/api/actions/tasks/get.rb +34 -12
- data/lib/elasticsearch/api/actions/tasks/list.rb +35 -16
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +20 -4
- data/lib/elasticsearch/api/actions/termvectors.rb +71 -65
- data/lib/elasticsearch/api/actions/update.rb +68 -72
- data/lib/elasticsearch/api/actions/update_by_query.rb +84 -62
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +36 -11
- data/lib/elasticsearch/api/namespace/cat.rb +17 -1
- data/lib/elasticsearch/api/namespace/cluster.rb +17 -0
- data/lib/elasticsearch/api/namespace/common.rb +17 -0
- data/lib/elasticsearch/api/namespace/dangling_indices.rb +35 -0
- data/lib/elasticsearch/api/namespace/indices.rb +17 -0
- data/lib/elasticsearch/api/namespace/ingest.rb +17 -0
- data/lib/elasticsearch/api/namespace/nodes.rb +17 -0
- data/lib/elasticsearch/api/namespace/remote.rb +17 -0
- data/lib/elasticsearch/api/namespace/snapshot.rb +17 -0
- data/lib/elasticsearch/api/namespace/tasks.rb +17 -0
- data/lib/elasticsearch/api/utils.rb +17 -0
- data/lib/elasticsearch/api/version.rb +18 -1
- data/lib/elasticsearch/api.rb +22 -2
- data/lib/elasticsearch-api.rb +17 -0
- data/spec/elasticsearch/api/actions/abort_benchmark_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/benchmark_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/bulk_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +19 -2
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +36 -5
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +21 -2
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +20 -3
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +19 -2
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +19 -2
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +19 -2
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +18 -18
- data/spec/elasticsearch/api/actions/count_spec.rb +30 -10
- data/spec/elasticsearch/api/actions/create_document_spec.rb +25 -4
- 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 +33 -8
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +21 -8
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +19 -15
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +26 -15
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +19 -1
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +24 -4
- data/spec/elasticsearch/api/actions/get_document_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/get_script_spec.rb +25 -14
- data/spec/elasticsearch/api/actions/hashie_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/index_document_spec.rb +25 -22
- data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +63 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +24 -12
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +122 -0
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +20 -3
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +18 -12
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +21 -4
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +21 -4
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +33 -1
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +124 -0
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +24 -13
- data/spec/elasticsearch/api/actions/info_spec.rb +19 -1
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +23 -7
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +27 -11
- data/spec/elasticsearch/api/actions/mget_spec.rb +22 -5
- data/spec/elasticsearch/api/actions/msearch_spec.rb +38 -39
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +22 -6
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +24 -6
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +21 -4
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +24 -10
- data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/ping_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/put_script_spec.rb +39 -15
- data/spec/elasticsearch/api/actions/reindex_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/remote/info_spec.rb +17 -0
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +44 -9
- data/spec/elasticsearch/api/actions/scroll_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/search_spec.rb +24 -6
- data/spec/elasticsearch/api/actions/search_template_spec.rb +22 -5
- data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +18 -1
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +18 -12
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +22 -12
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +20 -2
- data/spec/elasticsearch/api/actions/update_document_spec.rb +22 -14
- data/spec/elasticsearch/api/api_spec.rb +17 -0
- data/spec/elasticsearch/api/client_spec.rb +17 -0
- data/spec/elasticsearch/api/rest_api_yaml_spec.rb +138 -0
- data/spec/elasticsearch/api/utils_spec.rb +18 -1
- data/spec/rest_yaml_tests_helper.rb +107 -0
- data/spec/spec_helper.rb +33 -34
- data/utils/Gemfile +18 -0
- data/utils/README.md +41 -0
- data/utils/Thorfile +4 -1
- data/utils/thor/.rubocop.yml +2 -0
- data/utils/thor/generate_source.rb +248 -81
- data/utils/thor/generator/endpoint_specifics.rb +181 -0
- data/utils/thor/generator/files_helper.rb +60 -0
- data/utils/thor/lister.rb +20 -4
- data/utils/thor/templates/_documentation_top.erb +39 -0
- data/utils/thor/templates/_method_setup.erb +35 -0
- data/utils/thor/templates/_params_registry.erb +12 -0
- data/utils/thor/templates/_perform_request.erb +38 -0
- data/utils/thor/templates/method.erb +73 -0
- data/utils/thor/templates/{ruby/test.erb → test.erb} +4 -0
- data/utils/thor/templates/{ruby/test_helper.rb → test_helper.rb} +17 -1
- metadata +123 -124
- data/LICENSE.txt +0 -13
- data/lib/elasticsearch/api/actions/count_percolate.rb +0 -82
- data/lib/elasticsearch/api/actions/delete_template.rb +0 -21
- data/lib/elasticsearch/api/actions/field_stats.rb +0 -36
- data/lib/elasticsearch/api/actions/get_template.rb +0 -27
- data/lib/elasticsearch/api/actions/indices/delete_mapping.rb +0 -26
- data/lib/elasticsearch/api/actions/indices/delete_warmer.rb +0 -32
- data/lib/elasticsearch/api/actions/indices/get_aliases.rb +0 -37
- data/lib/elasticsearch/api/actions/indices/get_warmer.rb +0 -62
- data/lib/elasticsearch/api/actions/indices/optimize.rb +0 -77
- data/lib/elasticsearch/api/actions/indices/put_warmer.rb +0 -65
- data/lib/elasticsearch/api/actions/indices/seal.rb +0 -24
- data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +0 -44
- data/lib/elasticsearch/api/actions/indices/status.rb +0 -63
- data/lib/elasticsearch/api/actions/list_benchmarks.rb +0 -27
- data/lib/elasticsearch/api/actions/mlt.rb +0 -130
- data/lib/elasticsearch/api/actions/mpercolate.rb +0 -62
- data/lib/elasticsearch/api/actions/percolate.rb +0 -73
- data/lib/elasticsearch/api/actions/put_template.rb +0 -25
- data/lib/elasticsearch/api/actions/search_exists.rb +0 -63
- data/lib/elasticsearch/api/actions/suggest.rb +0 -49
- data/spec/elasticsearch/api/actions/count_percolate_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/delete_template_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/field_stats_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/get_template_spec.rb +0 -52
- data/spec/elasticsearch/api/actions/indices/delete_mapping_spec.rb +0 -77
- data/spec/elasticsearch/api/actions/indices/delete_warmer_spec.rb +0 -86
- data/spec/elasticsearch/api/actions/indices/get_aliases_spec.rb +0 -55
- data/spec/elasticsearch/api/actions/indices/get_template_spec.rb +0 -59
- data/spec/elasticsearch/api/actions/indices/get_warmer_spec.rb +0 -48
- data/spec/elasticsearch/api/actions/indices/optimize_spec.rb +0 -63
- data/spec/elasticsearch/api/actions/indices/put_warmer_spec.rb +0 -101
- data/spec/elasticsearch/api/actions/indices/seal_spec.rb +0 -18
- data/spec/elasticsearch/api/actions/indices/snapshot_index_spec.rb +0 -89
- data/spec/elasticsearch/api/actions/indices/status_spec.rb +0 -92
- data/spec/elasticsearch/api/actions/list_benchmarks_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/mlt_spec.rb +0 -130
- data/spec/elasticsearch/api/actions/mpercolate_spec.rb +0 -49
- data/spec/elasticsearch/api/actions/percolate_spec.rb +0 -67
- data/spec/elasticsearch/api/actions/put_template_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/scoll_spec.rb +0 -17
- data/spec/elasticsearch/api/actions/search_exists_spec.rb +0 -63
- data/spec/elasticsearch/api/actions/suggest_spec.rb +0 -77
- data/test/integration/yaml_test_runner.rb +0 -546
- data/test/test_helper.rb +0 -42
- data/utils/thor/generate_api.rb +0 -189
- data/utils/thor/templates/ruby/method.erb +0 -60
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:
|
4
|
+
version: 7.10.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:
|
11
|
+
date: 2020-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: ansi
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -39,19 +39,19 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: elasticsearch
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name: elasticsearch-
|
70
|
+
name: elasticsearch-extensions
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
@@ -81,21 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '4.0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '4.0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: elasticsearch-extensions
|
84
|
+
name: elasticsearch-transport
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
100
86
|
requirements:
|
101
87
|
- - ">="
|
@@ -109,7 +95,7 @@ dependencies:
|
|
109
95
|
- !ruby/object:Gem::Version
|
110
96
|
version: '0'
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
98
|
+
name: minitest
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
114
100
|
requirements:
|
115
101
|
- - ">="
|
@@ -123,7 +109,7 @@ dependencies:
|
|
123
109
|
- !ruby/object:Gem::Version
|
124
110
|
version: '0'
|
125
111
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
112
|
+
name: minitest-reporters
|
127
113
|
requirement: !ruby/object:Gem::Requirement
|
128
114
|
requirements:
|
129
115
|
- - ">="
|
@@ -151,7 +137,7 @@ dependencies:
|
|
151
137
|
- !ruby/object:Gem::Version
|
152
138
|
version: '0'
|
153
139
|
- !ruby/object:Gem::Dependency
|
154
|
-
name:
|
140
|
+
name: pry
|
155
141
|
requirement: !ruby/object:Gem::Requirement
|
156
142
|
requirements:
|
157
143
|
- - ">="
|
@@ -165,21 +151,21 @@ dependencies:
|
|
165
151
|
- !ruby/object:Gem::Version
|
166
152
|
version: '0'
|
167
153
|
- !ruby/object:Gem::Dependency
|
168
|
-
name:
|
154
|
+
name: rake
|
169
155
|
requirement: !ruby/object:Gem::Requirement
|
170
156
|
requirements:
|
171
|
-
- - "
|
157
|
+
- - "~>"
|
172
158
|
- !ruby/object:Gem::Version
|
173
|
-
version: '
|
159
|
+
version: '11.1'
|
174
160
|
type: :development
|
175
161
|
prerelease: false
|
176
162
|
version_requirements: !ruby/object:Gem::Requirement
|
177
163
|
requirements:
|
178
|
-
- - "
|
164
|
+
- - "~>"
|
179
165
|
- !ruby/object:Gem::Version
|
180
|
-
version: '
|
166
|
+
version: '11.1'
|
181
167
|
- !ruby/object:Gem::Dependency
|
182
|
-
name:
|
168
|
+
name: shoulda-context
|
183
169
|
requirement: !ruby/object:Gem::Requirement
|
184
170
|
requirements:
|
185
171
|
- - ">="
|
@@ -193,7 +179,7 @@ dependencies:
|
|
193
179
|
- !ruby/object:Gem::Version
|
194
180
|
version: '0'
|
195
181
|
- !ruby/object:Gem::Dependency
|
196
|
-
name:
|
182
|
+
name: yard
|
197
183
|
requirement: !ruby/object:Gem::Requirement
|
198
184
|
requirements:
|
199
185
|
- - ">="
|
@@ -207,7 +193,7 @@ dependencies:
|
|
207
193
|
- !ruby/object:Gem::Version
|
208
194
|
version: '0'
|
209
195
|
- !ruby/object:Gem::Dependency
|
210
|
-
name:
|
196
|
+
name: jsonify
|
211
197
|
requirement: !ruby/object:Gem::Requirement
|
212
198
|
requirements:
|
213
199
|
- - ">="
|
@@ -221,7 +207,7 @@ dependencies:
|
|
221
207
|
- !ruby/object:Gem::Version
|
222
208
|
version: '0'
|
223
209
|
- !ruby/object:Gem::Dependency
|
224
|
-
name:
|
210
|
+
name: hashie
|
225
211
|
requirement: !ruby/object:Gem::Requirement
|
226
212
|
requirements:
|
227
213
|
- - ">="
|
@@ -235,7 +221,7 @@ dependencies:
|
|
235
221
|
- !ruby/object:Gem::Version
|
236
222
|
version: '0'
|
237
223
|
- !ruby/object:Gem::Dependency
|
238
|
-
name:
|
224
|
+
name: cane
|
239
225
|
requirement: !ruby/object:Gem::Requirement
|
240
226
|
requirements:
|
241
227
|
- - ">="
|
@@ -263,7 +249,7 @@ dependencies:
|
|
263
249
|
- !ruby/object:Gem::Version
|
264
250
|
version: '0'
|
265
251
|
- !ruby/object:Gem::Dependency
|
266
|
-
name:
|
252
|
+
name: jbuilder
|
267
253
|
requirement: !ruby/object:Gem::Requirement
|
268
254
|
requirements:
|
269
255
|
- - ">="
|
@@ -277,7 +263,7 @@ dependencies:
|
|
277
263
|
- !ruby/object:Gem::Version
|
278
264
|
version: '0'
|
279
265
|
- !ruby/object:Gem::Dependency
|
280
|
-
name:
|
266
|
+
name: require-prof
|
281
267
|
requirement: !ruby/object:Gem::Requirement
|
282
268
|
requirements:
|
283
269
|
- - ">="
|
@@ -291,21 +277,27 @@ dependencies:
|
|
291
277
|
- !ruby/object:Gem::Version
|
292
278
|
version: '0'
|
293
279
|
- !ruby/object:Gem::Dependency
|
294
|
-
name:
|
280
|
+
name: simplecov
|
295
281
|
requirement: !ruby/object:Gem::Requirement
|
296
282
|
requirements:
|
297
|
-
- - "
|
283
|
+
- - "~>"
|
298
284
|
- !ruby/object:Gem::Version
|
299
|
-
version: '0'
|
285
|
+
version: '0.17'
|
286
|
+
- - "<"
|
287
|
+
- !ruby/object:Gem::Version
|
288
|
+
version: '0.18'
|
300
289
|
type: :development
|
301
290
|
prerelease: false
|
302
291
|
version_requirements: !ruby/object:Gem::Requirement
|
303
292
|
requirements:
|
304
|
-
- - "
|
293
|
+
- - "~>"
|
305
294
|
- !ruby/object:Gem::Version
|
306
|
-
version: '0'
|
295
|
+
version: '0.17'
|
296
|
+
- - "<"
|
297
|
+
- !ruby/object:Gem::Version
|
298
|
+
version: '0.18'
|
307
299
|
- !ruby/object:Gem::Dependency
|
308
|
-
name:
|
300
|
+
name: simplecov-rcov
|
309
301
|
requirement: !ruby/object:Gem::Requirement
|
310
302
|
requirements:
|
311
303
|
- - ">="
|
@@ -332,20 +324,34 @@ dependencies:
|
|
332
324
|
- - "~>"
|
333
325
|
- !ruby/object:Gem::Version
|
334
326
|
version: '2'
|
327
|
+
- !ruby/object:Gem::Dependency
|
328
|
+
name: ruby-prof
|
329
|
+
requirement: !ruby/object:Gem::Requirement
|
330
|
+
requirements:
|
331
|
+
- - ">="
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
version: '0'
|
334
|
+
type: :development
|
335
|
+
prerelease: false
|
336
|
+
version_requirements: !ruby/object:Gem::Requirement
|
337
|
+
requirements:
|
338
|
+
- - ">="
|
339
|
+
- !ruby/object:Gem::Version
|
340
|
+
version: '0'
|
335
341
|
description: 'Ruby API for Elasticsearch. See the `elasticsearch` gem for full integration.
|
336
342
|
|
337
|
-
|
343
|
+
'
|
338
344
|
email:
|
339
345
|
- karel.minarik@elasticsearch.org
|
340
346
|
executables: []
|
341
347
|
extensions: []
|
342
348
|
extra_rdoc_files:
|
343
349
|
- README.md
|
344
|
-
- LICENSE
|
350
|
+
- LICENSE
|
345
351
|
files:
|
346
352
|
- ".gitignore"
|
347
353
|
- Gemfile
|
348
|
-
- LICENSE
|
354
|
+
- LICENSE
|
349
355
|
- README.md
|
350
356
|
- Rakefile
|
351
357
|
- elasticsearch-api.gemspec
|
@@ -377,44 +383,55 @@ files:
|
|
377
383
|
- lib/elasticsearch/api/actions/cat/thread_pool.rb
|
378
384
|
- lib/elasticsearch/api/actions/clear_scroll.rb
|
379
385
|
- lib/elasticsearch/api/actions/cluster/allocation_explain.rb
|
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
|
389
|
+
- lib/elasticsearch/api/actions/cluster/get_component_template.rb
|
380
390
|
- lib/elasticsearch/api/actions/cluster/get_settings.rb
|
381
391
|
- lib/elasticsearch/api/actions/cluster/health.rb
|
382
392
|
- lib/elasticsearch/api/actions/cluster/params_registry.rb
|
383
393
|
- lib/elasticsearch/api/actions/cluster/pending_tasks.rb
|
394
|
+
- lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb
|
395
|
+
- lib/elasticsearch/api/actions/cluster/put_component_template.rb
|
384
396
|
- lib/elasticsearch/api/actions/cluster/put_settings.rb
|
385
397
|
- lib/elasticsearch/api/actions/cluster/remote_info.rb
|
386
398
|
- lib/elasticsearch/api/actions/cluster/reroute.rb
|
387
399
|
- lib/elasticsearch/api/actions/cluster/state.rb
|
388
400
|
- lib/elasticsearch/api/actions/cluster/stats.rb
|
389
401
|
- lib/elasticsearch/api/actions/count.rb
|
390
|
-
- lib/elasticsearch/api/actions/count_percolate.rb
|
391
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
|
392
407
|
- lib/elasticsearch/api/actions/delete.rb
|
393
408
|
- lib/elasticsearch/api/actions/delete_by_query.rb
|
394
409
|
- lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb
|
410
|
+
- lib/elasticsearch/api/actions/delete_by_rethrottle.rb
|
395
411
|
- lib/elasticsearch/api/actions/delete_script.rb
|
396
|
-
- lib/elasticsearch/api/actions/delete_template.rb
|
397
412
|
- lib/elasticsearch/api/actions/exists.rb
|
398
413
|
- lib/elasticsearch/api/actions/exists_source.rb
|
399
414
|
- lib/elasticsearch/api/actions/explain.rb
|
400
415
|
- lib/elasticsearch/api/actions/field_caps.rb
|
401
|
-
- lib/elasticsearch/api/actions/field_stats.rb
|
402
416
|
- lib/elasticsearch/api/actions/get.rb
|
403
417
|
- lib/elasticsearch/api/actions/get_script.rb
|
418
|
+
- lib/elasticsearch/api/actions/get_script_context.rb
|
419
|
+
- lib/elasticsearch/api/actions/get_script_languages.rb
|
404
420
|
- lib/elasticsearch/api/actions/get_source.rb
|
405
|
-
- lib/elasticsearch/api/actions/get_template.rb
|
406
421
|
- lib/elasticsearch/api/actions/index.rb
|
422
|
+
- lib/elasticsearch/api/actions/indices/add_block.rb
|
407
423
|
- lib/elasticsearch/api/actions/indices/analyze.rb
|
408
424
|
- lib/elasticsearch/api/actions/indices/clear_cache.rb
|
425
|
+
- lib/elasticsearch/api/actions/indices/clone.rb
|
409
426
|
- lib/elasticsearch/api/actions/indices/close.rb
|
410
427
|
- lib/elasticsearch/api/actions/indices/create.rb
|
411
428
|
- lib/elasticsearch/api/actions/indices/delete.rb
|
412
429
|
- lib/elasticsearch/api/actions/indices/delete_alias.rb
|
413
|
-
- lib/elasticsearch/api/actions/indices/
|
430
|
+
- lib/elasticsearch/api/actions/indices/delete_index_template.rb
|
414
431
|
- lib/elasticsearch/api/actions/indices/delete_template.rb
|
415
|
-
- lib/elasticsearch/api/actions/indices/delete_warmer.rb
|
416
432
|
- lib/elasticsearch/api/actions/indices/exists.rb
|
417
433
|
- lib/elasticsearch/api/actions/indices/exists_alias.rb
|
434
|
+
- lib/elasticsearch/api/actions/indices/exists_index_template.rb
|
418
435
|
- lib/elasticsearch/api/actions/indices/exists_template.rb
|
419
436
|
- lib/elasticsearch/api/actions/indices/exists_type.rb
|
420
437
|
- lib/elasticsearch/api/actions/indices/flush.rb
|
@@ -423,31 +440,30 @@ files:
|
|
423
440
|
- lib/elasticsearch/api/actions/indices/freeze.rb
|
424
441
|
- lib/elasticsearch/api/actions/indices/get.rb
|
425
442
|
- lib/elasticsearch/api/actions/indices/get_alias.rb
|
426
|
-
- lib/elasticsearch/api/actions/indices/get_aliases.rb
|
427
443
|
- lib/elasticsearch/api/actions/indices/get_field_mapping.rb
|
444
|
+
- lib/elasticsearch/api/actions/indices/get_index_template.rb
|
428
445
|
- lib/elasticsearch/api/actions/indices/get_mapping.rb
|
429
446
|
- lib/elasticsearch/api/actions/indices/get_settings.rb
|
430
447
|
- lib/elasticsearch/api/actions/indices/get_template.rb
|
431
|
-
- lib/elasticsearch/api/actions/indices/
|
448
|
+
- lib/elasticsearch/api/actions/indices/get_upgrade.rb
|
432
449
|
- lib/elasticsearch/api/actions/indices/open.rb
|
433
|
-
- lib/elasticsearch/api/actions/indices/optimize.rb
|
434
450
|
- lib/elasticsearch/api/actions/indices/params_registry.rb
|
435
451
|
- lib/elasticsearch/api/actions/indices/put_alias.rb
|
452
|
+
- lib/elasticsearch/api/actions/indices/put_index_template.rb
|
436
453
|
- lib/elasticsearch/api/actions/indices/put_mapping.rb
|
437
454
|
- lib/elasticsearch/api/actions/indices/put_settings.rb
|
438
455
|
- lib/elasticsearch/api/actions/indices/put_template.rb
|
439
|
-
- lib/elasticsearch/api/actions/indices/put_warmer.rb
|
440
456
|
- lib/elasticsearch/api/actions/indices/recovery.rb
|
441
457
|
- lib/elasticsearch/api/actions/indices/refresh.rb
|
458
|
+
- lib/elasticsearch/api/actions/indices/resolve_index.rb
|
442
459
|
- lib/elasticsearch/api/actions/indices/rollover.rb
|
443
|
-
- lib/elasticsearch/api/actions/indices/seal.rb
|
444
460
|
- lib/elasticsearch/api/actions/indices/segments.rb
|
445
461
|
- lib/elasticsearch/api/actions/indices/shard_stores.rb
|
446
462
|
- lib/elasticsearch/api/actions/indices/shrink.rb
|
447
|
-
- lib/elasticsearch/api/actions/indices/
|
463
|
+
- lib/elasticsearch/api/actions/indices/simulate_index_template.rb
|
464
|
+
- lib/elasticsearch/api/actions/indices/simulate_template.rb
|
448
465
|
- lib/elasticsearch/api/actions/indices/split.rb
|
449
466
|
- lib/elasticsearch/api/actions/indices/stats.rb
|
450
|
-
- lib/elasticsearch/api/actions/indices/status.rb
|
451
467
|
- lib/elasticsearch/api/actions/indices/unfreeze.rb
|
452
468
|
- lib/elasticsearch/api/actions/indices/update_aliases.rb
|
453
469
|
- lib/elasticsearch/api/actions/indices/upgrade.rb
|
@@ -459,10 +475,7 @@ files:
|
|
459
475
|
- lib/elasticsearch/api/actions/ingest/processor_grok.rb
|
460
476
|
- lib/elasticsearch/api/actions/ingest/put_pipeline.rb
|
461
477
|
- lib/elasticsearch/api/actions/ingest/simulate.rb
|
462
|
-
- lib/elasticsearch/api/actions/list_benchmarks.rb
|
463
478
|
- lib/elasticsearch/api/actions/mget.rb
|
464
|
-
- lib/elasticsearch/api/actions/mlt.rb
|
465
|
-
- lib/elasticsearch/api/actions/mpercolate.rb
|
466
479
|
- lib/elasticsearch/api/actions/msearch.rb
|
467
480
|
- lib/elasticsearch/api/actions/msearch_template.rb
|
468
481
|
- lib/elasticsearch/api/actions/mtermvectors.rb
|
@@ -474,10 +487,8 @@ files:
|
|
474
487
|
- lib/elasticsearch/api/actions/nodes/stats.rb
|
475
488
|
- lib/elasticsearch/api/actions/nodes/usage.rb
|
476
489
|
- lib/elasticsearch/api/actions/params_registry.rb
|
477
|
-
- lib/elasticsearch/api/actions/percolate.rb
|
478
490
|
- lib/elasticsearch/api/actions/ping.rb
|
479
491
|
- lib/elasticsearch/api/actions/put_script.rb
|
480
|
-
- lib/elasticsearch/api/actions/put_template.rb
|
481
492
|
- lib/elasticsearch/api/actions/rank_eval.rb
|
482
493
|
- lib/elasticsearch/api/actions/reindex.rb
|
483
494
|
- lib/elasticsearch/api/actions/reindex_rethrottle.rb
|
@@ -486,9 +497,10 @@ files:
|
|
486
497
|
- lib/elasticsearch/api/actions/scripts_painless_execute.rb
|
487
498
|
- lib/elasticsearch/api/actions/scroll.rb
|
488
499
|
- lib/elasticsearch/api/actions/search.rb
|
489
|
-
- lib/elasticsearch/api/actions/search_exists.rb
|
490
500
|
- lib/elasticsearch/api/actions/search_shards.rb
|
491
501
|
- lib/elasticsearch/api/actions/search_template.rb
|
502
|
+
- lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb
|
503
|
+
- lib/elasticsearch/api/actions/snapshot/clone.rb
|
492
504
|
- lib/elasticsearch/api/actions/snapshot/create.rb
|
493
505
|
- lib/elasticsearch/api/actions/snapshot/create_repository.rb
|
494
506
|
- lib/elasticsearch/api/actions/snapshot/delete.rb
|
@@ -499,7 +511,6 @@ files:
|
|
499
511
|
- lib/elasticsearch/api/actions/snapshot/restore.rb
|
500
512
|
- lib/elasticsearch/api/actions/snapshot/status.rb
|
501
513
|
- lib/elasticsearch/api/actions/snapshot/verify_repository.rb
|
502
|
-
- lib/elasticsearch/api/actions/suggest.rb
|
503
514
|
- lib/elasticsearch/api/actions/tasks/cancel.rb
|
504
515
|
- lib/elasticsearch/api/actions/tasks/get.rb
|
505
516
|
- lib/elasticsearch/api/actions/tasks/list.rb
|
@@ -511,6 +522,7 @@ files:
|
|
511
522
|
- lib/elasticsearch/api/namespace/cat.rb
|
512
523
|
- lib/elasticsearch/api/namespace/cluster.rb
|
513
524
|
- lib/elasticsearch/api/namespace/common.rb
|
525
|
+
- lib/elasticsearch/api/namespace/dangling_indices.rb
|
514
526
|
- lib/elasticsearch/api/namespace/indices.rb
|
515
527
|
- lib/elasticsearch/api/namespace/ingest.rb
|
516
528
|
- lib/elasticsearch/api/namespace/nodes.rb
|
@@ -552,32 +564,31 @@ files:
|
|
552
564
|
- spec/elasticsearch/api/actions/cluster/reroute_spec.rb
|
553
565
|
- spec/elasticsearch/api/actions/cluster/state_spec.rb
|
554
566
|
- spec/elasticsearch/api/actions/cluster/stats_spec.rb
|
555
|
-
- spec/elasticsearch/api/actions/count_percolate_spec.rb
|
556
567
|
- spec/elasticsearch/api/actions/count_spec.rb
|
557
568
|
- spec/elasticsearch/api/actions/create_document_spec.rb
|
569
|
+
- spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb
|
570
|
+
- spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb
|
571
|
+
- spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb
|
558
572
|
- spec/elasticsearch/api/actions/delete_by_query_spec.rb
|
559
573
|
- spec/elasticsearch/api/actions/delete_document_spec.rb
|
560
574
|
- spec/elasticsearch/api/actions/delete_script_spec.rb
|
561
|
-
- spec/elasticsearch/api/actions/delete_template_spec.rb
|
562
575
|
- spec/elasticsearch/api/actions/exists_document_spec.rb
|
563
576
|
- spec/elasticsearch/api/actions/explain_document_spec.rb
|
564
577
|
- spec/elasticsearch/api/actions/field_caps_spec.rb
|
565
|
-
- spec/elasticsearch/api/actions/field_stats_spec.rb
|
566
578
|
- spec/elasticsearch/api/actions/get_document_source_spec.rb
|
567
579
|
- spec/elasticsearch/api/actions/get_document_spec.rb
|
568
580
|
- spec/elasticsearch/api/actions/get_script_spec.rb
|
569
|
-
- spec/elasticsearch/api/actions/get_template_spec.rb
|
570
581
|
- spec/elasticsearch/api/actions/hashie_spec.rb
|
571
582
|
- spec/elasticsearch/api/actions/index_document_spec.rb
|
583
|
+
- spec/elasticsearch/api/actions/indices/add_block_spec.rb
|
572
584
|
- spec/elasticsearch/api/actions/indices/analyze_spec.rb
|
573
585
|
- spec/elasticsearch/api/actions/indices/clear_cache_spec.rb
|
586
|
+
- spec/elasticsearch/api/actions/indices/clone_spec.rb
|
574
587
|
- spec/elasticsearch/api/actions/indices/close_spec.rb
|
575
588
|
- spec/elasticsearch/api/actions/indices/create_spec.rb
|
576
589
|
- spec/elasticsearch/api/actions/indices/delete_alias_spec.rb
|
577
|
-
- spec/elasticsearch/api/actions/indices/delete_mapping_spec.rb
|
578
590
|
- spec/elasticsearch/api/actions/indices/delete_spec.rb
|
579
591
|
- spec/elasticsearch/api/actions/indices/delete_template_spec.rb
|
580
|
-
- spec/elasticsearch/api/actions/indices/delete_warmer_spec.rb
|
581
592
|
- spec/elasticsearch/api/actions/indices/exists_alias_spec.rb
|
582
593
|
- spec/elasticsearch/api/actions/indices/exists_spec.rb
|
583
594
|
- spec/elasticsearch/api/actions/indices/exists_template_spec.rb
|
@@ -585,31 +596,26 @@ files:
|
|
585
596
|
- spec/elasticsearch/api/actions/indices/flush_spec.rb
|
586
597
|
- spec/elasticsearch/api/actions/indices/flush_synced_spec.rb
|
587
598
|
- spec/elasticsearch/api/actions/indices/forcemerge_spec.rb
|
599
|
+
- spec/elasticsearch/api/actions/indices/freeze_spec.rb
|
588
600
|
- spec/elasticsearch/api/actions/indices/get_alias_spec.rb
|
589
|
-
- spec/elasticsearch/api/actions/indices/get_aliases_spec.rb
|
590
601
|
- spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb
|
591
602
|
- spec/elasticsearch/api/actions/indices/get_mapping_spec.rb
|
592
603
|
- spec/elasticsearch/api/actions/indices/get_settings_spec.rb
|
593
604
|
- spec/elasticsearch/api/actions/indices/get_spec.rb
|
594
|
-
- spec/elasticsearch/api/actions/indices/get_template_spec.rb
|
595
|
-
- spec/elasticsearch/api/actions/indices/get_warmer_spec.rb
|
596
605
|
- spec/elasticsearch/api/actions/indices/open_spec.rb
|
597
|
-
- spec/elasticsearch/api/actions/indices/optimize_spec.rb
|
598
606
|
- spec/elasticsearch/api/actions/indices/put_alias_spec.rb
|
599
607
|
- spec/elasticsearch/api/actions/indices/put_mapping_spec.rb
|
600
608
|
- spec/elasticsearch/api/actions/indices/put_settings_spec.rb
|
601
609
|
- spec/elasticsearch/api/actions/indices/put_template_spec.rb
|
602
|
-
- spec/elasticsearch/api/actions/indices/put_warmer_spec.rb
|
603
610
|
- spec/elasticsearch/api/actions/indices/recovery_spec.rb
|
604
611
|
- spec/elasticsearch/api/actions/indices/refresh_spec.rb
|
605
612
|
- spec/elasticsearch/api/actions/indices/rollover_spec.rb
|
606
|
-
- spec/elasticsearch/api/actions/indices/seal_spec.rb
|
607
613
|
- spec/elasticsearch/api/actions/indices/segments_spec.rb
|
608
614
|
- spec/elasticsearch/api/actions/indices/shard_stores_spec.rb
|
609
615
|
- spec/elasticsearch/api/actions/indices/shrink_spec.rb
|
610
|
-
- spec/elasticsearch/api/actions/indices/snapshot_index_spec.rb
|
611
616
|
- spec/elasticsearch/api/actions/indices/split_spec.rb
|
612
|
-
- spec/elasticsearch/api/actions/indices/
|
617
|
+
- spec/elasticsearch/api/actions/indices/stats_spec.rb
|
618
|
+
- spec/elasticsearch/api/actions/indices/unfreeze_spec.rb
|
613
619
|
- spec/elasticsearch/api/actions/indices/update_aliases_spec.rb
|
614
620
|
- spec/elasticsearch/api/actions/indices/upgrade_spec.rb
|
615
621
|
- spec/elasticsearch/api/actions/indices/validate_query_spec.rb
|
@@ -619,10 +625,7 @@ files:
|
|
619
625
|
- spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb
|
620
626
|
- spec/elasticsearch/api/actions/ingest/simulate_spec.rb
|
621
627
|
- spec/elasticsearch/api/actions/json_builders_spec.rb
|
622
|
-
- spec/elasticsearch/api/actions/list_benchmarks_spec.rb
|
623
628
|
- spec/elasticsearch/api/actions/mget_spec.rb
|
624
|
-
- spec/elasticsearch/api/actions/mlt_spec.rb
|
625
|
-
- spec/elasticsearch/api/actions/mpercolate_spec.rb
|
626
629
|
- spec/elasticsearch/api/actions/msearch_spec.rb
|
627
630
|
- spec/elasticsearch/api/actions/msearch_template_spec.rb
|
628
631
|
- spec/elasticsearch/api/actions/mtermvectors_spec.rb
|
@@ -631,18 +634,16 @@ files:
|
|
631
634
|
- spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb
|
632
635
|
- spec/elasticsearch/api/actions/nodes/shutdown_spec.rb
|
633
636
|
- spec/elasticsearch/api/actions/nodes/stats_spec.rb
|
634
|
-
- spec/elasticsearch/api/actions/percolate_spec.rb
|
635
637
|
- spec/elasticsearch/api/actions/ping_spec.rb
|
636
638
|
- spec/elasticsearch/api/actions/put_script_spec.rb
|
637
|
-
- spec/elasticsearch/api/actions/put_template_spec.rb
|
638
639
|
- spec/elasticsearch/api/actions/reindex_spec.rb
|
639
640
|
- spec/elasticsearch/api/actions/remote/info_spec.rb
|
640
641
|
- spec/elasticsearch/api/actions/render_search_template_spec.rb
|
641
|
-
- spec/elasticsearch/api/actions/
|
642
|
-
- spec/elasticsearch/api/actions/search_exists_spec.rb
|
642
|
+
- spec/elasticsearch/api/actions/scroll_spec.rb
|
643
643
|
- spec/elasticsearch/api/actions/search_shards_spec.rb
|
644
644
|
- spec/elasticsearch/api/actions/search_spec.rb
|
645
645
|
- spec/elasticsearch/api/actions/search_template_spec.rb
|
646
|
+
- spec/elasticsearch/api/actions/snapshot/clone_spec.rb
|
646
647
|
- spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb
|
647
648
|
- spec/elasticsearch/api/actions/snapshot/create_spec.rb
|
648
649
|
- spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb
|
@@ -652,7 +653,6 @@ files:
|
|
652
653
|
- spec/elasticsearch/api/actions/snapshot/restore_spec.rb
|
653
654
|
- spec/elasticsearch/api/actions/snapshot/status_spec.rb
|
654
655
|
- spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb
|
655
|
-
- spec/elasticsearch/api/actions/suggest_spec.rb
|
656
656
|
- spec/elasticsearch/api/actions/tasks/cancel_spec.rb
|
657
657
|
- spec/elasticsearch/api/actions/tasks/get_spec.rb
|
658
658
|
- spec/elasticsearch/api/actions/tasks/list_spec.rb
|
@@ -661,22 +661,33 @@ files:
|
|
661
661
|
- spec/elasticsearch/api/actions/update_document_spec.rb
|
662
662
|
- spec/elasticsearch/api/api_spec.rb
|
663
663
|
- spec/elasticsearch/api/client_spec.rb
|
664
|
+
- spec/elasticsearch/api/rest_api_yaml_spec.rb
|
664
665
|
- spec/elasticsearch/api/utils_spec.rb
|
666
|
+
- spec/rest_yaml_tests_helper.rb
|
665
667
|
- spec/spec_helper.rb
|
666
|
-
- test/integration/yaml_test_runner.rb
|
667
|
-
- test/test_helper.rb
|
668
668
|
- utils/Gemfile
|
669
|
+
- utils/README.md
|
669
670
|
- utils/Thorfile
|
670
|
-
- utils/thor
|
671
|
+
- utils/thor/.rubocop.yml
|
671
672
|
- utils/thor/generate_source.rb
|
673
|
+
- utils/thor/generator/endpoint_specifics.rb
|
674
|
+
- utils/thor/generator/files_helper.rb
|
672
675
|
- utils/thor/lister.rb
|
673
|
-
- utils/thor/templates/
|
674
|
-
- utils/thor/templates/
|
675
|
-
- utils/thor/templates/
|
676
|
-
|
676
|
+
- utils/thor/templates/_documentation_top.erb
|
677
|
+
- utils/thor/templates/_method_setup.erb
|
678
|
+
- utils/thor/templates/_params_registry.erb
|
679
|
+
- utils/thor/templates/_perform_request.erb
|
680
|
+
- utils/thor/templates/method.erb
|
681
|
+
- utils/thor/templates/test.erb
|
682
|
+
- utils/thor/templates/test_helper.rb
|
683
|
+
homepage: https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html
|
677
684
|
licenses:
|
678
685
|
- Apache-2.0
|
679
|
-
metadata:
|
686
|
+
metadata:
|
687
|
+
homepage_uri: https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html
|
688
|
+
changelog_uri: https://github.com/elastic/elasticsearch-ruby/blob/7.x/CHANGELOG.md
|
689
|
+
source_code_uri: https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-api
|
690
|
+
bug_tracker_uri: https://github.com/elastic/elasticsearch-ruby/issues
|
680
691
|
post_install_message:
|
681
692
|
rdoc_options:
|
682
693
|
- "--charset=UTF-8"
|
@@ -686,14 +697,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
686
697
|
requirements:
|
687
698
|
- - ">="
|
688
699
|
- !ruby/object:Gem::Version
|
689
|
-
version: '
|
700
|
+
version: '2.4'
|
690
701
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
691
702
|
requirements:
|
692
703
|
- - ">="
|
693
704
|
- !ruby/object:Gem::Version
|
694
705
|
version: '0'
|
695
706
|
requirements: []
|
696
|
-
rubygems_version: 3.
|
707
|
+
rubygems_version: 3.1.2
|
697
708
|
signing_key:
|
698
709
|
specification_version: 4
|
699
710
|
summary: Ruby API for Elasticsearch.
|
@@ -731,32 +742,31 @@ test_files:
|
|
731
742
|
- spec/elasticsearch/api/actions/cluster/reroute_spec.rb
|
732
743
|
- spec/elasticsearch/api/actions/cluster/state_spec.rb
|
733
744
|
- spec/elasticsearch/api/actions/cluster/stats_spec.rb
|
734
|
-
- spec/elasticsearch/api/actions/count_percolate_spec.rb
|
735
745
|
- spec/elasticsearch/api/actions/count_spec.rb
|
736
746
|
- spec/elasticsearch/api/actions/create_document_spec.rb
|
747
|
+
- spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb
|
748
|
+
- spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb
|
749
|
+
- spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb
|
737
750
|
- spec/elasticsearch/api/actions/delete_by_query_spec.rb
|
738
751
|
- spec/elasticsearch/api/actions/delete_document_spec.rb
|
739
752
|
- spec/elasticsearch/api/actions/delete_script_spec.rb
|
740
|
-
- spec/elasticsearch/api/actions/delete_template_spec.rb
|
741
753
|
- spec/elasticsearch/api/actions/exists_document_spec.rb
|
742
754
|
- spec/elasticsearch/api/actions/explain_document_spec.rb
|
743
755
|
- spec/elasticsearch/api/actions/field_caps_spec.rb
|
744
|
-
- spec/elasticsearch/api/actions/field_stats_spec.rb
|
745
756
|
- spec/elasticsearch/api/actions/get_document_source_spec.rb
|
746
757
|
- spec/elasticsearch/api/actions/get_document_spec.rb
|
747
758
|
- spec/elasticsearch/api/actions/get_script_spec.rb
|
748
|
-
- spec/elasticsearch/api/actions/get_template_spec.rb
|
749
759
|
- spec/elasticsearch/api/actions/hashie_spec.rb
|
750
760
|
- spec/elasticsearch/api/actions/index_document_spec.rb
|
761
|
+
- spec/elasticsearch/api/actions/indices/add_block_spec.rb
|
751
762
|
- spec/elasticsearch/api/actions/indices/analyze_spec.rb
|
752
763
|
- spec/elasticsearch/api/actions/indices/clear_cache_spec.rb
|
764
|
+
- spec/elasticsearch/api/actions/indices/clone_spec.rb
|
753
765
|
- spec/elasticsearch/api/actions/indices/close_spec.rb
|
754
766
|
- spec/elasticsearch/api/actions/indices/create_spec.rb
|
755
767
|
- spec/elasticsearch/api/actions/indices/delete_alias_spec.rb
|
756
|
-
- spec/elasticsearch/api/actions/indices/delete_mapping_spec.rb
|
757
768
|
- spec/elasticsearch/api/actions/indices/delete_spec.rb
|
758
769
|
- spec/elasticsearch/api/actions/indices/delete_template_spec.rb
|
759
|
-
- spec/elasticsearch/api/actions/indices/delete_warmer_spec.rb
|
760
770
|
- spec/elasticsearch/api/actions/indices/exists_alias_spec.rb
|
761
771
|
- spec/elasticsearch/api/actions/indices/exists_spec.rb
|
762
772
|
- spec/elasticsearch/api/actions/indices/exists_template_spec.rb
|
@@ -764,31 +774,26 @@ test_files:
|
|
764
774
|
- spec/elasticsearch/api/actions/indices/flush_spec.rb
|
765
775
|
- spec/elasticsearch/api/actions/indices/flush_synced_spec.rb
|
766
776
|
- spec/elasticsearch/api/actions/indices/forcemerge_spec.rb
|
777
|
+
- spec/elasticsearch/api/actions/indices/freeze_spec.rb
|
767
778
|
- spec/elasticsearch/api/actions/indices/get_alias_spec.rb
|
768
|
-
- spec/elasticsearch/api/actions/indices/get_aliases_spec.rb
|
769
779
|
- spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb
|
770
780
|
- spec/elasticsearch/api/actions/indices/get_mapping_spec.rb
|
771
781
|
- spec/elasticsearch/api/actions/indices/get_settings_spec.rb
|
772
782
|
- spec/elasticsearch/api/actions/indices/get_spec.rb
|
773
|
-
- spec/elasticsearch/api/actions/indices/get_template_spec.rb
|
774
|
-
- spec/elasticsearch/api/actions/indices/get_warmer_spec.rb
|
775
783
|
- spec/elasticsearch/api/actions/indices/open_spec.rb
|
776
|
-
- spec/elasticsearch/api/actions/indices/optimize_spec.rb
|
777
784
|
- spec/elasticsearch/api/actions/indices/put_alias_spec.rb
|
778
785
|
- spec/elasticsearch/api/actions/indices/put_mapping_spec.rb
|
779
786
|
- spec/elasticsearch/api/actions/indices/put_settings_spec.rb
|
780
787
|
- spec/elasticsearch/api/actions/indices/put_template_spec.rb
|
781
|
-
- spec/elasticsearch/api/actions/indices/put_warmer_spec.rb
|
782
788
|
- spec/elasticsearch/api/actions/indices/recovery_spec.rb
|
783
789
|
- spec/elasticsearch/api/actions/indices/refresh_spec.rb
|
784
790
|
- spec/elasticsearch/api/actions/indices/rollover_spec.rb
|
785
|
-
- spec/elasticsearch/api/actions/indices/seal_spec.rb
|
786
791
|
- spec/elasticsearch/api/actions/indices/segments_spec.rb
|
787
792
|
- spec/elasticsearch/api/actions/indices/shard_stores_spec.rb
|
788
793
|
- spec/elasticsearch/api/actions/indices/shrink_spec.rb
|
789
|
-
- spec/elasticsearch/api/actions/indices/snapshot_index_spec.rb
|
790
794
|
- spec/elasticsearch/api/actions/indices/split_spec.rb
|
791
|
-
- spec/elasticsearch/api/actions/indices/
|
795
|
+
- spec/elasticsearch/api/actions/indices/stats_spec.rb
|
796
|
+
- spec/elasticsearch/api/actions/indices/unfreeze_spec.rb
|
792
797
|
- spec/elasticsearch/api/actions/indices/update_aliases_spec.rb
|
793
798
|
- spec/elasticsearch/api/actions/indices/upgrade_spec.rb
|
794
799
|
- spec/elasticsearch/api/actions/indices/validate_query_spec.rb
|
@@ -798,10 +803,7 @@ test_files:
|
|
798
803
|
- spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb
|
799
804
|
- spec/elasticsearch/api/actions/ingest/simulate_spec.rb
|
800
805
|
- spec/elasticsearch/api/actions/json_builders_spec.rb
|
801
|
-
- spec/elasticsearch/api/actions/list_benchmarks_spec.rb
|
802
806
|
- spec/elasticsearch/api/actions/mget_spec.rb
|
803
|
-
- spec/elasticsearch/api/actions/mlt_spec.rb
|
804
|
-
- spec/elasticsearch/api/actions/mpercolate_spec.rb
|
805
807
|
- spec/elasticsearch/api/actions/msearch_spec.rb
|
806
808
|
- spec/elasticsearch/api/actions/msearch_template_spec.rb
|
807
809
|
- spec/elasticsearch/api/actions/mtermvectors_spec.rb
|
@@ -810,18 +812,16 @@ test_files:
|
|
810
812
|
- spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb
|
811
813
|
- spec/elasticsearch/api/actions/nodes/shutdown_spec.rb
|
812
814
|
- spec/elasticsearch/api/actions/nodes/stats_spec.rb
|
813
|
-
- spec/elasticsearch/api/actions/percolate_spec.rb
|
814
815
|
- spec/elasticsearch/api/actions/ping_spec.rb
|
815
816
|
- spec/elasticsearch/api/actions/put_script_spec.rb
|
816
|
-
- spec/elasticsearch/api/actions/put_template_spec.rb
|
817
817
|
- spec/elasticsearch/api/actions/reindex_spec.rb
|
818
818
|
- spec/elasticsearch/api/actions/remote/info_spec.rb
|
819
819
|
- spec/elasticsearch/api/actions/render_search_template_spec.rb
|
820
|
-
- spec/elasticsearch/api/actions/
|
821
|
-
- spec/elasticsearch/api/actions/search_exists_spec.rb
|
820
|
+
- spec/elasticsearch/api/actions/scroll_spec.rb
|
822
821
|
- spec/elasticsearch/api/actions/search_shards_spec.rb
|
823
822
|
- spec/elasticsearch/api/actions/search_spec.rb
|
824
823
|
- spec/elasticsearch/api/actions/search_template_spec.rb
|
824
|
+
- spec/elasticsearch/api/actions/snapshot/clone_spec.rb
|
825
825
|
- spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb
|
826
826
|
- spec/elasticsearch/api/actions/snapshot/create_spec.rb
|
827
827
|
- spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb
|
@@ -831,7 +831,6 @@ test_files:
|
|
831
831
|
- spec/elasticsearch/api/actions/snapshot/restore_spec.rb
|
832
832
|
- spec/elasticsearch/api/actions/snapshot/status_spec.rb
|
833
833
|
- spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb
|
834
|
-
- spec/elasticsearch/api/actions/suggest_spec.rb
|
835
834
|
- spec/elasticsearch/api/actions/tasks/cancel_spec.rb
|
836
835
|
- spec/elasticsearch/api/actions/tasks/get_spec.rb
|
837
836
|
- spec/elasticsearch/api/actions/tasks/list_spec.rb
|
@@ -840,7 +839,7 @@ test_files:
|
|
840
839
|
- spec/elasticsearch/api/actions/update_document_spec.rb
|
841
840
|
- spec/elasticsearch/api/api_spec.rb
|
842
841
|
- spec/elasticsearch/api/client_spec.rb
|
842
|
+
- spec/elasticsearch/api/rest_api_yaml_spec.rb
|
843
843
|
- spec/elasticsearch/api/utils_spec.rb
|
844
|
+
- spec/rest_yaml_tests_helper.rb
|
844
845
|
- spec/spec_helper.rb
|
845
|
-
- test/integration/yaml_test_runner.rb
|
846
|
-
- test/test_helper.rb
|