elasticsearch-api 7.17.11 → 8.0.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -10
- data/README.md +26 -15
- data/Rakefile +21 -56
- data/api-spec-testing/README.md +118 -0
- data/api-spec-testing/logging.rb +28 -0
- data/api-spec-testing/rspec_matchers.rb +312 -0
- data/api-spec-testing/test_file/action.rb +168 -0
- data/api-spec-testing/test_file/task_group.rb +340 -0
- data/api-spec-testing/test_file/test.rb +295 -0
- data/api-spec-testing/test_file.rb +173 -0
- data/api-spec-testing/wipe_cluster.rb +388 -0
- data/elasticsearch-api.gemspec +11 -19
- data/lib/elasticsearch/api/actions/async_search/delete.rb +51 -0
- data/lib/elasticsearch/api/actions/async_search/get.rb +54 -0
- data/lib/elasticsearch/api/actions/async_search/status.rb +51 -0
- data/lib/elasticsearch/api/actions/async_search/submit.rb +95 -0
- data/lib/elasticsearch/api/actions/autoscaling/delete_autoscaling_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_capacity.rb +46 -0
- data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/autoscaling/put_autoscaling_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/bulk.rb +8 -21
- data/lib/elasticsearch/api/actions/cat/aliases.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/allocation.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/count.rb +7 -15
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/health.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/help.rb +7 -12
- data/lib/elasticsearch/api/actions/cat/indices.rb +7 -24
- data/lib/elasticsearch/api/actions/cat/master.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/ml_data_frame_analytics.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/ml_datafeeds.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/ml_jobs.rb +62 -0
- data/lib/elasticsearch/api/actions/cat/ml_trained_models.rb +63 -0
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/nodes.rb +7 -22
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/plugins.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/recovery.rb +7 -20
- data/lib/elasticsearch/api/actions/cat/repositories.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/segments.rb +7 -16
- data/lib/elasticsearch/api/actions/cat/shards.rb +7 -20
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +7 -18
- data/lib/elasticsearch/api/actions/cat/tasks.rb +11 -20
- data/lib/elasticsearch/api/actions/cat/templates.rb +7 -17
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +8 -19
- data/lib/elasticsearch/api/actions/cat/transforms.rb +62 -0
- data/lib/elasticsearch/api/actions/clear_scroll.rb +6 -3
- data/lib/elasticsearch/api/actions/close_point_in_time.rb +6 -3
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +8 -13
- data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +7 -11
- data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +7 -14
- data/lib/elasticsearch/api/actions/cluster/health.rb +7 -21
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +7 -12
- data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +7 -13
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +6 -3
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +7 -16
- data/lib/elasticsearch/api/actions/cluster/state.rb +7 -18
- data/lib/elasticsearch/api/actions/cluster/stats.rb +7 -12
- data/lib/elasticsearch/api/actions/count.rb +9 -41
- data/lib/elasticsearch/api/actions/create.rb +1 -1
- data/lib/elasticsearch/api/actions/cross_cluster_replication/delete_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow.rb +54 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_info.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_stats.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/forget_follower.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/get_auto_follow_pattern.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_follow.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/put_auto_follow_pattern.rb +53 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_auto_follow_pattern.rb +51 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_follow.rb +52 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb +46 -0
- data/lib/elasticsearch/api/actions/cross_cluster_replication/unfollow.rb +51 -0
- data/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb +7 -13
- data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +7 -13
- data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +6 -3
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/delete_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform.rb +64 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform_stats.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/preview_transform.rb +56 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/put_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/start_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/stop_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/update_transform.rb +61 -0
- data/lib/elasticsearch/api/actions/delete.rb +13 -20
- data/lib/elasticsearch/api/actions/delete_by_query.rb +13 -56
- data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/delete_script.rb +7 -12
- data/lib/elasticsearch/api/actions/enrich/delete_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/enrich/execute_policy.rb +52 -0
- data/lib/elasticsearch/api/actions/enrich/get_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/enrich/put_policy.rb +53 -0
- data/lib/elasticsearch/api/actions/enrich/stats.rb +46 -0
- data/lib/elasticsearch/api/actions/eql/delete.rb +51 -0
- data/lib/elasticsearch/api/actions/eql/get.rb +53 -0
- data/lib/elasticsearch/api/actions/eql/get_status.rb +51 -0
- data/lib/elasticsearch/api/actions/eql/search.rb +57 -0
- data/lib/elasticsearch/api/actions/exists.rb +6 -34
- data/lib/elasticsearch/api/actions/exists_source.rb +8 -20
- data/lib/elasticsearch/api/actions/explain.rb +9 -36
- data/lib/elasticsearch/api/actions/features/get_features.rb +7 -11
- data/lib/elasticsearch/api/actions/features/reset_features.rb +6 -3
- data/lib/elasticsearch/api/actions/field_caps.rb +8 -16
- data/lib/elasticsearch/api/actions/fleet/global_checkpoints.rb +55 -0
- data/lib/elasticsearch/api/actions/get.rb +14 -35
- data/lib/elasticsearch/api/actions/get_script.rb +7 -11
- data/lib/elasticsearch/api/actions/get_script_context.rb +6 -3
- data/lib/elasticsearch/api/actions/get_script_languages.rb +6 -3
- data/lib/elasticsearch/api/actions/get_source.rb +9 -33
- data/lib/elasticsearch/api/actions/graph/explore.rb +59 -0
- data/lib/elasticsearch/api/actions/index.rb +8 -34
- data/lib/elasticsearch/api/actions/index_lifecycle_management/delete_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/explain_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/get_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/get_status.rb +46 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers.rb +48 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/move_to_step.rb +52 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/put_lifecycle.rb +52 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/remove_policy.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/retry.rb +51 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/start.rb +46 -0
- data/lib/elasticsearch/api/actions/index_lifecycle_management/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/indices/add_block.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/analyze.rb +8 -12
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +7 -18
- data/lib/elasticsearch/api/actions/indices/clone.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/close.rb +8 -17
- data/lib/elasticsearch/api/actions/indices/create.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/create_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/data_streams_stats.rb +53 -0
- data/lib/elasticsearch/api/actions/indices/delete.rb +12 -16
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +52 -0
- data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +12 -13
- data/lib/elasticsearch/api/actions/indices/disk_usage.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/exists.rb +4 -16
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +4 -14
- data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +4 -13
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +4 -14
- data/lib/elasticsearch/api/actions/indices/field_usage_stats.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/flush.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/get.rb +7 -19
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/get_data_stream.rb +54 -0
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +8 -30
- data/lib/elasticsearch/api/actions/indices/get_index_template.rb +8 -14
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +8 -30
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +7 -17
- data/lib/elasticsearch/api/actions/indices/get_template.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/migrate_to_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/modify_data_stream.rb +49 -0
- data/lib/elasticsearch/api/actions/indices/open.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/promote_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/put_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +9 -33
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +7 -17
- data/lib/elasticsearch/api/actions/indices/put_template.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/recovery.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/refresh.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/{get_upgrade.rb → reload_search_analyzers.rb} +13 -26
- data/lib/elasticsearch/api/actions/indices/resolve_index.rb +7 -11
- data/lib/elasticsearch/api/actions/indices/rollover.rb +7 -16
- data/lib/elasticsearch/api/actions/indices/segments.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +7 -14
- data/lib/elasticsearch/api/actions/indices/shrink.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/simulate_template.rb +7 -13
- data/lib/elasticsearch/api/actions/indices/split.rb +7 -15
- data/lib/elasticsearch/api/actions/indices/stats.rb +25 -47
- data/lib/elasticsearch/api/actions/indices/{upgrade.rb → unfreeze.rb} +19 -28
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +7 -12
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +8 -23
- data/lib/elasticsearch/api/actions/info.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +7 -12
- data/lib/elasticsearch/api/actions/ingest/geo_ip_stats.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +7 -12
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +6 -3
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +7 -14
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +7 -11
- data/lib/elasticsearch/api/actions/knn_search.rb +60 -0
- data/lib/elasticsearch/api/actions/license/delete.rb +46 -0
- data/lib/elasticsearch/api/actions/license/get.rb +48 -0
- data/lib/elasticsearch/api/actions/license/get_basic_status.rb +46 -0
- data/lib/elasticsearch/api/actions/license/get_trial_status.rb +46 -0
- data/lib/elasticsearch/api/actions/license/post.rb +48 -0
- data/lib/elasticsearch/api/actions/license/post_start_basic.rb +47 -0
- data/lib/elasticsearch/api/actions/license/post_start_trial.rb +48 -0
- data/lib/elasticsearch/api/actions/logstash/delete_pipeline.rb +51 -0
- data/lib/elasticsearch/api/actions/logstash/get_pipeline.rb +51 -0
- data/lib/elasticsearch/api/actions/logstash/put_pipeline.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/close_job.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_event.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_job.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_datafeed.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_expired_data.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_filter.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_forecast.rb +60 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_job.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_model_snapshot.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model_alias.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/estimate_model_memory.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/evaluate_data_frame.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/explain_data_frame_analytics.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/flush_job.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/forecast.rb +54 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_buckets.rb +73 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_calendar_events.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_calendars.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_categories.rb +67 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics_stats.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_datafeed_stats.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_datafeeds.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_filters.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_influencers.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_job_stats.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_jobs.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_model_snapshots.rb +70 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_overall_buckets.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_records.rb +65 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_models.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/get_trained_models_stats.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment.rb +58 -0
- data/lib/elasticsearch/api/actions/machine_learning/info.rb +46 -0
- data/lib/elasticsearch/api/actions/machine_learning/open_job.rb +51 -0
- data/lib/elasticsearch/api/actions/machine_learning/post_calendar_events.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/post_data.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/preview_data_frame_analytics.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/preview_datafeed.rb +59 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_calendar.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_calendar_job.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_datafeed.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_filter.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_job.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model.rb +54 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_alias.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part.rb +61 -0
- data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/reset_job.rb +52 -0
- data/lib/elasticsearch/api/actions/machine_learning/revert_model_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/set_upgrade_mode.rb +48 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_datafeed.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/start_trained_model_deployment.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_data_frame_analytics.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_datafeed.rb +56 -0
- data/lib/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment.rb +55 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_data_frame_analytics.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_datafeed.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_filter.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_job.rb +53 -0
- data/lib/elasticsearch/api/actions/machine_learning/update_model_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/upgrade_job_snapshot.rb +57 -0
- data/lib/elasticsearch/api/actions/machine_learning/validate.rb +49 -0
- data/lib/elasticsearch/api/actions/machine_learning/validate_detector.rb +49 -0
- data/lib/elasticsearch/api/actions/mget.rb +9 -30
- data/lib/elasticsearch/api/actions/migration/deprecations.rb +53 -0
- data/lib/elasticsearch/api/actions/migration/get_feature_upgrade_status.rb +46 -0
- data/lib/elasticsearch/api/actions/migration/post_feature_upgrade.rb +46 -0
- data/lib/elasticsearch/api/actions/monitoring/bulk.rb +72 -0
- data/lib/elasticsearch/api/actions/msearch.rb +9 -29
- data/lib/elasticsearch/api/actions/msearch_template.rb +9 -27
- data/lib/elasticsearch/api/actions/mtermvectors.rb +14 -40
- data/lib/elasticsearch/api/actions/nodes/clear_repositories_metering_archive.rb +9 -4
- data/lib/elasticsearch/api/actions/nodes/get_repositories_metering_info.rb +6 -3
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +10 -26
- data/lib/elasticsearch/api/actions/nodes/info.rb +8 -13
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +7 -11
- data/lib/elasticsearch/api/actions/nodes/stats.rb +10 -22
- data/lib/elasticsearch/api/actions/nodes/usage.rb +7 -11
- data/lib/elasticsearch/api/actions/open_point_in_time.rb +8 -16
- data/lib/elasticsearch/api/actions/ping.rb +3 -2
- data/lib/elasticsearch/api/actions/put_script.rb +7 -13
- data/lib/elasticsearch/api/actions/rank_eval.rb +7 -14
- data/lib/elasticsearch/api/actions/reindex.rb +7 -18
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/render_search_template.rb +7 -4
- data/lib/elasticsearch/api/actions/rollup/delete_job.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/get_jobs.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/get_rollup_caps.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/get_rollup_index_caps.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/put_job.rb +57 -0
- data/lib/elasticsearch/api/actions/rollup/rollup.rb +61 -0
- data/lib/elasticsearch/api/actions/rollup/rollup_search.rb +71 -0
- data/lib/elasticsearch/api/actions/rollup/start_job.rb +55 -0
- data/lib/elasticsearch/api/actions/rollup/stop_job.rb +57 -0
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +7 -4
- data/lib/elasticsearch/api/actions/scroll.rb +8 -14
- data/lib/elasticsearch/api/actions/search.rb +10 -66
- data/lib/elasticsearch/api/actions/search_mvt.rb +8 -17
- data/lib/elasticsearch/api/actions/search_shards.rb +7 -16
- data/lib/elasticsearch/api/actions/search_template.rb +8 -34
- data/lib/elasticsearch/api/actions/searchable_snapshots/cache_stats.rb +57 -0
- data/lib/elasticsearch/api/actions/{indices/flush_synced.rb → searchable_snapshots/clear_cache.rb} +17 -28
- data/lib/elasticsearch/api/actions/searchable_snapshots/mount.rb +60 -0
- data/lib/elasticsearch/api/actions/searchable_snapshots/stats.rb +54 -0
- data/lib/elasticsearch/api/actions/security/authenticate.rb +46 -0
- data/lib/elasticsearch/api/actions/security/change_password.rb +57 -0
- data/lib/elasticsearch/api/actions/security/clear_api_key_cache.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_privileges.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_realms.rb +52 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_roles.rb +51 -0
- data/lib/elasticsearch/api/actions/security/clear_cached_service_tokens.rb +59 -0
- data/lib/elasticsearch/api/actions/security/create_api_key.rb +50 -0
- data/lib/elasticsearch/api/actions/security/create_service_token.rb +63 -0
- data/lib/elasticsearch/api/actions/security/delete_privileges.rb +56 -0
- data/lib/elasticsearch/api/actions/security/delete_role.rb +52 -0
- data/lib/elasticsearch/api/actions/security/delete_role_mapping.rb +52 -0
- data/lib/elasticsearch/api/actions/security/delete_service_token.rb +60 -0
- data/lib/elasticsearch/api/actions/security/delete_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/disable_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/enable_user.rb +52 -0
- data/lib/elasticsearch/api/actions/security/enroll_kibana.rb +46 -0
- data/lib/elasticsearch/api/actions/security/enroll_node.rb +46 -0
- data/lib/elasticsearch/api/actions/security/get_api_key.rb +51 -0
- data/lib/elasticsearch/api/actions/security/get_builtin_privileges.rb +46 -0
- data/lib/elasticsearch/api/actions/security/get_privileges.rb +58 -0
- data/lib/elasticsearch/api/actions/security/get_role.rb +61 -0
- data/lib/elasticsearch/api/actions/security/get_role_mapping.rb +53 -0
- data/lib/elasticsearch/api/actions/security/get_service_accounts.rb +58 -0
- data/lib/elasticsearch/api/actions/security/get_service_credentials.rb +55 -0
- data/lib/elasticsearch/api/actions/security/get_token.rb +49 -0
- data/lib/elasticsearch/api/actions/security/get_user.rb +61 -0
- data/lib/elasticsearch/api/actions/security/get_user_privileges.rb +46 -0
- data/lib/elasticsearch/api/actions/security/grant_api_key.rb +50 -0
- data/lib/elasticsearch/api/actions/security/has_privileges.rb +56 -0
- data/lib/elasticsearch/api/actions/security/invalidate_api_key.rb +49 -0
- data/lib/elasticsearch/api/actions/security/invalidate_token.rb +49 -0
- data/lib/elasticsearch/api/actions/security/put_privileges.rb +50 -0
- data/lib/elasticsearch/api/actions/security/put_role.rb +54 -0
- data/lib/elasticsearch/api/actions/security/put_role_mapping.rb +54 -0
- data/lib/elasticsearch/api/actions/security/put_user.rb +54 -0
- data/lib/elasticsearch/api/actions/security/query_api_keys.rb +52 -0
- data/lib/elasticsearch/api/actions/security/saml_authenticate.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_complete_logout.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_invalidate.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_logout.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_prepare_authentication.rb +49 -0
- data/lib/elasticsearch/api/actions/security/saml_service_provider_metadata.rb +51 -0
- data/lib/elasticsearch/api/actions/shutdown/delete_node.rb +5 -2
- data/lib/elasticsearch/api/actions/shutdown/get_node.rb +5 -2
- data/lib/elasticsearch/api/actions/shutdown/put_node.rb +5 -2
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/clone.rb +7 -11
- data/lib/elasticsearch/api/actions/snapshot/create.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +7 -13
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +14 -14
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/get.rb +12 -30
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +7 -21
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot/status.rb +12 -13
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +7 -12
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/delete_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_lifecycle.rb +51 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_retention.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_lifecycle.rb +53 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_stats.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_status.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/put_lifecycle.rb +52 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/start.rb +46 -0
- data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/sql/clear_cursor.rb +49 -0
- data/lib/elasticsearch/api/actions/sql/delete_async.rb +51 -0
- data/lib/elasticsearch/api/actions/sql/get_async.rb +55 -0
- data/lib/elasticsearch/api/actions/sql/get_async_status.rb +51 -0
- data/lib/elasticsearch/api/actions/sql/query.rb +50 -0
- data/lib/elasticsearch/api/actions/sql/translate.rb +49 -0
- data/lib/elasticsearch/api/actions/ssl/certificates.rb +46 -0
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +7 -14
- data/lib/elasticsearch/api/actions/tasks/get.rb +7 -12
- data/lib/elasticsearch/api/actions/tasks/list.rb +7 -17
- data/lib/elasticsearch/api/actions/terms_enum.rb +55 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +13 -40
- data/lib/elasticsearch/api/actions/text_structure/find_structure.rb +70 -0
- data/lib/elasticsearch/api/actions/transform/delete_transform.rb +52 -0
- data/lib/elasticsearch/api/actions/transform/get_transform.rb +57 -0
- data/lib/elasticsearch/api/actions/transform/get_transform_stats.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/preview_transform.rb +59 -0
- data/lib/elasticsearch/api/actions/transform/put_transform.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/start_transform.rb +52 -0
- data/lib/elasticsearch/api/actions/transform/stop_transform.rb +56 -0
- data/lib/elasticsearch/api/actions/transform/update_transform.rb +54 -0
- data/lib/elasticsearch/api/actions/transform/upgrade_transforms.rb +47 -0
- data/lib/elasticsearch/api/actions/update.rb +12 -23
- data/lib/elasticsearch/api/actions/update_by_query.rb +12 -57
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +7 -11
- data/lib/elasticsearch/api/actions/watcher/ack_watch.rb +58 -0
- data/lib/elasticsearch/api/actions/watcher/activate_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/deactivate_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/delete_watch.rb +59 -0
- data/lib/elasticsearch/api/actions/watcher/execute_watch.rb +55 -0
- data/lib/elasticsearch/api/actions/watcher/get_watch.rb +51 -0
- data/lib/elasticsearch/api/actions/watcher/put_watch.rb +56 -0
- data/lib/elasticsearch/api/actions/watcher/query_watches.rb +52 -0
- data/lib/elasticsearch/api/actions/watcher/start.rb +46 -0
- data/lib/elasticsearch/api/actions/watcher/stats.rb +54 -0
- data/lib/elasticsearch/api/actions/watcher/stop.rb +46 -0
- data/lib/elasticsearch/api/actions/xpack/info.rb +48 -0
- data/lib/elasticsearch/api/actions/xpack/usage.rb +47 -0
- data/lib/elasticsearch/api/namespace/async_search.rb +36 -0
- data/lib/elasticsearch/api/namespace/autoscaling.rb +36 -0
- data/lib/elasticsearch/api/namespace/cross_cluster_replication.rb +38 -0
- data/lib/elasticsearch/api/namespace/data_frame_transform_deprecated.rb +36 -0
- data/lib/elasticsearch/api/namespace/enrich.rb +36 -0
- data/lib/elasticsearch/api/namespace/eql.rb +36 -0
- data/lib/elasticsearch/api/namespace/fleet.rb +36 -0
- data/lib/elasticsearch/api/namespace/graph.rb +36 -0
- data/lib/elasticsearch/api/namespace/index_lifecycle_management.rb +38 -0
- data/lib/elasticsearch/api/namespace/ingest.rb +0 -1
- data/lib/elasticsearch/api/namespace/license.rb +36 -0
- data/lib/elasticsearch/api/namespace/logstash.rb +36 -0
- data/lib/elasticsearch/api/namespace/machine_learning.rb +38 -0
- data/lib/elasticsearch/api/namespace/migration.rb +36 -0
- data/lib/elasticsearch/api/namespace/monitoring.rb +36 -0
- data/lib/elasticsearch/api/namespace/rollup.rb +36 -0
- data/lib/elasticsearch/api/namespace/searchable_snapshots.rb +36 -0
- data/lib/elasticsearch/api/namespace/snapshot_lifecycle_management.rb +38 -0
- data/lib/elasticsearch/api/namespace/sql.rb +36 -0
- data/lib/elasticsearch/api/namespace/ssl.rb +36 -0
- data/lib/elasticsearch/api/namespace/text_structure.rb +36 -0
- data/lib/elasticsearch/api/namespace/transform.rb +36 -0
- data/lib/elasticsearch/api/namespace/watcher.rb +36 -0
- data/lib/elasticsearch/api/namespace/xpack.rb +36 -0
- data/lib/elasticsearch/api/response.rb +48 -0
- data/lib/elasticsearch/api/utils.rb +7 -60
- data/lib/elasticsearch/api/version.rb +1 -1
- data/lib/elasticsearch/api.rb +26 -21
- data/spec/elasticsearch/api/actions/bulk_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/close_point_in_time_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/count_spec.rb +9 -6
- data/spec/elasticsearch/api/actions/create_document_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/data_frame/update_data_frame_transform_spec.rb +81 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +2 -19
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +3 -16
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +10 -21
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +9 -9
- data/spec/elasticsearch/api/actions/features/get_features_spec.rb +11 -7
- data/spec/elasticsearch/api/actions/features/reset_features_spec.rb +11 -7
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/fleet/global_checkpoints_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +6 -18
- data/spec/elasticsearch/api/actions/get_document_spec.rb +6 -31
- data/spec/elasticsearch/api/actions/get_script_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/index_document_spec.rb +10 -28
- data/spec/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers_spec.rb +36 -0
- data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/data_streams_stats_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/disk_usage_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/field_usage_stats_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +2 -13
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +7 -22
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +8 -14
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +7 -12
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/info_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/geo_ip_stats_spec.rb +5 -1
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part_spec.rb +62 -0
- data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary_spec.rb +54 -0
- data/spec/elasticsearch/api/actions/machine_learning/reset_job_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/set_upgrade_mode_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/machine_learning/start_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/mget_spec.rb +5 -20
- data/spec/elasticsearch/api/actions/migration/get_feature_upgrade_status_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/migration/post_feature_upgrade_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/msearch_spec.rb +16 -14
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +4 -6
- data/spec/elasticsearch/api/actions/nodes/clear_repositories_metering_archive_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/nodes/get_repositories_metering_info_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/open_point_in_time_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/put_script_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/rank_eval_spec.rb +127 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/scroll_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/search_mvt_spec.rb +3 -2
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/search_spec.rb +2 -40
- data/spec/elasticsearch/api/actions/search_template_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/searchable_snapshots/cache_stats_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/clear_cache_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/mount_spec.rb +56 -0
- data/spec/elasticsearch/api/actions/searchable_snapshots/stats_spec.rb +43 -0
- data/spec/elasticsearch/api/actions/security/clear_cached_service_tokens_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/security/create_api_key_spec.rb +79 -0
- data/spec/elasticsearch/api/actions/security/create_service_token_spec.rb +54 -0
- data/spec/elasticsearch/api/actions/security/delete_service_token_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/security/enroll_kibana_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/security/get_api_key_spec.rb +56 -0
- data/spec/elasticsearch/api/actions/{indices/upgrade_spec.rb → security/get_builtin_privileges_spec.rb} +4 -4
- data/spec/elasticsearch/api/actions/security/get_service_accounts_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/security/get_service_credentials_spec.rb +53 -0
- data/spec/elasticsearch/api/actions/security/invalidate_api_key_spec.rb +38 -0
- data/spec/elasticsearch/api/actions/security/query_api_keys_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/security/saml_authenticate_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_complete_logout_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_invalidate_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_logout_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_prepare_authentication_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/security/saml_service_provider_metadata_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/shutdown/delete_node_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/shutdown/get_node_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/shutdown/put_node_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/snapshot/repository_analize_spec.rb +2 -4
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +7 -10
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +2 -3
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/sql/delete_async_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/sql/get_async_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/sql/get_async_stats_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +7 -8
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/terms_enum_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +6 -7
- data/spec/elasticsearch/api/actions/update_document_spec.rb +6 -20
- data/spec/elasticsearch/api/api_response_spec.rb +64 -0
- data/spec/elasticsearch/api/api_spec.rb +0 -3
- data/spec/elasticsearch/api/client_spec.rb +0 -4
- data/spec/elasticsearch/api/rest_api_yaml_spec.rb +78 -83
- data/spec/elasticsearch/api/utils_spec.rb +26 -77
- data/spec/rest_api_tests_helper.rb +91 -0
- data/spec/{skipped_tests.yml → skipped_tests_free.yml} +4 -9
- data/spec/skipped_tests_platinum.yml +59 -0
- data/spec/spec_helper.rb +9 -22
- data/spec/unit_tests_platinum/test_helper.rb +72 -0
- data/spec/unit_tests_platinum/unit/async_search/delete_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/get_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/status_test.rb +39 -0
- data/spec/unit_tests_platinum/unit/async_search/submit_test.rb +50 -0
- data/spec/unit_tests_platinum/unit/autoscaling/delete_autoscaling_policy_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_capacity_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_policy_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/autoscaling/put_autoscaling_policy_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/enrich/delete_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/eql/delete_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/get_status_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/get_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/eql/search_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/graph/explore_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/explain_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/get_status_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/move_to_step.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/remove_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/retry_policy_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/start_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/index_lifecycle_management/stop_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/indices/create_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/data_stream_stats_test.rb +54 -0
- data/spec/unit_tests_platinum/unit/indices/delete_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/get_data_stream_test.rb +50 -0
- data/spec/unit_tests_platinum/unit/indices/migrate_to_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/modify_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/indices/promote_data_stream_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/info_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/knn_search_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/license/delete_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/license/get_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/license/post_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/logstash/delete_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/logstash/get_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/logstash/put_pipeline_test.rb +46 -0
- data/spec/unit_tests_platinum/unit/machine_learning/close_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_expired_data_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_forecast_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_model_alias_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/delete_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/flush_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/forecast_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_buckets_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_categories_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_datafeed_stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_datafeeds_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_filters_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_influencers_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_job_stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_jobs_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_model_snapshots_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_overall_buckets_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/get_records_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/open_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/post_data_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/preview_data_frame_analytics_test.rb +64 -0
- data/spec/unit_tests_platinum/unit/machine_learning/preview_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/put_trained_model_alias_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/revert_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/start_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/stop_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_data_frame_analytics_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_datafeed_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_filter_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_job_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/update_model_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/upgrade_job_snapshot_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/validate_detector_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/machine_learning/validate_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/migration/deprecations_test.rb +42 -0
- data/spec/unit_tests_platinum/unit/monitoring/bulk_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/rollup/get_rollup_index_caps_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/rollup/rollup_test.rb +58 -0
- data/spec/unit_tests_platinum/unit/security/authenticate_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/change_password_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/security/clear_api_key_cache_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_privileges_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_realms_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/clear_cached_roles_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_role_mapping_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_role_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/delete_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/disable_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/enable_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_privileges_test.rb +78 -0
- data/spec/unit_tests_platinum/unit/security/get_role_mapping_test.rb +54 -0
- data/spec/unit_tests_platinum/unit/security/get_role_test.rb +62 -0
- data/spec/unit_tests_platinum/unit/security/get_token_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_user_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/get_user_test.rb +61 -0
- data/spec/unit_tests_platinum/unit/security/grant_api_key_test.rb +41 -0
- data/spec/unit_tests_platinum/unit/security/has_privileges_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/security/invalidate_token_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_privileges_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_role_mapping_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_role_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/security/put_user_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/ssl/certificates_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/text_structure/find_structure_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/transform/upgrade_transforms_spec.rb +34 -0
- data/spec/unit_tests_platinum/unit/usage_test.rb +40 -0
- data/spec/unit_tests_platinum/unit/watcher/ack_watch_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/watcher/activate_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/deactivate_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/delete_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/execute_watch_test.rb +55 -0
- data/spec/unit_tests_platinum/unit/watcher/get_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/put_watch_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/query_watches_test.rb +52 -0
- data/spec/unit_tests_platinum/unit/watcher/start_test.rb +41 -0
- data/spec/unit_tests_platinum/unit/watcher/stats_test.rb +43 -0
- data/spec/unit_tests_platinum/unit/watcher/stop_test.rb +43 -0
- data/utils/README.md +2 -10
- data/utils/thor/.rubocop.yml +0 -2
- data/utils/thor/generate_source.rb +26 -47
- data/utils/thor/generator/endpoint_specifics.rb +2 -30
- data/utils/thor/generator/files_helper.rb +24 -37
- data/utils/thor/templates/{_params_registry.erb → _body.erb} +15 -12
- data/utils/thor/templates/_documentation_top.erb +1 -2
- data/utils/thor/templates/_method_setup.erb +20 -32
- data/utils/thor/templates/_perform_request.erb +16 -22
- data/utils/thor/templates/method.erb +2 -7
- metadata +632 -86
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/dangling_indices/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/features/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/params_registry.rb +0 -58
- data/lib/elasticsearch/api/actions/shutdown/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -60
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -60
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +0 -90
- data/spec/rest_yaml_tests_helper.rb +0 -135
- /data/{LICENSE → LICENSE.txt} +0 -0
@@ -34,7 +34,7 @@ describe 'client#get' do
|
|
34
34
|
end
|
35
35
|
|
36
36
|
let(:url) do
|
37
|
-
'foo/
|
37
|
+
'foo/_doc/1'
|
38
38
|
end
|
39
39
|
|
40
40
|
let(:client) do
|
@@ -43,60 +43,37 @@ describe 'client#get' do
|
|
43
43
|
|
44
44
|
it 'requires the :index argument' do
|
45
45
|
expect {
|
46
|
-
client.get(
|
46
|
+
client.get(id: '1')
|
47
47
|
}.to raise_exception(ArgumentError)
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'requires the :id argument' do
|
51
51
|
expect {
|
52
|
-
client.get(index: 'foo'
|
52
|
+
client.get(index: 'foo')
|
53
53
|
}.to raise_exception(ArgumentError)
|
54
54
|
end
|
55
55
|
|
56
|
-
context 'when the type parameter is not provided' do
|
57
|
-
|
58
|
-
let(:url) do
|
59
|
-
'foo/_doc/1'
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'performs the request' do
|
63
|
-
expect(client_double.get(index: 'foo', id: '1')).to eq({})
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
56
|
context 'when URL parameters are provided' do
|
68
|
-
|
69
57
|
let(:params) do
|
70
58
|
{ routing: 'abc123' }
|
71
59
|
end
|
72
60
|
|
73
61
|
it 'Passes the URL params' do
|
74
|
-
expect(client_double.get(index: 'foo',
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
|
-
context 'when invalid URL parameters are provided' do
|
79
|
-
|
80
|
-
it 'Passes the URL params' do
|
81
|
-
expect {
|
82
|
-
client.get(index: 'foo', type: 'bar', id: '1', qwert: 'abc123')
|
83
|
-
}.to raise_exception(ArgumentError)
|
62
|
+
expect(client_double.get(index: 'foo', id: '1', routing: 'abc123')).to be_a Elasticsearch::API::Response
|
84
63
|
end
|
85
64
|
end
|
86
65
|
|
87
66
|
context 'when the request needs to be URL-escaped' do
|
88
|
-
|
89
67
|
let(:url) do
|
90
|
-
'foo%5Ebar/
|
68
|
+
'foo%5Ebar/_doc/1'
|
91
69
|
end
|
92
70
|
|
93
71
|
it 'URL-escapes the parts' do
|
94
|
-
expect(client_double.get(index: 'foo^bar',
|
72
|
+
expect(client_double.get(index: 'foo^bar', id: '1')).to be_a Elasticsearch::API::Response
|
95
73
|
end
|
96
74
|
end
|
97
75
|
|
98
76
|
context 'when the request raises a NotFound error' do
|
99
|
-
|
100
77
|
before do
|
101
78
|
expect(client).to receive(:perform_request).and_raise(NotFound)
|
102
79
|
end
|
@@ -108,9 +85,7 @@ describe 'client#get' do
|
|
108
85
|
end
|
109
86
|
|
110
87
|
context 'when the ignore option is provided' do
|
111
|
-
|
112
88
|
context 'when the response is 404' do
|
113
|
-
|
114
89
|
let(:params) do
|
115
90
|
{ ignore: 404 }
|
116
91
|
end
|
@@ -44,7 +44,7 @@ describe 'client#get_script' do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
it 'performs the request' do
|
47
|
-
expect(client_double.get_script(master_timeout: '1s', id: 'foo')).to
|
47
|
+
expect(client_double.get_script(master_timeout: '1s', id: 'foo')).to be_a Elasticsearch::API::Response
|
48
48
|
end
|
49
49
|
end
|
50
50
|
end
|
@@ -38,7 +38,7 @@ describe 'client#index' do
|
|
38
38
|
end
|
39
39
|
|
40
40
|
let(:url) do
|
41
|
-
'foo/
|
41
|
+
'foo/_doc'
|
42
42
|
end
|
43
43
|
|
44
44
|
let(:body) do
|
@@ -51,37 +51,35 @@ describe 'client#index' do
|
|
51
51
|
|
52
52
|
it 'requires the :index argument' do
|
53
53
|
expect {
|
54
|
-
client.index(
|
54
|
+
client.index()
|
55
55
|
}.to raise_exception(ArgumentError)
|
56
56
|
end
|
57
57
|
|
58
58
|
it 'performs the request' do
|
59
|
-
expect(client_double.index(index: 'foo',
|
59
|
+
expect(client_double.index(index: 'foo', body: body)).to be_a Elasticsearch::API::Response
|
60
60
|
end
|
61
61
|
|
62
62
|
context 'when a specific id is provided' do
|
63
|
-
|
64
63
|
let(:request_type) do
|
65
64
|
'PUT'
|
66
65
|
end
|
67
66
|
|
68
67
|
let(:url) do
|
69
|
-
'foo/
|
68
|
+
'foo/_doc/1'
|
70
69
|
end
|
71
70
|
|
72
71
|
it 'performs the request' do
|
73
|
-
expect(client_double.index(index: 'foo',
|
72
|
+
expect(client_double.index(index: 'foo', id: '1', body: body)).to be_a Elasticsearch::API::Response
|
74
73
|
end
|
75
74
|
end
|
76
75
|
|
77
76
|
context 'when URL parameters are provided' do
|
78
|
-
|
79
77
|
let(:request_type) do
|
80
78
|
'POST'
|
81
79
|
end
|
82
80
|
|
83
81
|
let(:url) do
|
84
|
-
'foo/
|
82
|
+
'foo/_doc'
|
85
83
|
end
|
86
84
|
|
87
85
|
let(:params) do
|
@@ -89,17 +87,16 @@ describe 'client#index' do
|
|
89
87
|
end
|
90
88
|
|
91
89
|
it 'passes the URL params' do
|
92
|
-
expect(client_double.index(index: 'foo',
|
90
|
+
expect(client_double.index(index: 'foo', op_type: 'create', body: body)).to be_a Elasticsearch::API::Response
|
93
91
|
end
|
94
92
|
|
95
93
|
context 'when a specific id is provided' do
|
96
|
-
|
97
94
|
let(:request_type) do
|
98
95
|
'PUT'
|
99
96
|
end
|
100
97
|
|
101
98
|
let(:url) do
|
102
|
-
'foo/
|
99
|
+
'foo/_doc/1'
|
103
100
|
end
|
104
101
|
|
105
102
|
let(:params) do
|
@@ -107,30 +104,15 @@ describe 'client#index' do
|
|
107
104
|
end
|
108
105
|
|
109
106
|
it 'passes the URL params' do
|
110
|
-
expect(client_double.index(index: 'foo',
|
107
|
+
expect(client_double.index(index: 'foo', id: '1', op_type: 'create', body: body)).to be_a Elasticsearch::API::Response
|
111
108
|
end
|
112
109
|
end
|
113
110
|
end
|
114
111
|
|
115
|
-
context 'when the request needs to be URL-escaped' do
|
116
|
-
let(:request_type) do
|
117
|
-
'PUT'
|
118
|
-
end
|
119
|
-
|
120
|
-
let(:url) do
|
121
|
-
'foo/bar%2Fbam/123'
|
122
|
-
end
|
123
|
-
|
124
|
-
it 'URL-escapes the parts' do
|
125
|
-
expect(client_double.index(index: 'foo', type: 'bar/bam', id: '123', body: body)).to eq({})
|
126
|
-
end
|
127
|
-
end
|
128
|
-
|
129
112
|
context 'when an invalid URL parameter is provided' do
|
130
|
-
|
131
113
|
it 'raises and ArgumentError' do
|
132
114
|
expect {
|
133
|
-
client.index(index: 'foo',
|
115
|
+
client.index(index: 'foo', id: '1', qwerty: 'yuiop')
|
134
116
|
}.to raise_exception(ArgumentError)
|
135
117
|
end
|
136
118
|
end
|
@@ -0,0 +1,36 @@
|
|
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
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe 'client.index_lifecycle_management#migrate_to_data_tiers' do
|
21
|
+
let(:expected_args) do
|
22
|
+
[
|
23
|
+
'POST',
|
24
|
+
'_ilm/migrate_to_data_tiers',
|
25
|
+
{},
|
26
|
+
nil,
|
27
|
+
{}
|
28
|
+
]
|
29
|
+
end
|
30
|
+
|
31
|
+
let(:index) { 'foo' }
|
32
|
+
|
33
|
+
it 'performs the request' do
|
34
|
+
expect(client_double.index_lifecycle_management.migrate_to_data_tiers).to be_a Elasticsearch::API::Response
|
35
|
+
end
|
36
|
+
end
|
@@ -42,7 +42,7 @@ describe 'client.indices#analyze' do
|
|
42
42
|
end
|
43
43
|
|
44
44
|
it 'performs the request' do
|
45
|
-
expect(client_double.indices.analyze).to
|
45
|
+
expect(client_double.indices.analyze).to be_a Elasticsearch::API::Response
|
46
46
|
end
|
47
47
|
|
48
48
|
context 'when an index is specified' do
|
@@ -51,7 +51,7 @@ describe 'client.indices#analyze' do
|
|
51
51
|
end
|
52
52
|
|
53
53
|
it 'performs the request' do
|
54
|
-
expect(client_double.indices.analyze(index: 'foo')).to
|
54
|
+
expect(client_double.indices.analyze(index: 'foo')).to be_a Elasticsearch::API::Response
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
@@ -62,7 +62,7 @@ describe 'client.indices#analyze' do
|
|
62
62
|
let(:method) { 'POST' }
|
63
63
|
|
64
64
|
it 'performs the request' do
|
65
|
-
expect(client_double.indices.analyze(body: 'foo')).to
|
65
|
+
expect(client_double.indices.analyze(body: 'foo')).to be_a Elasticsearch::API::Response
|
66
66
|
end
|
67
67
|
end
|
68
68
|
end
|
@@ -38,7 +38,7 @@ describe 'client.indices#clear_cache' do
|
|
38
38
|
end
|
39
39
|
|
40
40
|
it 'performs the request' do
|
41
|
-
expect(client_double.indices.clear_cache).to
|
41
|
+
expect(client_double.indices.clear_cache).to be_a Elasticsearch::API::Response
|
42
42
|
end
|
43
43
|
|
44
44
|
context 'when an index is specified' do
|
@@ -48,7 +48,7 @@ describe 'client.indices#clear_cache' do
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'performs the request' do
|
51
|
-
expect(client_double.indices.clear_cache(index: 'foo')).to
|
51
|
+
expect(client_double.indices.clear_cache(index: 'foo')).to be_a Elasticsearch::API::Response
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
@@ -59,7 +59,7 @@ describe 'client.indices#clear_cache' do
|
|
59
59
|
end
|
60
60
|
|
61
61
|
it 'performs the request' do
|
62
|
-
expect(client_double.indices.clear_cache(fielddata: true)).to
|
62
|
+
expect(client_double.indices.clear_cache(fielddata: true)).to be_a Elasticsearch::API::Response
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
@@ -74,7 +74,7 @@ describe 'client.indices#clear_cache' do
|
|
74
74
|
end
|
75
75
|
|
76
76
|
it 'performs the request' do
|
77
|
-
expect(client_double.indices.clear_cache(index: 'foo^bar')).to
|
77
|
+
expect(client_double.indices.clear_cache(index: 'foo^bar')).to be_a Elasticsearch::API::Response
|
78
78
|
end
|
79
79
|
end
|
80
80
|
end
|
@@ -70,7 +70,7 @@ describe 'client.indices#clone' do
|
|
70
70
|
context 'when an index and target are specified' do
|
71
71
|
|
72
72
|
it 'performs the request' do
|
73
|
-
expect(client_double.indices.clone(index: 'my_source_index', target: 'my_target_index')).to
|
73
|
+
expect(client_double.indices.clone(index: 'my_source_index', target: 'my_target_index')).to be_a Elasticsearch::API::Response
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
@@ -78,9 +78,9 @@ describe 'client.indices#clone' do
|
|
78
78
|
|
79
79
|
let(:params) do
|
80
80
|
{
|
81
|
-
|
82
|
-
|
83
|
-
|
81
|
+
timeout: '1s',
|
82
|
+
master_timeout: '10s',
|
83
|
+
wait_for_active_shards: 1
|
84
84
|
}
|
85
85
|
end
|
86
86
|
|
@@ -89,7 +89,7 @@ describe 'client.indices#clone' do
|
|
89
89
|
target: 'my_target_index',
|
90
90
|
timeout: '1s',
|
91
91
|
master_timeout: '10s',
|
92
|
-
wait_for_active_shards: 1)).to
|
92
|
+
wait_for_active_shards: 1)).to be_a Elasticsearch::API::Response
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
@@ -116,7 +116,7 @@ describe 'client.indices#clone' do
|
|
116
116
|
aliases: {
|
117
117
|
my_search_indices: {}
|
118
118
|
}
|
119
|
-
})).to
|
119
|
+
})).to be_a Elasticsearch::API::Response
|
120
120
|
end
|
121
121
|
end
|
122
122
|
end
|
@@ -53,7 +53,7 @@ describe 'client.indices#close' do
|
|
53
53
|
end
|
54
54
|
|
55
55
|
it 'performs the request' do
|
56
|
-
expect(client_double.indices.close(index: 'foo')).to
|
56
|
+
expect(client_double.indices.close(index: 'foo')).to be_a Elasticsearch::API::Response
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
@@ -68,7 +68,7 @@ describe 'client.indices#close' do
|
|
68
68
|
end
|
69
69
|
|
70
70
|
it 'performs the request' do
|
71
|
-
expect(client_double.indices.close(index: 'foo', timeout: '1s')).to
|
71
|
+
expect(client_double.indices.close(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
@@ -79,7 +79,7 @@ describe 'client.indices#close' do
|
|
79
79
|
end
|
80
80
|
|
81
81
|
it 'performs the request' do
|
82
|
-
expect(client_double.indices.close(index: 'foo^bar')).to
|
82
|
+
expect(client_double.indices.close(index: 'foo^bar')).to be_a Elasticsearch::API::Response
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|
@@ -53,7 +53,7 @@ describe 'client.indices#create' do
|
|
53
53
|
end
|
54
54
|
|
55
55
|
it 'performs the request' do
|
56
|
-
expect(client_double.indices.create(index: 'foo')).to
|
56
|
+
expect(client_double.indices.create(index: 'foo')).to be_a Elasticsearch::API::Response
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
@@ -68,7 +68,7 @@ describe 'client.indices#create' do
|
|
68
68
|
end
|
69
69
|
|
70
70
|
it 'performs the request' do
|
71
|
-
expect(client_double.indices.create(index: 'foo', timeout: '1s')).to
|
71
|
+
expect(client_double.indices.create(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
@@ -79,7 +79,7 @@ describe 'client.indices#create' do
|
|
79
79
|
end
|
80
80
|
|
81
81
|
it 'performs the request' do
|
82
|
-
expect(client_double.indices.create(index: 'foo^bar')).to
|
82
|
+
expect(client_double.indices.create(index: 'foo^bar')).to be_a Elasticsearch::API::Response
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|
@@ -0,0 +1,58 @@
|
|
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
|
+
require 'spec_helper'
|
19
|
+
|
20
|
+
describe 'client.indices#data_streams_stats' do
|
21
|
+
let(:expected_args) do
|
22
|
+
[
|
23
|
+
'GET',
|
24
|
+
url,
|
25
|
+
params,
|
26
|
+
nil,
|
27
|
+
{}
|
28
|
+
]
|
29
|
+
end
|
30
|
+
|
31
|
+
let(:params) do
|
32
|
+
{}
|
33
|
+
end
|
34
|
+
|
35
|
+
context 'when there is no name specified' do
|
36
|
+
let(:url) do
|
37
|
+
'_data_stream/_stats'
|
38
|
+
end
|
39
|
+
|
40
|
+
let(:client) do
|
41
|
+
Class.new { include Elasticsearch::API }.new
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'performs the request' do
|
45
|
+
expect(client_double.indices.data_streams_stats).to be_a Elasticsearch::API::Response
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
context 'when name is specified' do
|
50
|
+
let(:url) do
|
51
|
+
'_data_stream/foo/_stats'
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'performs the request' do
|
55
|
+
expect(client_double.indices.data_streams_stats(name: 'foo')).to be_a Elasticsearch::API::Response
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -66,7 +66,7 @@ describe 'client.indices#delete_alias' do
|
|
66
66
|
end
|
67
67
|
|
68
68
|
it 'performs the request' do
|
69
|
-
expect(client_double.indices.delete_alias(index: 'foo', name: 'bar')).to
|
69
|
+
expect(client_double.indices.delete_alias(index: 'foo', name: 'bar')).to be_a Elasticsearch::API::Response
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
@@ -77,7 +77,7 @@ describe 'client.indices#delete_alias' do
|
|
77
77
|
end
|
78
78
|
|
79
79
|
it 'performs the request' do
|
80
|
-
expect(client_double.indices.delete_alias(index: 'foo^bar', name: 'bar/bam')).to
|
80
|
+
expect(client_double.indices.delete_alias(index: 'foo^bar', name: 'bar/bam')).to be_a Elasticsearch::API::Response
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
@@ -38,7 +38,7 @@ describe 'client.indices#delete' do
|
|
38
38
|
end
|
39
39
|
|
40
40
|
it 'performs the request' do
|
41
|
-
expect(client_double.indices.delete(index: 'foo')).to
|
41
|
+
expect(client_double.indices.delete(index: 'foo')).to be_a Elasticsearch::API::Response
|
42
42
|
end
|
43
43
|
|
44
44
|
context 'when more than one index is specified' do
|
@@ -48,7 +48,7 @@ describe 'client.indices#delete' do
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'performs the request' do
|
51
|
-
expect(client_double.indices.delete(index: ['foo', 'bar'])).to
|
51
|
+
expect(client_double.indices.delete(index: ['foo', 'bar'])).to be_a Elasticsearch::API::Response
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
@@ -59,7 +59,7 @@ describe 'client.indices#delete' do
|
|
59
59
|
end
|
60
60
|
|
61
61
|
it 'performs the request' do
|
62
|
-
expect(client_double.indices.delete(index: 'foo', timeout: '1s')).to
|
62
|
+
expect(client_double.indices.delete(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
@@ -70,7 +70,7 @@ describe 'client.indices#delete' do
|
|
70
70
|
end
|
71
71
|
|
72
72
|
it 'performs the request' do
|
73
|
-
expect(client_double.indices.delete(index: 'foo^bar')).to
|
73
|
+
expect(client_double.indices.delete(index: 'foo^bar')).to be_a Elasticsearch::API::Response
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
@@ -38,7 +38,7 @@ describe 'client.indices#delete_template' do
|
|
38
38
|
end
|
39
39
|
|
40
40
|
it 'performs the request' do
|
41
|
-
expect(client_double.indices.delete_template(name: 'foo')).to
|
41
|
+
expect(client_double.indices.delete_template(name: 'foo')).to be_a Elasticsearch::API::Response
|
42
42
|
end
|
43
43
|
|
44
44
|
context 'when the path needs to be URL-escaped' do
|
@@ -48,7 +48,7 @@ describe 'client.indices#delete_template' do
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'performs the request' do
|
51
|
-
expect(client_double.indices.delete_template(name: 'foo^bar')).to
|
51
|
+
expect(client_double.indices.delete_template(name: 'foo^bar')).to be_a Elasticsearch::API::Response
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
@@ -31,7 +31,7 @@ describe 'client.indices#disk_usage' do
|
|
31
31
|
let(:index) { 'foo' }
|
32
32
|
|
33
33
|
it 'performs the request' do
|
34
|
-
expect(client_double.indices.disk_usage(index: index)).to
|
34
|
+
expect(client_double.indices.disk_usage(index: index)).to be_a Elasticsearch::API::Response
|
35
35
|
end
|
36
36
|
|
37
37
|
context 'when there is no index specified' do
|
@@ -29,7 +29,7 @@ describe 'client.indices#field_usage_stats' do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
it 'performs the request' do
|
32
|
-
expect(client_double.indices.field_usage_stats(index: 'foo')).to
|
32
|
+
expect(client_double.indices.field_usage_stats(index: 'foo')).to be_a Elasticsearch::API::Response
|
33
33
|
end
|
34
34
|
|
35
35
|
context 'when there is no index specified' do
|
@@ -38,7 +38,7 @@ describe 'client.indices#flush' do
|
|
38
38
|
end
|
39
39
|
|
40
40
|
it 'performs the request' do
|
41
|
-
expect(client_double.indices.flush).to
|
41
|
+
expect(client_double.indices.flush).to be_a Elasticsearch::API::Response
|
42
42
|
end
|
43
43
|
|
44
44
|
context 'when an index is specified' do
|
@@ -48,7 +48,7 @@ describe 'client.indices#flush' do
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'performs the request' do
|
51
|
-
expect(client_double.indices.flush(index: 'foo')).to
|
51
|
+
expect(client_double.indices.flush(index: 'foo')).to be_a Elasticsearch::API::Response
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
@@ -59,7 +59,7 @@ describe 'client.indices#flush' do
|
|
59
59
|
end
|
60
60
|
|
61
61
|
it 'performs the request' do
|
62
|
-
expect(client_double.indices.flush(index: ['foo','bar'])).to
|
62
|
+
expect(client_double.indices.flush(index: ['foo','bar'])).to be_a Elasticsearch::API::Response
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
@@ -70,7 +70,7 @@ describe 'client.indices#flush' do
|
|
70
70
|
end
|
71
71
|
|
72
72
|
it 'performs the request' do
|
73
|
-
expect(client_double.indices.flush(index: 'foo^bar')).to
|
73
|
+
expect(client_double.indices.flush(index: 'foo^bar')).to be_a Elasticsearch::API::Response
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
@@ -85,7 +85,7 @@ describe 'client.indices#flush' do
|
|
85
85
|
end
|
86
86
|
|
87
87
|
it 'performs the request' do
|
88
|
-
expect(client_double.indices.flush(index: 'foo', ignore_unavailable: true)).to
|
88
|
+
expect(client_double.indices.flush(index: 'foo', ignore_unavailable: true)).to be_a Elasticsearch::API::Response
|
89
89
|
end
|
90
90
|
end
|
91
91
|
end
|
@@ -34,7 +34,7 @@ describe 'client.cluster#get_alias' do
|
|
34
34
|
end
|
35
35
|
|
36
36
|
it 'performs the request' do
|
37
|
-
expect(client_double.indices.get_alias(name: 'foo')).to
|
37
|
+
expect(client_double.indices.get_alias(name: 'foo')).to be_a Elasticsearch::API::Response
|
38
38
|
end
|
39
39
|
|
40
40
|
context 'when multiple indices are specified' do
|
@@ -44,7 +44,7 @@ describe 'client.cluster#get_alias' do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
it 'performs the request' do
|
47
|
-
expect(client_double.indices.get_alias(index: ['foo','bar'], name: 'bam')).to
|
47
|
+
expect(client_double.indices.get_alias(index: ['foo','bar'], name: 'bam')).to be_a Elasticsearch::API::Response
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
@@ -55,7 +55,7 @@ describe 'client.cluster#get_alias' do
|
|
55
55
|
end
|
56
56
|
|
57
57
|
it 'performs the request' do
|
58
|
-
expect(client_double.indices.get_alias(index: 'foo^bar', name: 'bar/bam')).to
|
58
|
+
expect(client_double.indices.get_alias(index: 'foo^bar', name: 'bar/bam')).to be_a Elasticsearch::API::Response
|
59
59
|
end
|
60
60
|
end
|
61
61
|
end
|
@@ -34,7 +34,7 @@ describe 'client.cluster#get_field_mapping' do
|
|
34
34
|
end
|
35
35
|
|
36
36
|
it 'performs the request' do
|
37
|
-
expect(client_double.indices.get_field_mapping(field: 'foo')).to
|
37
|
+
expect(client_double.indices.get_field_mapping(field: 'foo')).to be_a Elasticsearch::API::Response
|
38
38
|
end
|
39
39
|
|
40
40
|
context 'when an index is specified' do
|
@@ -44,18 +44,7 @@ describe 'client.cluster#get_field_mapping' do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
it 'performs the request' do
|
47
|
-
expect(client_double.indices.get_field_mapping(index: 'foo', field: 'bam')).to
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context 'when a type is specified' do
|
52
|
-
|
53
|
-
let(:url) do
|
54
|
-
'foo/_mapping/bar/field/bam'
|
55
|
-
end
|
56
|
-
|
57
|
-
it 'performs the request' do
|
58
|
-
expect(client_double.indices.get_field_mapping(index: 'foo', type: 'bar', field: 'bam')).to eq({})
|
47
|
+
expect(client_double.indices.get_field_mapping(index: 'foo', field: 'bam')).to be_a Elasticsearch::API::Response
|
59
48
|
end
|
60
49
|
end
|
61
50
|
end
|