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 Indices
|
@@ -16,26 +33,32 @@ module Elasticsearch
|
|
16
33
|
#
|
17
34
|
# See the {Indices::Actions#update_aliases} for performing operations with index aliases in bulk.
|
18
35
|
#
|
19
|
-
# @option arguments [
|
36
|
+
# @option arguments [List] :index A comma-separated list of index names the alias should point to (supports wildcards); use `_all` to perform the operation on all indices. (*Required*)
|
20
37
|
# @option arguments [String] :name The name of the alias to be created or updated (*Required*)
|
21
38
|
# @option arguments [Hash] :body The settings for the alias, such as `routing` or `filter`
|
22
39
|
# @option arguments [Time] :timeout Explicit timestamp for the document
|
40
|
+
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
23
41
|
#
|
24
42
|
# @see http://www.elasticsearch.org/guide/reference/api/admin-indices-aliases/
|
25
43
|
#
|
26
44
|
def put_alias(arguments={})
|
27
45
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
28
46
|
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
|
29
|
-
valid_params = [ :timeout ]
|
30
|
-
|
31
47
|
method = HTTP_PUT
|
32
48
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_alias', Utils.__escape(arguments[:name])
|
33
49
|
|
34
|
-
params = Utils.__validate_and_extract_params arguments,
|
50
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
35
51
|
body = arguments[:body]
|
36
52
|
|
37
53
|
perform_request(method, path, params, body).body
|
38
54
|
end
|
55
|
+
|
56
|
+
# Register this action with its valid params when the module is loaded.
|
57
|
+
#
|
58
|
+
# @since 6.1.1
|
59
|
+
ParamsRegistry.register(:put_alias, [
|
60
|
+
:timeout,
|
61
|
+
:master_timeout ].freeze)
|
39
62
|
end
|
40
63
|
end
|
41
64
|
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 Indices
|
@@ -12,7 +29,7 @@ module Elasticsearch
|
|
12
29
|
# client.indices.put_mapping index: 'myindex', type: 'mytype', body: {
|
13
30
|
# mytype: {
|
14
31
|
# properties: {
|
15
|
-
# title: { type: '
|
32
|
+
# title: { type: 'text', analyzer: 'snowball' }
|
16
33
|
# }
|
17
34
|
# }
|
18
35
|
# }
|
@@ -25,51 +42,39 @@ module Elasticsearch
|
|
25
42
|
# }
|
26
43
|
# }
|
27
44
|
#
|
45
|
+
# @option arguments [List] :index A comma-separated list of index names the mapping should be added to (supports wildcards); use `_all` or omit to add the mapping on all indices.
|
46
|
+
# @option arguments [String] :type The name of the document type
|
28
47
|
# @option arguments [Hash] :body The mapping definition (*Required*)
|
29
|
-
# @option arguments [
|
30
|
-
# update the mapping for all indices
|
31
|
-
# @option arguments [String] :type The name of the document type (*Required*)
|
32
|
-
# @option arguments [Boolean] :ignore_conflicts Specify whether to ignore conflicts while updating the mapping
|
33
|
-
# (default: false)
|
34
|
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
|
35
|
-
# no concrete indices. (This includes `_all` string or when no
|
36
|
-
# indices have been specified)
|
37
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
|
38
|
-
# are open, closed or both. (options: open, closed)
|
39
|
-
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
|
40
|
-
# `missing` ones (options: none, missing) @until 1.0
|
41
|
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
|
42
|
-
# unavailable (missing, closed, etc)
|
43
|
-
# @option arguments [Boolean] :update_all_types Whether to update the mapping for all fields
|
44
|
-
# with the same name across all types
|
48
|
+
# @option arguments [Boolean] :include_type_name Whether a type should be expected in the body of the mappings.
|
45
49
|
# @option arguments [Time] :timeout Explicit operation timeout
|
46
|
-
# @option arguments [
|
50
|
+
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
51
|
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
52
|
+
# @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)
|
53
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
47
54
|
#
|
48
55
|
# @see http://www.elasticsearch.org/guide/reference/api/admin-indices-put-mapping/
|
49
56
|
#
|
50
57
|
def put_mapping(arguments={})
|
51
|
-
raise ArgumentError, "Required argument 'type' missing" unless arguments[:type]
|
52
58
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
53
|
-
|
54
|
-
valid_params = [
|
55
|
-
:ignore_conflicts,
|
56
|
-
:ignore_indices,
|
57
|
-
:ignore_unavailable,
|
58
|
-
:allow_no_indices,
|
59
|
-
:expand_wildcards,
|
60
|
-
:update_all_types,
|
61
|
-
:master_timeout,
|
62
|
-
:timeout
|
63
|
-
]
|
64
|
-
|
65
59
|
method = HTTP_PUT
|
66
60
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_mapping', Utils.__escape(arguments[:type])
|
67
61
|
|
68
|
-
params = Utils.__validate_and_extract_params arguments,
|
62
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
69
63
|
body = arguments[:body]
|
70
64
|
|
71
65
|
perform_request(method, path, params, body).body
|
72
66
|
end
|
67
|
+
|
68
|
+
# Register this action with its valid params when the module is loaded.
|
69
|
+
#
|
70
|
+
# @since 6.1.1
|
71
|
+
ParamsRegistry.register(:put_mapping, [
|
72
|
+
:include_type_name,
|
73
|
+
:timeout,
|
74
|
+
:master_timeout,
|
75
|
+
:ignore_unavailable,
|
76
|
+
:allow_no_indices,
|
77
|
+
:expand_wildcards ].freeze)
|
73
78
|
end
|
74
79
|
end
|
75
80
|
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 Indices
|
@@ -24,48 +41,39 @@ module Elasticsearch
|
|
24
41
|
# client.indices.put_settings index: 'my-big-index',
|
25
42
|
# body: { 'index.routing.allocation.require.tag' => 'bigbox' }
|
26
43
|
#
|
44
|
+
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
27
45
|
# @option arguments [Hash] :body The index settings to be updated (*Required*)
|
28
|
-
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string
|
29
|
-
# to perform the operation on all indices
|
30
|
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
|
31
|
-
# no concrete indices. (This includes `_all` string or when no
|
32
|
-
# indices have been specified)
|
33
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
|
34
|
-
# are open, closed or both. (options: open, closed)
|
35
|
-
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
|
36
|
-
# `missing` ones (options: none, missing) @until 1.0
|
37
|
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
|
38
|
-
# unavailable (missing, closed, etc)
|
39
|
-
# @option arguments [Boolean] :include_defaults Whether to return all default clusters setting
|
40
|
-
# @option arguments [Boolean] :preserve_existing Whether to update existing settings.
|
41
|
-
# If set to `true` existing settings on an index remain
|
42
|
-
# unchanged, the default is `false`
|
43
46
|
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
47
|
+
# @option arguments [Time] :timeout Explicit operation timeout
|
48
|
+
# @option arguments [Boolean] :preserve_existing Whether to update existing settings. If set to `true` existing settings on an index remain unchanged, the default is `false`
|
49
|
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
50
|
+
# @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)
|
51
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
44
52
|
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
|
45
53
|
#
|
46
54
|
# @see http://www.elasticsearch.org/guide/reference/api/admin-indices-update-settings/
|
47
55
|
#
|
48
56
|
def put_settings(arguments={})
|
49
57
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
50
|
-
|
51
|
-
valid_params = [
|
52
|
-
:ignore_indices,
|
53
|
-
:ignore_unavailable,
|
54
|
-
:include_defaults,
|
55
|
-
:allow_no_indices,
|
56
|
-
:expand_wildcards,
|
57
|
-
:preserve_existing,
|
58
|
-
:master_timeout,
|
59
|
-
:flat_settings
|
60
|
-
]
|
61
|
-
|
62
58
|
method = HTTP_PUT
|
63
59
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_settings'
|
64
|
-
params = Utils.__validate_and_extract_params arguments,
|
60
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
65
61
|
body = arguments[:body]
|
66
62
|
|
67
63
|
perform_request(method, path, params, body).body
|
68
64
|
end
|
65
|
+
|
66
|
+
# Register this action with its valid params when the module is loaded.
|
67
|
+
#
|
68
|
+
# @since 6.1.1
|
69
|
+
ParamsRegistry.register(:put_settings, [
|
70
|
+
:master_timeout,
|
71
|
+
:timeout,
|
72
|
+
:preserve_existing,
|
73
|
+
:ignore_unavailable,
|
74
|
+
:allow_no_indices,
|
75
|
+
:expand_wildcards,
|
76
|
+
:flat_settings ].freeze)
|
69
77
|
end
|
70
78
|
end
|
71
79
|
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 Indices
|
@@ -12,9 +29,9 @@ module Elasticsearch
|
|
12
29
|
#
|
13
30
|
# @option arguments [String] :name The name of the template (*Required*)
|
14
31
|
# @option arguments [Hash] :body The template definition (*Required*)
|
15
|
-
# @option arguments [Boolean] :
|
16
|
-
# @option arguments [Number] :order The order for this template when merging multiple matching ones
|
17
|
-
#
|
32
|
+
# @option arguments [Boolean] :include_type_name Whether a type should be returned in the body of the mappings.
|
33
|
+
# @option arguments [Number] :order The order for this template when merging multiple matching ones (higher numbers are merged later, overriding the lower numbers)
|
34
|
+
# @option arguments [Boolean] :create Whether the index template should only be added if new or can also replace an existing one
|
18
35
|
# @option arguments [Time] :timeout Explicit operation timeout
|
19
36
|
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
20
37
|
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
|
@@ -24,16 +41,25 @@ module Elasticsearch
|
|
24
41
|
def put_template(arguments={})
|
25
42
|
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
|
26
43
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
27
|
-
valid_params = [ :create, :order, :timeout ]
|
28
|
-
|
29
44
|
method = HTTP_PUT
|
30
45
|
path = Utils.__pathify '_template', Utils.__escape(arguments[:name])
|
31
46
|
|
32
|
-
params = Utils.__validate_and_extract_params arguments,
|
47
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
33
48
|
body = arguments[:body]
|
34
49
|
|
35
50
|
perform_request(method, path, params, body).body
|
36
51
|
end
|
52
|
+
|
53
|
+
# Register this action with its valid params when the module is loaded.
|
54
|
+
#
|
55
|
+
# @since 6.1.1
|
56
|
+
ParamsRegistry.register(:put_template, [
|
57
|
+
:include_type_name,
|
58
|
+
:order,
|
59
|
+
:create,
|
60
|
+
:timeout,
|
61
|
+
:master_timeout,
|
62
|
+
:flat_settings ].freeze)
|
37
63
|
end
|
38
64
|
end
|
39
65
|
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 Indices
|
@@ -20,22 +37,24 @@ module Elasticsearch
|
|
20
37
|
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
21
38
|
# @option arguments [Boolean] :detailed Whether to display detailed information about shard recovery
|
22
39
|
# @option arguments [Boolean] :active_only Display only those recoveries that are currently on-going
|
23
|
-
# @option arguments [Boolean] :human Whether to return time and byte values in human readable format
|
24
40
|
#
|
25
41
|
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/indices-recovery.html
|
26
42
|
#
|
27
43
|
def recovery(arguments={})
|
28
|
-
valid_params = [
|
29
|
-
:detailed,
|
30
|
-
:active_only,
|
31
|
-
:human ]
|
32
44
|
method = HTTP_GET
|
33
45
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_recovery'
|
34
|
-
params = Utils.__validate_and_extract_params arguments,
|
46
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
35
47
|
body = nil
|
36
48
|
|
37
49
|
perform_request(method, path, params, body).body
|
38
50
|
end
|
51
|
+
|
52
|
+
# Register this action with its valid params when the module is loaded.
|
53
|
+
#
|
54
|
+
# @since 6.1.1
|
55
|
+
ParamsRegistry.register(:recovery, [
|
56
|
+
:detailed,
|
57
|
+
:active_only ].freeze)
|
39
58
|
end
|
40
59
|
end
|
41
60
|
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 Indices
|
@@ -18,36 +35,30 @@ module Elasticsearch
|
|
18
35
|
#
|
19
36
|
# @note The refresh operation can adversely affect indexing throughput when used too frequently.
|
20
37
|
#
|
21
|
-
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string
|
22
|
-
#
|
23
|
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
|
24
|
-
#
|
25
|
-
# indices have been specified)
|
26
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
|
27
|
-
# are open, closed or both. (options: open, closed)
|
28
|
-
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
|
29
|
-
# `missing` ones (options: none, missing) @until 1.0
|
30
|
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
|
31
|
-
# unavailable (missing, closed, etc)
|
38
|
+
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
39
|
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
40
|
+
# @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)
|
41
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
32
42
|
#
|
33
43
|
# @see http://www.elasticsearch.org/guide/reference/api/admin-indices-refresh/
|
34
44
|
#
|
35
45
|
def refresh(arguments={})
|
36
|
-
valid_params = [
|
37
|
-
:ignore_indices,
|
38
|
-
:ignore_unavailable,
|
39
|
-
:allow_no_indices,
|
40
|
-
:expand_wildcards
|
41
|
-
]
|
42
|
-
|
43
46
|
method = HTTP_POST
|
44
47
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_refresh'
|
45
48
|
|
46
|
-
params = Utils.__validate_and_extract_params arguments,
|
49
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
47
50
|
body = nil
|
48
51
|
|
49
52
|
perform_request(method, path, params, body).body
|
50
53
|
end
|
54
|
+
|
55
|
+
# Register this action with its valid params when the module is loaded.
|
56
|
+
#
|
57
|
+
# @since 6.1.1
|
58
|
+
ParamsRegistry.register(:refresh, [
|
59
|
+
:ignore_unavailable,
|
60
|
+
:allow_no_indices,
|
61
|
+
:expand_wildcards ].freeze)
|
51
62
|
end
|
52
63
|
end
|
53
64
|
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 Indices
|
@@ -9,34 +26,36 @@ module Elasticsearch
|
|
9
26
|
# @option arguments [String] :alias The name of the alias to rollover (*Required*)
|
10
27
|
# @option arguments [String] :new_index The name of the rollover index
|
11
28
|
# @option arguments [Hash] :body The conditions that needs to be met for executing rollover
|
12
|
-
# @option arguments [
|
29
|
+
# @option arguments [Boolean] :include_type_name Whether a type should be included in the body of the mappings.
|
13
30
|
# @option arguments [Time] :timeout Explicit operation timeout
|
14
|
-
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
15
31
|
# @option arguments [Boolean] :dry_run If set to true the rollover action will only be validated but not actually performed even if a condition matches. The default is false
|
32
|
+
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
33
|
+
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the newly created rollover index before the operation returns.
|
16
34
|
#
|
17
35
|
# @see http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-rollover-index.html
|
18
36
|
#
|
19
37
|
def rollover(arguments={})
|
20
38
|
raise ArgumentError, "Required argument 'alias' missing" unless arguments[:alias]
|
21
|
-
|
22
|
-
valid_params = [
|
23
|
-
:wait_for_active_shards,
|
24
|
-
:timeout,
|
25
|
-
:master_timeout,
|
26
|
-
:dry_run ]
|
27
|
-
|
28
39
|
arguments = arguments.clone
|
29
|
-
|
30
40
|
source = arguments.delete(:alias)
|
31
41
|
target = arguments.delete(:new_index)
|
32
|
-
|
33
42
|
method = HTTP_POST
|
34
43
|
path = Utils.__pathify Utils.__escape(source), '_rollover', Utils.__escape(target)
|
35
|
-
params = Utils.__validate_and_extract_params arguments,
|
44
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
36
45
|
body = arguments[:body]
|
37
46
|
|
38
47
|
perform_request(method, path, params, body).body
|
39
48
|
end
|
49
|
+
|
50
|
+
# Register this action with its valid params when the module is loaded.
|
51
|
+
#
|
52
|
+
# @since 6.1.1
|
53
|
+
ParamsRegistry.register(:rollover, [
|
54
|
+
:include_type_name,
|
55
|
+
:timeout,
|
56
|
+
:dry_run,
|
57
|
+
:master_timeout,
|
58
|
+
:wait_for_active_shards ].freeze)
|
40
59
|
end
|
41
60
|
end
|
42
61
|
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 Indices
|
@@ -8,38 +25,32 @@ module Elasticsearch
|
|
8
25
|
# The response contains information about segment size, number of documents, deleted documents, etc.
|
9
26
|
# See also {Indices::Actions#optimize}.
|
10
27
|
#
|
11
|
-
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string
|
12
|
-
#
|
13
|
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression
|
14
|
-
#
|
15
|
-
#
|
16
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices
|
17
|
-
# that are open, closed or both. (options: open, closed)
|
18
|
-
# @option arguments [String] :ignore_indices When performed on multiple indices, allows to ignore
|
19
|
-
# `missing` ones (options: none, missing) @until 1.0
|
20
|
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
|
21
|
-
# unavailable (missing, closed, etc)
|
22
|
-
# @option arguments [Boolean] :verbose Whether to include detailed memory usage by Lucene (default: false)
|
28
|
+
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
29
|
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
30
|
+
# @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)
|
31
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
32
|
+
# @option arguments [Boolean] :verbose Includes detailed memory usage by Lucene.
|
23
33
|
#
|
24
34
|
# @see http://elasticsearch.org/guide/reference/api/admin-indices-segments/
|
25
35
|
#
|
26
36
|
def segments(arguments={})
|
27
|
-
valid_params = [
|
28
|
-
:ignore_indices,
|
29
|
-
:ignore_unavailable,
|
30
|
-
:allow_no_indices,
|
31
|
-
:expand_wildcards,
|
32
|
-
:verbose
|
33
|
-
]
|
34
|
-
|
35
37
|
method = HTTP_GET
|
36
38
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_segments'
|
37
39
|
|
38
|
-
params = Utils.__validate_and_extract_params arguments,
|
40
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
39
41
|
body = nil
|
40
42
|
|
41
43
|
perform_request(method, path, params, body).body
|
42
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(:segments, [
|
50
|
+
:ignore_unavailable,
|
51
|
+
:allow_no_indices,
|
52
|
+
:expand_wildcards,
|
53
|
+
:verbose ].freeze)
|
43
54
|
end
|
44
55
|
end
|
45
56
|
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 Indices
|
@@ -10,24 +27,26 @@ module Elasticsearch
|
|
10
27
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
11
28
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
12
29
|
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
13
|
-
# @option arguments [String] :operation_threading
|
14
30
|
#
|
15
31
|
# @see http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-shards-stores.html
|
16
32
|
#
|
17
33
|
def shard_stores(arguments={})
|
18
|
-
valid_params = [
|
19
|
-
:status,
|
20
|
-
:ignore_unavailable,
|
21
|
-
:allow_no_indices,
|
22
|
-
:expand_wildcards,
|
23
|
-
:operation_threading ]
|
24
34
|
method = 'GET'
|
25
35
|
path = Utils.__pathify Utils.__escape(arguments[:index]), "_shard_stores"
|
26
|
-
params = Utils.__validate_and_extract_params arguments,
|
36
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
27
37
|
body = nil
|
28
38
|
|
29
39
|
perform_request(method, path, params, body).body
|
30
40
|
end
|
41
|
+
|
42
|
+
# Register this action with its valid params when the module is loaded.
|
43
|
+
#
|
44
|
+
# @since 6.1.1
|
45
|
+
ParamsRegistry.register(:shard_stores, [
|
46
|
+
:status,
|
47
|
+
:ignore_unavailable,
|
48
|
+
:allow_no_indices,
|
49
|
+
:expand_wildcards ].freeze)
|
31
50
|
end
|
32
51
|
end
|
33
52
|
end
|