Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API struct { AsyncSearch AsyncSearch Cat Cat Cluster Cluster Core Core Enrich Enrich Eql Eql Graph Graph Indices Indices Ingest Ingest License License Logstash Logstash Ml Ml QueryRuleset QueryRuleset SearchApplication SearchApplication Security Security Sql Sql Synonyms Synonyms Tasks Tasks Transform Transform // Allows to perform multiple index/update/delete operations in a single // request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html Bulk core_bulk.NewBulk // Explicitly clears the search context for a scroll. // https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html ClearScroll core_clear_scroll.NewClearScroll // Close a point in time // https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html ClosePointInTime core_close_point_in_time.NewClosePointInTime // Returns number of documents matching a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html Count core_count.NewCount // Creates a new document in the index. // // Returns a 409 response when a document with a same ID already exists in the // index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html Create core_create.NewCreate // Removes a document from the index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html Delete core_delete.NewDelete // Deletes documents matching the provided query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html DeleteByQuery core_delete_by_query.NewDeleteByQuery // Deletes a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html DeleteScript core_delete_script.NewDeleteScript // Returns information about whether a document exists in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html Exists core_exists.NewExists // Returns information about whether a document source exists in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html ExistsSource core_exists_source.NewExistsSource // Returns information about why a specific matches (or doesn't match) a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-explain.html Explain core_explain.NewExplain // Returns the information about the capabilities of fields among multiple // indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-field-caps.html FieldCaps core_field_caps.NewFieldCaps // Returns a document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html Get core_get.NewGet // Returns a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html GetScript core_get_script.NewGetScript // Returns the source of a document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html GetSource core_get_source.NewGetSource // Creates or updates a document in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html Index core_index.NewIndex // Returns basic information about the cluster. // https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Info core_info.NewInfo // Allows to get multiple documents in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-get.html Mget core_mget.NewMget // Allows to execute several search operations in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html Msearch core_msearch.NewMsearch // Allows to execute several search template operations in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html MsearchTemplate core_msearch_template.NewMsearchTemplate // Returns multiple termvectors in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-termvectors.html Mtermvectors core_mtermvectors.NewMtermvectors // Open a point in time that can be used in subsequent searches // https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html OpenPointInTime core_open_point_in_time.NewOpenPointInTime // Returns whether the cluster is running. // https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Ping core_ping.NewPing // Creates or updates a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html PutScript core_put_script.NewPutScript // Allows to evaluate the quality of ranked search results over a set of typical // search queries // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-rank-eval.html RankEval core_rank_eval.NewRankEval // Allows to copy documents from one index to another, optionally filtering the // source // documents by a query, changing the destination index settings, or fetching // the // documents from a remote cluster. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html Reindex core_reindex.NewReindex // Allows to use the Mustache language to pre-render a search definition. // https://www.elastic.co/guide/en/elasticsearch/reference/current/render-search-template-api.html RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate // Allows an arbitrary script to be executed and a result to be returned // https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-execute-api.html ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute // Allows to retrieve a large numbers of results from a single search request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-scroll Scroll core_scroll.NewScroll // Returns results matching a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html Search core_search.NewSearch // Searches a vector tile for geospatial values. Returns results as a binary // Mapbox vector tile. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-vector-tile-api.html SearchMvt core_search_mvt.NewSearchMvt // Allows to use the Mustache language to pre-render a search definition. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html SearchTemplate core_search_template.NewSearchTemplate // The terms enum API can be used to discover terms in the index that begin // with the provided string. It is designed for low-latency look-ups used in // auto-complete scenarios. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html TermsEnum core_terms_enum.NewTermsEnum // Returns information and statistics about terms in the fields of a particular // document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html Termvectors core_termvectors.NewTermvectors // Updates a document with a script or partial document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html Update core_update.NewUpdate // Performs an update on every document in the index without changing the // source, // for example to pick up a mapping change. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html UpdateByQuery core_update_by_query.NewUpdateByQuery }
func New ¶
func New(tp elastictransport.Interface) *API
type AsyncSearch ¶
type AsyncSearch struct { // Deletes an async search by ID. If the search is still running, the search // request will be cancelled. Otherwise, the saved search results are deleted. // https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html Delete async_search_delete.NewDelete // Retrieves the results of a previously submitted async search request given // its ID. // https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html Get async_search_get.NewGet // Retrieves the status of a previously submitted async search request given its // ID. // https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html Status async_search_status.NewStatus // Executes a search request asynchronously. // https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html Submit async_search_submit.NewSubmit }
type Cat ¶
type Cat struct { // Shows information about currently configured aliases to indices including // filter and routing infos. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-alias.html Aliases cat_aliases.NewAliases // Returns information about existing component_templates templates. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-component-templates.html ComponentTemplates cat_component_templates.NewComponentTemplates // Provides quick access to the document count of the entire cluster, or // individual indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-count.html Count cat_count.NewCount // Returns help for the Cat APIs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat.html Help cat_help.NewHelp // Returns information about indices: number of primaries and replicas, document // counts, disk size, ... // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-indices.html Indices cat_indices.NewIndices // Gets configuration and usage information about data frame analytics jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html MlDataFrameAnalytics cat_ml_data_frame_analytics.NewMlDataFrameAnalytics // Gets configuration and usage information about datafeeds. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html MlDatafeeds cat_ml_datafeeds.NewMlDatafeeds // Gets configuration and usage information about anomaly detection jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-anomaly-detectors.html MlJobs cat_ml_jobs.NewMlJobs // Gets configuration and usage information about inference trained models. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-trained-model.html MlTrainedModels cat_ml_trained_models.NewMlTrainedModels // Gets configuration and usage information about transforms. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-transforms.html Transforms cat_transforms.NewTransforms }
type Cluster ¶
type Cluster struct { // Deletes a component template // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html DeleteComponentTemplate cluster_delete_component_template.NewDeleteComponentTemplate // Returns information about whether a particular component template exist // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html ExistsComponentTemplate cluster_exists_component_template.NewExistsComponentTemplate // Returns one or more component templates // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html GetComponentTemplate cluster_get_component_template.NewGetComponentTemplate // Returns different information about the cluster. // https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-info.html Info cluster_info.NewInfo // Creates or updates a component template // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html PutComponentTemplate cluster_put_component_template.NewPutComponentTemplate }
type Core ¶
type Core struct { // Allows to perform multiple index/update/delete operations in a single // request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html Bulk core_bulk.NewBulk // Explicitly clears the search context for a scroll. // https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html ClearScroll core_clear_scroll.NewClearScroll // Close a point in time // https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html ClosePointInTime core_close_point_in_time.NewClosePointInTime // Returns number of documents matching a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html Count core_count.NewCount // Creates a new document in the index. // // Returns a 409 response when a document with a same ID already exists in the // index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html Create core_create.NewCreate // Removes a document from the index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html Delete core_delete.NewDelete // Deletes documents matching the provided query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html DeleteByQuery core_delete_by_query.NewDeleteByQuery // Deletes a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html DeleteScript core_delete_script.NewDeleteScript // Returns information about whether a document exists in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html Exists core_exists.NewExists // Returns information about whether a document source exists in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html ExistsSource core_exists_source.NewExistsSource // Returns information about why a specific matches (or doesn't match) a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-explain.html Explain core_explain.NewExplain // Returns the information about the capabilities of fields among multiple // indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-field-caps.html FieldCaps core_field_caps.NewFieldCaps // Returns a document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html Get core_get.NewGet // Returns a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html GetScript core_get_script.NewGetScript // Returns the source of a document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html GetSource core_get_source.NewGetSource // Creates or updates a document in an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html Index core_index.NewIndex // Returns basic information about the cluster. // https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Info core_info.NewInfo // Allows to get multiple documents in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-get.html Mget core_mget.NewMget // Allows to execute several search operations in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html Msearch core_msearch.NewMsearch // Allows to execute several search template operations in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html MsearchTemplate core_msearch_template.NewMsearchTemplate // Returns multiple termvectors in one request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-termvectors.html Mtermvectors core_mtermvectors.NewMtermvectors // Open a point in time that can be used in subsequent searches // https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html OpenPointInTime core_open_point_in_time.NewOpenPointInTime // Returns whether the cluster is running. // https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Ping core_ping.NewPing // Creates or updates a script. // https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html PutScript core_put_script.NewPutScript // Allows to evaluate the quality of ranked search results over a set of typical // search queries // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-rank-eval.html RankEval core_rank_eval.NewRankEval // Allows to copy documents from one index to another, optionally filtering the // source // documents by a query, changing the destination index settings, or fetching // the // documents from a remote cluster. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html Reindex core_reindex.NewReindex // Allows to use the Mustache language to pre-render a search definition. // https://www.elastic.co/guide/en/elasticsearch/reference/current/render-search-template-api.html RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate // Allows an arbitrary script to be executed and a result to be returned // https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-execute-api.html ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute // Allows to retrieve a large numbers of results from a single search request. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-scroll Scroll core_scroll.NewScroll // Returns results matching a query. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html Search core_search.NewSearch // Searches a vector tile for geospatial values. Returns results as a binary // Mapbox vector tile. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-vector-tile-api.html SearchMvt core_search_mvt.NewSearchMvt // Allows to use the Mustache language to pre-render a search definition. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html SearchTemplate core_search_template.NewSearchTemplate // The terms enum API can be used to discover terms in the index that begin // with the provided string. It is designed for low-latency look-ups used in // auto-complete scenarios. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html TermsEnum core_terms_enum.NewTermsEnum // Returns information and statistics about terms in the fields of a particular // document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html Termvectors core_termvectors.NewTermvectors // Updates a document with a script or partial document. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html Update core_update.NewUpdate // Performs an update on every document in the index without changing the // source, // for example to pick up a mapping change. // https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html UpdateByQuery core_update_by_query.NewUpdateByQuery }
type Enrich ¶
type Enrich struct { // Deletes an existing enrich policy and its enrich index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-enrich-policy-api.html DeletePolicy enrich_delete_policy.NewDeletePolicy // Creates the enrich index for an existing enrich policy. // https://www.elastic.co/guide/en/elasticsearch/reference/current/execute-enrich-policy-api.html ExecutePolicy enrich_execute_policy.NewExecutePolicy // Gets information about an enrich policy. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-enrich-policy-api.html GetPolicy enrich_get_policy.NewGetPolicy // Creates a new enrich policy. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-enrich-policy-api.html PutPolicy enrich_put_policy.NewPutPolicy // Gets enrich coordinator statistics and information about enrich policies that // are currently executing. // https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-stats-api.html Stats enrich_stats.NewStats }
type Eql ¶
type Eql struct { // Deletes an async EQL search by ID. If the search is still running, the search // request will be cancelled. Otherwise, the saved search results are deleted. // https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html Delete eql_delete.NewDelete // Returns async results from previously executed Event Query Language (EQL) // search // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-eql-search-api.html Get eql_get.NewGet // Returns the status of a previously submitted async or stored Event Query // Language (EQL) search // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-eql-status-api.html GetStatus eql_get_status.NewGetStatus // Returns results matching a query expressed in Event Query Language (EQL) // https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html Search eql_search.NewSearch }
type Graph ¶
type Graph struct { // Explore extracted and summarized information about the documents and terms in // an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html Explore graph_explore.NewExplore }
type Indices ¶
type Indices struct { // Adds a block to an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-blocks.html AddBlock indices_add_block.NewAddBlock // Performs the analysis process on a text and return the tokens breakdown of // the text. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-analyze.html Analyze indices_analyze.NewAnalyze // Creates an index with optional settings and mappings. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html Create indices_create.NewCreate // Creates a data stream // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html CreateDataStream indices_create_data_stream.NewCreateDataStream // Provides statistics on operations happening in a data stream. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html DataStreamsStats indices_data_streams_stats.NewDataStreamsStats // Deletes an index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-delete-index.html Delete indices_delete.NewDelete // Deletes an alias. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html DeleteAlias indices_delete_alias.NewDeleteAlias // Deletes the data stream lifecycle of the selected data streams. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams-delete-lifecycle.html DeleteDataLifecycle indices_delete_data_lifecycle.NewDeleteDataLifecycle // Deletes a data stream. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html DeleteDataStream indices_delete_data_stream.NewDeleteDataStream // Deletes an index template. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html DeleteIndexTemplate indices_delete_index_template.NewDeleteIndexTemplate // Returns information about whether a particular index exists. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-exists.html Exists indices_exists.NewExists // Returns information about whether a particular alias exists. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html ExistsAlias indices_exists_alias.NewExistsAlias // Returns information about whether a particular index template exists. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html ExistsIndexTemplate indices_exists_index_template.NewExistsIndexTemplate // Retrieves information about the index's current data stream lifecycle, such // as any potential encountered error, time since creation etc. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams-explain-lifecycle.html ExplainDataLifecycle indices_explain_data_lifecycle.NewExplainDataLifecycle // Returns information about one or more indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-index.html Get indices_get.NewGet // Returns an alias. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html GetAlias indices_get_alias.NewGetAlias // Returns the data stream lifecycle of the selected data streams. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams-get-lifecycle.html GetDataLifecycle indices_get_data_lifecycle.NewGetDataLifecycle // Returns data streams. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html GetDataStream indices_get_data_stream.NewGetDataStream // Returns an index template. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html GetIndexTemplate indices_get_index_template.NewGetIndexTemplate // Returns mappings for one or more indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-mapping.html GetMapping indices_get_mapping.NewGetMapping // Returns settings for one or more indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-get-settings.html GetSettings indices_get_settings.NewGetSettings // Migrates an alias to a data stream // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html MigrateToDataStream indices_migrate_to_data_stream.NewMigrateToDataStream // Modifies a data stream // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html ModifyDataStream indices_modify_data_stream.NewModifyDataStream // Creates or updates an alias. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html PutAlias indices_put_alias.NewPutAlias // Updates the data stream lifecycle of the selected data streams. // https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams-put-lifecycle.html PutDataLifecycle indices_put_data_lifecycle.NewPutDataLifecycle // Creates or updates an index template. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html PutIndexTemplate indices_put_index_template.NewPutIndexTemplate // Updates the index mappings. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html PutMapping indices_put_mapping.NewPutMapping // Updates the index settings. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html PutSettings indices_put_settings.NewPutSettings // Creates or updates an index template. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html PutTemplate indices_put_template.NewPutTemplate // Performs the refresh operation in one or more indices. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-refresh.html Refresh indices_refresh.NewRefresh // Returns information about any matching indices, aliases, and data streams // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-resolve-index-api.html ResolveIndex indices_resolve_index.NewResolveIndex // Updates an alias to point to a new index when the existing index // is considered to be too large or too old. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-rollover-index.html Rollover indices_rollover.NewRollover // Simulate matching the given index name against the index templates in the // system // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html SimulateIndexTemplate indices_simulate_index_template.NewSimulateIndexTemplate // Simulate resolving the given template name or body // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html SimulateTemplate indices_simulate_template.NewSimulateTemplate // Updates index aliases. // https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html UpdateAliases indices_update_aliases.NewUpdateAliases // Allows a user to validate a potentially expensive query without executing it. // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-validate.html ValidateQuery indices_validate_query.NewValidateQuery }
type Ingest ¶
type Ingest struct { // Deletes a pipeline. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-pipeline-api.html DeletePipeline ingest_delete_pipeline.NewDeletePipeline // Returns a pipeline. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-pipeline-api.html GetPipeline ingest_get_pipeline.NewGetPipeline // Returns a list of the built-in patterns. // https://www.elastic.co/guide/en/elasticsearch/reference/current/grok-processor.html ProcessorGrok ingest_processor_grok.NewProcessorGrok // Creates or updates a pipeline. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ingest.html PutPipeline ingest_put_pipeline.NewPutPipeline // Allows to simulate a pipeline with example documents. // https://www.elastic.co/guide/en/elasticsearch/reference/current/simulate-pipeline-api.html Simulate ingest_simulate.NewSimulate }
type License ¶
type License struct { // Retrieves licensing information for the cluster // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-license.html Get license_get.NewGet }
type Logstash ¶
type Logstash struct { // Deletes Logstash Pipelines used by Central Management // https://www.elastic.co/guide/en/elasticsearch/reference/current/logstash-api-delete-pipeline.html DeletePipeline logstash_delete_pipeline.NewDeletePipeline // Retrieves Logstash Pipelines used by Central Management // https://www.elastic.co/guide/en/elasticsearch/reference/current/logstash-api-get-pipeline.html GetPipeline logstash_get_pipeline.NewGetPipeline // Adds and updates Logstash Pipelines used for Central Management // https://www.elastic.co/guide/en/elasticsearch/reference/current/logstash-api-put-pipeline.html PutPipeline logstash_put_pipeline.NewPutPipeline }
type Ml ¶
type Ml struct { // Closes one or more anomaly detection jobs. A job can be opened and closed // multiple times throughout its lifecycle. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-close-job.html CloseJob ml_close_job.NewCloseJob // Deletes a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-calendar.html DeleteCalendar ml_delete_calendar.NewDeleteCalendar // Deletes scheduled events from a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-calendar-event.html DeleteCalendarEvent ml_delete_calendar_event.NewDeleteCalendarEvent // Deletes anomaly detection jobs from a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-calendar-job.html DeleteCalendarJob ml_delete_calendar_job.NewDeleteCalendarJob // Deletes an existing data frame analytics job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-dfanalytics.html DeleteDataFrameAnalytics ml_delete_data_frame_analytics.NewDeleteDataFrameAnalytics // Deletes an existing datafeed. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-datafeed.html DeleteDatafeed ml_delete_datafeed.NewDeleteDatafeed // Deletes a filter. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-filter.html DeleteFilter ml_delete_filter.NewDeleteFilter // Deletes an existing anomaly detection job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-job.html DeleteJob ml_delete_job.NewDeleteJob // Deletes an existing trained inference model that is currently not referenced // by an ingest pipeline. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-trained-models.html DeleteTrainedModel ml_delete_trained_model.NewDeleteTrainedModel // Deletes a model alias that refers to the trained model // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-trained-models-aliases.html DeleteTrainedModelAlias ml_delete_trained_model_alias.NewDeleteTrainedModelAlias // Estimates the model memory // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-apis.html EstimateModelMemory ml_estimate_model_memory.NewEstimateModelMemory // Evaluates the data frame analytics for an annotated index. // https://www.elastic.co/guide/en/elasticsearch/reference/current/evaluate-dfanalytics.html EvaluateDataFrame ml_evaluate_data_frame.NewEvaluateDataFrame // Forces any buffered data to be processed by the job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-flush-job.html FlushJob ml_flush_job.NewFlushJob // Retrieves information about the scheduled events in calendars. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-calendar-event.html GetCalendarEvents ml_get_calendar_events.NewGetCalendarEvents // Retrieves configuration information for calendars. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-calendar.html GetCalendars ml_get_calendars.NewGetCalendars // Retrieves configuration information for data frame analytics jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-dfanalytics.html GetDataFrameAnalytics ml_get_data_frame_analytics.NewGetDataFrameAnalytics // Retrieves usage information for data frame analytics jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-dfanalytics-stats.html GetDataFrameAnalyticsStats ml_get_data_frame_analytics_stats.NewGetDataFrameAnalyticsStats // Retrieves usage information for datafeeds. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-datafeed-stats.html GetDatafeedStats ml_get_datafeed_stats.NewGetDatafeedStats // Retrieves configuration information for datafeeds. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-datafeed.html GetDatafeeds ml_get_datafeeds.NewGetDatafeeds // Retrieves filters. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-filter.html GetFilters ml_get_filters.NewGetFilters // Retrieves usage information for anomaly detection jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-job-stats.html GetJobStats ml_get_job_stats.NewGetJobStats // Retrieves configuration information for anomaly detection jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-job.html GetJobs ml_get_jobs.NewGetJobs // Retrieves overall bucket results that summarize the bucket results of // multiple anomaly detection jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-overall-buckets.html GetOverallBuckets ml_get_overall_buckets.NewGetOverallBuckets // Retrieves configuration information for a trained inference model. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-trained-models.html GetTrainedModels ml_get_trained_models.NewGetTrainedModels // Retrieves usage information for trained inference models. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-trained-models-stats.html GetTrainedModelsStats ml_get_trained_models_stats.NewGetTrainedModelsStats // Evaluate a trained model. // https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-trained-model.html InferTrainedModel ml_infer_trained_model.NewInferTrainedModel // Opens one or more anomaly detection jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-open-job.html OpenJob ml_open_job.NewOpenJob // Posts scheduled events in a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-post-calendar-event.html PostCalendarEvents ml_post_calendar_events.NewPostCalendarEvents // Previews that will be analyzed given a data frame analytics config. // http://www.elastic.co/guide/en/elasticsearch/reference/current/preview-dfanalytics.html PreviewDataFrameAnalytics ml_preview_data_frame_analytics.NewPreviewDataFrameAnalytics // Previews a datafeed. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-preview-datafeed.html PreviewDatafeed ml_preview_datafeed.NewPreviewDatafeed // Instantiates a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-calendar.html PutCalendar ml_put_calendar.NewPutCalendar // Adds an anomaly detection job to a calendar. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-calendar-job.html PutCalendarJob ml_put_calendar_job.NewPutCalendarJob // Instantiates a data frame analytics job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-dfanalytics.html PutDataFrameAnalytics ml_put_data_frame_analytics.NewPutDataFrameAnalytics // Instantiates a datafeed. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-datafeed.html PutDatafeed ml_put_datafeed.NewPutDatafeed // Instantiates a filter. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-filter.html PutFilter ml_put_filter.NewPutFilter // Instantiates an anomaly detection job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-job.html PutJob ml_put_job.NewPutJob // Creates an inference trained model. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-models.html PutTrainedModel ml_put_trained_model.NewPutTrainedModel // Creates a new model alias (or reassigns an existing one) to refer to the // trained model // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-models-aliases.html PutTrainedModelAlias ml_put_trained_model_alias.NewPutTrainedModelAlias // Creates part of a trained model definition // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-model-definition-part.html PutTrainedModelDefinitionPart ml_put_trained_model_definition_part.NewPutTrainedModelDefinitionPart // Creates a trained model vocabulary // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-trained-model-vocabulary.html PutTrainedModelVocabulary ml_put_trained_model_vocabulary.NewPutTrainedModelVocabulary // Resets an existing anomaly detection job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-reset-job.html ResetJob ml_reset_job.NewResetJob // Starts a data frame analytics job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/start-dfanalytics.html StartDataFrameAnalytics ml_start_data_frame_analytics.NewStartDataFrameAnalytics // Starts one or more datafeeds. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-start-datafeed.html StartDatafeed ml_start_datafeed.NewStartDatafeed // Start a trained model deployment. // https://www.elastic.co/guide/en/elasticsearch/reference/current/start-trained-model-deployment.html StartTrainedModelDeployment ml_start_trained_model_deployment.NewStartTrainedModelDeployment // Stops one or more data frame analytics jobs. // https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-dfanalytics.html StopDataFrameAnalytics ml_stop_data_frame_analytics.NewStopDataFrameAnalytics // Stops one or more datafeeds. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-stop-datafeed.html StopDatafeed ml_stop_datafeed.NewStopDatafeed // Stop a trained model deployment. // https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-trained-model-deployment.html StopTrainedModelDeployment ml_stop_trained_model_deployment.NewStopTrainedModelDeployment // Updates certain properties of a data frame analytics job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/update-dfanalytics.html UpdateDataFrameAnalytics ml_update_data_frame_analytics.NewUpdateDataFrameAnalytics // Updates certain properties of a datafeed. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-update-datafeed.html UpdateDatafeed ml_update_datafeed.NewUpdateDatafeed // Updates the description of a filter, adds items, or removes items. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-update-filter.html UpdateFilter ml_update_filter.NewUpdateFilter // Updates certain properties of an anomaly detection job. // https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-update-job.html UpdateJob ml_update_job.NewUpdateJob }
type QueryRuleset ¶
type QueryRuleset struct { // Deletes a query ruleset. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-query-ruleset.html Delete query_ruleset_delete.NewDelete // Returns the details about a query ruleset. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-query-ruleset.html Get query_ruleset_get.NewGet // Lists query rulesets. // https://www.elastic.co/guide/en/elasticsearch/reference/current/list-query-rulesets.html List query_ruleset_list.NewList // Creates or updates a query ruleset. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-query-ruleset.html Put query_ruleset_put.NewPut }
type SearchApplication ¶
type SearchApplication struct { // Deletes a search application. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-search-application.html Delete search_application_delete.NewDelete // Delete a behavioral analytics collection. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-analytics-collection.html DeleteBehavioralAnalytics search_application_delete_behavioral_analytics.NewDeleteBehavioralAnalytics // Returns the details about a search application. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-search-application.html Get search_application_get.NewGet // Returns the existing behavioral analytics collections. // https://www.elastic.co/guide/en/elasticsearch/reference/current/list-analytics-collection.html GetBehavioralAnalytics search_application_get_behavioral_analytics.NewGetBehavioralAnalytics // Returns the existing search applications. // https://www.elastic.co/guide/en/elasticsearch/reference/current/list-search-applications.html List search_application_list.NewList // Creates or updates a search application. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-search-application.html Put search_application_put.NewPut // Creates a behavioral analytics collection. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-analytics-collection.html PutBehavioralAnalytics search_application_put_behavioral_analytics.NewPutBehavioralAnalytics // Perform a search against a search application // https://www.elastic.co/guide/en/elasticsearch/reference/current/search-application-search.html Search search_application_search.NewSearch }
type Security ¶
type Security struct { // Enables authentication as a user and retrieve information about the // authenticated user. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-authenticate.html Authenticate security_authenticate.NewAuthenticate // Creates an API key for access without requiring basic authentication. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-create-api-key.html CreateApiKey security_create_api_key.NewCreateApiKey // Retrieves information for one or more API keys. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-api-key.html GetApiKey security_get_api_key.NewGetApiKey // Determines whether the specified user has a specified list of privileges. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-has-privileges.html HasPrivileges security_has_privileges.NewHasPrivileges // Invalidates one or more API keys. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-invalidate-api-key.html InvalidateApiKey security_invalidate_api_key.NewInvalidateApiKey // Retrieves information for API keys using a subset of query DSL // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-query-api-key.html QueryApiKeys security_query_api_keys.NewQueryApiKeys // Updates attributes of an existing API key. // https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-update-api-key.html UpdateApiKey security_update_api_key.NewUpdateApiKey }
type Sql ¶
type Sql struct { // Clears the SQL cursor // https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-sql-cursor-api.html ClearCursor sql_clear_cursor.NewClearCursor // Deletes an async SQL search or a stored synchronous SQL search. If the search // is still running, the API cancels it. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-async-sql-search-api.html DeleteAsync sql_delete_async.NewDeleteAsync // Returns the current status and available results for an async SQL search or // stored synchronous SQL search // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-sql-search-api.html GetAsync sql_get_async.NewGetAsync // Returns the current status of an async SQL search or a stored synchronous SQL // search // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-sql-search-status-api.html GetAsyncStatus sql_get_async_status.NewGetAsyncStatus // Executes a SQL request // https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-search-api.html Query sql_query.NewQuery // Translates SQL into Elasticsearch queries // https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-translate-api.html Translate sql_translate.NewTranslate }
type Synonyms ¶
type Synonyms struct { // Deletes a synonym set // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-synonyms-set.html DeleteSynonym synonyms_delete_synonym.NewDeleteSynonym // Deletes a synonym rule in a synonym set // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-synonym-rule.html DeleteSynonymRule synonyms_delete_synonym_rule.NewDeleteSynonymRule // Retrieves a synonym set // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-synonyms-set.html GetSynonym synonyms_get_synonym.NewGetSynonym // Retrieves a synonym rule from a synonym set // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-synonym-rule.html GetSynonymRule synonyms_get_synonym_rule.NewGetSynonymRule // Retrieves a summary of all defined synonym sets // https://www.elastic.co/guide/en/elasticsearch/reference/current/list-synonyms-sets.html GetSynonymsSets synonyms_get_synonyms_sets.NewGetSynonymsSets // Creates or updates a synonyms set // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-synonyms-set.html PutSynonym synonyms_put_synonym.NewPutSynonym // Creates or updates a synonym rule in a synonym set // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-synonym-rule.html PutSynonymRule synonyms_put_synonym_rule.NewPutSynonymRule }
type Tasks ¶
type Tasks struct { // Returns information about a task. // https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html Get tasks_get.NewGet }
type Transform ¶
type Transform struct { // Deletes an existing transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-transform.html DeleteTransform transform_delete_transform.NewDeleteTransform // Retrieves configuration information for transforms. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform.html GetTransform transform_get_transform.NewGetTransform // Retrieves usage information for transforms. // https://www.elastic.co/guide/en/elasticsearch/reference/current/get-transform-stats.html GetTransformStats transform_get_transform_stats.NewGetTransformStats // Previews a transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/preview-transform.html PreviewTransform transform_preview_transform.NewPreviewTransform // Instantiates a transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/put-transform.html PutTransform transform_put_transform.NewPutTransform // Resets an existing transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/reset-transform.html ResetTransform transform_reset_transform.NewResetTransform // Schedules now a transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/schedule-now-transform.html ScheduleNowTransform transform_schedule_now_transform.NewScheduleNowTransform // Starts one or more transforms. // https://www.elastic.co/guide/en/elasticsearch/reference/current/start-transform.html StartTransform transform_start_transform.NewStartTransform // Stops one or more transforms. // https://www.elastic.co/guide/en/elasticsearch/reference/current/stop-transform.html StopTransform transform_stop_transform.NewStopTransform // Updates certain properties of a transform. // https://www.elastic.co/guide/en/elasticsearch/reference/current/update-transform.html UpdateTransform transform_update_transform.NewUpdateTransform }
Directories
¶
Path | Synopsis |
---|---|
asyncsearch
|
|
delete
Deletes an async search by ID.
|
Deletes an async search by ID. |
get
Retrieves the results of a previously submitted async search request given its ID.
|
Retrieves the results of a previously submitted async search request given its ID. |
status
Retrieves the status of a previously submitted async search request given its ID.
|
Retrieves the status of a previously submitted async search request given its ID. |
submit
Executes a search request asynchronously.
|
Executes a search request asynchronously. |
cat
|
|
aliases
Shows information about currently configured aliases to indices including filter and routing infos.
|
Shows information about currently configured aliases to indices including filter and routing infos. |
componenttemplates
Returns information about existing component_templates templates.
|
Returns information about existing component_templates templates. |
count
Provides quick access to the document count of the entire cluster, or individual indices.
|
Provides quick access to the document count of the entire cluster, or individual indices. |
help
Returns help for the Cat APIs.
|
Returns help for the Cat APIs. |
indices
Returns information about indices: number of primaries and replicas, document counts, disk size, ...
|
Returns information about indices: number of primaries and replicas, document counts, disk size, ... |
mldatafeeds
Gets configuration and usage information about datafeeds.
|
Gets configuration and usage information about datafeeds. |
mldataframeanalytics
Gets configuration and usage information about data frame analytics jobs.
|
Gets configuration and usage information about data frame analytics jobs. |
mljobs
Gets configuration and usage information about anomaly detection jobs.
|
Gets configuration and usage information about anomaly detection jobs. |
mltrainedmodels
Gets configuration and usage information about inference trained models.
|
Gets configuration and usage information about inference trained models. |
transforms
Gets configuration and usage information about transforms.
|
Gets configuration and usage information about transforms. |
cluster
|
|
deletecomponenttemplate
Deletes a component template
|
Deletes a component template |
existscomponenttemplate
Returns information about whether a particular component template exist
|
Returns information about whether a particular component template exist |
getcomponenttemplate
Returns one or more component templates
|
Returns one or more component templates |
info
Returns different information about the cluster.
|
Returns different information about the cluster. |
putcomponenttemplate
Creates or updates a component template
|
Creates or updates a component template |
core
|
|
bulk
Allows to perform multiple index/update/delete operations in a single request.
|
Allows to perform multiple index/update/delete operations in a single request. |
clearscroll
Explicitly clears the search context for a scroll.
|
Explicitly clears the search context for a scroll. |
closepointintime
Close a point in time
|
Close a point in time |
count
Returns number of documents matching a query.
|
Returns number of documents matching a query. |
create
Creates a new document in the index.
|
Creates a new document in the index. |
delete
Removes a document from the index.
|
Removes a document from the index. |
deletebyquery
Deletes documents matching the provided query.
|
Deletes documents matching the provided query. |
deletescript
Deletes a script.
|
Deletes a script. |
exists
Returns information about whether a document exists in an index.
|
Returns information about whether a document exists in an index. |
existssource
Returns information about whether a document source exists in an index.
|
Returns information about whether a document source exists in an index. |
explain
Returns information about why a specific matches (or doesn't match) a query.
|
Returns information about why a specific matches (or doesn't match) a query. |
fieldcaps
Returns the information about the capabilities of fields among multiple indices.
|
Returns the information about the capabilities of fields among multiple indices. |
get
Returns a document.
|
Returns a document. |
getscript
Returns a script.
|
Returns a script. |
getsource
Returns the source of a document.
|
Returns the source of a document. |
index
Creates or updates a document in an index.
|
Creates or updates a document in an index. |
info
Returns basic information about the cluster.
|
Returns basic information about the cluster. |
mget
Allows to get multiple documents in one request.
|
Allows to get multiple documents in one request. |
msearch
Allows to execute several search operations in one request.
|
Allows to execute several search operations in one request. |
msearchtemplate
Allows to execute several search template operations in one request.
|
Allows to execute several search template operations in one request. |
mtermvectors
Returns multiple termvectors in one request.
|
Returns multiple termvectors in one request. |
openpointintime
Open a point in time that can be used in subsequent searches
|
Open a point in time that can be used in subsequent searches |
ping
Returns whether the cluster is running.
|
Returns whether the cluster is running. |
putscript
Creates or updates a script.
|
Creates or updates a script. |
rankeval
Allows to evaluate the quality of ranked search results over a set of typical search queries
|
Allows to evaluate the quality of ranked search results over a set of typical search queries |
reindex
Allows to copy documents from one index to another, optionally filtering the source documents by a query, changing the destination index settings, or fetching the documents from a remote cluster.
|
Allows to copy documents from one index to another, optionally filtering the source documents by a query, changing the destination index settings, or fetching the documents from a remote cluster. |
rendersearchtemplate
Allows to use the Mustache language to pre-render a search definition.
|
Allows to use the Mustache language to pre-render a search definition. |
scriptspainlessexecute
Allows an arbitrary script to be executed and a result to be returned
|
Allows an arbitrary script to be executed and a result to be returned |
scroll
Allows to retrieve a large numbers of results from a single search request.
|
Allows to retrieve a large numbers of results from a single search request. |
search
Returns results matching a query.
|
Returns results matching a query. |
searchmvt
Searches a vector tile for geospatial values.
|
Searches a vector tile for geospatial values. |
searchtemplate
Allows to use the Mustache language to pre-render a search definition.
|
Allows to use the Mustache language to pre-render a search definition. |
termsenum
The terms enum API can be used to discover terms in the index that begin with the provided string.
|
The terms enum API can be used to discover terms in the index that begin with the provided string. |
termvectors
Returns information and statistics about terms in the fields of a particular document.
|
Returns information and statistics about terms in the fields of a particular document. |
update
Updates a document with a script or partial document.
|
Updates a document with a script or partial document. |
updatebyquery
Performs an update on every document in the index without changing the source, for example to pick up a mapping change.
|
Performs an update on every document in the index without changing the source, for example to pick up a mapping change. |
enrich
|
|
deletepolicy
Deletes an existing enrich policy and its enrich index.
|
Deletes an existing enrich policy and its enrich index. |
executepolicy
Creates the enrich index for an existing enrich policy.
|
Creates the enrich index for an existing enrich policy. |
getpolicy
Gets information about an enrich policy.
|
Gets information about an enrich policy. |
putpolicy
Creates a new enrich policy.
|
Creates a new enrich policy. |
stats
Gets enrich coordinator statistics and information about enrich policies that are currently executing.
|
Gets enrich coordinator statistics and information about enrich policies that are currently executing. |
eql
|
|
delete
Deletes an async EQL search by ID.
|
Deletes an async EQL search by ID. |
get
Returns async results from previously executed Event Query Language (EQL) search
|
Returns async results from previously executed Event Query Language (EQL) search |
getstatus
Returns the status of a previously submitted async or stored Event Query Language (EQL) search
|
Returns the status of a previously submitted async or stored Event Query Language (EQL) search |
search
Returns results matching a query expressed in Event Query Language (EQL)
|
Returns results matching a query expressed in Event Query Language (EQL) |
graph
|
|
explore
Explore extracted and summarized information about the documents and terms in an index.
|
Explore extracted and summarized information about the documents and terms in an index. |
indices
|
|
addblock
Adds a block to an index.
|
Adds a block to an index. |
analyze
Performs the analysis process on a text and return the tokens breakdown of the text.
|
Performs the analysis process on a text and return the tokens breakdown of the text. |
create
Creates an index with optional settings and mappings.
|
Creates an index with optional settings and mappings. |
createdatastream
Creates a data stream
|
Creates a data stream |
datastreamsstats
Provides statistics on operations happening in a data stream.
|
Provides statistics on operations happening in a data stream. |
delete
Deletes an index.
|
Deletes an index. |
deletealias
Deletes an alias.
|
Deletes an alias. |
deletedatalifecycle
Deletes the data stream lifecycle of the selected data streams.
|
Deletes the data stream lifecycle of the selected data streams. |
deletedatastream
Deletes a data stream.
|
Deletes a data stream. |
deleteindextemplate
Deletes an index template.
|
Deletes an index template. |
exists
Returns information about whether a particular index exists.
|
Returns information about whether a particular index exists. |
existsalias
Returns information about whether a particular alias exists.
|
Returns information about whether a particular alias exists. |
existsindextemplate
Returns information about whether a particular index template exists.
|
Returns information about whether a particular index template exists. |
explaindatalifecycle
Retrieves information about the index's current data stream lifecycle, such as any potential encountered error, time since creation etc.
|
Retrieves information about the index's current data stream lifecycle, such as any potential encountered error, time since creation etc. |
get
Returns information about one or more indices.
|
Returns information about one or more indices. |
getalias
Returns an alias.
|
Returns an alias. |
getdatalifecycle
Returns the data stream lifecycle of the selected data streams.
|
Returns the data stream lifecycle of the selected data streams. |
getdatastream
Returns data streams.
|
Returns data streams. |
getindextemplate
Returns an index template.
|
Returns an index template. |
getmapping
Returns mappings for one or more indices.
|
Returns mappings for one or more indices. |
getsettings
Returns settings for one or more indices.
|
Returns settings for one or more indices. |
migratetodatastream
Migrates an alias to a data stream
|
Migrates an alias to a data stream |
modifydatastream
Modifies a data stream
|
Modifies a data stream |
putalias
Creates or updates an alias.
|
Creates or updates an alias. |
putdatalifecycle
Updates the data stream lifecycle of the selected data streams.
|
Updates the data stream lifecycle of the selected data streams. |
putindextemplate
Creates or updates an index template.
|
Creates or updates an index template. |
putmapping
Updates the index mappings.
|
Updates the index mappings. |
putsettings
Updates the index settings.
|
Updates the index settings. |
puttemplate
Creates or updates an index template.
|
Creates or updates an index template. |
refresh
Performs the refresh operation in one or more indices.
|
Performs the refresh operation in one or more indices. |
resolveindex
Returns information about any matching indices, aliases, and data streams
|
Returns information about any matching indices, aliases, and data streams |
rollover
Updates an alias to point to a new index when the existing index is considered to be too large or too old.
|
Updates an alias to point to a new index when the existing index is considered to be too large or too old. |
simulateindextemplate
Simulate matching the given index name against the index templates in the system
|
Simulate matching the given index name against the index templates in the system |
simulatetemplate
Simulate resolving the given template name or body
|
Simulate resolving the given template name or body |
updatealiases
Updates index aliases.
|
Updates index aliases. |
validatequery
Allows a user to validate a potentially expensive query without executing it.
|
Allows a user to validate a potentially expensive query without executing it. |
ingest
|
|
deletepipeline
Deletes a pipeline.
|
Deletes a pipeline. |
getpipeline
Returns a pipeline.
|
Returns a pipeline. |
processorgrok
Returns a list of the built-in patterns.
|
Returns a list of the built-in patterns. |
putpipeline
Creates or updates a pipeline.
|
Creates or updates a pipeline. |
simulate
Allows to simulate a pipeline with example documents.
|
Allows to simulate a pipeline with example documents. |
license
|
|
get
Retrieves licensing information for the cluster
|
Retrieves licensing information for the cluster |
logstash
|
|
deletepipeline
Deletes Logstash Pipelines used by Central Management
|
Deletes Logstash Pipelines used by Central Management |
getpipeline
Retrieves Logstash Pipelines used by Central Management
|
Retrieves Logstash Pipelines used by Central Management |
putpipeline
Adds and updates Logstash Pipelines used for Central Management
|
Adds and updates Logstash Pipelines used for Central Management |
ml
|
|
closejob
Closes one or more anomaly detection jobs.
|
Closes one or more anomaly detection jobs. |
deletecalendar
Deletes a calendar.
|
Deletes a calendar. |
deletecalendarevent
Deletes scheduled events from a calendar.
|
Deletes scheduled events from a calendar. |
deletecalendarjob
Deletes anomaly detection jobs from a calendar.
|
Deletes anomaly detection jobs from a calendar. |
deletedatafeed
Deletes an existing datafeed.
|
Deletes an existing datafeed. |
deletedataframeanalytics
Deletes an existing data frame analytics job.
|
Deletes an existing data frame analytics job. |
deletefilter
Deletes a filter.
|
Deletes a filter. |
deletejob
Deletes an existing anomaly detection job.
|
Deletes an existing anomaly detection job. |
deletetrainedmodel
Deletes an existing trained inference model that is currently not referenced by an ingest pipeline.
|
Deletes an existing trained inference model that is currently not referenced by an ingest pipeline. |
deletetrainedmodelalias
Deletes a model alias that refers to the trained model
|
Deletes a model alias that refers to the trained model |
estimatemodelmemory
Estimates the model memory
|
Estimates the model memory |
evaluatedataframe
Evaluates the data frame analytics for an annotated index.
|
Evaluates the data frame analytics for an annotated index. |
flushjob
Forces any buffered data to be processed by the job.
|
Forces any buffered data to be processed by the job. |
getcalendarevents
Retrieves information about the scheduled events in calendars.
|
Retrieves information about the scheduled events in calendars. |
getcalendars
Retrieves configuration information for calendars.
|
Retrieves configuration information for calendars. |
getdatafeeds
Retrieves configuration information for datafeeds.
|
Retrieves configuration information for datafeeds. |
getdatafeedstats
Retrieves usage information for datafeeds.
|
Retrieves usage information for datafeeds. |
getdataframeanalytics
Retrieves configuration information for data frame analytics jobs.
|
Retrieves configuration information for data frame analytics jobs. |
getdataframeanalyticsstats
Retrieves usage information for data frame analytics jobs.
|
Retrieves usage information for data frame analytics jobs. |
getfilters
Retrieves filters.
|
Retrieves filters. |
getjobs
Retrieves configuration information for anomaly detection jobs.
|
Retrieves configuration information for anomaly detection jobs. |
getjobstats
Retrieves usage information for anomaly detection jobs.
|
Retrieves usage information for anomaly detection jobs. |
getoverallbuckets
Retrieves overall bucket results that summarize the bucket results of multiple anomaly detection jobs.
|
Retrieves overall bucket results that summarize the bucket results of multiple anomaly detection jobs. |
gettrainedmodels
Retrieves configuration information for a trained inference model.
|
Retrieves configuration information for a trained inference model. |
gettrainedmodelsstats
Retrieves usage information for trained inference models.
|
Retrieves usage information for trained inference models. |
infertrainedmodel
Evaluate a trained model.
|
Evaluate a trained model. |
openjob
Opens one or more anomaly detection jobs.
|
Opens one or more anomaly detection jobs. |
postcalendarevents
Posts scheduled events in a calendar.
|
Posts scheduled events in a calendar. |
previewdatafeed
Previews a datafeed.
|
Previews a datafeed. |
previewdataframeanalytics
Previews that will be analyzed given a data frame analytics config.
|
Previews that will be analyzed given a data frame analytics config. |
putcalendar
Instantiates a calendar.
|
Instantiates a calendar. |
putcalendarjob
Adds an anomaly detection job to a calendar.
|
Adds an anomaly detection job to a calendar. |
putdatafeed
Instantiates a datafeed.
|
Instantiates a datafeed. |
putdataframeanalytics
Instantiates a data frame analytics job.
|
Instantiates a data frame analytics job. |
putfilter
Instantiates a filter.
|
Instantiates a filter. |
putjob
Instantiates an anomaly detection job.
|
Instantiates an anomaly detection job. |
puttrainedmodel
Creates an inference trained model.
|
Creates an inference trained model. |
puttrainedmodelalias
Creates a new model alias (or reassigns an existing one) to refer to the trained model
|
Creates a new model alias (or reassigns an existing one) to refer to the trained model |
puttrainedmodeldefinitionpart
Creates part of a trained model definition
|
Creates part of a trained model definition |
puttrainedmodelvocabulary
Creates a trained model vocabulary
|
Creates a trained model vocabulary |
resetjob
Resets an existing anomaly detection job.
|
Resets an existing anomaly detection job. |
startdatafeed
Starts one or more datafeeds.
|
Starts one or more datafeeds. |
startdataframeanalytics
Starts a data frame analytics job.
|
Starts a data frame analytics job. |
starttrainedmodeldeployment
Start a trained model deployment.
|
Start a trained model deployment. |
stopdatafeed
Stops one or more datafeeds.
|
Stops one or more datafeeds. |
stopdataframeanalytics
Stops one or more data frame analytics jobs.
|
Stops one or more data frame analytics jobs. |
stoptrainedmodeldeployment
Stop a trained model deployment.
|
Stop a trained model deployment. |
updatedatafeed
Updates certain properties of a datafeed.
|
Updates certain properties of a datafeed. |
updatedataframeanalytics
Updates certain properties of a data frame analytics job.
|
Updates certain properties of a data frame analytics job. |
updatefilter
Updates the description of a filter, adds items, or removes items.
|
Updates the description of a filter, adds items, or removes items. |
updatejob
Updates certain properties of an anomaly detection job.
|
Updates certain properties of an anomaly detection job. |
queryruleset
|
|
delete
Deletes a query ruleset.
|
Deletes a query ruleset. |
get
Returns the details about a query ruleset.
|
Returns the details about a query ruleset. |
list
Lists query rulesets.
|
Lists query rulesets. |
put
Creates or updates a query ruleset.
|
Creates or updates a query ruleset. |
searchapplication
|
|
delete
Deletes a search application.
|
Deletes a search application. |
deletebehavioralanalytics
Delete a behavioral analytics collection.
|
Delete a behavioral analytics collection. |
get
Returns the details about a search application.
|
Returns the details about a search application. |
getbehavioralanalytics
Returns the existing behavioral analytics collections.
|
Returns the existing behavioral analytics collections. |
list
Returns the existing search applications.
|
Returns the existing search applications. |
put
Creates or updates a search application.
|
Creates or updates a search application. |
putbehavioralanalytics
Creates a behavioral analytics collection.
|
Creates a behavioral analytics collection. |
search
Perform a search against a search application
|
Perform a search against a search application |
security
|
|
authenticate
Enables authentication as a user and retrieve information about the authenticated user.
|
Enables authentication as a user and retrieve information about the authenticated user. |
createapikey
Creates an API key for access without requiring basic authentication.
|
Creates an API key for access without requiring basic authentication. |
getapikey
Retrieves information for one or more API keys.
|
Retrieves information for one or more API keys. |
hasprivileges
Determines whether the specified user has a specified list of privileges.
|
Determines whether the specified user has a specified list of privileges. |
invalidateapikey
Invalidates one or more API keys.
|
Invalidates one or more API keys. |
queryapikeys
Retrieves information for API keys using a subset of query DSL
|
Retrieves information for API keys using a subset of query DSL |
updateapikey
Updates attributes of an existing API key.
|
Updates attributes of an existing API key. |
Package some provides helpers to allow users to user inline pointers on primitive types for the TypedAPI.
|
Package some provides helpers to allow users to user inline pointers on primitive types for the TypedAPI. |
sql
|
|
clearcursor
Clears the SQL cursor
|
Clears the SQL cursor |
deleteasync
Deletes an async SQL search or a stored synchronous SQL search.
|
Deletes an async SQL search or a stored synchronous SQL search. |
getasync
Returns the current status and available results for an async SQL search or stored synchronous SQL search
|
Returns the current status and available results for an async SQL search or stored synchronous SQL search |
getasyncstatus
Returns the current status of an async SQL search or a stored synchronous SQL search
|
Returns the current status of an async SQL search or a stored synchronous SQL search |
query
Executes a SQL request
|
Executes a SQL request |
translate
Translates SQL into Elasticsearch queries
|
Translates SQL into Elasticsearch queries |
synonyms
|
|
deletesynonym
Deletes a synonym set
|
Deletes a synonym set |
deletesynonymrule
Deletes a synonym rule in a synonym set
|
Deletes a synonym rule in a synonym set |
getsynonym
Retrieves a synonym set
|
Retrieves a synonym set |
getsynonymrule
Retrieves a synonym rule from a synonym set
|
Retrieves a synonym rule from a synonym set |
getsynonymssets
Retrieves a summary of all defined synonym sets
|
Retrieves a summary of all defined synonym sets |
putsynonym
Creates or updates a synonyms set
|
Creates or updates a synonyms set |
putsynonymrule
Creates or updates a synonym rule in a synonym set
|
Creates or updates a synonym rule in a synonym set |
tasks
|
|
get
Returns information about a task.
|
Returns information about a task. |
transform
|
|
deletetransform
Deletes an existing transform.
|
Deletes an existing transform. |
gettransform
Retrieves configuration information for transforms.
|
Retrieves configuration information for transforms. |
gettransformstats
Retrieves usage information for transforms.
|
Retrieves usage information for transforms. |
previewtransform
Previews a transform.
|
Previews a transform. |
puttransform
Instantiates a transform.
|
Instantiates a transform. |
resettransform
Resets an existing transform.
|
Resets an existing transform. |
schedulenowtransform
Schedules now a transform.
|
Schedules now a transform. |
starttransform
Starts one or more transforms.
|
Starts one or more transforms. |
stoptransform
Stops one or more transforms.
|
Stops one or more transforms. |
updatetransform
Updates certain properties of a transform.
|
Updates certain properties of a transform. |
enums/accesstokengranttype
Package accesstokengranttype
|
Package accesstokengranttype |
enums/acknowledgementoptions
Package acknowledgementoptions
|
Package acknowledgementoptions |
enums/actionexecutionmode
Package actionexecutionmode
|
Package actionexecutionmode |
enums/actionstatusoptions
Package actionstatusoptions
|
Package actionstatusoptions |
enums/actiontype
Package actiontype
|
Package actiontype |
enums/allocationexplaindecision
Package allocationexplaindecision
|
Package allocationexplaindecision |
enums/apikeygranttype
Package apikeygranttype
|
Package apikeygranttype |
enums/appliesto
Package appliesto
|
Package appliesto |
enums/boundaryscanner
Package boundaryscanner
|
Package boundaryscanner |
enums/bytes
Package bytes
|
Package bytes |
enums/calendarinterval
Package calendarinterval
|
Package calendarinterval |
enums/cardinalityexecutionmode
Package cardinalityexecutionmode
|
Package cardinalityexecutionmode |
enums/catanomalydetectorcolumn
Package catanomalydetectorcolumn
|
Package catanomalydetectorcolumn |
enums/catdatafeedcolumn
Package catdatafeedcolumn
|
Package catdatafeedcolumn |
enums/catdfacolumn
Package catdfacolumn
|
Package catdfacolumn |
enums/categorizationstatus
Package categorizationstatus
|
Package categorizationstatus |
enums/cattrainedmodelscolumn
Package cattrainedmodelscolumn
|
Package cattrainedmodelscolumn |
enums/cattransformcolumn
Package cattransformcolumn
|
Package cattransformcolumn |
enums/childscoremode
Package childscoremode
|
Package childscoremode |
enums/chunkingmode
Package chunkingmode
|
Package chunkingmode |
enums/clusterinfotarget
Package clusterinfotarget
|
Package clusterinfotarget |
enums/clusterprivilege
Package clusterprivilege
|
Package clusterprivilege |
enums/clustersearchstatus
Package clustersearchstatus
|
Package clustersearchstatus |
enums/combinedfieldsoperator
Package combinedfieldsoperator
|
Package combinedfieldsoperator |
enums/combinedfieldszeroterms
Package combinedfieldszeroterms
|
Package combinedfieldszeroterms |
enums/conditionop
Package conditionop
|
Package conditionop |
enums/conditionoperator
Package conditionoperator
|
Package conditionoperator |
enums/conditiontype
Package conditiontype
|
Package conditiontype |
enums/conflicts
Package conflicts
|
Package conflicts |
enums/connectionscheme
Package connectionscheme
|
Package connectionscheme |
enums/converttype
Package converttype
|
Package converttype |
enums/dataattachmentformat
Package dataattachmentformat
|
Package dataattachmentformat |
enums/datafeedstate
Package datafeedstate
|
Package datafeedstate |
enums/dataframestate
Package dataframestate
|
Package dataframestate |
enums/day
Package day
|
Package day |
enums/decision
Package decision
|
Package decision |
enums/delimitedpayloadencoding
Package delimitedpayloadencoding
|
Package delimitedpayloadencoding |
enums/deploymentallocationstate
Package deploymentallocationstate
|
Package deploymentallocationstate |
enums/deploymentassignmentstate
Package deploymentassignmentstate
|
Package deploymentassignmentstate |
enums/deploymentstate
Package deploymentstate
|
Package deploymentstate |
enums/deprecationlevel
Package deprecationlevel
|
Package deprecationlevel |
enums/dfiindependencemeasure
Package dfiindependencemeasure
|
Package dfiindependencemeasure |
enums/dfraftereffect
Package dfraftereffect
|
Package dfraftereffect |
enums/dfrbasicmodel
Package dfrbasicmodel
|
Package dfrbasicmodel |
enums/distanceunit
Package distanceunit
|
Package distanceunit |
enums/dynamicmapping
Package dynamicmapping
|
Package dynamicmapping |
enums/edgengramside
Package edgengramside
|
Package edgengramside |
enums/emailpriority
Package emailpriority
|
Package emailpriority |
enums/enrichpolicyphase
Package enrichpolicyphase
|
Package enrichpolicyphase |
enums/excludefrequent
Package excludefrequent
|
Package excludefrequent |
enums/executionphase
Package executionphase
|
Package executionphase |
enums/executionstatus
Package executionstatus
|
Package executionstatus |
enums/expandwildcard
Package expandwildcard
|
Package expandwildcard |
enums/feature
Package feature
|
Package feature |
enums/fieldsortnumerictype
Package fieldsortnumerictype
|
Package fieldsortnumerictype |
enums/fieldtype
Package fieldtype
|
Package fieldtype |
enums/fieldvaluefactormodifier
Package fieldvaluefactormodifier
|
Package fieldvaluefactormodifier |
enums/filtertype
Package filtertype
|
Package filtertype |
enums/followerindexstatus
Package followerindexstatus
|
Package followerindexstatus |
enums/functionboostmode
Package functionboostmode
|
Package functionboostmode |
enums/functionscoremode
Package functionscoremode
|
Package functionscoremode |
enums/gappolicy
Package gappolicy
|
Package gappolicy |
enums/geodistancetype
Package geodistancetype
|
Package geodistancetype |
enums/geoexecution
Package geoexecution
|
Package geoexecution |
enums/geoorientation
Package geoorientation
|
Package geoorientation |
enums/geoshaperelation
Package geoshaperelation
|
Package geoshaperelation |
enums/geostrategy
Package geostrategy
|
Package geostrategy |
enums/geovalidationmethod
Package geovalidationmethod
|
Package geovalidationmethod |
enums/granttype
Package granttype
|
Package granttype |
enums/gridaggregationtype
Package gridaggregationtype
|
Package gridaggregationtype |
enums/gridtype
Package gridtype
|
Package gridtype |
enums/groupby
Package groupby
|
Package groupby |
enums/healthstatus
Package healthstatus
|
Package healthstatus |
enums/highlighterencoder
Package highlighterencoder
|
Package highlighterencoder |
enums/highlighterfragmenter
Package highlighterfragmenter
|
Package highlighterfragmenter |
enums/highlighterorder
Package highlighterorder
|
Package highlighterorder |
enums/highlightertagsschema
Package highlightertagsschema
|
Package highlightertagsschema |
enums/highlightertype
Package highlightertype
|
Package highlightertype |
enums/holtwinterstype
Package holtwinterstype
|
Package holtwinterstype |
enums/httpinputmethod
Package httpinputmethod
|
Package httpinputmethod |
enums/ibdistribution
Package ibdistribution
|
Package ibdistribution |
enums/iblambda
Package iblambda
|
Package iblambda |
enums/icucollationalternate
Package icucollationalternate
|
Package icucollationalternate |
enums/icucollationcasefirst
Package icucollationcasefirst
|
Package icucollationcasefirst |
enums/icucollationdecomposition
Package icucollationdecomposition
|
Package icucollationdecomposition |
enums/icucollationstrength
Package icucollationstrength
|
Package icucollationstrength |
enums/icunormalizationmode
Package icunormalizationmode
|
Package icunormalizationmode |
enums/icunormalizationtype
Package icunormalizationtype
|
Package icunormalizationtype |
enums/icutransformdirection
Package icutransformdirection
|
Package icutransformdirection |
enums/impactarea
Package impactarea
|
Package impactarea |
enums/include
Package include
|
Package include |
enums/indexcheckonstartup
Package indexcheckonstartup
|
Package indexcheckonstartup |
enums/indexingjobstate
Package indexingjobstate
|
Package indexingjobstate |
enums/indexmetadatastate
Package indexmetadatastate
|
Package indexmetadatastate |
enums/indexoptions
Package indexoptions
|
Package indexoptions |
enums/indexprivilege
Package indexprivilege
|
Package indexprivilege |
enums/indexroutingallocationoptions
Package indexroutingallocationoptions
|
Package indexroutingallocationoptions |
enums/indexroutingrebalanceoptions
Package indexroutingrebalanceoptions
|
Package indexroutingrebalanceoptions |
enums/indicatorhealthstatus
Package indicatorhealthstatus
|
Package indicatorhealthstatus |
enums/indicesblockoptions
Package indicesblockoptions
|
Package indicesblockoptions |
enums/inputtype
Package inputtype
|
Package inputtype |
enums/jobblockedreason
Package jobblockedreason
|
Package jobblockedreason |
enums/jobstate
Package jobstate
|
Package jobstate |
enums/jsonprocessorconflictstrategy
Package jsonprocessorconflictstrategy
|
Package jsonprocessorconflictstrategy |
enums/keeptypesmode
Package keeptypesmode
|
Package keeptypesmode |
enums/kuromojitokenizationmode
Package kuromojitokenizationmode
|
Package kuromojitokenizationmode |
enums/language
Package language
|
Package language |
enums/level
Package level
|
Package level |
enums/licensestatus
Package licensestatus
|
Package licensestatus |
enums/licensetype
Package licensetype
|
Package licensetype |
enums/lifecycleoperationmode
Package lifecycleoperationmode
|
Package lifecycleoperationmode |
enums/matchtype
Package matchtype
|
Package matchtype |
enums/memorystatus
Package memorystatus
|
Package memorystatus |
enums/metric
Package metric
|
Package metric |
enums/migrationstatus
Package migrationstatus
|
Package migrationstatus |
enums/minimuminterval
Package minimuminterval
|
Package minimuminterval |
enums/missingorder
Package missingorder
|
Package missingorder |
enums/month
Package month
|
Package month |
enums/multivaluemode
Package multivaluemode
|
Package multivaluemode |
enums/noderole
Package noderole
|
Package noderole |
enums/noridecompoundmode
Package noridecompoundmode
|
Package noridecompoundmode |
enums/normalization
Package normalization
|
Package normalization |
enums/normalizemethod
Package normalizemethod
|
Package normalizemethod |
enums/numericfielddataformat
Package numericfielddataformat
|
Package numericfielddataformat |
enums/onscripterror
Package onscripterror
|
Package onscripterror |
enums/operationtype
Package operationtype
|
Package operationtype |
enums/operator
Package operator
|
Package operator |
enums/optype
Package optype
|
Package optype |
enums/pagerdutycontexttype
Package pagerdutycontexttype
|
Package pagerdutycontexttype |
enums/pagerdutyeventtype
Package pagerdutyeventtype
|
Package pagerdutyeventtype |
enums/phoneticencoder
Package phoneticencoder
|
Package phoneticencoder |
enums/phoneticlanguage
Package phoneticlanguage
|
Package phoneticlanguage |
enums/phoneticnametype
Package phoneticnametype
|
Package phoneticnametype |
enums/phoneticruletype
Package phoneticruletype
|
Package phoneticruletype |
enums/policytype
Package policytype
|
Package policytype |
enums/quantifier
Package quantifier
|
Package quantifier |
enums/queryrulecriteriatype
Package queryrulecriteriatype
|
Package queryrulecriteriatype |
enums/queryruletype
Package queryruletype
|
Package queryruletype |
enums/rangerelation
Package rangerelation
|
Package rangerelation |
enums/ratemode
Package ratemode
|
Package ratemode |
enums/refresh
Package refresh
|
Package refresh |
enums/responsecontenttype
Package responsecontenttype
|
Package responsecontenttype |
enums/result
Package result
|
Package result |
enums/resultposition
Package resultposition
|
Package resultposition |
enums/routingstate
Package routingstate
|
Package routingstate |
enums/ruleaction
Package ruleaction
|
Package ruleaction |
enums/runtimefieldtype
Package runtimefieldtype
|
Package runtimefieldtype |
enums/sampleraggregationexecutionhint
Package sampleraggregationexecutionhint
|
Package sampleraggregationexecutionhint |
enums/scoremode
Package scoremode
|
Package scoremode |
enums/scriptlanguage
Package scriptlanguage
|
Package scriptlanguage |
enums/scriptsorttype
Package scriptsorttype
|
Package scriptsorttype |
enums/searchtype
Package searchtype
|
Package searchtype |
enums/segmentsortmissing
Package segmentsortmissing
|
Package segmentsortmissing |
enums/segmentsortmode
Package segmentsortmode
|
Package segmentsortmode |
enums/segmentsortorder
Package segmentsortorder
|
Package segmentsortorder |
enums/shapetype
Package shapetype
|
Package shapetype |
enums/shardroutingstate
Package shardroutingstate
|
Package shardroutingstate |
enums/shardsstatsstage
Package shardsstatsstage
|
Package shardsstatsstage |
enums/shardstoreallocation
Package shardstoreallocation
|
Package shardstoreallocation |
enums/shardstorestatus
Package shardstorestatus
|
Package shardstorestatus |
enums/shutdownstatus
Package shutdownstatus
|
Package shutdownstatus |
enums/shutdowntype
Package shutdowntype
|
Package shutdowntype |
enums/simplequerystringflag
Package simplequerystringflag
|
Package simplequerystringflag |
enums/slicescalculation
Package slicescalculation
|
Package slicescalculation |
enums/snapshotsort
Package snapshotsort
|
Package snapshotsort |
enums/snapshotupgradestate
Package snapshotupgradestate
|
Package snapshotupgradestate |
enums/snowballlanguage
Package snowballlanguage
|
Package snowballlanguage |
enums/sortmode
Package sortmode
|
Package sortmode |
enums/sortorder
Package sortorder
|
Package sortorder |
enums/sourcefieldmode
Package sourcefieldmode
|
Package sourcefieldmode |
enums/statslevel
Package statslevel
|
Package statslevel |
enums/storagetype
Package storagetype
|
Package storagetype |
enums/stringdistance
Package stringdistance
|
Package stringdistance |
enums/suggestmode
Package suggestmode
|
Package suggestmode |
enums/suggestsort
Package suggestsort
|
Package suggestsort |
enums/synonymformat
Package synonymformat
|
Package synonymformat |
enums/templateformat
Package templateformat
|
Package templateformat |
enums/termsaggregationcollectmode
Package termsaggregationcollectmode
|
Package termsaggregationcollectmode |
enums/termsaggregationexecutionhint
Package termsaggregationexecutionhint
|
Package termsaggregationexecutionhint |
enums/termvectoroption
Package termvectoroption
|
Package termvectoroption |
enums/textquerytype
Package textquerytype
|
Package textquerytype |
enums/threadtype
Package threadtype
|
Package threadtype |
enums/timeseriesmetrictype
Package timeseriesmetrictype
|
Package timeseriesmetrictype |
enums/timeunit
Package timeunit
|
Package timeunit |
enums/tokenchar
Package tokenchar
|
Package tokenchar |
enums/tokenizationtruncate
Package tokenizationtruncate
|
Package tokenizationtruncate |
enums/totalhitsrelation
Package totalhitsrelation
|
Package totalhitsrelation |
enums/trainedmodeltype
Package trainedmodeltype
|
Package trainedmodeltype |
enums/trainingpriority
Package trainingpriority
|
Package trainingpriority |
enums/translogdurability
Package translogdurability
|
Package translogdurability |
enums/ttesttype
Package ttesttype
|
Package ttesttype |
enums/type_
Package type_
|
Package type_ |
enums/unassignedinformationreason
Package unassignedinformationreason
|
Package unassignedinformationreason |
enums/useragentproperty
Package useragentproperty
|
Package useragentproperty |
enums/valuetype
Package valuetype
|
Package valuetype |
enums/versiontype
Package versiontype
|
Package versiontype |
enums/waitforactiveshardoptions
Package waitforactiveshardoptions
|
Package waitforactiveshardoptions |
enums/waitforevents
Package waitforevents
|
Package waitforevents |
enums/watchermetric
Package watchermetric
|
Package watchermetric |
enums/watcherstate
Package watcherstate
|
Package watcherstate |
enums/zerotermsquery
Package zerotermsquery
|
Package zerotermsquery |
Click to show internal directories.
Click to hide internal directories.