elasticsearch-api 6.0.1 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +23 -0
- data/LICENSE.txt +199 -10
- data/README.md +3 -3
- data/Rakefile +31 -2
- data/elasticsearch-api.gemspec +21 -4
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +17 -0
- data/lib/elasticsearch/api/actions/benchmark.rb +23 -3
- data/lib/elasticsearch/api/actions/bulk.rb +38 -18
- data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -14
- data/lib/elasticsearch/api/actions/cat/allocation.rb +31 -15
- data/lib/elasticsearch/api/actions/cat/count.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +32 -11
- data/lib/elasticsearch/api/actions/cat/health.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/help.rb +25 -3
- data/lib/elasticsearch/api/actions/cat/indices.rb +33 -13
- data/lib/elasticsearch/api/actions/cat/master.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/nodes.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/plugins.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/recovery.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/repositories.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/segments.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/shards.rb +31 -12
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/tasks.rb +31 -11
- data/lib/elasticsearch/api/actions/cat/templates.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +32 -12
- data/lib/elasticsearch/api/actions/clear_scroll.rb +21 -6
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +27 -6
- data/lib/elasticsearch/api/actions/cluster/health.rb +35 -13
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +26 -3
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +17 -0
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +29 -3
- data/lib/elasticsearch/api/actions/cluster/state.rb +31 -14
- data/lib/elasticsearch/api/actions/cluster/stats.rb +25 -5
- data/lib/elasticsearch/api/actions/count.rb +44 -34
- data/lib/elasticsearch/api/actions/create.rb +17 -0
- data/lib/elasticsearch/api/actions/delete.rb +38 -18
- data/lib/elasticsearch/api/actions/delete_by_query.rb +40 -21
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/delete_script.rb +28 -11
- data/lib/elasticsearch/api/actions/exists.rb +37 -19
- data/lib/elasticsearch/api/actions/exists_source.rb +68 -0
- data/lib/elasticsearch/api/actions/explain.rb +54 -40
- data/lib/elasticsearch/api/actions/field_caps.rb +28 -10
- data/lib/elasticsearch/api/actions/get.rb +45 -29
- data/lib/elasticsearch/api/actions/get_script.rb +28 -5
- data/lib/elasticsearch/api/actions/get_source.rb +53 -27
- data/lib/elasticsearch/api/actions/index.rb +37 -15
- data/lib/elasticsearch/api/actions/indices/analyze.rb +30 -24
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +31 -14
- data/lib/elasticsearch/api/actions/indices/close.rb +29 -10
- data/lib/elasticsearch/api/actions/indices/create.rb +38 -20
- data/lib/elasticsearch/api/actions/indices/delete.rb +28 -9
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/exists.rb +29 -11
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +26 -4
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/flush.rb +28 -8
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +26 -7
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +36 -15
- data/lib/elasticsearch/api/actions/indices/freeze.rb +40 -0
- data/lib/elasticsearch/api/actions/indices/get.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +31 -20
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +36 -21
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +38 -28
- data/lib/elasticsearch/api/actions/indices/get_template.rb +30 -6
- data/lib/elasticsearch/api/actions/indices/open.rb +35 -21
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +27 -4
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +37 -32
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +36 -28
- data/lib/elasticsearch/api/actions/indices/put_template.rb +32 -6
- data/lib/elasticsearch/api/actions/indices/recovery.rb +25 -6
- data/lib/elasticsearch/api/actions/indices/refresh.rb +30 -19
- data/lib/elasticsearch/api/actions/indices/rollover.rb +31 -12
- data/lib/elasticsearch/api/actions/indices/segments.rb +32 -21
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +27 -8
- data/lib/elasticsearch/api/actions/indices/shrink.rb +27 -13
- data/lib/elasticsearch/api/actions/indices/split.rb +59 -0
- data/lib/elasticsearch/api/actions/indices/stats.rb +51 -29
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +39 -0
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +28 -5
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +34 -17
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +45 -36
- data/lib/elasticsearch/api/actions/info.rb +17 -0
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +23 -3
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +29 -0
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +23 -3
- data/lib/elasticsearch/api/actions/mget.rb +37 -25
- data/lib/elasticsearch/api/actions/msearch.rb +36 -9
- data/lib/elasticsearch/api/actions/msearch_template.rb +33 -4
- data/lib/elasticsearch/api/actions/mtermvectors.rb +52 -33
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +31 -11
- data/lib/elasticsearch/api/actions/nodes/info.rb +40 -19
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +54 -0
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +25 -5
- data/lib/elasticsearch/api/actions/nodes/stats.rb +39 -39
- data/lib/elasticsearch/api/actions/nodes/usage.rb +31 -0
- data/lib/elasticsearch/api/actions/params_registry.rb +59 -0
- data/lib/elasticsearch/api/actions/ping.rb +17 -0
- data/lib/elasticsearch/api/actions/put_script.rb +32 -14
- data/lib/elasticsearch/api/actions/rank_eval.rb +53 -0
- data/lib/elasticsearch/api/actions/reindex.rb +38 -18
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/remote/info.rb +17 -0
- data/lib/elasticsearch/api/actions/render_search_template.rb +24 -4
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +38 -0
- data/lib/elasticsearch/api/actions/scroll.rb +30 -8
- data/lib/elasticsearch/api/actions/search.rb +46 -20
- data/lib/elasticsearch/api/actions/search_shards.rb +29 -8
- data/lib/elasticsearch/api/actions/search_template.rb +51 -27
- data/lib/elasticsearch/api/actions/snapshot/create.rb +25 -5
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +23 -5
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/get.rb +28 -8
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/status.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +25 -7
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +30 -17
- data/lib/elasticsearch/api/actions/tasks/get.rb +27 -6
- data/lib/elasticsearch/api/actions/tasks/list.rb +35 -22
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +65 -43
- data/lib/elasticsearch/api/actions/update.rb +50 -21
- data/lib/elasticsearch/api/actions/update_by_query.rb +49 -46
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/namespace/cat.rb +17 -0
- data/lib/elasticsearch/api/namespace/cluster.rb +17 -0
- data/lib/elasticsearch/api/namespace/common.rb +19 -2
- 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 +20 -0
- data/lib/elasticsearch-api.rb +17 -0
- 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 +139 -0
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +69 -0
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/count_spec.rb +66 -0
- data/spec/elasticsearch/api/actions/create_document_spec.rb +82 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +110 -0
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +126 -0
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +99 -0
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +98 -0
- data/spec/elasticsearch/api/actions/get_document_spec.rb +123 -0
- data/spec/elasticsearch/api/actions/get_script_spec.rb +49 -0
- data/{test/unit/hashie_test.rb → spec/elasticsearch/api/actions/hashie_spec.rb} +28 -17
- data/spec/elasticsearch/api/actions/index_document_spec.rb +145 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +73 -0
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +84 -0
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +86 -0
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +93 -0
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +90 -0
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +89 -0
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +107 -0
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +42 -0
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +125 -0
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +128 -0
- data/spec/elasticsearch/api/actions/info_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/mget_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/msearch_spec.rb +169 -0
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +94 -0
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +45 -0
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +87 -0
- data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/ping_spec.rb +75 -0
- data/spec/elasticsearch/api/actions/put_script_spec.rb +49 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/remote/info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/scoll_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_spec.rb +148 -0
- data/spec/elasticsearch/api/actions/search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/update_document_spec.rb +125 -0
- data/spec/elasticsearch/api/api_spec.rb +43 -0
- data/spec/elasticsearch/api/client_spec.rb +46 -0
- data/spec/elasticsearch/api/utils_spec.rb +430 -0
- data/spec/spec_helper.rb +79 -0
- data/test/integration/yaml_test_runner.rb +91 -44
- data/test/test_helper.rb +62 -13
- data/utils/Gemfile +17 -0
- data/utils/Thorfile +17 -0
- data/utils/thor/generate_api.rb +17 -0
- data/utils/thor/generate_source.rb +23 -2
- data/utils/thor/lister.rb +17 -0
- data/utils/thor/templates/ruby/method.erb +17 -0
- data/utils/thor/templates/ruby/test.erb +17 -0
- data/utils/thor/templates/ruby/test_helper.rb +17 -1
- metadata +290 -323
- data/lib/elasticsearch/api/actions/count_percolate.rb +0 -78
- data/lib/elasticsearch/api/actions/delete_template.rb +0 -21
- data/lib/elasticsearch/api/actions/field_stats.rb +0 -32
- 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 -34
- data/lib/elasticsearch/api/actions/indices/get_warmer.rb +0 -60
- data/lib/elasticsearch/api/actions/indices/optimize.rb +0 -74
- data/lib/elasticsearch/api/actions/indices/put_warmer.rb +0 -64
- data/lib/elasticsearch/api/actions/indices/seal.rb +0 -24
- data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +0 -43
- data/lib/elasticsearch/api/actions/indices/status.rb +0 -60
- data/lib/elasticsearch/api/actions/list_benchmarks.rb +0 -27
- data/lib/elasticsearch/api/actions/mlt.rb +0 -128
- data/lib/elasticsearch/api/actions/mpercolate.rb +0 -59
- data/lib/elasticsearch/api/actions/percolate.rb +0 -71
- data/lib/elasticsearch/api/actions/put_template.rb +0 -25
- data/lib/elasticsearch/api/actions/search_exists.rb +0 -59
- data/lib/elasticsearch/api/actions/suggest.rb +0 -46
- data/test/unit/abort_benchmark_test.rb +0 -26
- data/test/unit/api_test.rb +0 -28
- data/test/unit/benchmark_test.rb +0 -26
- data/test/unit/bulk_test.rb +0 -133
- data/test/unit/cat/aliases_test.rb +0 -26
- data/test/unit/cat/allocation_test.rb +0 -26
- data/test/unit/cat/count_test.rb +0 -26
- data/test/unit/cat/fielddata_test.rb +0 -38
- data/test/unit/cat/health_test.rb +0 -26
- data/test/unit/cat/help_test.rb +0 -26
- data/test/unit/cat/indices_test.rb +0 -26
- data/test/unit/cat/master_test.rb +0 -26
- data/test/unit/cat/nodeattrs_test.rb +0 -26
- data/test/unit/cat/nodes_test.rb +0 -26
- data/test/unit/cat/pending_tasks_test.rb +0 -26
- data/test/unit/cat/plugins_test.rb +0 -26
- data/test/unit/cat/recovery_test.rb +0 -26
- data/test/unit/cat/repositories_test.rb +0 -26
- data/test/unit/cat/segments_test.rb +0 -26
- data/test/unit/cat/shards_test.rb +0 -26
- data/test/unit/cat/snapshots_test.rb +0 -26
- data/test/unit/cat/tasks_test.rb +0 -26
- data/test/unit/cat/templates_test.rb +0 -26
- data/test/unit/cat/thread_pool_test.rb +0 -26
- data/test/unit/clear_scroll_test.rb +0 -38
- data/test/unit/client_test.rb +0 -31
- data/test/unit/cluster/allocation_explain_test.rb +0 -26
- data/test/unit/cluster/get_settings_test.rb +0 -26
- data/test/unit/cluster/health_test.rb +0 -47
- data/test/unit/cluster/pending_tasks_test.rb +0 -26
- data/test/unit/cluster/put_settings_test.rb +0 -26
- data/test/unit/cluster/remote_info_test.rb +0 -26
- data/test/unit/cluster/reroute_test.rb +0 -38
- data/test/unit/cluster/state_test.rb +0 -46
- data/test/unit/cluster/stats_test.rb +0 -26
- data/test/unit/count_percolate_test.rb +0 -26
- data/test/unit/count_test.rb +0 -46
- data/test/unit/create_document_test.rb +0 -56
- data/test/unit/delete_by_query_test.rb +0 -51
- data/test/unit/delete_document_test.rb +0 -85
- data/test/unit/delete_script_test.rb +0 -26
- data/test/unit/delete_template_test.rb +0 -26
- data/test/unit/exists_document_test.rb +0 -90
- data/test/unit/explain_document_test.rb +0 -73
- data/test/unit/field_caps_test.rb +0 -26
- data/test/unit/field_stats_test.rb +0 -26
- data/test/unit/get_document_source_test.rb +0 -71
- data/test/unit/get_document_test.rb +0 -85
- data/test/unit/get_script_test.rb +0 -26
- data/test/unit/get_template_test.rb +0 -41
- data/test/unit/index_document_test.rb +0 -92
- data/test/unit/indices/analyze_test.rb +0 -76
- data/test/unit/indices/clear_cache_test.rb +0 -54
- data/test/unit/indices/close_test.rb +0 -51
- data/test/unit/indices/create_test.rb +0 -51
- data/test/unit/indices/delete_alias_test.rb +0 -47
- data/test/unit/indices/delete_mapping_test.rb +0 -56
- data/test/unit/indices/delete_template_test.rb +0 -51
- data/test/unit/indices/delete_test.rb +0 -69
- data/test/unit/indices/delete_warmer_test.rb +0 -68
- data/test/unit/indices/exists_alias_test.rb +0 -73
- data/test/unit/indices/exists_template_test.rb +0 -59
- data/test/unit/indices/exists_test.rb +0 -71
- data/test/unit/indices/exists_type_test.rb +0 -73
- data/test/unit/indices/flush_synced_test.rb +0 -41
- data/test/unit/indices/flush_test.rb +0 -54
- data/test/unit/indices/forcemerge_test.rb +0 -26
- data/test/unit/indices/get_alias_test.rb +0 -44
- data/test/unit/indices/get_aliases_test.rb +0 -54
- data/test/unit/indices/get_field_mapping_test.rb +0 -44
- data/test/unit/indices/get_mapping_test.rb +0 -62
- data/test/unit/indices/get_settings_test.rb +0 -54
- data/test/unit/indices/get_template_test.rb +0 -43
- data/test/unit/indices/get_test.rb +0 -45
- data/test/unit/indices/get_warmer_test.rb +0 -44
- data/test/unit/indices/open_test.rb +0 -51
- data/test/unit/indices/optimize_test.rb +0 -54
- data/test/unit/indices/put_alias_test.rb +0 -59
- data/test/unit/indices/put_mapping_test.rb +0 -60
- data/test/unit/indices/put_settings_test.rb +0 -68
- data/test/unit/indices/put_template_test.rb +0 -57
- data/test/unit/indices/put_warmer_test.rb +0 -65
- data/test/unit/indices/recovery_test.rb +0 -26
- data/test/unit/indices/refresh_test.rb +0 -64
- data/test/unit/indices/rollover_test.rb +0 -38
- data/test/unit/indices/seal_test.rb +0 -25
- data/test/unit/indices/segments_test.rb +0 -64
- data/test/unit/indices/shard_stores_test.rb +0 -26
- data/test/unit/indices/shrink_test.rb +0 -33
- data/test/unit/indices/snapshot_index_test.rb +0 -64
- data/test/unit/indices/stats_test.rb +0 -76
- data/test/unit/indices/status_test.rb +0 -72
- data/test/unit/indices/update_aliases_test.rb +0 -42
- data/test/unit/indices/upgrade_test.rb +0 -26
- data/test/unit/indices/validate_query_test.rb +0 -84
- data/test/unit/info_test.rb +0 -26
- data/test/unit/ingest/delete_pipeline_test.rb +0 -41
- data/test/unit/ingest/get_pipeline_test.rb +0 -35
- data/test/unit/ingest/put_pipeline_test.rb +0 -46
- data/test/unit/ingest/simulate_test.rb +0 -35
- data/test/unit/json_builders_test.rb +0 -64
- data/test/unit/list_benchmarks_test.rb +0 -26
- data/test/unit/mget_test.rb +0 -79
- data/test/unit/mlt_test.rb +0 -89
- data/test/unit/mpercolate_test.rb +0 -51
- data/test/unit/msearch_template_test.rb +0 -60
- data/test/unit/msearch_test.rb +0 -129
- data/test/unit/mtermvectors_test.rb +0 -38
- data/test/unit/nodes/hot_threads_test.rb +0 -44
- data/test/unit/nodes/info_test.rb +0 -75
- data/test/unit/nodes/shutdown_test.rb +0 -45
- data/test/unit/nodes/stats_test.rb +0 -65
- data/test/unit/percolate_test.rb +0 -56
- data/test/unit/ping_test.rb +0 -53
- data/test/unit/put_script_test.rb +0 -26
- data/test/unit/put_template_test.rb +0 -26
- data/test/unit/reindex_test.rb +0 -26
- data/test/unit/remote/info_test.rb +0 -26
- data/test/unit/render_search_template_test.rb +0 -25
- data/test/unit/scroll_test.rb +0 -26
- data/test/unit/search_exists_test.rb +0 -26
- data/test/unit/search_shards_test.rb +0 -26
- data/test/unit/search_template_test.rb +0 -26
- data/test/unit/search_test.rb +0 -116
- data/test/unit/snapshot/create_repository_test.rb +0 -38
- data/test/unit/snapshot/create_test.rb +0 -38
- data/test/unit/snapshot/delete_repository_test.rb +0 -35
- data/test/unit/snapshot/delete_test.rb +0 -38
- data/test/unit/snapshot/get_repository_test.rb +0 -26
- data/test/unit/snapshot/get_test.rb +0 -38
- data/test/unit/snapshot/restore_test.rb +0 -38
- data/test/unit/snapshot/status_test.rb +0 -38
- data/test/unit/snapshot/verify_repository_test.rb +0 -26
- data/test/unit/suggest_test.rb +0 -64
- data/test/unit/tasks/cancel_test.rb +0 -38
- data/test/unit/tasks/get_test.rb +0 -26
- data/test/unit/tasks/list_test.rb +0 -38
- data/test/unit/termvectors_test.rb +0 -47
- data/test/unit/update_by_query_test.rb +0 -26
- data/test/unit/update_document_test.rb +0 -85
- data/test/unit/utils_test.rb +0 -310
@@ -1,3 +1,20 @@
|
|
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.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -25,7 +42,7 @@ module Elasticsearch
|
|
25
42
|
# @option arguments [Number] :from Starting offset (default: 0)
|
26
43
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
27
44
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
28
|
-
# @option arguments [String] :conflicts What to do when the delete
|
45
|
+
# @option arguments [String] :conflicts What to do when the delete by query hits version conflicts? (options: abort, proceed)
|
29
46
|
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
30
47
|
# @option arguments [Boolean] :lenient Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
|
31
48
|
# @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random)
|
@@ -37,8 +54,8 @@ module Elasticsearch
|
|
37
54
|
# @option arguments [Number] :size Number of hits to return (default: 10)
|
38
55
|
# @option arguments [List] :sort A comma-separated list of <field>:<direction> pairs
|
39
56
|
# @option arguments [List] :_source True or false to return the _source field or not, or a list of fields to return
|
40
|
-
# @option arguments [List] :
|
41
|
-
# @option arguments [List] :
|
57
|
+
# @option arguments [List] :_source_excludes A list of fields to exclude from the returned _source field
|
58
|
+
# @option arguments [List] :_source_includes A list of fields to extract and return from the _source field
|
42
59
|
# @option arguments [Number] :terminate_after The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early.
|
43
60
|
# @option arguments [List] :stats Specific 'tag' of the request for logging and statistical purposes
|
44
61
|
# @option arguments [Boolean] :version Specify whether to return document version as part of a hit
|
@@ -46,17 +63,30 @@ module Elasticsearch
|
|
46
63
|
# @option arguments [Boolean] :refresh Should the effected indexes be refreshed?
|
47
64
|
# @option arguments [Time] :timeout Time each individual bulk request should wait for shards that are unavailable.
|
48
65
|
# @option arguments [String] :wait_for_active_shards Sets the number of shard copies that must be active before proceeding with the delete by query operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)
|
49
|
-
# @option arguments [Number] :scroll_size Size on the scroll request powering the
|
50
|
-
# @option arguments [Boolean] :wait_for_completion Should the request should block until the delete
|
66
|
+
# @option arguments [Number] :scroll_size Size on the scroll request powering the delete by query
|
67
|
+
# @option arguments [Boolean] :wait_for_completion Should the request should block until the delete by query is complete.
|
51
68
|
# @option arguments [Number] :requests_per_second The throttle for this request in sub-requests per second. -1 means no throttle.
|
52
|
-
# @option arguments [
|
69
|
+
# @option arguments [Number] :slices The number of slices this task should be divided into. Defaults to 1 meaning the task isn't sliced into subtasks.
|
53
70
|
#
|
54
71
|
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-delete-by-query.html
|
55
72
|
#
|
56
73
|
def delete_by_query(arguments={})
|
57
74
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
75
|
+
method = HTTP_POST
|
76
|
+
path = Utils.__pathify Utils.__listify(arguments[:index]),
|
77
|
+
Utils.__listify(arguments[:type]),
|
78
|
+
'/_delete_by_query'
|
58
79
|
|
59
|
-
|
80
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
81
|
+
body = arguments[:body]
|
82
|
+
|
83
|
+
perform_request(method, path, params, body).body
|
84
|
+
end
|
85
|
+
|
86
|
+
# Register this action with its valid params when the module is loaded.
|
87
|
+
#
|
88
|
+
# @since 6.1.1
|
89
|
+
ParamsRegistry.register(:delete_by_query, [
|
60
90
|
:analyzer,
|
61
91
|
:analyze_wildcard,
|
62
92
|
:default_operator,
|
@@ -76,8 +106,8 @@ module Elasticsearch
|
|
76
106
|
:size,
|
77
107
|
:sort,
|
78
108
|
:_source,
|
79
|
-
:
|
80
|
-
:
|
109
|
+
:_source_excludes,
|
110
|
+
:_source_includes,
|
81
111
|
:terminate_after,
|
82
112
|
:stats,
|
83
113
|
:version,
|
@@ -88,18 +118,7 @@ module Elasticsearch
|
|
88
118
|
:scroll_size,
|
89
119
|
:wait_for_completion,
|
90
120
|
:requests_per_second,
|
91
|
-
:slices ]
|
92
|
-
|
93
|
-
method = HTTP_POST
|
94
|
-
path = Utils.__pathify Utils.__listify(arguments[:index]),
|
95
|
-
Utils.__listify(arguments[:type]),
|
96
|
-
'/_delete_by_query'
|
97
|
-
|
98
|
-
params = Utils.__validate_and_extract_params arguments, valid_params
|
99
|
-
body = arguments[:body]
|
100
|
-
|
101
|
-
perform_request(method, path, params, body).body
|
102
|
-
end
|
121
|
+
:slices ].freeze)
|
103
122
|
end
|
104
123
|
end
|
105
124
|
end
|
@@ -0,0 +1,46 @@
|
|
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.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Actions
|
21
|
+
|
22
|
+
# The value of requests_per_second can be changed on a running delete by query using the _rethrottle API
|
23
|
+
#
|
24
|
+
# @option arguments [String] :task_id The task id to rethrottle (*Required*)
|
25
|
+
# @option arguments [Number] :requests_per_second The throttle to set on this request in floating sub-requests per second. -1 means set no throttle.
|
26
|
+
#
|
27
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html
|
28
|
+
#
|
29
|
+
def delete_by_query_rethrottle(arguments={})
|
30
|
+
raise ArgumentError, "Required argument 'task_id' missing" unless arguments[:task_id]
|
31
|
+
method = Elasticsearch::API::HTTP_POST
|
32
|
+
path = "_delete_by_query/#{arguments[:task_id]}/_rethrottle"
|
33
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
34
|
+
body = nil
|
35
|
+
|
36
|
+
perform_request(method, path, params, body).body
|
37
|
+
end
|
38
|
+
|
39
|
+
# Register this action with its valid params when the module is loaded.
|
40
|
+
#
|
41
|
+
# @since 6.2.0
|
42
|
+
ParamsRegistry.register(:delete_by_query_rethrottle, [
|
43
|
+
:requests_per_second ].freeze)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -1,3 +1,20 @@
|
|
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.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -5,27 +22,27 @@ module Elasticsearch
|
|
5
22
|
# Remove an indexed script from Elasticsearch
|
6
23
|
#
|
7
24
|
# @option arguments [String] :id Script ID (*Required*)
|
8
|
-
# @option arguments [
|
9
|
-
# @option arguments [
|
10
|
-
# @option arguments [String] :version_type Specific version type (options: internal, external, external_gte, force)
|
25
|
+
# @option arguments [Time] :timeout Explicit operation timeout
|
26
|
+
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
11
27
|
#
|
12
28
|
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/modules-scripting.html
|
13
29
|
#
|
14
30
|
def delete_script(arguments={})
|
15
31
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
16
|
-
raise ArgumentError, "Required argument 'lang' missing" unless arguments[:lang]
|
17
|
-
|
18
|
-
valid_params = [
|
19
|
-
:version,
|
20
|
-
:version_type ]
|
21
|
-
|
22
32
|
method = HTTP_DELETE
|
23
|
-
path = "_scripts/#{arguments.delete(:lang)}
|
24
|
-
params = Utils.__validate_and_extract_params arguments,
|
33
|
+
path = "_scripts/#{arguments.has_key?(:lang) ? "#{arguments.delete(:lang)}/" : ''}#{arguments[:id]}"
|
34
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
25
35
|
body = nil
|
26
36
|
|
27
37
|
perform_request(method, path, params, body).body
|
28
38
|
end
|
39
|
+
|
40
|
+
# Register this action with its valid params when the module is loaded.
|
41
|
+
#
|
42
|
+
# @since 6.1.1
|
43
|
+
ParamsRegistry.register(:delete_script, [
|
44
|
+
:timeout,
|
45
|
+
:master_timeout ].freeze)
|
29
46
|
end
|
30
47
|
end
|
31
48
|
end
|
@@ -1,3 +1,20 @@
|
|
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.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -10,7 +27,7 @@ module Elasticsearch
|
|
10
27
|
#
|
11
28
|
# @option arguments [String] :id The document ID (*Required*)
|
12
29
|
# @option arguments [String] :index The name of the index (*Required*)
|
13
|
-
# @option arguments [String] :type The type of the document (use `_all` to fetch the first document matching the ID across all types)
|
30
|
+
# @option arguments [String] :type The type of the document (use `_all` to fetch the first document matching the ID across all types)
|
14
31
|
# @option arguments [List] :stored_fields A comma-separated list of stored fields to return in the response
|
15
32
|
# @option arguments [String] :parent The ID of the parent document
|
16
33
|
# @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random)
|
@@ -18,8 +35,8 @@ module Elasticsearch
|
|
18
35
|
# @option arguments [Boolean] :refresh Refresh the shard containing the document before performing the operation
|
19
36
|
# @option arguments [String] :routing Specific routing value
|
20
37
|
# @option arguments [List] :_source True or false to return the _source field or not, or a list of fields to return
|
21
|
-
# @option arguments [List] :
|
22
|
-
# @option arguments [List] :
|
38
|
+
# @option arguments [List] :_source_excludes A list of fields to exclude from the returned _source field
|
39
|
+
# @option arguments [List] :_source_includes A list of fields to extract and return from the _source field
|
23
40
|
# @option arguments [Number] :version Explicit version number for concurrency control
|
24
41
|
# @option arguments [String] :version_type Specific version type (options: internal, external, external_gte, force)
|
25
42
|
|
@@ -30,34 +47,35 @@ module Elasticsearch
|
|
30
47
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
31
48
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
32
49
|
arguments[:type] ||= UNDERSCORE_ALL
|
33
|
-
|
34
|
-
valid_params = [
|
35
|
-
:stored_fields,
|
36
|
-
:parent,
|
37
|
-
:preference,
|
38
|
-
:realtime,
|
39
|
-
:refresh,
|
40
|
-
:routing,
|
41
|
-
:_source,
|
42
|
-
:_source_exclude,
|
43
|
-
:_source_include,
|
44
|
-
:version,
|
45
|
-
:version_type ]
|
46
|
-
|
47
50
|
method = HTTP_HEAD
|
48
51
|
path = Utils.__pathify Utils.__escape(arguments[:index]),
|
49
52
|
Utils.__escape(arguments[:type]),
|
50
53
|
Utils.__escape(arguments[:id])
|
51
54
|
|
52
|
-
params = Utils.__validate_and_extract_params arguments,
|
55
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
53
56
|
body = nil
|
54
57
|
|
55
58
|
Utils.__rescue_from_not_found do
|
56
59
|
perform_request(method, path, params, body).status == 200 ? true : false
|
57
60
|
end
|
58
61
|
end
|
59
|
-
|
60
62
|
alias_method :exists?, :exists
|
63
|
+
|
64
|
+
# Register this action with its valid params when the module is loaded.
|
65
|
+
#
|
66
|
+
# @since 6.1.1
|
67
|
+
ParamsRegistry.register(:exists, [
|
68
|
+
:stored_fields,
|
69
|
+
:parent,
|
70
|
+
:preference,
|
71
|
+
:realtime,
|
72
|
+
:refresh,
|
73
|
+
:routing,
|
74
|
+
:_source,
|
75
|
+
:_source_excludes,
|
76
|
+
:_source_includes,
|
77
|
+
:version,
|
78
|
+
:version_type ].freeze)
|
61
79
|
end
|
62
80
|
end
|
63
81
|
end
|
@@ -0,0 +1,68 @@
|
|
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.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Actions
|
21
|
+
|
22
|
+
# The get API allows to get a typed JSON document from the index based on its id.
|
23
|
+
#
|
24
|
+
# @option arguments [String] :id The document ID (*Required*)
|
25
|
+
# @option arguments [String] :index The name of the index (*Required*)
|
26
|
+
# @option arguments [String] :type The type of the document; use `_all` to fetch the first document matching the ID across all types (*Required*)
|
27
|
+
# @option arguments [String] :parent The ID of the parent document
|
28
|
+
# @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random)
|
29
|
+
# @option arguments [Boolean] :realtime Specify whether to perform the operation in realtime or search mode
|
30
|
+
# @option arguments [Boolean] :refresh Refresh the shard containing the document before performing the operation
|
31
|
+
# @option arguments [String] :routing Specific routing value
|
32
|
+
# @option arguments [List] :_source True or false to return the _source field or not, or a list of fields to return
|
33
|
+
# @option arguments [List] :_source_excludes A list of fields to exclude from the returned _source field
|
34
|
+
# @option arguments [List] :_source_includes A list of fields to extract and return from the _source field
|
35
|
+
# @option arguments [Number] :version Explicit version number for concurrency control
|
36
|
+
# @option arguments [String] :version_type Specific version type (options: internal, external, external_gte, force)
|
37
|
+
#
|
38
|
+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html
|
39
|
+
#
|
40
|
+
def exists_source(arguments={})
|
41
|
+
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
42
|
+
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
43
|
+
raise ArgumentError, "Required argument 'type' missing" unless arguments[:type]
|
44
|
+
method = Elasticsearch::API::HTTP_HEAD
|
45
|
+
path = "#{arguments[:index]}/#{arguments[:type]}/#{arguments[:id]}/_source"
|
46
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
47
|
+
body = nil
|
48
|
+
|
49
|
+
perform_request(method, path, params, body).body
|
50
|
+
end
|
51
|
+
|
52
|
+
# Register this action with its valid params when the module is loaded.
|
53
|
+
#
|
54
|
+
# @since 6.2.0
|
55
|
+
ParamsRegistry.register(:exists_source, [
|
56
|
+
:parent,
|
57
|
+
:preference,
|
58
|
+
:realtime,
|
59
|
+
:refresh,
|
60
|
+
:routing,
|
61
|
+
:_source,
|
62
|
+
:_source_excludes,
|
63
|
+
:_source_includes,
|
64
|
+
:version,
|
65
|
+
:version_type ].freeze)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -1,3 +1,20 @@
|
|
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.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -17,68 +34,65 @@ module Elasticsearch
|
|
17
34
|
#
|
18
35
|
# @option arguments [String] :id The document ID (*Required*)
|
19
36
|
# @option arguments [String] :index The name of the index (*Required*)
|
20
|
-
# @option arguments [String] :type The type of the document
|
21
|
-
# @option arguments [Hash] :body The query definition using the Query DSL
|
22
|
-
# @option arguments [Boolean] :analyze_wildcard Specify whether wildcards and prefix queries in the query string
|
23
|
-
# query should be analyzed (default: false)
|
37
|
+
# @option arguments [String] :type The type of the document
|
38
|
+
# @option arguments [Hash] :body The query definition using the Query DSL
|
39
|
+
# @option arguments [Boolean] :analyze_wildcard Specify whether wildcards and prefix queries in the query string query should be analyzed (default: false)
|
24
40
|
# @option arguments [String] :analyzer The analyzer for the query string query
|
25
|
-
# @option arguments [String] :default_operator The default operator for query string query (AND or OR)
|
26
|
-
# (options: AND, OR)
|
41
|
+
# @option arguments [String] :default_operator The default operator for query string query (AND or OR) (options: AND, OR)
|
27
42
|
# @option arguments [String] :df The default field for query string query (default: _all)
|
28
|
-
# @option arguments [List] :
|
29
|
-
# @option arguments [Boolean] :lenient Specify whether format-based query failures
|
30
|
-
# (such as providing text to a numeric field) should be ignored
|
31
|
-
# @option arguments [Boolean] :lowercase_expanded_terms Specify whether query terms should be lowercased
|
43
|
+
# @option arguments [List] :stored_fields A comma-separated list of stored fields to return in the response
|
44
|
+
# @option arguments [Boolean] :lenient Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
|
32
45
|
# @option arguments [String] :parent The ID of the parent document
|
33
|
-
# @option arguments [String] :preference Specify the node or shard the operation should be performed on
|
34
|
-
# (default: random)
|
46
|
+
# @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random)
|
35
47
|
# @option arguments [String] :q Query in the Lucene query string syntax
|
36
48
|
# @option arguments [String] :routing Specific routing value
|
37
|
-
# @option arguments [
|
38
|
-
# @option arguments [
|
39
|
-
#
|
40
|
-
# @option arguments [String] :_source_exclude A list of fields to exclude from the returned _source field
|
41
|
-
# @option arguments [String] :_source_include A list of fields to extract and return from the _source field
|
42
|
-
# @option arguments [List] :stored_fields A comma-separated list of stored fields to return in the response
|
49
|
+
# @option arguments [List] :_source True or false to return the _source field or not, or a list of fields to return
|
50
|
+
# @option arguments [List] :_source_excludes A list of fields to exclude from the returned _source field
|
51
|
+
# @option arguments [List] :_source_includes A list of fields to extract and return from the _source field
|
43
52
|
#
|
44
53
|
# @see http://elasticsearch.org/guide/reference/api/explain/
|
45
54
|
#
|
46
55
|
def explain(arguments={})
|
47
56
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
48
|
-
raise ArgumentError, "Required argument 'type' missing" unless arguments[:type]
|
49
57
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
58
|
+
method = HTTP_GET
|
59
|
+
|
60
|
+
if arguments[:type]
|
61
|
+
path = Utils.__pathify Utils.__escape(arguments[:index]),
|
62
|
+
Utils.__escape(arguments[:type]),
|
63
|
+
Utils.__escape(arguments[:id]),
|
64
|
+
'_explain'
|
65
|
+
else
|
66
|
+
path = Utils.__pathify Utils.__escape(arguments[:index]),
|
67
|
+
'_explain',
|
68
|
+
Utils.__escape(arguments[:id])
|
69
|
+
end
|
70
|
+
|
71
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
72
|
+
body = arguments[:body]
|
73
|
+
|
74
|
+
params[:fields] = Utils.__listify(params[:fields]) if params[:fields]
|
75
|
+
|
76
|
+
perform_request(method, path, params, body).body
|
77
|
+
end
|
50
78
|
|
51
|
-
|
79
|
+
# Register this action with its valid params when the module is loaded.
|
80
|
+
#
|
81
|
+
# @since 6.1.1
|
82
|
+
ParamsRegistry.register(:explain, [
|
52
83
|
:analyze_wildcard,
|
53
84
|
:analyzer,
|
54
85
|
:default_operator,
|
55
86
|
:df,
|
56
|
-
:
|
87
|
+
:stored_fields,
|
57
88
|
:lenient,
|
58
|
-
:lowercase_expanded_terms,
|
59
89
|
:parent,
|
60
90
|
:preference,
|
61
91
|
:q,
|
62
92
|
:routing,
|
63
|
-
:source,
|
64
93
|
:_source,
|
65
|
-
:
|
66
|
-
:
|
67
|
-
:stored_fields ]
|
68
|
-
|
69
|
-
method = HTTP_GET
|
70
|
-
path = Utils.__pathify Utils.__escape(arguments[:index]),
|
71
|
-
Utils.__escape(arguments[:type]),
|
72
|
-
Utils.__escape(arguments[:id]),
|
73
|
-
'_explain'
|
74
|
-
|
75
|
-
params = Utils.__validate_and_extract_params arguments, valid_params
|
76
|
-
body = arguments[:body]
|
77
|
-
|
78
|
-
params[:fields] = Utils.__listify(params[:fields]) if params[:fields]
|
79
|
-
|
80
|
-
perform_request(method, path, params, body).body
|
81
|
-
end
|
94
|
+
:_source_excludes,
|
95
|
+
:_source_includes ].freeze)
|
82
96
|
end
|
83
97
|
end
|
84
98
|
end
|
@@ -1,3 +1,20 @@
|
|
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.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -9,8 +26,7 @@ module Elasticsearch
|
|
9
26
|
# # => { "fields" => "t"=>{"text"=>{"type"=>"text", "searchable"=>true, "aggregatable"=>false}} ...
|
10
27
|
#
|
11
28
|
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
12
|
-
# @option arguments [
|
13
|
-
# @option arguments [List] :fields A comma-separated list of field names (*Required*)
|
29
|
+
# @option arguments [List] :fields A comma-separated list of field names
|
14
30
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
15
31
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
16
32
|
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
@@ -19,20 +35,22 @@ module Elasticsearch
|
|
19
35
|
#
|
20
36
|
def field_caps(arguments={})
|
21
37
|
raise ArgumentError, "Required argument 'fields' missing" unless arguments[:fields]
|
22
|
-
|
23
|
-
valid_params = [
|
24
|
-
:fields,
|
25
|
-
:ignore_unavailable,
|
26
|
-
:allow_no_indices,
|
27
|
-
:expand_wildcards ]
|
28
|
-
|
29
38
|
method = HTTP_GET
|
30
39
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_field_caps'
|
31
|
-
params = Utils.__validate_and_extract_params arguments,
|
40
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
32
41
|
body = arguments[:body]
|
33
42
|
|
34
43
|
perform_request(method, path, params, body).body
|
35
44
|
end
|
45
|
+
|
46
|
+
# Register this action with its valid params when the module is loaded.
|
47
|
+
#
|
48
|
+
# @since 6.1.1
|
49
|
+
ParamsRegistry.register(:field_caps, [
|
50
|
+
:fields,
|
51
|
+
:ignore_unavailable,
|
52
|
+
:allow_no_indices,
|
53
|
+
:expand_wildcards ].freeze)
|
36
54
|
end
|
37
55
|
end
|
38
56
|
end
|