├── .gitattributes ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── ci ├── nightly.sh ├── stable.sh └── travis.sh ├── contributing └── getting-started.md ├── examples ├── README.md └── account_sample │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── data │ └── accounts.json │ └── src │ ├── main.rs │ ├── model │ ├── account.rs │ ├── index.rs │ └── mod.rs │ └── ops │ ├── commands │ ├── ensure_bank_index_exists.rs │ ├── mod.rs │ └── put_bulk_accounts.rs │ ├── mod.rs │ └── queries │ ├── mod.rs │ └── simple_search.rs ├── rustfmt.toml ├── src ├── elastic │ ├── Cargo.toml │ ├── examples │ │ ├── basic.rs │ │ ├── basic_async.rs │ │ ├── bulk.rs │ │ ├── bulk_async.rs │ │ ├── bulk_async_stream.rs │ │ ├── bulk_with_source.rs │ │ ├── custom_response.rs │ │ ├── get.rs │ │ ├── index.rs │ │ ├── load_balanced_async.rs │ │ ├── ping.rs │ │ ├── pre_send.rs │ │ ├── raw.rs │ │ ├── typed.rs │ │ ├── typed_async.rs │ │ ├── update.rs │ │ └── update_with_source.rs │ └── src │ │ ├── client │ │ ├── asynchronous.rs │ │ ├── mod.rs │ │ ├── requests │ │ │ ├── bulk │ │ │ │ ├── mod.rs │ │ │ │ ├── operation.rs │ │ │ │ └── stream.rs │ │ │ ├── common.rs │ │ │ ├── document_delete.rs │ │ │ ├── document_get.rs │ │ │ ├── document_index.rs │ │ │ ├── document_put_mapping.rs │ │ │ ├── document_update.rs │ │ │ ├── index_close.rs │ │ │ ├── index_create.rs │ │ │ ├── index_delete.rs │ │ │ ├── index_exists.rs │ │ │ ├── index_open.rs │ │ │ ├── mod.rs │ │ │ ├── ping.rs │ │ │ ├── raw.rs │ │ │ ├── search.rs │ │ │ └── sql.rs │ │ ├── responses │ │ │ ├── bulk.rs │ │ │ ├── command.rs │ │ │ ├── common.rs │ │ │ ├── document_delete.rs │ │ │ ├── document_get.rs │ │ │ ├── document_index.rs │ │ │ ├── document_update.rs │ │ │ ├── index_exists.rs │ │ │ ├── mod.rs │ │ │ ├── nodes_info.rs │ │ │ ├── ping.rs │ │ │ ├── search.rs │ │ │ ├── sql.rs │ │ │ └── tests │ │ │ │ ├── bulk │ │ │ │ ├── bulk_error.json │ │ │ │ ├── bulk_index.json │ │ │ │ ├── bulk_multiple_ops.json │ │ │ │ └── mod.rs │ │ │ │ ├── command │ │ │ │ ├── acknowledged.json │ │ │ │ └── mod.rs │ │ │ │ ├── document_delete │ │ │ │ ├── delete_found.json │ │ │ │ ├── delete_not_found.json │ │ │ │ └── mod.rs │ │ │ │ ├── document_get │ │ │ │ ├── get_found.json │ │ │ │ ├── get_not_found.json │ │ │ │ └── mod.rs │ │ │ │ ├── document_index │ │ │ │ ├── index_success.json │ │ │ │ └── mod.rs │ │ │ │ ├── document_update │ │ │ │ ├── mod.rs │ │ │ │ ├── update_noop.json │ │ │ │ └── update_updated.json │ │ │ │ ├── error │ │ │ │ ├── error_action_request_validation.json │ │ │ │ ├── error_document_missing.json │ │ │ │ ├── error_index_already_exists.json │ │ │ │ ├── error_index_not_found.json │ │ │ │ ├── error_mapper_parsing.json │ │ │ │ ├── error_other.json │ │ │ │ └── error_parsing.json │ │ │ │ ├── index_exists │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── nodes_info │ │ │ │ ├── mod.rs │ │ │ │ ├── nodes_info.json │ │ │ │ └── nodes_info_empty.json │ │ │ │ ├── ping │ │ │ │ ├── mod.rs │ │ │ │ └── ping_success.json │ │ │ │ └── search │ │ │ │ ├── mod.rs │ │ │ │ ├── search_aggregation_3level.json │ │ │ │ ├── search_aggregation_3level_multichild.json │ │ │ │ ├── search_aggregation_3level_multistats.json │ │ │ │ ├── search_aggregation_simple.json │ │ │ │ ├── search_aggregation_simple_nested.json │ │ │ │ ├── search_bank_sample.json │ │ │ │ ├── search_empty.json │ │ │ │ ├── search_hits_only.json │ │ │ │ └── search_null_score.json │ │ └── synchronous.rs │ │ ├── error.rs │ │ ├── genned │ │ ├── genned.params.rs │ │ └── mod.rs │ │ ├── http │ │ ├── asynchronous.rs │ │ ├── mod.rs │ │ ├── receiver │ │ │ ├── asynchronous.rs │ │ │ ├── error.rs │ │ │ ├── mod.rs │ │ │ ├── parsing.rs │ │ │ └── synchronous.rs │ │ ├── sender │ │ │ ├── asynchronous.rs │ │ │ ├── mod.rs │ │ │ ├── params.rs │ │ │ ├── sniffed_nodes.rs │ │ │ ├── static_nodes.rs │ │ │ └── synchronous.rs │ │ └── synchronous.rs │ │ ├── lib.rs │ │ └── types │ │ ├── __derive.rs │ │ ├── boolean │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── date │ │ ├── format.rs │ │ ├── formats.rs │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── document │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── geo │ │ ├── mapping.rs │ │ ├── mod.rs │ │ ├── point │ │ │ ├── format.rs │ │ │ ├── formats.rs │ │ │ ├── impls.rs │ │ │ ├── mapping.rs │ │ │ └── mod.rs │ │ └── shape │ │ │ ├── impls.rs │ │ │ ├── mapping.rs │ │ │ └── mod.rs │ │ ├── ip │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── number │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── private │ │ ├── field.rs │ │ ├── impls.rs │ │ ├── macros.rs │ │ └── mod.rs │ │ └── string │ │ ├── keyword │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs │ │ ├── macros.rs │ │ ├── mapping.rs │ │ ├── mod.rs │ │ └── text │ │ ├── impls.rs │ │ ├── mapping.rs │ │ └── mod.rs ├── elastic_derive │ ├── Cargo.toml │ └── src │ │ ├── date_format │ │ ├── mod.rs │ │ └── parse.rs │ │ ├── elastic_type │ │ └── mod.rs │ │ └── lib.rs └── queries │ ├── Cargo.toml │ ├── src │ ├── aggregations │ │ ├── date_histogram.rs │ │ ├── mod.rs │ │ ├── stats.rs │ │ └── terms.rs │ ├── error.rs │ ├── filters │ │ ├── common.rs │ │ ├── exists.rs │ │ ├── matchfilter.rs │ │ ├── mod.rs │ │ ├── range.rs │ │ ├── term.rs │ │ └── wildcard.rs │ ├── lib.rs │ └── prelude.rs │ └── tests │ ├── complex.json │ ├── mod.rs │ ├── nested.json │ └── simpleagg.json ├── tests ├── README.md ├── derive_compile_test │ ├── Cargo.toml │ └── src │ │ └── main.rs └── integration │ ├── Cargo.toml │ ├── containers │ ├── default.Dockerfile │ ├── default.elasticsearch.yml │ ├── sniffed_node.Dockerfile │ └── sniffed_node.elasticsearch.yml │ └── src │ ├── build_client.rs │ ├── build_container.rs │ ├── main.rs │ ├── run_tests.rs │ ├── tests │ ├── bulk │ │ ├── delete.rs │ │ ├── index_create.rs │ │ ├── index_get.rs │ │ ├── mod.rs │ │ ├── raw_index_create.rs │ │ ├── raw_index_get.rs │ │ ├── raw_upsert.rs │ │ ├── raw_upsert_update.rs │ │ ├── stream.rs │ │ ├── stream_tiny_size_limit.rs │ │ ├── stream_tiny_timeout.rs │ │ └── stream_zero_size_limit.rs │ ├── document │ │ ├── compile_test.rs │ │ ├── delete.rs │ │ ├── mod.rs │ │ ├── simple_index_get.rs │ │ ├── simple_mapping.rs │ │ ├── update_no_index.rs │ │ ├── update_with_doc.rs │ │ ├── update_with_inline_script.rs │ │ ├── update_with_script.rs │ │ └── update_with_source.rs │ ├── index │ │ ├── does_not_exist.rs │ │ ├── exists.rs │ │ └── mod.rs │ ├── macros.rs │ ├── mod.rs │ ├── search │ │ ├── empty_query.rs │ │ ├── mod.rs │ │ ├── no_index.rs │ │ └── raw_query_string.rs │ └── sql │ │ ├── invalid_query.rs │ │ ├── invalid_syntax.rs │ │ ├── mod.rs │ │ └── select_all.rs │ └── wait_until_ready.rs └── tools ├── generate_requests.sh └── generate_requests ├── Cargo.toml ├── spec ├── _common.json ├── bulk.json ├── cat.aliases.json ├── cat.allocation.json ├── cat.count.json ├── cat.fielddata.json ├── cat.health.json ├── cat.help.json ├── cat.indices.json ├── cat.master.json ├── cat.nodeattrs.json ├── cat.nodes.json ├── cat.pending_tasks.json ├── cat.plugins.json ├── cat.recovery.json ├── cat.repositories.json ├── cat.segments.json ├── cat.shards.json ├── cat.snapshots.json ├── cat.tasks.json ├── cat.templates.json ├── cat.thread_pool.json ├── clear_scroll.json ├── cluster.allocation_explain.json ├── cluster.get_settings.json ├── cluster.health.json ├── cluster.pending_tasks.json ├── cluster.put_settings.json ├── cluster.remote_info.json ├── cluster.reroute.json ├── cluster.state.json ├── cluster.stats.json ├── count.json ├── create.json ├── delete.json ├── delete_by_query.json ├── delete_by_query_rethrottle.json ├── delete_script.json ├── exists.json ├── exists_source.json ├── explain.json ├── field_caps.json ├── get.json ├── get_script.json ├── get_source.json ├── index.json ├── indices.analyze.json ├── indices.clear_cache.json ├── indices.close.json ├── indices.create.json ├── indices.delete.json ├── indices.delete_alias.json ├── indices.delete_template.json ├── indices.exists.json ├── indices.exists_alias.json ├── indices.exists_template.json ├── indices.exists_type.json ├── indices.flush.json ├── indices.flush_synced.json ├── indices.forcemerge.json ├── indices.get.json ├── indices.get_alias.json ├── indices.get_field_mapping.json ├── indices.get_mapping.json ├── indices.get_settings.json ├── indices.get_template.json ├── indices.get_upgrade.json ├── indices.open.json ├── indices.put_alias.json ├── indices.put_mapping.json ├── indices.put_settings.json ├── indices.put_template.json ├── indices.recovery.json ├── indices.refresh.json ├── indices.rollover.json ├── indices.segments.json ├── indices.shard_stores.json ├── indices.shrink.json ├── indices.split.json ├── indices.stats.json ├── indices.update_aliases.json ├── indices.upgrade.json ├── indices.validate_query.json ├── info.json ├── ingest.delete_pipeline.json ├── ingest.get_pipeline.json ├── ingest.processor_grok.json ├── ingest.put_pipeline.json ├── ingest.simulate.json ├── mget.json ├── msearch.json ├── msearch_template.json ├── mtermvectors.json ├── nodes.hot_threads.json ├── nodes.info.json ├── nodes.reload_secure_settings.json ├── nodes.stats.json ├── nodes.usage.json ├── ping.json ├── put_script.json ├── rank_eval.json ├── reindex.json ├── reindex_rethrottle.json ├── render_search_template.json ├── scripts_painless_execute.json ├── scroll.json ├── search.json ├── search_shards.json ├── search_template.json ├── snapshot.create.json ├── snapshot.create_repository.json ├── snapshot.delete.json ├── snapshot.delete_repository.json ├── snapshot.get.json ├── snapshot.get_repository.json ├── snapshot.restore.json ├── snapshot.status.json ├── snapshot.verify_repository.json ├── sql.query.json ├── tasks.cancel.json ├── tasks.get.json ├── tasks.list.json ├── termvectors.json ├── update.json ├── update_by_query.json └── update_by_query_rethrottle.json └── src ├── gen ├── endpoints │ ├── ctors.rs │ ├── into_endpoint.rs │ ├── item.rs │ ├── mod.rs │ ├── url_builder.rs │ └── url_params.rs ├── http │ ├── body.rs │ ├── endpoint.rs │ ├── method.rs │ ├── mod.rs │ └── url.rs ├── mod.rs └── params │ └── mod.rs ├── main.rs └── parse ├── mod.rs └── parse.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/appveyor.yml -------------------------------------------------------------------------------- /ci/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/ci/nightly.sh -------------------------------------------------------------------------------- /ci/stable.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | cd src/elastic 4 | cargo test 5 | -------------------------------------------------------------------------------- /ci/travis.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | ./ci/${CHANNEL}.sh 4 | -------------------------------------------------------------------------------- /contributing/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/contributing/getting-started.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/account_sample/.gitignore: -------------------------------------------------------------------------------- 1 | *.bk 2 | perf.* 3 | target/ 4 | obj/ -------------------------------------------------------------------------------- /examples/account_sample/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/Cargo.toml -------------------------------------------------------------------------------- /examples/account_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/README.md -------------------------------------------------------------------------------- /examples/account_sample/data/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/data/accounts.json -------------------------------------------------------------------------------- /examples/account_sample/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/main.rs -------------------------------------------------------------------------------- /examples/account_sample/src/model/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/model/account.rs -------------------------------------------------------------------------------- /examples/account_sample/src/model/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/model/index.rs -------------------------------------------------------------------------------- /examples/account_sample/src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/model/mod.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/commands/ensure_bank_index_exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/commands/ensure_bank_index_exists.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/commands/mod.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/commands/put_bulk_accounts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/commands/put_bulk_accounts.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/mod.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/queries/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/queries/mod.rs -------------------------------------------------------------------------------- /examples/account_sample/src/ops/queries/simple_search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/examples/account_sample/src/ops/queries/simple_search.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/elastic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/Cargo.toml -------------------------------------------------------------------------------- /src/elastic/examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/basic.rs -------------------------------------------------------------------------------- /src/elastic/examples/basic_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/basic_async.rs -------------------------------------------------------------------------------- /src/elastic/examples/bulk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/bulk.rs -------------------------------------------------------------------------------- /src/elastic/examples/bulk_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/bulk_async.rs -------------------------------------------------------------------------------- /src/elastic/examples/bulk_async_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/bulk_async_stream.rs -------------------------------------------------------------------------------- /src/elastic/examples/bulk_with_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/bulk_with_source.rs -------------------------------------------------------------------------------- /src/elastic/examples/custom_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/custom_response.rs -------------------------------------------------------------------------------- /src/elastic/examples/get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/get.rs -------------------------------------------------------------------------------- /src/elastic/examples/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/index.rs -------------------------------------------------------------------------------- /src/elastic/examples/load_balanced_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/load_balanced_async.rs -------------------------------------------------------------------------------- /src/elastic/examples/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/ping.rs -------------------------------------------------------------------------------- /src/elastic/examples/pre_send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/pre_send.rs -------------------------------------------------------------------------------- /src/elastic/examples/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/raw.rs -------------------------------------------------------------------------------- /src/elastic/examples/typed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/typed.rs -------------------------------------------------------------------------------- /src/elastic/examples/typed_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/typed_async.rs -------------------------------------------------------------------------------- /src/elastic/examples/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/update.rs -------------------------------------------------------------------------------- /src/elastic/examples/update_with_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/examples/update_with_source.rs -------------------------------------------------------------------------------- /src/elastic/src/client/asynchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/asynchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/bulk/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/bulk/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/bulk/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/bulk/operation.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/bulk/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/bulk/stream.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/common.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/document_delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/document_delete.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/document_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/document_get.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/document_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/document_index.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/document_put_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/document_put_mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/document_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/document_update.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/index_close.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/index_close.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/index_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/index_create.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/index_delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/index_delete.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/index_exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/index_exists.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/index_open.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/index_open.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/ping.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/raw.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/search.rs -------------------------------------------------------------------------------- /src/elastic/src/client/requests/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/requests/sql.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/bulk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/bulk.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/command.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/common.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/document_delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/document_delete.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/document_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/document_get.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/document_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/document_index.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/document_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/document_update.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/index_exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/index_exists.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/nodes_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/nodes_info.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/ping.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/search.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/sql.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/bulk/bulk_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/bulk/bulk_error.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/bulk/bulk_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/bulk/bulk_index.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/bulk/bulk_multiple_ops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/bulk/bulk_multiple_ops.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/bulk/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/bulk/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/command/acknowledged.json: -------------------------------------------------------------------------------- 1 | { 2 | "acknowledged": true 3 | } -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/command/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/command/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_delete/delete_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_delete/delete_found.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_delete/delete_not_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_delete/delete_not_found.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_delete/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_delete/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_get/get_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_get/get_found.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_get/get_not_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_get/get_not_found.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_get/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_get/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_index/index_success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_index/index_success.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_index/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_index/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_update/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_update/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_update/update_noop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_update/update_noop.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/document_update/update_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/document_update/update_updated.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_action_request_validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_action_request_validation.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_document_missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_document_missing.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_index_already_exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_index_already_exists.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_index_not_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_index_not_found.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_mapper_parsing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_mapper_parsing.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_other.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/error/error_parsing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/error/error_parsing.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/index_exists/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/index_exists/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/nodes_info/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/nodes_info/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/nodes_info/nodes_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/nodes_info/nodes_info.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/nodes_info/nodes_info_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { } 3 | } 4 | -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/ping/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/ping/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/ping/ping_success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/ping/ping_success.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_aggregation_3level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_aggregation_3level.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_aggregation_3level_multichild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_aggregation_3level_multichild.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_aggregation_3level_multistats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_aggregation_3level_multistats.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_aggregation_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_aggregation_simple.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_aggregation_simple_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_aggregation_simple_nested.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_bank_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_bank_sample.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_empty.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_hits_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_hits_only.json -------------------------------------------------------------------------------- /src/elastic/src/client/responses/tests/search/search_null_score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/responses/tests/search/search_null_score.json -------------------------------------------------------------------------------- /src/elastic/src/client/synchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/client/synchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/error.rs -------------------------------------------------------------------------------- /src/elastic/src/genned/genned.params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/genned/genned.params.rs -------------------------------------------------------------------------------- /src/elastic/src/genned/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/genned/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/http/asynchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/asynchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/http/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/http/receiver/asynchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/receiver/asynchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/http/receiver/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/receiver/error.rs -------------------------------------------------------------------------------- /src/elastic/src/http/receiver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/receiver/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/http/receiver/parsing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/receiver/parsing.rs -------------------------------------------------------------------------------- /src/elastic/src/http/receiver/synchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/receiver/synchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/asynchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/asynchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/params.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/sniffed_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/sniffed_nodes.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/static_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/static_nodes.rs -------------------------------------------------------------------------------- /src/elastic/src/http/sender/synchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/sender/synchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/http/synchronous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/http/synchronous.rs -------------------------------------------------------------------------------- /src/elastic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/lib.rs -------------------------------------------------------------------------------- /src/elastic/src/types/__derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/__derive.rs -------------------------------------------------------------------------------- /src/elastic/src/types/boolean/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/boolean/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/boolean/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/boolean/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/boolean/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/boolean/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/date/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/date/format.rs -------------------------------------------------------------------------------- /src/elastic/src/types/date/formats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/date/formats.rs -------------------------------------------------------------------------------- /src/elastic/src/types/date/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/date/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/date/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/date/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/date/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/date/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/document/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/document/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/document/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/document/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/document/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/point/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/point/format.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/point/formats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/point/formats.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/point/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/point/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/point/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/point/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/point/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/point/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/shape/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/shape/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/shape/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/shape/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/geo/shape/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/geo/shape/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/ip/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/ip/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/ip/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/ip/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/ip/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/ip/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/number/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/number/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/number/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/number/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/number/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/number/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/private/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/private/field.rs -------------------------------------------------------------------------------- /src/elastic/src/types/private/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/private/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/private/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/private/macros.rs -------------------------------------------------------------------------------- /src/elastic/src/types/private/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/private/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/keyword/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/keyword/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/keyword/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/keyword/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/keyword/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/keyword/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/macros.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/mod.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/text/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/text/impls.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/text/mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/text/mapping.rs -------------------------------------------------------------------------------- /src/elastic/src/types/string/text/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic/src/types/string/text/mod.rs -------------------------------------------------------------------------------- /src/elastic_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic_derive/Cargo.toml -------------------------------------------------------------------------------- /src/elastic_derive/src/date_format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic_derive/src/date_format/mod.rs -------------------------------------------------------------------------------- /src/elastic_derive/src/date_format/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic_derive/src/date_format/parse.rs -------------------------------------------------------------------------------- /src/elastic_derive/src/elastic_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic_derive/src/elastic_type/mod.rs -------------------------------------------------------------------------------- /src/elastic_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/elastic_derive/src/lib.rs -------------------------------------------------------------------------------- /src/queries/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/Cargo.toml -------------------------------------------------------------------------------- /src/queries/src/aggregations/date_histogram.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/aggregations/date_histogram.rs -------------------------------------------------------------------------------- /src/queries/src/aggregations/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/aggregations/mod.rs -------------------------------------------------------------------------------- /src/queries/src/aggregations/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/aggregations/stats.rs -------------------------------------------------------------------------------- /src/queries/src/aggregations/terms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/aggregations/terms.rs -------------------------------------------------------------------------------- /src/queries/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/error.rs -------------------------------------------------------------------------------- /src/queries/src/filters/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/common.rs -------------------------------------------------------------------------------- /src/queries/src/filters/exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/exists.rs -------------------------------------------------------------------------------- /src/queries/src/filters/matchfilter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/matchfilter.rs -------------------------------------------------------------------------------- /src/queries/src/filters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/mod.rs -------------------------------------------------------------------------------- /src/queries/src/filters/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/range.rs -------------------------------------------------------------------------------- /src/queries/src/filters/term.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/term.rs -------------------------------------------------------------------------------- /src/queries/src/filters/wildcard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/filters/wildcard.rs -------------------------------------------------------------------------------- /src/queries/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/lib.rs -------------------------------------------------------------------------------- /src/queries/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/src/prelude.rs -------------------------------------------------------------------------------- /src/queries/tests/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/tests/complex.json -------------------------------------------------------------------------------- /src/queries/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/tests/mod.rs -------------------------------------------------------------------------------- /src/queries/tests/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/tests/nested.json -------------------------------------------------------------------------------- /src/queries/tests/simpleagg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/src/queries/tests/simpleagg.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/derive_compile_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/derive_compile_test/Cargo.toml -------------------------------------------------------------------------------- /tests/derive_compile_test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/derive_compile_test/src/main.rs -------------------------------------------------------------------------------- /tests/integration/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/Cargo.toml -------------------------------------------------------------------------------- /tests/integration/containers/default.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/containers/default.Dockerfile -------------------------------------------------------------------------------- /tests/integration/containers/default.elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/containers/default.elasticsearch.yml -------------------------------------------------------------------------------- /tests/integration/containers/sniffed_node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/containers/sniffed_node.Dockerfile -------------------------------------------------------------------------------- /tests/integration/containers/sniffed_node.elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/containers/sniffed_node.elasticsearch.yml -------------------------------------------------------------------------------- /tests/integration/src/build_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/build_client.rs -------------------------------------------------------------------------------- /tests/integration/src/build_container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/build_container.rs -------------------------------------------------------------------------------- /tests/integration/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/main.rs -------------------------------------------------------------------------------- /tests/integration/src/run_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/run_tests.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/delete.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/index_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/index_create.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/index_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/index_get.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/raw_index_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/raw_index_create.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/raw_index_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/raw_index_get.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/raw_upsert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/raw_upsert.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/raw_upsert_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/raw_upsert_update.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/stream.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/stream_tiny_size_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/stream_tiny_size_limit.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/stream_tiny_timeout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/stream_tiny_timeout.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/bulk/stream_zero_size_limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/bulk/stream_zero_size_limit.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/compile_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/compile_test.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/delete.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/simple_index_get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/simple_index_get.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/simple_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/simple_mapping.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/update_no_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/update_no_index.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/update_with_doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/update_with_doc.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/update_with_inline_script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/update_with_inline_script.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/update_with_script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/update_with_script.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/document/update_with_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/document/update_with_source.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/index/does_not_exist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/index/does_not_exist.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/index/exists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/index/exists.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/index/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/index/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/macros.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/search/empty_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/search/empty_query.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/search/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/search/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/search/no_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/search/no_index.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/search/raw_query_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/search/raw_query_string.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/sql/invalid_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/sql/invalid_query.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/sql/invalid_syntax.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/sql/invalid_syntax.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/sql/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/sql/mod.rs -------------------------------------------------------------------------------- /tests/integration/src/tests/sql/select_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/tests/sql/select_all.rs -------------------------------------------------------------------------------- /tests/integration/src/wait_until_ready.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tests/integration/src/wait_until_ready.rs -------------------------------------------------------------------------------- /tools/generate_requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests.sh -------------------------------------------------------------------------------- /tools/generate_requests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/Cargo.toml -------------------------------------------------------------------------------- /tools/generate_requests/spec/_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/_common.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/bulk.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.aliases.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.allocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.allocation.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.count.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.fielddata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.fielddata.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.health.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.help.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.indices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.indices.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.master.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.nodeattrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.nodeattrs.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.nodes.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.pending_tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.pending_tasks.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.plugins.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.recovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.recovery.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.repositories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.repositories.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.segments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.segments.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.shards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.shards.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.snapshots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.snapshots.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.tasks.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.templates.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cat.thread_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cat.thread_pool.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/clear_scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/clear_scroll.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.allocation_explain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.allocation_explain.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.get_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.get_settings.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.health.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.pending_tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.pending_tasks.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.put_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.put_settings.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.remote_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.remote_info.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.reroute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.reroute.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.state.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/cluster.stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/cluster.stats.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/count.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/create.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/delete.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/delete_by_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/delete_by_query.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/delete_by_query_rethrottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/delete_by_query_rethrottle.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/delete_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/delete_script.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/exists.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/exists_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/exists_source.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/explain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/explain.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/field_caps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/field_caps.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/get.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/get_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/get_script.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/get_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/get_source.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/index.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.analyze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.analyze.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.clear_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.clear_cache.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.close.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.create.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.delete.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.delete_alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.delete_alias.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.delete_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.delete_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.exists.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.exists_alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.exists_alias.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.exists_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.exists_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.exists_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.exists_type.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.flush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.flush.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.flush_synced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.flush_synced.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.forcemerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.forcemerge.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_alias.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_field_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_field_mapping.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_mapping.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_settings.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.get_upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.get_upgrade.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.open.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.put_alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.put_alias.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.put_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.put_mapping.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.put_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.put_settings.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.put_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.put_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.recovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.recovery.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.refresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.refresh.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.rollover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.rollover.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.segments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.segments.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.shard_stores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.shard_stores.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.shrink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.shrink.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.split.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.stats.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.update_aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.update_aliases.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.upgrade.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/indices.validate_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/indices.validate_query.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/info.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ingest.delete_pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ingest.delete_pipeline.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ingest.get_pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ingest.get_pipeline.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ingest.processor_grok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ingest.processor_grok.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ingest.put_pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ingest.put_pipeline.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ingest.simulate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ingest.simulate.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/mget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/mget.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/msearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/msearch.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/msearch_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/msearch_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/mtermvectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/mtermvectors.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/nodes.hot_threads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/nodes.hot_threads.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/nodes.info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/nodes.info.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/nodes.reload_secure_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/nodes.reload_secure_settings.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/nodes.stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/nodes.stats.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/nodes.usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/nodes.usage.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/ping.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/put_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/put_script.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/rank_eval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/rank_eval.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/reindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/reindex.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/reindex_rethrottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/reindex_rethrottle.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/render_search_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/render_search_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/scripts_painless_execute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/scripts_painless_execute.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/scroll.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/search.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/search_shards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/search_shards.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/search_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/search_template.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.create.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.create_repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.create_repository.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.delete.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.delete_repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.delete_repository.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.get.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.get_repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.get_repository.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.restore.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.status.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/snapshot.verify_repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/snapshot.verify_repository.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/sql.query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/sql.query.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/tasks.cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/tasks.cancel.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/tasks.get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/tasks.get.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/tasks.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/tasks.list.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/termvectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/termvectors.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/update.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/update_by_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/update_by_query.json -------------------------------------------------------------------------------- /tools/generate_requests/spec/update_by_query_rethrottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/spec/update_by_query_rethrottle.json -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/ctors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/ctors.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/into_endpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/into_endpoint.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/item.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/mod.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/url_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/url_builder.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/endpoints/url_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/endpoints/url_params.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/http/body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/http/body.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/http/endpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/http/endpoint.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/http/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/http/method.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/http/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/http/mod.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/http/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/http/url.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/mod.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/gen/params/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/gen/params/mod.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/main.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/parse/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/parse/mod.rs -------------------------------------------------------------------------------- /tools/generate_requests/src/parse/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic-rs/elastic/HEAD/tools/generate_requests/src/parse/parse.rs --------------------------------------------------------------------------------