elasticsearch-api 7.2.0 → 8.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +8 -12
- data/README.md +30 -43
- data/Rakefile +35 -107
- 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 +179 -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 +389 -0
- data/elasticsearch-api.gemspec +42 -53
- 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 +28 -76
- data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -58
- data/lib/elasticsearch/api/actions/cat/allocation.rb +30 -55
- data/lib/elasticsearch/api/actions/cat/count.rb +23 -50
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +25 -38
- data/lib/elasticsearch/api/actions/cat/health.rb +21 -41
- data/lib/elasticsearch/api/actions/cat/help.rb +16 -15
- data/lib/elasticsearch/api/actions/cat/indices.rb +31 -67
- data/lib/elasticsearch/api/actions/cat/master.rb +21 -39
- 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 +18 -22
- data/lib/elasticsearch/api/actions/cat/nodes.rb +23 -50
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +22 -39
- data/lib/elasticsearch/api/actions/cat/plugins.rb +20 -24
- data/lib/elasticsearch/api/actions/cat/recovery.rb +29 -61
- data/lib/elasticsearch/api/actions/cat/repositories.rb +19 -30
- data/lib/elasticsearch/api/actions/cat/segments.rb +25 -27
- data/lib/elasticsearch/api/actions/cat/shards.rb +28 -64
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +27 -33
- data/lib/elasticsearch/api/actions/cat/tasks.rb +24 -27
- data/lib/elasticsearch/api/actions/cat/templates.rb +24 -24
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +31 -52
- data/lib/elasticsearch/api/actions/cat/transforms.rb +62 -0
- data/lib/elasticsearch/api/actions/clear_scroll.rb +27 -9
- data/lib/elasticsearch/api/actions/close_point_in_time.rb +45 -0
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +23 -19
- data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +53 -0
- data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +47 -0
- data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +55 -0
- data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +55 -0
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +19 -24
- data/lib/elasticsearch/api/actions/cluster/health.rb +31 -52
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +17 -22
- data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +49 -0
- data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +56 -0
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +22 -23
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +14 -7
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +22 -43
- data/lib/elasticsearch/api/actions/cluster/state.rb +31 -47
- data/lib/elasticsearch/api/actions/cluster/stats.rb +23 -18
- data/lib/elasticsearch/api/actions/count.rb +29 -45
- data/lib/elasticsearch/api/actions/create.rb +17 -28
- 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 +54 -0
- data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +54 -0
- data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +46 -0
- 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 +30 -43
- data/lib/elasticsearch/api/actions/delete_by_query.rb +25 -69
- data/lib/elasticsearch/api/actions/{delete_by_rethrottle.rb → delete_by_query_rethrottle.rb} +20 -16
- data/lib/elasticsearch/api/actions/delete_script.rb +21 -18
- 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 +24 -40
- data/lib/elasticsearch/api/actions/exists_source.rb +26 -30
- data/lib/elasticsearch/api/actions/explain.rb +28 -55
- data/lib/elasticsearch/api/actions/features/get_features.rb +47 -0
- data/lib/elasticsearch/api/actions/features/reset_features.rb +50 -0
- data/lib/elasticsearch/api/actions/field_caps.rb +31 -26
- data/lib/elasticsearch/api/actions/fleet/global_checkpoints.rb +55 -0
- data/lib/elasticsearch/api/actions/get.rb +28 -47
- data/lib/elasticsearch/api/actions/get_script.rb +22 -19
- data/lib/elasticsearch/api/actions/get_script_context.rb +44 -0
- data/lib/elasticsearch/api/actions/{abort_benchmark.rb → get_script_languages.rb} +16 -14
- data/lib/elasticsearch/api/actions/get_source.rb +21 -50
- data/lib/elasticsearch/api/actions/graph/explore.rb +59 -0
- data/lib/elasticsearch/api/actions/index.rb +40 -97
- 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 +60 -0
- data/lib/elasticsearch/api/actions/indices/analyze.rb +27 -54
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +23 -47
- data/lib/elasticsearch/api/actions/indices/clone.rb +59 -0
- data/lib/elasticsearch/api/actions/indices/close.rb +25 -38
- data/lib/elasticsearch/api/actions/indices/create.rb +23 -77
- 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 +27 -42
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +27 -26
- data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +52 -0
- data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +53 -0
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +25 -26
- data/lib/elasticsearch/api/actions/indices/disk_usage.rb +60 -0
- data/lib/elasticsearch/api/actions/indices/exists.rb +26 -39
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +29 -34
- data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +56 -0
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +19 -20
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +25 -34
- data/lib/elasticsearch/api/actions/indices/field_usage_stats.rb +59 -0
- data/lib/elasticsearch/api/actions/indices/flush.rb +26 -33
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +22 -46
- data/lib/elasticsearch/api/actions/indices/get.rb +18 -24
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +30 -29
- data/lib/elasticsearch/api/actions/indices/get_data_stream.rb +54 -0
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +27 -45
- data/lib/elasticsearch/api/actions/indices/get_index_template.rb +56 -0
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +24 -38
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +30 -43
- data/lib/elasticsearch/api/actions/indices/get_template.rb +22 -30
- 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 +20 -26
- data/lib/elasticsearch/api/actions/indices/promote_data_stream.rb +51 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +28 -33
- data/lib/elasticsearch/api/actions/indices/put_index_template.rb +56 -0
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +24 -46
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +26 -43
- data/lib/elasticsearch/api/actions/indices/put_template.rb +22 -32
- data/lib/elasticsearch/api/actions/indices/recovery.rb +22 -28
- data/lib/elasticsearch/api/actions/indices/refresh.rb +23 -32
- data/lib/elasticsearch/api/actions/indices/{flush_synced.rb → reload_search_analyzers.rb} +23 -23
- data/lib/elasticsearch/api/actions/indices/resolve_index.rb +52 -0
- data/lib/elasticsearch/api/actions/indices/rollover.rb +29 -27
- data/lib/elasticsearch/api/actions/indices/segments.rb +23 -23
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +24 -20
- data/lib/elasticsearch/api/actions/indices/shrink.rb +23 -23
- data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +55 -0
- data/lib/elasticsearch/api/actions/indices/simulate_template.rb +57 -0
- data/lib/elasticsearch/api/actions/indices/split.rb +22 -22
- data/lib/elasticsearch/api/actions/indices/stats.rb +39 -117
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +41 -18
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +18 -38
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +29 -64
- data/lib/elasticsearch/api/actions/info.rb +16 -8
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +21 -18
- data/lib/elasticsearch/api/actions/ingest/geo_ip_stats.rb +46 -0
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +25 -16
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +30 -13
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +22 -20
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +25 -17
- 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 +55 -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_snapshot_upgrade_stats.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 +52 -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 +23 -49
- 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 +37 -58
- data/lib/elasticsearch/api/actions/msearch_template.rb +34 -38
- data/lib/elasticsearch/api/actions/mtermvectors.rb +30 -46
- data/lib/elasticsearch/api/actions/nodes/clear_repositories_metering_archive.rb +61 -0
- data/lib/elasticsearch/api/actions/nodes/get_repositories_metering_info.rb +55 -0
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +21 -30
- data/lib/elasticsearch/api/actions/nodes/info.rb +28 -67
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +24 -23
- data/lib/elasticsearch/api/actions/nodes/stats.rb +33 -40
- data/lib/elasticsearch/api/actions/nodes/usage.rb +45 -15
- data/lib/elasticsearch/api/actions/open_point_in_time.rb +54 -0
- data/lib/elasticsearch/api/actions/ping.rb +14 -12
- data/lib/elasticsearch/api/actions/put_script.rb +27 -36
- data/lib/elasticsearch/api/actions/rank_eval.rb +27 -22
- data/lib/elasticsearch/api/actions/reindex.rb +23 -55
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +22 -18
- data/lib/elasticsearch/api/actions/render_search_template.rb +28 -16
- 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 +59 -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 +23 -7
- data/lib/elasticsearch/api/actions/scroll.rb +35 -58
- data/lib/elasticsearch/api/actions/search.rb +54 -170
- data/lib/elasticsearch/api/actions/search_mvt.rb +76 -0
- data/lib/elasticsearch/api/actions/search_shards.rb +28 -33
- data/lib/elasticsearch/api/actions/search_template.rb +27 -45
- data/lib/elasticsearch/api/actions/searchable_snapshots/cache_stats.rb +57 -0
- data/lib/elasticsearch/api/actions/{indices/upgrade.rb → searchable_snapshots/clear_cache.rb} +30 -26
- 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 +51 -0
- data/lib/elasticsearch/api/actions/shutdown/get_node.rb +53 -0
- data/lib/elasticsearch/api/actions/shutdown/put_node.rb +53 -0
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +53 -0
- data/lib/elasticsearch/api/actions/snapshot/clone.rb +62 -0
- data/lib/elasticsearch/api/actions/snapshot/create.rb +25 -35
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +21 -30
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +27 -27
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +23 -24
- data/lib/elasticsearch/api/actions/snapshot/get.rb +30 -37
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +28 -31
- data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +62 -0
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +23 -37
- data/lib/elasticsearch/api/actions/snapshot/status.rb +31 -31
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +20 -18
- 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 +26 -19
- data/lib/elasticsearch/api/actions/tasks/get.rb +23 -19
- data/lib/elasticsearch/api/actions/tasks/list.rb +19 -23
- data/lib/elasticsearch/api/actions/terms_enum.rb +55 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +35 -74
- data/lib/elasticsearch/api/actions/text_structure/find_structure.rb +70 -0
- data/lib/elasticsearch/api/actions/transform/delete_transform.rb +53 -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 +60 -0
- data/lib/elasticsearch/api/actions/transform/put_transform.rb +55 -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 +55 -0
- data/lib/elasticsearch/api/actions/transform/upgrade_transforms.rb +48 -0
- data/lib/elasticsearch/api/actions/update.rb +41 -107
- data/lib/elasticsearch/api/actions/update_by_query.rb +23 -72
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +20 -16
- 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/{actions/remote/info.rb → namespace/autoscaling.rb} +12 -14
- data/lib/elasticsearch/api/namespace/cat.rb +1 -2
- data/lib/elasticsearch/api/namespace/cluster.rb +1 -1
- data/lib/elasticsearch/api/namespace/common.rb +1 -1
- data/lib/elasticsearch/api/namespace/cross_cluster_replication.rb +38 -0
- data/lib/elasticsearch/api/namespace/dangling_indices.rb +35 -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/features.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/indices.rb +1 -1
- data/lib/elasticsearch/api/namespace/ingest.rb +1 -2
- 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/nodes.rb +1 -1
- data/lib/elasticsearch/api/namespace/remote.rb +1 -1
- data/lib/elasticsearch/api/namespace/rollup.rb +36 -0
- data/lib/elasticsearch/api/namespace/searchable_snapshots.rb +36 -0
- data/lib/elasticsearch/api/namespace/security.rb +36 -0
- data/lib/elasticsearch/api/namespace/shutdown.rb +37 -0
- data/lib/elasticsearch/api/namespace/snapshot.rb +1 -1
- 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/tasks.rb +1 -1
- 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 -57
- data/lib/elasticsearch/api/version.rb +2 -2
- data/lib/elasticsearch/api.rb +30 -21
- data/lib/elasticsearch-api.rb +1 -1
- data/spec/elasticsearch/api/actions/bulk_spec.rb +18 -37
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +12 -14
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +7 -5
- data/spec/elasticsearch/api/actions/{benchmark_spec.rb → close_point_in_time_spec.rb} +7 -7
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/count_spec.rb +16 -16
- data/spec/elasticsearch/api/actions/create_document_spec.rb +17 -13
- data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +36 -0
- data/spec/elasticsearch/api/actions/data_frame/update_data_frame_transform_spec.rb +81 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +16 -25
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +14 -25
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +4 -17
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +13 -23
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +18 -18
- data/spec/elasticsearch/api/actions/{scoll_spec.rb → features/get_features_spec.rb} +11 -7
- data/spec/elasticsearch/api/actions/features/reset_features_spec.rb +38 -0
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +4 -3
- data/spec/elasticsearch/api/actions/fleet/global_checkpoints_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +9 -20
- data/spec/elasticsearch/api/actions/get_document_spec.rb +9 -33
- data/spec/elasticsearch/api/actions/get_script_spec.rb +4 -3
- data/spec/elasticsearch/api/actions/hashie_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/index_document_spec.rb +14 -40
- 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 +63 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +11 -16
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +8 -12
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +122 -0
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/{nodes/shutdown_spec.rb → indices/data_streams_stats_spec.rb} +15 -33
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/disk_usage_spec.rb +48 -0
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/field_usage_stats_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +4 -15
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +9 -24
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +4 -15
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +9 -9
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +10 -16
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +9 -15
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +21 -4
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +15 -31
- data/spec/elasticsearch/api/actions/info_spec.rb +4 -3
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/ingest/geo_ip_stats_spec.rb +38 -0
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +9 -10
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +13 -14
- data/spec/elasticsearch/api/actions/machine_learning/get_model_snapshot_upgrade_stats_spec.rb +56 -0
- 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 +11 -26
- 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 +13 -29
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +8 -9
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +8 -9
- data/spec/elasticsearch/api/actions/nodes/clear_repositories_metering_archive_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/nodes/get_repositories_metering_info_spec.rb +44 -0
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +5 -5
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +13 -16
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +6 -6
- data/spec/elasticsearch/api/actions/{abort_benchmark_spec.rb → open_point_in_time_spec.rb} +6 -6
- data/spec/elasticsearch/api/actions/ping_spec.rb +4 -3
- data/spec/elasticsearch/api/actions/put_script_spec.rb +24 -17
- data/spec/elasticsearch/api/actions/rank_eval_spec.rb +127 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +5 -4
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +28 -10
- data/spec/elasticsearch/api/actions/scroll_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/search_mvt_spec.rb +53 -0
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +5 -4
- data/spec/elasticsearch/api/actions/search_spec.rb +10 -62
- data/spec/elasticsearch/api/actions/search_template_spec.rb +7 -7
- 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/{indices/upgrade_spec.rb → security/enroll_kibana_spec.rb} +8 -9
- data/spec/elasticsearch/api/actions/security/get_api_key_spec.rb +56 -0
- data/spec/elasticsearch/api/actions/{remote/info_spec.rb → security/get_builtin_privileges_spec.rb} +5 -5
- 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 +44 -0
- data/spec/elasticsearch/api/actions/shutdown/get_node_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/shutdown/put_node_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +4 -4
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/snapshot/repository_analize_spec.rb +46 -0
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +8 -11
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +4 -5
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +7 -8
- 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 +8 -9
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +7 -19
- data/spec/elasticsearch/api/actions/terms_enum_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +11 -12
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +7 -7
- data/spec/elasticsearch/api/actions/update_document_spec.rb +16 -33
- data/spec/elasticsearch/api/api_response_spec.rb +64 -0
- data/spec/elasticsearch/api/api_spec.rb +1 -4
- data/spec/elasticsearch/api/client_spec.rb +1 -5
- data/spec/elasticsearch/api/rest_api_yaml_spec.rb +91 -101
- data/spec/elasticsearch/api/utils_spec.rb +15 -90
- data/spec/rest_api_tests_helper.rb +91 -0
- data/spec/skipped_tests_free.yml +32 -0
- data/spec/skipped_tests_platinum.yml +59 -0
- data/spec/spec_helper.rb +21 -17
- 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/Gemfile +6 -4
- data/utils/README.md +38 -0
- data/utils/Thorfile +3 -17
- data/utils/thor/.rubocop.yml +2 -0
- data/utils/thor/generate_source.rb +223 -87
- data/utils/thor/generator/endpoint_specifics.rb +159 -0
- data/utils/thor/generator/files_helper.rb +65 -0
- data/utils/thor/lister.rb +4 -5
- data/utils/thor/templates/_body.erb +34 -0
- data/utils/thor/templates/_documentation_top.erb +57 -0
- data/utils/thor/templates/_method_setup.erb +41 -0
- data/utils/thor/templates/_perform_request.erb +50 -0
- data/utils/thor/templates/method.erb +68 -0
- data/utils/thor/templates/{ruby/test.erb → test.erb} +1 -1
- data/utils/thor/templates/{ruby/test_helper.rb → test_helper.rb} +1 -5
- metadata +727 -89
- data/lib/elasticsearch/api/actions/benchmark.rb +0 -82
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/indices/freeze.rb +0 -40
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +0 -56
- data/lib/elasticsearch/api/actions/params_registry.rb +0 -59
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -61
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -61
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +0 -90
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +0 -68
- data/spec/rest_yaml_tests_helper.rb +0 -94
- data/test/integration/yaml_test_runner.rb +0 -592
- data/test/test_helper.rb +0 -118
- data/utils/thor/generate_api.rb +0 -206
- data/utils/thor/templates/ruby/method.erb +0 -75
@@ -6,7 +6,7 @@
|
|
6
6
|
# not use this file except in compliance with the License.
|
7
7
|
# You may obtain a copy of the License at
|
8
8
|
#
|
9
|
-
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
10
|
#
|
11
11
|
# Unless required by applicable law or agreed to in writing,
|
12
12
|
# software distributed under the License is distributed on an
|
@@ -18,138 +18,274 @@
|
|
18
18
|
# encoding: UTF-8
|
19
19
|
|
20
20
|
require 'thor'
|
21
|
-
|
22
21
|
require 'pathname'
|
23
22
|
require 'active_support/core_ext/hash/deep_merge'
|
24
23
|
require 'active_support/inflector'
|
25
24
|
require 'multi_json'
|
26
25
|
require 'coderay'
|
27
26
|
require 'pry'
|
27
|
+
require_relative 'generator/files_helper'
|
28
|
+
require_relative 'generator/endpoint_specifics'
|
28
29
|
|
29
30
|
module Elasticsearch
|
30
|
-
|
31
31
|
module API
|
32
|
-
|
33
32
|
# A command line application based on [Thor](https://github.com/wycats/thor),
|
34
33
|
# which will read the JSON API spec file(s), and generate
|
35
34
|
# the Ruby source code (one file per API endpoint) with correct
|
36
35
|
# module namespace, method names, and RDoc documentation,
|
37
36
|
# as well as test files for each endpoint.
|
38
37
|
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
#
|
38
|
+
# Specific exceptions and code snippets that need to be included are written
|
39
|
+
# in EndpointSpecifics (generator/endpoint_specifics) and the module is included
|
40
|
+
# here.
|
42
41
|
#
|
43
42
|
class SourceGenerator < Thor
|
44
|
-
namespace '
|
45
|
-
|
43
|
+
namespace 'code'
|
46
44
|
include Thor::Actions
|
45
|
+
include EndpointSpecifics
|
47
46
|
|
48
|
-
__root = Pathname(
|
47
|
+
__root = Pathname(File.expand_path('../../..', __FILE__))
|
49
48
|
|
50
|
-
desc
|
51
|
-
method_option :
|
52
|
-
method_option :
|
53
|
-
method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
|
54
|
-
method_option :input, default: File.expand_path('../../../../tmp/elasticsearch/rest-api-spec/api/**/*.json', __FILE__), desc: 'Path to directory with JSON API specs'
|
55
|
-
method_option :output, default: File.expand_path('../../../tmp/out', __FILE__), desc: 'Path to output directory'
|
49
|
+
desc 'generate', 'Generate source code and tests from the REST API JSON specification'
|
50
|
+
method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
|
51
|
+
method_option :tests, type: :boolean, default: false, desc: 'Generate test files'
|
56
52
|
|
57
|
-
def generate
|
58
|
-
self.class.source_root File.expand_path(
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
# -- Test helper
|
64
|
-
copy_file "templates/ruby/test_helper.rb", @output.join('test').join('test_helper.rb') if options[:language] == 'ruby'
|
53
|
+
def generate
|
54
|
+
self.class.source_root File.expand_path(__dir__)
|
55
|
+
generate_source
|
56
|
+
# -- Tree output
|
57
|
+
print_tree if options[:verbose]
|
58
|
+
end
|
65
59
|
|
66
|
-
|
60
|
+
private
|
67
61
|
|
68
|
-
|
69
|
-
|
62
|
+
def generate_source
|
63
|
+
@output = FilesHelper.output_dir
|
70
64
|
|
71
|
-
|
72
|
-
@
|
73
|
-
@
|
65
|
+
FilesHelper.files.each do |filepath|
|
66
|
+
@path = Pathname(filepath)
|
67
|
+
@json = MultiJson.load(File.read(@path))
|
68
|
+
@spec = @json.values.first
|
74
69
|
say_status 'json', @path, :yellow
|
75
70
|
|
76
71
|
@spec['url'] ||= {}
|
77
|
-
@spec['url']['parts'] ||= []
|
78
|
-
@spec['url']['params'] ||= {}
|
79
|
-
|
80
|
-
# say_status 'JSON', @spec.inspect, options[:verbose]
|
81
72
|
|
82
|
-
@
|
83
|
-
@
|
73
|
+
@endpoint_name = @json.keys.first
|
74
|
+
@full_namespace = __full_namespace
|
75
|
+
@namespace_depth = @full_namespace.size > 0 ? @full_namespace.size - 1 : 0
|
84
76
|
@module_namespace = @full_namespace[0, @namespace_depth]
|
85
77
|
@method_name = @full_namespace.last
|
86
|
-
@
|
87
|
-
@
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
else
|
96
|
-
@spec['url']['path'].gsub(/^\//, '')
|
97
|
-
end
|
98
|
-
|
99
|
-
# -- Ruby files
|
100
|
-
|
101
|
-
@path_to_file = @output.join('api').join( @module_namespace.join('/') ).join("#{@method_name}.rb")
|
102
|
-
|
103
|
-
empty_directory @output.join('api').join( @module_namespace.join('/') )
|
104
|
-
|
105
|
-
template "templates/#{options[:language]}/method.erb", @path_to_file
|
106
|
-
|
107
|
-
if options[:verbose]
|
108
|
-
colorized_output = CodeRay.scan_file(@path_to_file, :ruby).terminal
|
109
|
-
lines = colorized_output.split("\n")
|
110
|
-
say_status options[:language].downcase,
|
111
|
-
lines.first + "\n" + lines[1, lines.size].map { |l| ' '*14 + l }.join("\n"),
|
112
|
-
:yellow
|
113
|
-
end
|
78
|
+
@parts = __endpoint_parts
|
79
|
+
@params = @spec['params'] || {}
|
80
|
+
@specific_params = specific_params(@module_namespace.first) # See EndpointSpecifics
|
81
|
+
@http_method = __http_method
|
82
|
+
@paths = @spec['url']['paths'].map { |b| b['path'] }
|
83
|
+
# Using Ruby's safe operator on array:
|
84
|
+
@deprecation_note = @spec['url']['paths'].last&.[]('deprecated')
|
85
|
+
@http_path = __http_path
|
86
|
+
@required_parts = __required_parts
|
114
87
|
|
115
|
-
|
88
|
+
@path_to_file = @output.join(@module_namespace.join('/')).join("#{@method_name}.rb")
|
89
|
+
dir = @output.join(@module_namespace.join('/'))
|
90
|
+
empty_directory(dir, verbose: false)
|
116
91
|
|
117
|
-
|
118
|
-
@
|
92
|
+
# Write the file with the ERB template:
|
93
|
+
template('templates/method.erb', @path_to_file, force: true)
|
119
94
|
|
120
|
-
|
121
|
-
template "templates/#{options[:language]}/test.erb", @test_file
|
95
|
+
print_source_code(@path_to_file) if options[:verbose]
|
122
96
|
|
123
|
-
if options[:
|
124
|
-
|
125
|
-
|
126
|
-
say_status options[:language].downcase,
|
127
|
-
lines.first + "\n" + lines[1, lines.size].map { |l| ' '*14 + l }.join("\n"),
|
128
|
-
:yellow
|
129
|
-
say '▬'*terminal_width
|
130
|
-
end
|
97
|
+
generate_tests if options[:tests]
|
98
|
+
|
99
|
+
puts
|
131
100
|
end
|
132
101
|
|
133
|
-
|
102
|
+
run_rubocop
|
103
|
+
end
|
134
104
|
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
105
|
+
def __full_namespace
|
106
|
+
names = @endpoint_name.split('.')
|
107
|
+
# Return an array to expand 'ccr', 'ilm', 'ml' and 'slm'
|
108
|
+
names.map do |name|
|
109
|
+
name
|
110
|
+
.gsub(/^ml$/, 'machine_learning')
|
111
|
+
.gsub(/^ilm$/, 'index_lifecycle_management')
|
112
|
+
.gsub(/^ccr/, 'cross_cluster_replication')
|
113
|
+
.gsub(/^slm/, 'snapshot_lifecycle_management')
|
139
114
|
end
|
140
115
|
end
|
141
116
|
|
142
|
-
private
|
143
|
-
|
144
117
|
# Create the hierarchy of directories based on API namespaces
|
145
118
|
#
|
146
119
|
def __create_directories(key, value)
|
147
|
-
|
148
|
-
|
149
|
-
|
120
|
+
return if value['documentation']
|
121
|
+
|
122
|
+
empty_directory @output.join(key)
|
123
|
+
create_directory_hierarchy * value.to_a.first
|
124
|
+
end
|
125
|
+
|
126
|
+
# Extract parts from each path
|
127
|
+
#
|
128
|
+
def __endpoint_parts
|
129
|
+
parts = @spec['url']['paths'].select do |a|
|
130
|
+
a.keys.include?('parts')
|
131
|
+
end.map do |path|
|
132
|
+
path&.[]('parts')
|
133
|
+
end
|
134
|
+
(parts.inject(&:merge) || [])
|
135
|
+
end
|
136
|
+
|
137
|
+
def __http_method
|
138
|
+
return '_id ? Elasticsearch::API::HTTP_PUT : Elasticsearch::API::HTTP_POST' if @endpoint_name == 'index'
|
139
|
+
return post_and_get if @endpoint_name == 'count'
|
140
|
+
|
141
|
+
default_method = @spec['url']['paths'].map { |a| a['methods'] }.flatten.first
|
142
|
+
if @spec['body'] && default_method == 'GET'
|
143
|
+
# When default method is GET and body is required, we should always use POST
|
144
|
+
if @spec['body']['required']
|
145
|
+
'Elasticsearch::API::HTTP_POST'
|
146
|
+
else
|
147
|
+
post_and_get
|
148
|
+
end
|
149
|
+
else
|
150
|
+
"Elasticsearch::API::HTTP_#{default_method}"
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
def post_and_get
|
155
|
+
# the METHOD is defined after doing arguments.delete(:body), so we need to check for `body`
|
156
|
+
<<~SRC
|
157
|
+
if body
|
158
|
+
Elasticsearch::API::HTTP_POST
|
159
|
+
else
|
160
|
+
Elasticsearch::API::HTTP_GET
|
161
|
+
end
|
162
|
+
SRC
|
163
|
+
end
|
164
|
+
|
165
|
+
def __http_path
|
166
|
+
return "\"#{__parse_path(@paths.first)}\"" if @paths.size == 1
|
167
|
+
|
168
|
+
result = ''
|
169
|
+
anchor_string = []
|
170
|
+
@paths.sort { |a, b| b.length <=> a.length }.each_with_index do |path, i|
|
171
|
+
var_string = __extract_path_variables(path).map { |var| "_#{var}" }.join(' && ')
|
172
|
+
next if anchor_string.include? var_string
|
173
|
+
|
174
|
+
anchor_string << var_string
|
175
|
+
result += if i.zero?
|
176
|
+
"if #{var_string}\n"
|
177
|
+
elsif (i == @paths.size - 1) || var_string.empty?
|
178
|
+
"else\n"
|
179
|
+
else
|
180
|
+
"elsif #{var_string}\n"
|
181
|
+
end
|
182
|
+
result += "\"#{__parse_path(path)}\"\n"
|
183
|
+
end
|
184
|
+
result += 'end'
|
185
|
+
result
|
186
|
+
end
|
187
|
+
|
188
|
+
def __parse_path(path)
|
189
|
+
path.gsub(/^\//, '')
|
190
|
+
.gsub(/\/$/, '')
|
191
|
+
.gsub('{', "\#{Utils.__listify(_")
|
192
|
+
.gsub('}', ')}')
|
193
|
+
end
|
194
|
+
|
195
|
+
def __path_variables
|
196
|
+
@paths.map do |path|
|
197
|
+
__extract_path_variables(path)
|
150
198
|
end
|
151
199
|
end
|
152
200
|
|
201
|
+
# extract values that are in the {var} format:
|
202
|
+
def __extract_path_variables(path)
|
203
|
+
path.scan(/{(\w+)}/).flatten
|
204
|
+
end
|
205
|
+
|
206
|
+
# Find parts that are definitely required and should raise an error if
|
207
|
+
# they're not present
|
208
|
+
#
|
209
|
+
def __required_parts
|
210
|
+
required = []
|
211
|
+
return required if @endpoint_name == 'tasks.get'
|
212
|
+
|
213
|
+
required << 'body' if (@spec['body'] && @spec['body']['required'])
|
214
|
+
# Get required variables from paths:
|
215
|
+
req_variables = __path_variables.inject(:&) # find intersection
|
216
|
+
required << req_variables unless req_variables.empty?
|
217
|
+
required.flatten
|
218
|
+
end
|
219
|
+
|
220
|
+
def docs_helper(name, info)
|
221
|
+
info['type'] = 'String' if info['type'] == 'enum' # Rename 'enums' to 'strings'
|
222
|
+
info['type'] = 'Integer' if info['type'] == 'int' # Rename 'int' to 'Integer'
|
223
|
+
tipo = info['type'] ? info['type'].capitalize : 'String'
|
224
|
+
description = info['description'] ? info['description'].strip : '[TODO]'
|
225
|
+
options = info['options'] ? "(options: #{info['options'].join(', ').strip})" : nil
|
226
|
+
required = info['required'] ? '(*Required*)' : ''
|
227
|
+
deprecated = info['deprecated'] ? '*Deprecated*' : ''
|
228
|
+
optionals = [required, deprecated, options].join(' ').strip
|
229
|
+
|
230
|
+
"# @option arguments [#{tipo}] :#{name} #{description} #{optionals}\n"
|
231
|
+
end
|
232
|
+
|
233
|
+
def stability_doc_helper(stability)
|
234
|
+
return if stability == 'stable'
|
235
|
+
|
236
|
+
if stability == 'experimental'
|
237
|
+
<<~MSG
|
238
|
+
# This functionality is Experimental and may be changed or removed
|
239
|
+
# completely in a future release. Elastic will take a best effort approach
|
240
|
+
# to fix any issues, but experimental features are not subject to the
|
241
|
+
# support SLA of official GA features.
|
242
|
+
MSG
|
243
|
+
elsif stability == 'beta'
|
244
|
+
<<~MSG
|
245
|
+
# This functionality is in Beta and is subject to change. The design and
|
246
|
+
# code is less mature than official GA features and is being provided
|
247
|
+
# as-is with no warranties. Beta features are not subject to the support
|
248
|
+
# SLA of official GA features.
|
249
|
+
MSG
|
250
|
+
else
|
251
|
+
<<~MSG
|
252
|
+
# This functionality is subject to potential breaking changes within a
|
253
|
+
# minor version, meaning that your referencing code may break when this
|
254
|
+
# library is upgraded.
|
255
|
+
MSG
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
def generate_tests
|
260
|
+
copy_file 'templates/test_helper.rb', @output.join('test').join('test_helper.rb')
|
261
|
+
|
262
|
+
@test_directory = @output.join('test/api').join(@module_namespace.join('/'))
|
263
|
+
@test_file = @test_directory.join("#{@method_name}_test.rb")
|
264
|
+
|
265
|
+
empty_directory @test_directory
|
266
|
+
template 'templates/test.erb', @test_file
|
267
|
+
|
268
|
+
print_source_code(@test_file) if options[:verbose]
|
269
|
+
end
|
270
|
+
|
271
|
+
def print_source_code(path_to_file)
|
272
|
+
colorized_output = CodeRay.scan_file(path_to_file, :ruby).terminal
|
273
|
+
lines = colorized_output.split("\n")
|
274
|
+
formatted = lines.first + "\n" + lines[1, lines.size].map { |l| ' ' * 14 + l }.join("\n")
|
275
|
+
|
276
|
+
say_status('ruby', formatted, :yellow)
|
277
|
+
end
|
278
|
+
|
279
|
+
def print_tree
|
280
|
+
return unless `which tree > /dev/null 2>&1; echo $?`.to_i < 1
|
281
|
+
|
282
|
+
lines = `tree #{@output}`.split("\n")
|
283
|
+
say_status('tree', lines.first + "\n" + lines[1, lines.size].map { |l| ' ' * 14 + l }.join("\n"))
|
284
|
+
end
|
285
|
+
|
286
|
+
def run_rubocop
|
287
|
+
system("rubocop -c ./thor/.rubocop.yml --format autogenconf -x #{FilesHelper::output_dir}")
|
288
|
+
end
|
153
289
|
end
|
154
290
|
end
|
155
291
|
end
|
@@ -0,0 +1,159 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
# Handles specific exceptional parameters and code snippets that need to be
|
21
|
+
# included in the generated code. This module is included in SourceGenerator
|
22
|
+
# so its methods can be used from the ERB template (method.erb). This will
|
23
|
+
# potentially be refactored into different templates.
|
24
|
+
module EndpointSpecifics
|
25
|
+
# Endpoints that need Utils.__rescue_from_not_found
|
26
|
+
IGNORE_404 = %w[
|
27
|
+
exists
|
28
|
+
indices.exists
|
29
|
+
indices.exists_alias
|
30
|
+
indices.exists_template
|
31
|
+
indices.exists_type
|
32
|
+
].freeze
|
33
|
+
|
34
|
+
# Endpoints that need Utils.__rescue_from_not_found if the ignore
|
35
|
+
# parameter is included
|
36
|
+
COMPLEX_IGNORE_404 = %w[
|
37
|
+
delete
|
38
|
+
get
|
39
|
+
indices.flush_synced
|
40
|
+
indices.delete_template
|
41
|
+
indices.delete
|
42
|
+
security.get_role
|
43
|
+
security.get_user
|
44
|
+
snapshot.status
|
45
|
+
snapshot.get
|
46
|
+
snapshot.get_repository
|
47
|
+
snapshot.delete_repository
|
48
|
+
snapshot.delete
|
49
|
+
update
|
50
|
+
watcher.delete_watch
|
51
|
+
].freeze
|
52
|
+
|
53
|
+
# Endpoints that need params[:h] listified
|
54
|
+
H_PARAMS = %w[aliases allocation count health indices nodes pending_tasks
|
55
|
+
recovery shards thread_pool].freeze
|
56
|
+
|
57
|
+
# Function that adds the listified h param code
|
58
|
+
def specific_params(namespace)
|
59
|
+
params = []
|
60
|
+
if H_PARAMS.include?(@method_name) && namespace == 'cat'
|
61
|
+
if @method_name == 'nodes'
|
62
|
+
params << 'params[:h] = Utils.__listify(params[:h], escape: false) if params[:h]'
|
63
|
+
else
|
64
|
+
params << 'params[:h] = Utils.__listify(params[:h]) if params[:h]'
|
65
|
+
end
|
66
|
+
end
|
67
|
+
params
|
68
|
+
end
|
69
|
+
|
70
|
+
def needs_ignore_404?(endpoint)
|
71
|
+
IGNORE_404.include? endpoint
|
72
|
+
end
|
73
|
+
|
74
|
+
def needs_complex_ignore_404?(endpoint)
|
75
|
+
COMPLEX_IGNORE_404.include? endpoint
|
76
|
+
end
|
77
|
+
|
78
|
+
def module_name_helper(name)
|
79
|
+
return name.upcase if %w[sql ssl].include? name
|
80
|
+
|
81
|
+
name.split('_').map(&:capitalize).map{ |n| n == 'Xpack' ? 'XPack' : n }.join
|
82
|
+
end
|
83
|
+
|
84
|
+
def ping_perform_request
|
85
|
+
<<~SRC
|
86
|
+
begin
|
87
|
+
perform_request(method, path, params, body, headers).status == 200 ? true : false
|
88
|
+
rescue Exception => e
|
89
|
+
if e.class.to_s =~ /NotFound|ConnectionFailed/ || e.message =~ /Not\s*Found|404|ConnectionFailed/i
|
90
|
+
false
|
91
|
+
else
|
92
|
+
raise e
|
93
|
+
end
|
94
|
+
end
|
95
|
+
SRC
|
96
|
+
end
|
97
|
+
|
98
|
+
def msearch_body_helper
|
99
|
+
<<~SRC
|
100
|
+
case
|
101
|
+
when body.is_a?(Array) && body.any? { |d| d.has_key? :search }
|
102
|
+
payload = body.
|
103
|
+
inject([]) do |sum, item|
|
104
|
+
meta = item
|
105
|
+
data = meta.delete(:search)
|
106
|
+
|
107
|
+
sum << meta
|
108
|
+
sum << data
|
109
|
+
sum
|
110
|
+
end.
|
111
|
+
map { |item| Elasticsearch::API.serializer.dump(item) }
|
112
|
+
payload << "" unless payload.empty?
|
113
|
+
payload = payload.join("\\n")
|
114
|
+
when body.is_a?(Array)
|
115
|
+
payload = body.map { |d| d.is_a?(String) ? d : Elasticsearch::API.serializer.dump(d) }
|
116
|
+
payload << "" unless payload.empty?
|
117
|
+
payload = payload.join("\\n")
|
118
|
+
else
|
119
|
+
payload = body
|
120
|
+
end
|
121
|
+
SRC
|
122
|
+
end
|
123
|
+
|
124
|
+
def msearch_template_body_helper
|
125
|
+
<<~SRC
|
126
|
+
case
|
127
|
+
when body.is_a?(Array)
|
128
|
+
payload = body.map { |d| d.is_a?(String) ? d : Elasticsearch::API.serializer.dump(d) }
|
129
|
+
payload << "" unless payload.empty?
|
130
|
+
payload = payload.join("\n")
|
131
|
+
else
|
132
|
+
payload = body
|
133
|
+
end
|
134
|
+
SRC
|
135
|
+
end
|
136
|
+
|
137
|
+
def bulk_body_helper
|
138
|
+
<<~SRC
|
139
|
+
if body.is_a? Array
|
140
|
+
payload = Elasticsearch::API::Utils.__bulkify(body)
|
141
|
+
else
|
142
|
+
payload = body
|
143
|
+
end
|
144
|
+
SRC
|
145
|
+
end
|
146
|
+
|
147
|
+
def find_structure_body_helper
|
148
|
+
bulk_body_helper
|
149
|
+
end
|
150
|
+
|
151
|
+
def bulk_doc_helper(info)
|
152
|
+
<<~SRC
|
153
|
+
# @option arguments [String|Array] :body #{info}. Array of Strings, Header/Data pairs,
|
154
|
+
# or the conveniency "combined" format can be passed, refer to Elasticsearch::API::Utils.__bulkify documentation.
|
155
|
+
SRC
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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 'pathname'
|
19
|
+
require_relative '../../../lib/elasticsearch/api/version.rb'
|
20
|
+
|
21
|
+
module Elasticsearch
|
22
|
+
module API
|
23
|
+
# Helper with file related methods for code generation
|
24
|
+
module FilesHelper
|
25
|
+
PROJECT_PATH = File.join(File.dirname(__FILE__), '..')
|
26
|
+
SRC_PATH = File.join(PROJECT_PATH, '..', '..', '..', 'tmp/rest-api-spec/api/')
|
27
|
+
OUTPUT_DIR = '../../elasticsearch-api/lib/elasticsearch/api/actions'.freeze
|
28
|
+
TESTS_DIRECTORY = "#{PROJECT_PATH}/../../../tmp/rest-api-spec/test/free".freeze
|
29
|
+
|
30
|
+
# Only get JSON files and remove hidden files
|
31
|
+
def self.files
|
32
|
+
json_files = Dir.entries(SRC_PATH)
|
33
|
+
|
34
|
+
json_files.reject do |file|
|
35
|
+
File.extname(file) != '.json' ||
|
36
|
+
File.basename(file) == '_common.json'
|
37
|
+
end.map { |file| "#{SRC_PATH}#{file}" }
|
38
|
+
end
|
39
|
+
|
40
|
+
# Path to directory to copy generated files
|
41
|
+
def self.output_dir
|
42
|
+
Pathname(OUTPUT_DIR)
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.documentation_url(documentation_url)
|
46
|
+
branch = `git rev-parse --abbrev-ref HEAD`
|
47
|
+
return documentation_url if branch == "main\n"
|
48
|
+
|
49
|
+
regex = /([0-9]{1,2}\.[0-9x]{1,2})/
|
50
|
+
version = Elasticsearch::API::VERSION.match(regex)[0]
|
51
|
+
# TODO - How do we fix this so it doesn't depend on which branch we're running from
|
52
|
+
if version == '8.0'
|
53
|
+
documentation_url
|
54
|
+
else
|
55
|
+
documentation_url.gsub(/\/(current|master|main)\//, "/#{version}/")
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def cleanup_output_dir!
|
60
|
+
FileUtils.remove_dir(OUTPUT_DIR)
|
61
|
+
Dir.mkdir(OUTPUT_DIR)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
data/utils/thor/lister.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
# not use this file except in compliance with the License.
|
7
7
|
# You may obtain a copy of the License at
|
8
8
|
#
|
9
|
-
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
10
|
#
|
11
11
|
# Unless required by applicable law or agreed to in writing,
|
12
12
|
# software distributed under the License is distributed on an
|
@@ -22,16 +22,16 @@ require 'thor'
|
|
22
22
|
require 'pathname'
|
23
23
|
|
24
24
|
module Elasticsearch
|
25
|
-
|
26
25
|
module API
|
27
|
-
|
28
26
|
class Lister < Thor
|
29
27
|
namespace 'api'
|
30
28
|
|
29
|
+
DEFAULT_PATH = '../../tmp/elasticsearch/rest-api-spec/src/main/resources/rest-api-spec/api/'.freeze
|
30
|
+
|
31
31
|
desc "list <PATH DIRECTORY WITH JSON SPEC FILES>", "List all the REST API endpoints from the JSON specification"
|
32
32
|
method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
|
33
33
|
method_option :format, default: 'text', desc: 'Output format (text, json)'
|
34
|
-
def list(directory)
|
34
|
+
def list(directory = DEFAULT_PATH)
|
35
35
|
input = Pathname(directory).join('*.json')
|
36
36
|
apis = Dir[input.to_s].map do |f|
|
37
37
|
File.basename(f, '.json')
|
@@ -53,6 +53,5 @@ module Elasticsearch
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
end
|
56
|
-
|
57
56
|
end
|
58
57
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<%#
|
2
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
3
|
+
# license agreements. See the NOTICE file distributed with
|
4
|
+
# this work for additional information regarding copyright
|
5
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
6
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
7
|
+
# not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing,
|
13
|
+
# software distributed under the License is distributed on an
|
14
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
# KIND, either express or implied. See the License for the
|
16
|
+
# specific language governing permissions and limitations
|
17
|
+
# under the License.
|
18
|
+
%>
|
19
|
+
<%-
|
20
|
+
case @endpoint_name
|
21
|
+
when 'mtermvectors'
|
22
|
+
-%>
|
23
|
+
body = if(ids = arguments.delete(:ids))
|
24
|
+
{ :ids => ids }
|
25
|
+
else
|
26
|
+
arguments.delete(:body)
|
27
|
+
end
|
28
|
+
<%- when 'cluster.reroute', 'cluster.put_settings' %>
|
29
|
+
body = arguments.delete(:body) || {}
|
30
|
+
<%- when 'ml.find_file_structure' %>
|
31
|
+
body = Utils.__bulkify(arguments.delete(:body))
|
32
|
+
<%- else -%>
|
33
|
+
<%= ' '*(@namespace_depth+3) %>body = <%= @spec['body'].nil? ? 'nil' : 'arguments.delete(:body)' %>
|
34
|
+
<%- end -%>
|