typedapi

package
v8.4.0-alpha.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 13, 2022 License: Apache-2.0 Imports: 402 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API struct {
	Async       Async
	Autoscaling Autoscaling
	Cat         Cat
	Ccr         Ccr
	Cluster     Cluster
	Core        Core
	Dangling    Dangling
	Enrich      Enrich
	Eql         Eql
	Features    Features
	Fleet       Fleet
	Graph       Graph
	Ilm         Ilm
	Indices     Indices
	Ingest      Ingest
	License     License
	Logstash    Logstash
	Migration   Migration
	Ml          Ml
	Nodes       Nodes
	Rollup      Rollup
	Searchable  Searchable
	Security    Security
	Shutdown    Shutdown
	Slm         Slm
	Snapshot    Snapshot
	Sql         Sql
	Ssl         Ssl
	Tasks       Tasks
	Transform   Transform
	Watcher     Watcher
	Xpack       Xpack

	// Explicitly clears the search context for a scroll.
	ClearScroll core_clear_scroll.NewClearScroll
	// Close a point in time
	ClosePointInTime core_close_point_in_time.NewClosePointInTime
	// Returns number of documents matching a query.
	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.
	Create core_create.NewCreate
	// Removes a document from the index.
	Delete core_delete.NewDelete
	// Deletes documents matching the provided query.
	DeleteByQuery core_delete_by_query.NewDeleteByQuery
	// Changes the number of requests per second for a particular Delete By Query
	// operation.
	DeleteByQueryRethrottle core_delete_by_query_rethrottle.NewDeleteByQueryRethrottle
	// Deletes a script.
	DeleteScript core_delete_script.NewDeleteScript
	// Returns information about whether a document exists in an index.
	Exists core_exists.NewExists
	// Returns information about whether a document source exists in an index.
	ExistsSource core_exists_source.NewExistsSource
	// Returns information about why a specific matches (or doesn't match) a query.
	Explain core_explain.NewExplain
	// Returns the information about the capabilities of fields among multiple
	// indices.
	FieldCaps core_field_caps.NewFieldCaps
	// Returns a document.
	Get core_get.NewGet
	// Returns a script.
	GetScript core_get_script.NewGetScript
	// Returns all script contexts.
	GetScriptContext core_get_script_context.NewGetScriptContext
	// Returns available script types, languages and contexts
	GetScriptLanguages core_get_script_languages.NewGetScriptLanguages
	// Returns the source of a document.
	GetSource core_get_source.NewGetSource
	// Creates or updates a document in an index.
	Index core_index.NewIndex
	// Returns basic information about the cluster.
	Info core_info.NewInfo
	// Performs a kNN search.
	KnnSearch core_knn_search.NewKnnSearch
	// Allows to get multiple documents in one request.
	Mget core_mget.NewMget
	// Returns multiple termvectors in one request.
	Mtermvectors core_mtermvectors.NewMtermvectors
	// Open a point in time that can be used in subsequent searches
	OpenPointInTime core_open_point_in_time.NewOpenPointInTime
	// Returns whether the cluster is running.
	Ping core_ping.NewPing
	// Creates or updates a script.
	PutScript core_put_script.NewPutScript
	// Allows to evaluate the quality of ranked search results over a set of typical
	// search queries
	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.
	Reindex core_reindex.NewReindex
	// Changes the number of requests per second for a particular Reindex operation.
	ReindexRethrottle core_reindex_rethrottle.NewReindexRethrottle
	// Allows to use the Mustache language to pre-render a search definition.
	RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate
	// Allows an arbitrary script to be executed and a result to be returned
	ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute
	// Allows to retrieve a large numbers of results from a single search request.
	Scroll core_scroll.NewScroll
	// Returns results matching a query.
	Search core_search.NewSearch
	// Searches a vector tile for geospatial values. Returns results as a binary
	// Mapbox vector tile.
	SearchMvt core_search_mvt.NewSearchMvt
	// Returns information about the indices and shards that a search request would
	// be executed against.
	SearchShards core_search_shards.NewSearchShards
	// Allows to use the Mustache language to pre-render a search definition.
	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.
	TermsEnum core_terms_enum.NewTermsEnum
	// Returns information and statistics about terms in the fields of a particular
	// document.
	Termvectors core_termvectors.NewTermvectors
	// Updates a document with a script or partial document.
	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.
	UpdateByQuery core_update_by_query.NewUpdateByQuery
	// Changes the number of requests per second for a particular Update By Query
	// operation.
	UpdateByQueryRethrottle core_update_by_query_rethrottle.NewUpdateByQueryRethrottle
}

func New

type Async

type Async 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.
	Delete async_search_delete.NewDelete
	// Retrieves the results of a previously submitted async search request given
	// its ID.
	Get async_search_get.NewGet
	// Retrieves the status of a previously submitted async search request given its
	// ID.
	Status async_search_status.NewStatus
	// Executes a search request asynchronously.
	Submit async_search_submit.NewSubmit
}

type Autoscaling

type Autoscaling struct {
	// Deletes an autoscaling policy. Designed for indirect use by ECE/ESS and ECK.
	// Direct use is not supported.
	DeleteAutoscalingPolicy autoscaling_delete_autoscaling_policy.NewDeleteAutoscalingPolicy
	// Gets the current autoscaling capacity based on the configured autoscaling
	// policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not
	// supported.
	GetAutoscalingCapacity autoscaling_get_autoscaling_capacity.NewGetAutoscalingCapacity
	// Retrieves an autoscaling policy. Designed for indirect use by ECE/ESS and
	// ECK. Direct use is not supported.
	GetAutoscalingPolicy autoscaling_get_autoscaling_policy.NewGetAutoscalingPolicy
	// Creates a new autoscaling policy. Designed for indirect use by ECE/ESS and
	// ECK. Direct use is not supported.
	PutAutoscalingPolicy autoscaling_put_autoscaling_policy.NewPutAutoscalingPolicy
}

type Cat

type Cat struct {
	// Shows information about currently configured aliases to indices including
	// filter and routing infos.
	Aliases cat_aliases.NewAliases
	// Provides a snapshot of how many shards are allocated to each data node and
	// how much disk space they are using.
	Allocation cat_allocation.NewAllocation
	// Returns information about existing component_templates templates.
	ComponentTemplates cat_component_templates.NewComponentTemplates
	// Provides quick access to the document count of the entire cluster, or
	// individual indices.
	Count cat_count.NewCount
	// Shows how much heap memory is currently being used by fielddata on every data
	// node in the cluster.
	Fielddata cat_fielddata.NewFielddata
	// Returns a concise representation of the cluster health.
	Health cat_health.NewHealth
	// Returns help for the Cat APIs.
	Help cat_help.NewHelp
	// Returns information about indices: number of primaries and replicas, document
	// counts, disk size, ...
	Indices cat_indices.NewIndices
	// Returns information about the master node.
	Master cat_master.NewMaster
	// Gets configuration and usage information about data frame analytics jobs.
	MlDataFrameAnalytics cat_ml_data_frame_analytics.NewMlDataFrameAnalytics
	// Gets configuration and usage information about datafeeds.
	MlDatafeeds cat_ml_datafeeds.NewMlDatafeeds
	// Gets configuration and usage information about anomaly detection jobs.
	MlJobs cat_ml_jobs.NewMlJobs
	// Gets configuration and usage information about inference trained models.
	MlTrainedModels cat_ml_trained_models.NewMlTrainedModels
	// Returns information about custom node attributes.
	Nodeattrs cat_nodeattrs.NewNodeattrs
	// Returns basic statistics about performance of cluster nodes.
	Nodes cat_nodes.NewNodes
	// Returns a concise representation of the cluster pending tasks.
	PendingTasks cat_pending_tasks.NewPendingTasks
	// Returns information about installed plugins across nodes node.
	Plugins cat_plugins.NewPlugins
	// Returns information about index shard recoveries, both on-going completed.
	Recovery cat_recovery.NewRecovery
	// Returns information about snapshot repositories registered in the cluster.
	Repositories cat_repositories.NewRepositories
	// Provides low-level information about the segments in the shards of an index.
	Segments cat_segments.NewSegments
	// Provides a detailed view of shard allocation on nodes.
	Shards cat_shards.NewShards
	// Returns all snapshots in a specific repository.
	Snapshots cat_snapshots.NewSnapshots
	// Returns information about the tasks currently executing on one or more nodes
	// in the cluster.
	Tasks cat_tasks.NewTasks
	// Returns information about existing templates.
	Templates cat_templates.NewTemplates
	// Returns cluster-wide thread pool statistics per node.
	// By default the active, queue and rejected statistics are returned for all
	// thread pools.
	ThreadPool cat_thread_pool.NewThreadPool
	// Gets configuration and usage information about transforms.
	Transforms cat_transforms.NewTransforms
}

type Ccr

type Ccr struct {
	// Deletes auto-follow patterns.
	DeleteAutoFollowPattern ccr_delete_auto_follow_pattern.NewDeleteAutoFollowPattern
	// Creates a new follower index configured to follow the referenced leader
	// index.
	Follow ccr_follow.NewFollow
	// Retrieves information about all follower indices, including parameters and
	// status for each follower index
	FollowInfo ccr_follow_info.NewFollowInfo
	// Retrieves follower stats. return shard-level stats about the following tasks
	// associated with each shard for the specified indices.
	FollowStats ccr_follow_stats.NewFollowStats
	// Removes the follower retention leases from the leader.
	ForgetFollower ccr_forget_follower.NewForgetFollower
	// Gets configured auto-follow patterns. Returns the specified auto-follow
	// pattern collection.
	GetAutoFollowPattern ccr_get_auto_follow_pattern.NewGetAutoFollowPattern
	// Pauses an auto-follow pattern
	PauseAutoFollowPattern ccr_pause_auto_follow_pattern.NewPauseAutoFollowPattern
	// Pauses a follower index. The follower index will not fetch any additional
	// operations from the leader index.
	PauseFollow ccr_pause_follow.NewPauseFollow
	// Creates a new named collection of auto-follow patterns against a specified
	// remote cluster. Newly created indices on the remote cluster matching any of
	// the specified patterns will be automatically configured as follower indices.
	PutAutoFollowPattern ccr_put_auto_follow_pattern.NewPutAutoFollowPattern
	// Resumes an auto-follow pattern that has been paused
	ResumeAutoFollowPattern ccr_resume_auto_follow_pattern.NewResumeAutoFollowPattern
	// Resumes a follower index that has been paused
	ResumeFollow ccr_resume_follow.NewResumeFollow
	// Gets all stats related to cross-cluster replication.
	Stats ccr_stats.NewStats
	// Stops the following task associated with a follower index and removes index
	// metadata and settings associated with cross-cluster replication.
	Unfollow ccr_unfollow.NewUnfollow
}

type Cluster

type Cluster struct {
	// Provides explanations for shard allocations in the cluster.
	AllocationExplain cluster_allocation_explain.NewAllocationExplain
	// Deletes a component template
	DeleteComponentTemplate cluster_delete_component_template.NewDeleteComponentTemplate
	// Clears cluster voting config exclusions.
	DeleteVotingConfigExclusions cluster_delete_voting_config_exclusions.NewDeleteVotingConfigExclusions
	// Returns information about whether a particular component template exist
	ExistsComponentTemplate cluster_exists_component_template.NewExistsComponentTemplate
	// Returns one or more component templates
	GetComponentTemplate cluster_get_component_template.NewGetComponentTemplate
	// Returns cluster settings.
	GetSettings cluster_get_settings.NewGetSettings
	// Returns basic information about the health of the cluster.
	Health cluster_health.NewHealth
	// Returns a list of any cluster-level changes (e.g. create index, update
	// mapping,
	// allocate or fail shard) which have not yet been executed.
	PendingTasks cluster_pending_tasks.NewPendingTasks
	// Updates the cluster voting config exclusions by node ids or node names.
	PostVotingConfigExclusions cluster_post_voting_config_exclusions.NewPostVotingConfigExclusions
	// Creates or updates a component template
	PutComponentTemplate cluster_put_component_template.NewPutComponentTemplate
	// Updates the cluster settings.
	PutSettings cluster_put_settings.NewPutSettings
	// Returns the information about configured remote clusters.
	RemoteInfo cluster_remote_info.NewRemoteInfo
	// Allows to manually change the allocation of individual shards in the cluster.
	Reroute cluster_reroute.NewReroute
	// Returns a comprehensive information about the state of the cluster.
	State cluster_state.NewState
	// Returns high-level overview of cluster statistics.
	Stats cluster_stats.NewStats
}

type Core

type Core struct {
	// Explicitly clears the search context for a scroll.
	ClearScroll core_clear_scroll.NewClearScroll
	// Close a point in time
	ClosePointInTime core_close_point_in_time.NewClosePointInTime
	// Returns number of documents matching a query.
	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.
	Create core_create.NewCreate
	// Removes a document from the index.
	Delete core_delete.NewDelete
	// Deletes documents matching the provided query.
	DeleteByQuery core_delete_by_query.NewDeleteByQuery
	// Changes the number of requests per second for a particular Delete By Query
	// operation.
	DeleteByQueryRethrottle core_delete_by_query_rethrottle.NewDeleteByQueryRethrottle
	// Deletes a script.
	DeleteScript core_delete_script.NewDeleteScript
	// Returns information about whether a document exists in an index.
	Exists core_exists.NewExists
	// Returns information about whether a document source exists in an index.
	ExistsSource core_exists_source.NewExistsSource
	// Returns information about why a specific matches (or doesn't match) a query.
	Explain core_explain.NewExplain
	// Returns the information about the capabilities of fields among multiple
	// indices.
	FieldCaps core_field_caps.NewFieldCaps
	// Returns a document.
	Get core_get.NewGet
	// Returns a script.
	GetScript core_get_script.NewGetScript
	// Returns all script contexts.
	GetScriptContext core_get_script_context.NewGetScriptContext
	// Returns available script types, languages and contexts
	GetScriptLanguages core_get_script_languages.NewGetScriptLanguages
	// Returns the source of a document.
	GetSource core_get_source.NewGetSource
	// Creates or updates a document in an index.
	Index core_index.NewIndex
	// Returns basic information about the cluster.
	Info core_info.NewInfo
	// Performs a kNN search.
	KnnSearch core_knn_search.NewKnnSearch
	// Allows to get multiple documents in one request.
	Mget core_mget.NewMget
	// Returns multiple termvectors in one request.
	Mtermvectors core_mtermvectors.NewMtermvectors
	// Open a point in time that can be used in subsequent searches
	OpenPointInTime core_open_point_in_time.NewOpenPointInTime
	// Returns whether the cluster is running.
	Ping core_ping.NewPing
	// Creates or updates a script.
	PutScript core_put_script.NewPutScript
	// Allows to evaluate the quality of ranked search results over a set of typical
	// search queries
	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.
	Reindex core_reindex.NewReindex
	// Changes the number of requests per second for a particular Reindex operation.
	ReindexRethrottle core_reindex_rethrottle.NewReindexRethrottle
	// Allows to use the Mustache language to pre-render a search definition.
	RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate
	// Allows an arbitrary script to be executed and a result to be returned
	ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute
	// Allows to retrieve a large numbers of results from a single search request.
	Scroll core_scroll.NewScroll
	// Returns results matching a query.
	Search core_search.NewSearch
	// Searches a vector tile for geospatial values. Returns results as a binary
	// Mapbox vector tile.
	SearchMvt core_search_mvt.NewSearchMvt
	// Returns information about the indices and shards that a search request would
	// be executed against.
	SearchShards core_search_shards.NewSearchShards
	// Allows to use the Mustache language to pre-render a search definition.
	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.
	TermsEnum core_terms_enum.NewTermsEnum
	// Returns information and statistics about terms in the fields of a particular
	// document.
	Termvectors core_termvectors.NewTermvectors
	// Updates a document with a script or partial document.
	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.
	UpdateByQuery core_update_by_query.NewUpdateByQuery
	// Changes the number of requests per second for a particular Update By Query
	// operation.
	UpdateByQueryRethrottle core_update_by_query_rethrottle.NewUpdateByQueryRethrottle
}

type Dangling

type Dangling struct {
	// Deletes the specified dangling index
	DeleteDanglingIndex dangling_indices_delete_dangling_index.NewDeleteDanglingIndex
	// Imports the specified dangling index
	ImportDanglingIndex dangling_indices_import_dangling_index.NewImportDanglingIndex
	// Returns all dangling indices.
	ListDanglingIndices dangling_indices_list_dangling_indices.NewListDanglingIndices
}

type Enrich

type Enrich struct {
	// Deletes an existing enrich policy and its enrich index.
	DeletePolicy enrich_delete_policy.NewDeletePolicy
	// Creates the enrich index for an existing enrich policy.
	ExecutePolicy enrich_execute_policy.NewExecutePolicy
	// Gets information about an enrich policy.
	GetPolicy enrich_get_policy.NewGetPolicy
	// Creates a new enrich policy.
	PutPolicy enrich_put_policy.NewPutPolicy
	// Gets enrich coordinator statistics and information about enrich policies that
	// are currently executing.
	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.
	Delete eql_delete.NewDelete
	// Returns async results from previously executed Event Query Language (EQL)
	// search
	Get eql_get.NewGet
	// Returns the status of a previously submitted async or stored Event Query
	// Language (EQL) search
	GetStatus eql_get_status.NewGetStatus
	// Returns results matching a query expressed in Event Query Language (EQL)
	Search eql_search.NewSearch
}

type Features

type Features struct {
	// Gets a list of features which can be included in snapshots using the
	// feature_states field when creating a snapshot
	GetFeatures features_get_features.NewGetFeatures
	// Resets the internal state of features, usually by deleting system indices
	ResetFeatures features_reset_features.NewResetFeatures
}

type Fleet

type Fleet struct {
	// Returns the current global checkpoints for an index. This API is design for
	// internal use by the fleet server project.
	GlobalCheckpoints fleet_global_checkpoints.NewGlobalCheckpoints
	// Search API where the search will only be executed after specified checkpoints
	// are available due to a refresh. This API is designed for internal use by the
	// fleet server project.
	Search fleet_search.NewSearch
}

type Graph

type Graph struct {
	// Explore extracted and summarized information about the documents and terms in
	// an index.
	Explore graph_explore.NewExplore
}

type Ilm

type Ilm struct {
	// Deletes the specified lifecycle policy definition. A currently used policy
	// cannot be deleted.
	DeleteLifecycle ilm_delete_lifecycle.NewDeleteLifecycle
	// Retrieves information about the index's current lifecycle state, such as the
	// currently executing phase, action, and step.
	ExplainLifecycle ilm_explain_lifecycle.NewExplainLifecycle
	// Returns the specified policy definition. Includes the policy version and last
	// modified date.
	GetLifecycle ilm_get_lifecycle.NewGetLifecycle
	// Retrieves the current index lifecycle management (ILM) status.
	GetStatus ilm_get_status.NewGetStatus
	// Migrates the indices and ILM policies away from custom node attribute
	// allocation routing to data tiers routing
	MigrateToDataTiers ilm_migrate_to_data_tiers.NewMigrateToDataTiers
	// Manually moves an index into the specified step and executes that step.
	MoveToStep ilm_move_to_step.NewMoveToStep
	// Creates a lifecycle policy
	PutLifecycle ilm_put_lifecycle.NewPutLifecycle
	// Removes the assigned lifecycle policy and stops managing the specified index
	RemovePolicy ilm_remove_policy.NewRemovePolicy
	// Retries executing the policy for an index that is in the ERROR step.
	Retry ilm_retry.NewRetry
	// Start the index lifecycle management (ILM) plugin.
	Start ilm_start.NewStart
	// Halts all lifecycle management operations and stops the index lifecycle
	// management (ILM) plugin
	Stop ilm_stop.NewStop
}

type Indices

type Indices struct {
	// Adds a block to an index.
	AddBlock indices_add_block.NewAddBlock
	// Performs the analysis process on a text and return the tokens breakdown of
	// the text.
	Analyze indices_analyze.NewAnalyze
	// Clears all or specific caches for one or more indices.
	ClearCache indices_clear_cache.NewClearCache
	// Clones an index
	Clone indices_clone.NewClone
	// Closes an index.
	Close indices_close.NewClose
	// Creates an index with optional settings and mappings.
	Create indices_create.NewCreate
	// Creates a data stream
	CreateDataStream indices_create_data_stream.NewCreateDataStream
	// Provides statistics on operations happening in a data stream.
	DataStreamsStats indices_data_streams_stats.NewDataStreamsStats
	// Deletes an index.
	Delete indices_delete.NewDelete
	// Deletes an alias.
	DeleteAlias indices_delete_alias.NewDeleteAlias
	// Deletes a data stream.
	DeleteDataStream indices_delete_data_stream.NewDeleteDataStream
	// Deletes an index template.
	DeleteIndexTemplate indices_delete_index_template.NewDeleteIndexTemplate
	// Deletes an index template.
	DeleteTemplate indices_delete_template.NewDeleteTemplate
	// Analyzes the disk usage of each field of an index or data stream
	DiskUsage indices_disk_usage.NewDiskUsage
	// Returns information about whether a particular index exists.
	Exists indices_exists.NewExists
	// Returns information about whether a particular alias exists.
	ExistsAlias indices_exists_alias.NewExistsAlias
	// Returns information about whether a particular index template exists.
	ExistsIndexTemplate indices_exists_index_template.NewExistsIndexTemplate
	// Returns information about whether a particular index template exists.
	ExistsTemplate indices_exists_template.NewExistsTemplate
	// Returns the field usage stats for each field of an index
	FieldUsageStats indices_field_usage_stats.NewFieldUsageStats
	// Performs the flush operation on one or more indices.
	Flush indices_flush.NewFlush
	// Performs the force merge operation on one or more indices.
	Forcemerge indices_forcemerge.NewForcemerge
	// Returns information about one or more indices.
	Get indices_get.NewGet
	// Returns an alias.
	GetAlias indices_get_alias.NewGetAlias
	// Returns data streams.
	GetDataStream indices_get_data_stream.NewGetDataStream
	// Returns mapping for one or more fields.
	GetFieldMapping indices_get_field_mapping.NewGetFieldMapping
	// Returns an index template.
	GetIndexTemplate indices_get_index_template.NewGetIndexTemplate
	// Returns mappings for one or more indices.
	GetMapping indices_get_mapping.NewGetMapping
	// Returns settings for one or more indices.
	GetSettings indices_get_settings.NewGetSettings
	// Returns an index template.
	GetTemplate indices_get_template.NewGetTemplate
	// Migrates an alias to a data stream
	MigrateToDataStream indices_migrate_to_data_stream.NewMigrateToDataStream
	// Modifies a data stream
	ModifyDataStream indices_modify_data_stream.NewModifyDataStream
	// Opens an index.
	Open indices_open.NewOpen
	// Promotes a data stream from a replicated data stream managed by CCR to a
	// regular data stream
	PromoteDataStream indices_promote_data_stream.NewPromoteDataStream
	// Creates or updates an alias.
	PutAlias indices_put_alias.NewPutAlias
	// Creates or updates an index template.
	PutIndexTemplate indices_put_index_template.NewPutIndexTemplate
	// Updates the index mappings.
	PutMapping indices_put_mapping.NewPutMapping
	// Updates the index settings.
	PutSettings indices_put_settings.NewPutSettings
	// Creates or updates an index template.
	PutTemplate indices_put_template.NewPutTemplate
	// Returns information about ongoing index shard recoveries.
	Recovery indices_recovery.NewRecovery
	// Performs the refresh operation in one or more indices.
	Refresh indices_refresh.NewRefresh
	// Reloads an index's search analyzers and their resources.
	ReloadSearchAnalyzers indices_reload_search_analyzers.NewReloadSearchAnalyzers
	// Returns information about any matching indices, aliases, and data streams
	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.
	Rollover indices_rollover.NewRollover
	// Provides low-level information about segments in a Lucene index.
	Segments indices_segments.NewSegments
	// Provides store information for shard copies of indices.
	ShardStores indices_shard_stores.NewShardStores
	// Allow to shrink an existing index into a new index with fewer primary shards.
	Shrink indices_shrink.NewShrink
	// Simulate matching the given index name against the index templates in the
	// system
	SimulateIndexTemplate indices_simulate_index_template.NewSimulateIndexTemplate
	// Simulate resolving the given template name or body
	SimulateTemplate indices_simulate_template.NewSimulateTemplate
	// Allows you to split an existing index into a new index with more primary
	// shards.
	Split indices_split.NewSplit
	// Provides statistics on operations happening in an index.
	Stats indices_stats.NewStats
	// Unfreezes an index. When a frozen index is unfrozen, the index goes through
	// the normal recovery process and becomes writeable again.
	Unfreeze indices_unfreeze.NewUnfreeze
	// Updates index aliases.
	UpdateAliases indices_update_aliases.NewUpdateAliases
	// Allows a user to validate a potentially expensive query without executing it.
	ValidateQuery indices_validate_query.NewValidateQuery
}

type Ingest

type Ingest struct {
	// Deletes a pipeline.
	DeletePipeline ingest_delete_pipeline.NewDeletePipeline
	// Returns statistical information about geoip databases
	GeoIpStats ingest_geo_ip_stats.NewGeoIpStats
	// Returns a pipeline.
	GetPipeline ingest_get_pipeline.NewGetPipeline
	// Returns a list of the built-in patterns.
	ProcessorGrok ingest_processor_grok.NewProcessorGrok
	// Creates or updates a pipeline.
	PutPipeline ingest_put_pipeline.NewPutPipeline
	// Allows to simulate a pipeline with example documents.
	Simulate ingest_simulate.NewSimulate
}

type License

type License struct {
	// Deletes licensing information for the cluster
	Delete license_delete.NewDelete
	// Retrieves licensing information for the cluster
	Get license_get.NewGet
	// Retrieves information about the status of the basic license.
	GetBasicStatus license_get_basic_status.NewGetBasicStatus
	// Retrieves information about the status of the trial license.
	GetTrialStatus license_get_trial_status.NewGetTrialStatus
	// Updates the license for the cluster.
	Post license_post.NewPost
	// Starts an indefinite basic license.
	PostStartBasic license_post_start_basic.NewPostStartBasic
	// starts a limited time trial license.
	PostStartTrial license_post_start_trial.NewPostStartTrial
}

type Logstash

type Logstash struct {
	// Deletes Logstash Pipelines used by Central Management
	DeletePipeline logstash_delete_pipeline.NewDeletePipeline
	// Retrieves Logstash Pipelines used by Central Management
	GetPipeline logstash_get_pipeline.NewGetPipeline
	// Adds and updates Logstash Pipelines used for Central Management
	PutPipeline logstash_put_pipeline.NewPutPipeline
}

type Migration

type Migration struct {
	// Retrieves information about different cluster, node, and index level settings
	// that use deprecated features that will be removed or changed in the next
	// major version.
	Deprecations migration_deprecations.NewDeprecations
	// Find out whether system features need to be upgraded or not
	GetFeatureUpgradeStatus migration_get_feature_upgrade_status.NewGetFeatureUpgradeStatus
	// Begin upgrades for system features
	PostFeatureUpgrade migration_post_feature_upgrade.NewPostFeatureUpgrade
}

type Ml

type Ml struct {
	// Closes one or more anomaly detection jobs. A job can be opened and closed
	// multiple times throughout its lifecycle.
	CloseJob ml_close_job.NewCloseJob
	// Deletes a calendar.
	DeleteCalendar ml_delete_calendar.NewDeleteCalendar
	// Deletes scheduled events from a calendar.
	DeleteCalendarEvent ml_delete_calendar_event.NewDeleteCalendarEvent
	// Deletes anomaly detection jobs from a calendar.
	DeleteCalendarJob ml_delete_calendar_job.NewDeleteCalendarJob
	// Deletes an existing data frame analytics job.
	DeleteDataFrameAnalytics ml_delete_data_frame_analytics.NewDeleteDataFrameAnalytics
	// Deletes an existing datafeed.
	DeleteDatafeed ml_delete_datafeed.NewDeleteDatafeed
	// Deletes expired and unused machine learning data.
	DeleteExpiredData ml_delete_expired_data.NewDeleteExpiredData
	// Deletes a filter.
	DeleteFilter ml_delete_filter.NewDeleteFilter
	// Deletes forecasts from a machine learning job.
	DeleteForecast ml_delete_forecast.NewDeleteForecast
	// Deletes an existing anomaly detection job.
	DeleteJob ml_delete_job.NewDeleteJob
	// Deletes an existing model snapshot.
	DeleteModelSnapshot ml_delete_model_snapshot.NewDeleteModelSnapshot
	// Deletes an existing trained inference model that is currently not referenced
	// by an ingest pipeline.
	DeleteTrainedModel ml_delete_trained_model.NewDeleteTrainedModel
	// Deletes a model alias that refers to the trained model
	DeleteTrainedModelAlias ml_delete_trained_model_alias.NewDeleteTrainedModelAlias
	// Estimates the model memory
	EstimateModelMemory ml_estimate_model_memory.NewEstimateModelMemory
	// Evaluates the data frame analytics for an annotated index.
	EvaluateDataFrame ml_evaluate_data_frame.NewEvaluateDataFrame
	// Explains a data frame analytics config.
	ExplainDataFrameAnalytics ml_explain_data_frame_analytics.NewExplainDataFrameAnalytics
	// Forces any buffered data to be processed by the job.
	FlushJob ml_flush_job.NewFlushJob
	// Predicts the future behavior of a time series by using its historical
	// behavior.
	Forecast ml_forecast.NewForecast
	// Retrieves anomaly detection job results for one or more buckets.
	GetBuckets ml_get_buckets.NewGetBuckets
	// Retrieves information about the scheduled events in calendars.
	GetCalendarEvents ml_get_calendar_events.NewGetCalendarEvents
	// Retrieves configuration information for calendars.
	GetCalendars ml_get_calendars.NewGetCalendars
	// Retrieves anomaly detection job results for one or more categories.
	GetCategories ml_get_categories.NewGetCategories
	// Retrieves configuration information for data frame analytics jobs.
	GetDataFrameAnalytics ml_get_data_frame_analytics.NewGetDataFrameAnalytics
	// Retrieves usage information for data frame analytics jobs.
	GetDataFrameAnalyticsStats ml_get_data_frame_analytics_stats.NewGetDataFrameAnalyticsStats
	// Retrieves usage information for datafeeds.
	GetDatafeedStats ml_get_datafeed_stats.NewGetDatafeedStats
	// Retrieves configuration information for datafeeds.
	GetDatafeeds ml_get_datafeeds.NewGetDatafeeds
	// Retrieves filters.
	GetFilters ml_get_filters.NewGetFilters
	// Retrieves anomaly detection job results for one or more influencers.
	GetInfluencers ml_get_influencers.NewGetInfluencers
	// Retrieves usage information for anomaly detection jobs.
	GetJobStats ml_get_job_stats.NewGetJobStats
	// Retrieves configuration information for anomaly detection jobs.
	GetJobs ml_get_jobs.NewGetJobs
	// Returns information on how ML is using memory.
	GetMemoryStats ml_get_memory_stats.NewGetMemoryStats
	// Gets stats for anomaly detection job model snapshot upgrades that are in
	// progress.
	GetModelSnapshotUpgradeStats ml_get_model_snapshot_upgrade_stats.NewGetModelSnapshotUpgradeStats
	// Retrieves information about model snapshots.
	GetModelSnapshots ml_get_model_snapshots.NewGetModelSnapshots
	// Retrieves overall bucket results that summarize the bucket results of
	// multiple anomaly detection jobs.
	GetOverallBuckets ml_get_overall_buckets.NewGetOverallBuckets
	// Retrieves anomaly records for an anomaly detection job.
	GetRecords ml_get_records.NewGetRecords
	// Retrieves configuration information for a trained inference model.
	GetTrainedModels ml_get_trained_models.NewGetTrainedModels
	// Retrieves usage information for trained inference models.
	GetTrainedModelsStats ml_get_trained_models_stats.NewGetTrainedModelsStats
	// Evaluate a trained model.
	InferTrainedModel ml_infer_trained_model.NewInferTrainedModel
	// Returns defaults and limits used by machine learning.
	Info ml_info.NewInfo
	// Opens one or more anomaly detection jobs.
	OpenJob ml_open_job.NewOpenJob
	// Posts scheduled events in a calendar.
	PostCalendarEvents ml_post_calendar_events.NewPostCalendarEvents
	// Previews that will be analyzed given a data frame analytics config.
	PreviewDataFrameAnalytics ml_preview_data_frame_analytics.NewPreviewDataFrameAnalytics
	// Previews a datafeed.
	PreviewDatafeed ml_preview_datafeed.NewPreviewDatafeed
	// Instantiates a calendar.
	PutCalendar ml_put_calendar.NewPutCalendar
	// Adds an anomaly detection job to a calendar.
	PutCalendarJob ml_put_calendar_job.NewPutCalendarJob
	// Instantiates a data frame analytics job.
	PutDataFrameAnalytics ml_put_data_frame_analytics.NewPutDataFrameAnalytics
	// Instantiates a datafeed.
	PutDatafeed ml_put_datafeed.NewPutDatafeed
	// Instantiates a filter.
	PutFilter ml_put_filter.NewPutFilter
	// Instantiates an anomaly detection job.
	PutJob ml_put_job.NewPutJob
	// Creates an inference trained model.
	PutTrainedModel ml_put_trained_model.NewPutTrainedModel
	// Creates a new model alias (or reassigns an existing one) to refer to the
	// trained model
	PutTrainedModelAlias ml_put_trained_model_alias.NewPutTrainedModelAlias
	// Creates part of a trained model definition
	PutTrainedModelDefinitionPart ml_put_trained_model_definition_part.NewPutTrainedModelDefinitionPart
	// Creates a trained model vocabulary
	PutTrainedModelVocabulary ml_put_trained_model_vocabulary.NewPutTrainedModelVocabulary
	// Resets an existing anomaly detection job.
	ResetJob ml_reset_job.NewResetJob
	// Reverts to a specific snapshot.
	RevertModelSnapshot ml_revert_model_snapshot.NewRevertModelSnapshot
	// Sets a cluster wide upgrade_mode setting that prepares machine learning
	// indices for an upgrade.
	SetUpgradeMode ml_set_upgrade_mode.NewSetUpgradeMode
	// Starts a data frame analytics job.
	StartDataFrameAnalytics ml_start_data_frame_analytics.NewStartDataFrameAnalytics
	// Starts one or more datafeeds.
	StartDatafeed ml_start_datafeed.NewStartDatafeed
	// Start a trained model deployment.
	StartTrainedModelDeployment ml_start_trained_model_deployment.NewStartTrainedModelDeployment
	// Stops one or more data frame analytics jobs.
	StopDataFrameAnalytics ml_stop_data_frame_analytics.NewStopDataFrameAnalytics
	// Stops one or more datafeeds.
	StopDatafeed ml_stop_datafeed.NewStopDatafeed
	// Stop a trained model deployment.
	StopTrainedModelDeployment ml_stop_trained_model_deployment.NewStopTrainedModelDeployment
	// Updates certain properties of a data frame analytics job.
	UpdateDataFrameAnalytics ml_update_data_frame_analytics.NewUpdateDataFrameAnalytics
	// Updates certain properties of a datafeed.
	UpdateDatafeed ml_update_datafeed.NewUpdateDatafeed
	// Updates the description of a filter, adds items, or removes items.
	UpdateFilter ml_update_filter.NewUpdateFilter
	// Updates certain properties of an anomaly detection job.
	UpdateJob ml_update_job.NewUpdateJob
	// Updates certain properties of a snapshot.
	UpdateModelSnapshot ml_update_model_snapshot.NewUpdateModelSnapshot
	// Upgrades a given job snapshot to the current major version.
	UpgradeJobSnapshot ml_upgrade_job_snapshot.NewUpgradeJobSnapshot
	// Validates an anomaly detection job.
	Validate ml_validate.NewValidate
	// Validates an anomaly detection detector.
	ValidateDetector ml_validate_detector.NewValidateDetector
}

type Nodes

type Nodes struct {
	// Removes the archived repositories metering information present in the
	// cluster.
	ClearRepositoriesMeteringArchive nodes_clear_repositories_metering_archive.NewClearRepositoriesMeteringArchive
	// Returns cluster repositories metering information.
	GetRepositoriesMeteringInfo nodes_get_repositories_metering_info.NewGetRepositoriesMeteringInfo
	// Returns information about hot threads on each node in the cluster.
	HotThreads nodes_hot_threads.NewHotThreads
	// Returns information about nodes in the cluster.
	Info nodes_info.NewInfo
	// Reloads secure settings.
	ReloadSecureSettings nodes_reload_secure_settings.NewReloadSecureSettings
	// Returns statistical information about nodes in the cluster.
	Stats nodes_stats.NewStats
	// Returns low-level information about REST actions usage on nodes.
	Usage nodes_usage.NewUsage
}

type Rollup

type Rollup struct {
	// Deletes an existing rollup job.
	DeleteJob rollup_delete_job.NewDeleteJob
	// Retrieves the configuration, stats, and status of rollup jobs.
	GetJobs rollup_get_jobs.NewGetJobs
	// Returns the capabilities of any rollup jobs that have been configured for a
	// specific index or index pattern.
	GetRollupCaps rollup_get_rollup_caps.NewGetRollupCaps
	// Returns the rollup capabilities of all jobs inside of a rollup index (e.g.
	// the index where rollup data is stored).
	GetRollupIndexCaps rollup_get_rollup_index_caps.NewGetRollupIndexCaps
	// Creates a rollup job.
	PutJob rollup_put_job.NewPutJob
	// Rollup an index
	Rollup rollup_rollup.NewRollup
	// Enables searching rolled-up data using the standard query DSL.
	RollupSearch rollup_rollup_search.NewRollupSearch
	// Starts an existing, stopped rollup job.
	StartJob rollup_start_job.NewStartJob
	// Stops an existing, started rollup job.
	StopJob rollup_stop_job.NewStopJob
}

type Searchable

type Searchable struct {
	// Retrieve node-level cache statistics about searchable snapshots.
	CacheStats searchable_snapshots_cache_stats.NewCacheStats
	// Clear the cache of searchable snapshots.
	ClearCache searchable_snapshots_clear_cache.NewClearCache
	// Mount a snapshot as a searchable index.
	Mount searchable_snapshots_mount.NewMount
	// Retrieve shard-level statistics about searchable snapshots.
	Stats searchable_snapshots_stats.NewStats
}

type Security

type Security struct {
	// Creates or updates the user profile on behalf of another user.
	ActivateUserProfile security_activate_user_profile.NewActivateUserProfile
	// Enables authentication as a user and retrieve information about the
	// authenticated user.
	Authenticate security_authenticate.NewAuthenticate
	// Changes the passwords of users in the native realm and built-in users.
	ChangePassword security_change_password.NewChangePassword
	// Clear a subset or all entries from the API key cache.
	ClearApiKeyCache security_clear_api_key_cache.NewClearApiKeyCache
	// Evicts application privileges from the native application privileges cache.
	ClearCachedPrivileges security_clear_cached_privileges.NewClearCachedPrivileges
	// Evicts users from the user cache. Can completely clear the cache or evict
	// specific users.
	ClearCachedRealms security_clear_cached_realms.NewClearCachedRealms
	// Evicts roles from the native role cache.
	ClearCachedRoles security_clear_cached_roles.NewClearCachedRoles
	// Evicts tokens from the service account token caches.
	ClearCachedServiceTokens security_clear_cached_service_tokens.NewClearCachedServiceTokens
	// Creates an API key for access without requiring basic authentication.
	CreateApiKey security_create_api_key.NewCreateApiKey
	// Creates a service account token for access without requiring basic
	// authentication.
	CreateServiceToken security_create_service_token.NewCreateServiceToken
	// Removes application privileges.
	DeletePrivileges security_delete_privileges.NewDeletePrivileges
	// Removes roles in the native realm.
	DeleteRole security_delete_role.NewDeleteRole
	// Removes role mappings.
	DeleteRoleMapping security_delete_role_mapping.NewDeleteRoleMapping
	// Deletes a service account token.
	DeleteServiceToken security_delete_service_token.NewDeleteServiceToken
	// Deletes users from the native realm.
	DeleteUser security_delete_user.NewDeleteUser
	// Disables users in the native realm.
	DisableUser security_disable_user.NewDisableUser
	// Disables a user profile so it's not visible in user profile searches.
	DisableUserProfile security_disable_user_profile.NewDisableUserProfile
	// Enables users in the native realm.
	EnableUser security_enable_user.NewEnableUser
	// Enables a user profile so it's visible in user profile searches.
	EnableUserProfile security_enable_user_profile.NewEnableUserProfile
	// Allows a kibana instance to configure itself to communicate with a secured
	// elasticsearch cluster.
	EnrollKibana security_enroll_kibana.NewEnrollKibana
	// Allows a new node to enroll to an existing cluster with security enabled.
	EnrollNode security_enroll_node.NewEnrollNode
	// Retrieves information for one or more API keys.
	GetApiKey security_get_api_key.NewGetApiKey
	// Retrieves the list of cluster privileges and index privileges that are
	// available in this version of Elasticsearch.
	GetBuiltinPrivileges security_get_builtin_privileges.NewGetBuiltinPrivileges
	// Retrieves application privileges.
	GetPrivileges security_get_privileges.NewGetPrivileges
	// Retrieves roles in the native realm.
	GetRole security_get_role.NewGetRole
	// Retrieves role mappings.
	GetRoleMapping security_get_role_mapping.NewGetRoleMapping
	// Retrieves information about service accounts.
	GetServiceAccounts security_get_service_accounts.NewGetServiceAccounts
	// Retrieves information of all service credentials for a service account.
	GetServiceCredentials security_get_service_credentials.NewGetServiceCredentials
	// Creates a bearer token for access without requiring basic authentication.
	GetToken security_get_token.NewGetToken
	// Retrieves information about users in the native realm and built-in users.
	GetUser security_get_user.NewGetUser
	// Retrieves security privileges for the logged in user.
	GetUserPrivileges security_get_user_privileges.NewGetUserPrivileges
	// Retrieves user profile for the given unique ID.
	GetUserProfile security_get_user_profile.NewGetUserProfile
	// Creates an API key on behalf of another user.
	GrantApiKey security_grant_api_key.NewGrantApiKey
	// Determines whether the specified user has a specified list of privileges.
	HasPrivileges security_has_privileges.NewHasPrivileges
	// Determines whether the users associated with the specified profile IDs have
	// all the requested privileges.
	HasPrivilegesUserProfile security_has_privileges_user_profile.NewHasPrivilegesUserProfile
	// Invalidates one or more API keys.
	InvalidateApiKey security_invalidate_api_key.NewInvalidateApiKey
	// Invalidates one or more access tokens or refresh tokens.
	InvalidateToken security_invalidate_token.NewInvalidateToken
	// Exchanges an OpenID Connection authentication response message for an
	// Elasticsearch access token and refresh token pair
	OidcAuthenticate security_oidc_authenticate.NewOidcAuthenticate
	// Invalidates a refresh token and access token that was generated from the
	// OpenID Connect Authenticate API
	OidcLogout security_oidc_logout.NewOidcLogout
	// Creates an OAuth 2.0 authentication request as a URL string
	OidcPrepareAuthentication security_oidc_prepare_authentication.NewOidcPrepareAuthentication
	// Adds or updates application privileges.
	PutPrivileges security_put_privileges.NewPutPrivileges
	// Adds and updates roles in the native realm.
	PutRole security_put_role.NewPutRole
	// Creates and updates role mappings.
	PutRoleMapping security_put_role_mapping.NewPutRoleMapping
	// Adds and updates users in the native realm. These users are commonly referred
	// to as native users.
	PutUser security_put_user.NewPutUser
	// Retrieves information for API keys using a subset of query DSL
	QueryApiKeys security_query_api_keys.NewQueryApiKeys
	// Exchanges a SAML Response message for an Elasticsearch access token and
	// refresh token pair
	SamlAuthenticate security_saml_authenticate.NewSamlAuthenticate
	// Verifies the logout response sent from the SAML IdP
	SamlCompleteLogout security_saml_complete_logout.NewSamlCompleteLogout
	// Consumes a SAML LogoutRequest
	SamlInvalidate security_saml_invalidate.NewSamlInvalidate
	// Invalidates an access token and a refresh token that were generated via the
	// SAML Authenticate API
	SamlLogout security_saml_logout.NewSamlLogout
	// Creates a SAML authentication request
	SamlPrepareAuthentication security_saml_prepare_authentication.NewSamlPrepareAuthentication
	// Generates SAML metadata for the Elastic stack SAML 2.0 Service Provider
	SamlServiceProviderMetadata security_saml_service_provider_metadata.NewSamlServiceProviderMetadata
	// Get suggestions for user profiles that match specified search criteria.
	SuggestUserProfiles security_suggest_user_profiles.NewSuggestUserProfiles
	// Update application specific data for the user profile of the given unique ID.
	UpdateUserProfileData security_update_user_profile_data.NewUpdateUserProfileData
}

type Shutdown

type Shutdown struct {
	// Removes a node from the shutdown list. Designed for indirect use by ECE/ESS
	// and ECK. Direct use is not supported.
	DeleteNode shutdown_delete_node.NewDeleteNode
	// Retrieve status of a node or nodes that are currently marked as shutting
	// down. Designed for indirect use by ECE/ESS and ECK. Direct use is not
	// supported.
	GetNode shutdown_get_node.NewGetNode
	// Adds a node to be shut down. Designed for indirect use by ECE/ESS and ECK.
	// Direct use is not supported.
	PutNode shutdown_put_node.NewPutNode
}

type Slm

type Slm struct {
	// Deletes an existing snapshot lifecycle policy.
	DeleteLifecycle slm_delete_lifecycle.NewDeleteLifecycle
	// Immediately creates a snapshot according to the lifecycle policy, without
	// waiting for the scheduled time.
	ExecuteLifecycle slm_execute_lifecycle.NewExecuteLifecycle
	// Deletes any snapshots that are expired according to the policy's retention
	// rules.
	ExecuteRetention slm_execute_retention.NewExecuteRetention
	// Retrieves one or more snapshot lifecycle policy definitions and information
	// about the latest snapshot attempts.
	GetLifecycle slm_get_lifecycle.NewGetLifecycle
	// Returns global and policy-level statistics about actions taken by snapshot
	// lifecycle management.
	GetStats slm_get_stats.NewGetStats
	// Retrieves the status of snapshot lifecycle management (SLM).
	GetStatus slm_get_status.NewGetStatus
	// Creates or updates a snapshot lifecycle policy.
	PutLifecycle slm_put_lifecycle.NewPutLifecycle
	// Turns on snapshot lifecycle management (SLM).
	Start slm_start.NewStart
	// Turns off snapshot lifecycle management (SLM).
	Stop slm_stop.NewStop
}

type Snapshot

type Snapshot struct {
	// Removes stale data from repository.
	CleanupRepository snapshot_cleanup_repository.NewCleanupRepository
	// Clones indices from one snapshot into another snapshot in the same
	// repository.
	Clone snapshot_clone.NewClone
	// Creates a snapshot in a repository.
	Create snapshot_create.NewCreate
	// Creates a repository.
	CreateRepository snapshot_create_repository.NewCreateRepository
	// Deletes one or more snapshots.
	Delete snapshot_delete.NewDelete
	// Deletes a repository.
	DeleteRepository snapshot_delete_repository.NewDeleteRepository
	// Returns information about a snapshot.
	Get snapshot_get.NewGet
	// Returns information about a repository.
	GetRepository snapshot_get_repository.NewGetRepository
	// Restores a snapshot.
	Restore snapshot_restore.NewRestore
	// Returns information about the status of a snapshot.
	Status snapshot_status.NewStatus
	// Verifies a repository.
	VerifyRepository snapshot_verify_repository.NewVerifyRepository
}

type Sql

type Sql struct {
	// Clears the SQL cursor
	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.
	DeleteAsync sql_delete_async.NewDeleteAsync
	// Returns the current status and available results for an async SQL search or
	// stored synchronous SQL search
	GetAsync sql_get_async.NewGetAsync
	// Returns the current status of an async SQL search or a stored synchronous SQL
	// search
	GetAsyncStatus sql_get_async_status.NewGetAsyncStatus
	// Executes a SQL request
	Query sql_query.NewQuery
	// Translates SQL into Elasticsearch queries
	Translate sql_translate.NewTranslate
}

type Ssl

type Ssl struct {
	// Retrieves information about the X.509 certificates used to encrypt
	// communications in the cluster.
	Certificates ssl_certificates.NewCertificates
}

type Tasks

type Tasks struct {
	// Cancels a task, if it can be cancelled through an API.
	Cancel tasks_cancel.NewCancel
	// Returns information about a task.
	Get tasks_get.NewGet
	// Returns a list of tasks.
	List tasks_list.NewList
}

type Transform

type Transform struct {
	// Deletes an existing transform.
	DeleteTransform transform_delete_transform.NewDeleteTransform
	// Retrieves configuration information for transforms.
	GetTransform transform_get_transform.NewGetTransform
	// Retrieves usage information for transforms.
	GetTransformStats transform_get_transform_stats.NewGetTransformStats
	// Previews a transform.
	PreviewTransform transform_preview_transform.NewPreviewTransform
	// Instantiates a transform.
	PutTransform transform_put_transform.NewPutTransform
	// Resets an existing transform.
	ResetTransform transform_reset_transform.NewResetTransform
	// Starts one or more transforms.
	StartTransform transform_start_transform.NewStartTransform
	// Stops one or more transforms.
	StopTransform transform_stop_transform.NewStopTransform
	// Updates certain properties of a transform.
	UpdateTransform transform_update_transform.NewUpdateTransform
	// Upgrades all transforms.
	UpgradeTransforms transform_upgrade_transforms.NewUpgradeTransforms
}

type Watcher

type Watcher struct {
	// Acknowledges a watch, manually throttling the execution of the watch's
	// actions.
	AckWatch watcher_ack_watch.NewAckWatch
	// Activates a currently inactive watch.
	ActivateWatch watcher_activate_watch.NewActivateWatch
	// Deactivates a currently active watch.
	DeactivateWatch watcher_deactivate_watch.NewDeactivateWatch
	// Removes a watch from Watcher.
	DeleteWatch watcher_delete_watch.NewDeleteWatch
	// Forces the execution of a stored watch.
	ExecuteWatch watcher_execute_watch.NewExecuteWatch
	// Retrieves a watch by its ID.
	GetWatch watcher_get_watch.NewGetWatch
	// Creates a new watch, or updates an existing one.
	PutWatch watcher_put_watch.NewPutWatch
	// Retrieves stored watches.
	QueryWatches watcher_query_watches.NewQueryWatches
	// Starts Watcher if it is not already running.
	Start watcher_start.NewStart
	// Retrieves the current Watcher metrics.
	Stats watcher_stats.NewStats
	// Stops Watcher if it is running.
	Stop watcher_stop.NewStop
}

type Xpack

type Xpack struct {
	// Retrieves information about the installed X-Pack features.
	Info xpack_info.NewInfo
	// Retrieves usage information about the installed X-Pack features.
	Usage xpack_usage.NewUsage
}

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.
autoscaling
deleteautoscalingpolicy
Deletes an autoscaling policy.
Deletes an autoscaling policy.
getautoscalingcapacity
Gets the current autoscaling capacity based on the configured autoscaling policy.
Gets the current autoscaling capacity based on the configured autoscaling policy.
getautoscalingpolicy
Retrieves an autoscaling policy.
Retrieves an autoscaling policy.
putautoscalingpolicy
Creates a new autoscaling policy.
Creates a new autoscaling policy.
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.
allocation
Provides a snapshot of how many shards are allocated to each data node and how much disk space they are using.
Provides a snapshot of how many shards are allocated to each data node and how much disk space they are using.
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.
fielddata
Shows how much heap memory is currently being used by fielddata on every data node in the cluster.
Shows how much heap memory is currently being used by fielddata on every data node in the cluster.
health
Returns a concise representation of the cluster health.
Returns a concise representation of the cluster health.
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, ...
master
Returns information about the master node.
Returns information about the master node.
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.
nodeattrs
Returns information about custom node attributes.
Returns information about custom node attributes.
nodes
Returns basic statistics about performance of cluster nodes.
Returns basic statistics about performance of cluster nodes.
pendingtasks
Returns a concise representation of the cluster pending tasks.
Returns a concise representation of the cluster pending tasks.
plugins
Returns information about installed plugins across nodes node.
Returns information about installed plugins across nodes node.
recovery
Returns information about index shard recoveries, both on-going completed.
Returns information about index shard recoveries, both on-going completed.
repositories
Returns information about snapshot repositories registered in the cluster.
Returns information about snapshot repositories registered in the cluster.
segments
Provides low-level information about the segments in the shards of an index.
Provides low-level information about the segments in the shards of an index.
shards
Provides a detailed view of shard allocation on nodes.
Provides a detailed view of shard allocation on nodes.
snapshots
Returns all snapshots in a specific repository.
Returns all snapshots in a specific repository.
tasks
Returns information about the tasks currently executing on one or more nodes in the cluster.
Returns information about the tasks currently executing on one or more nodes in the cluster.
templates
Returns information about existing templates.
Returns information about existing templates.
threadpool
Returns cluster-wide thread pool statistics per node.
Returns cluster-wide thread pool statistics per node.
transforms
Gets configuration and usage information about transforms.
Gets configuration and usage information about transforms.
ccr
deleteautofollowpattern
Deletes auto-follow patterns.
Deletes auto-follow patterns.
follow
Creates a new follower index configured to follow the referenced leader index.
Creates a new follower index configured to follow the referenced leader index.
followinfo
Retrieves information about all follower indices, including parameters and status for each follower index
Retrieves information about all follower indices, including parameters and status for each follower index
followstats
Retrieves follower stats.
Retrieves follower stats.
forgetfollower
Removes the follower retention leases from the leader.
Removes the follower retention leases from the leader.
getautofollowpattern
Gets configured auto-follow patterns.
Gets configured auto-follow patterns.
pauseautofollowpattern
Pauses an auto-follow pattern
Pauses an auto-follow pattern
pausefollow
Pauses a follower index.
Pauses a follower index.
putautofollowpattern
Creates a new named collection of auto-follow patterns against a specified remote cluster.
Creates a new named collection of auto-follow patterns against a specified remote cluster.
resumeautofollowpattern
Resumes an auto-follow pattern that has been paused
Resumes an auto-follow pattern that has been paused
resumefollow
Resumes a follower index that has been paused
Resumes a follower index that has been paused
stats
Gets all stats related to cross-cluster replication.
Gets all stats related to cross-cluster replication.
unfollow
Stops the following task associated with a follower index and removes index metadata and settings associated with cross-cluster replication.
Stops the following task associated with a follower index and removes index metadata and settings associated with cross-cluster replication.
cluster
allocationexplain
Provides explanations for shard allocations in the cluster.
Provides explanations for shard allocations in the cluster.
deletecomponenttemplate
Deletes a component template
Deletes a component template
deletevotingconfigexclusions
Clears cluster voting config exclusions.
Clears cluster voting config exclusions.
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
getsettings
Returns cluster settings.
Returns cluster settings.
health
Returns basic information about the health of the cluster.
Returns basic information about the health of the cluster.
pendingtasks
Returns a list of any cluster-level changes (e.g.
Returns a list of any cluster-level changes (e.g.
postvotingconfigexclusions
Updates the cluster voting config exclusions by node ids or node names.
Updates the cluster voting config exclusions by node ids or node names.
putcomponenttemplate
Creates or updates a component template
Creates or updates a component template
putsettings
Updates the cluster settings.
Updates the cluster settings.
remoteinfo
Returns the information about configured remote clusters.
Returns the information about configured remote clusters.
reroute
Allows to manually change the allocation of individual shards in the cluster.
Allows to manually change the allocation of individual shards in the cluster.
state
Returns a comprehensive information about the state of the cluster.
Returns a comprehensive information about the state of the cluster.
stats
Returns high-level overview of cluster statistics.
Returns high-level overview of cluster statistics.
core
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.
deletebyqueryrethrottle
Changes the number of requests per second for a particular Delete By Query operation.
Changes the number of requests per second for a particular Delete By Query operation.
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.
getscriptcontext
Returns all script contexts.
Returns all script contexts.
getscriptlanguages
Returns available script types, languages and contexts
Returns available script types, languages and contexts
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.
knnsearch
Performs a kNN search.
Performs a kNN search.
mget
Allows to get multiple documents in one request.
Allows to get multiple documents 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.
reindexrethrottle
Changes the number of requests per second for a particular Reindex operation.
Changes the number of requests per second for a particular Reindex operation.
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.
searchshards
Returns information about the indices and shards that a search request would be executed against.
Returns information about the indices and shards that a search request would be executed against.
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.
updatebyqueryrethrottle
Changes the number of requests per second for a particular Update By Query operation.
Changes the number of requests per second for a particular Update By Query operation.
danglingindices
deletedanglingindex
Deletes the specified dangling index
Deletes the specified dangling index
importdanglingindex
Imports the specified dangling index
Imports the specified dangling index
listdanglingindices
Returns all dangling indices.
Returns all dangling indices.
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)
features
getfeatures
Gets a list of features which can be included in snapshots using the feature_states field when creating a snapshot
Gets a list of features which can be included in snapshots using the feature_states field when creating a snapshot
resetfeatures
Resets the internal state of features, usually by deleting system indices
Resets the internal state of features, usually by deleting system indices
fleet
globalcheckpoints
Returns the current global checkpoints for an index.
Returns the current global checkpoints for an index.
search
Search API where the search will only be executed after specified checkpoints are available due to a refresh.
Search API where the search will only be executed after specified checkpoints are available due to a refresh.
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.
ilm
deletelifecycle
Deletes the specified lifecycle policy definition.
Deletes the specified lifecycle policy definition.
explainlifecycle
Retrieves information about the index's current lifecycle state, such as the currently executing phase, action, and step.
Retrieves information about the index's current lifecycle state, such as the currently executing phase, action, and step.
getlifecycle
Returns the specified policy definition.
Returns the specified policy definition.
getstatus
Retrieves the current index lifecycle management (ILM) status.
Retrieves the current index lifecycle management (ILM) status.
migratetodatatiers
Migrates the indices and ILM policies away from custom node attribute allocation routing to data tiers routing
Migrates the indices and ILM policies away from custom node attribute allocation routing to data tiers routing
movetostep
Manually moves an index into the specified step and executes that step.
Manually moves an index into the specified step and executes that step.
putlifecycle
Creates a lifecycle policy
Creates a lifecycle policy
removepolicy
Removes the assigned lifecycle policy and stops managing the specified index
Removes the assigned lifecycle policy and stops managing the specified index
retry
Retries executing the policy for an index that is in the ERROR step.
Retries executing the policy for an index that is in the ERROR step.
start
Start the index lifecycle management (ILM) plugin.
Start the index lifecycle management (ILM) plugin.
stop
Halts all lifecycle management operations and stops the index lifecycle management (ILM) plugin
Halts all lifecycle management operations and stops the index lifecycle management (ILM) plugin
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.
clearcache
Clears all or specific caches for one or more indices.
Clears all or specific caches for one or more indices.
clone
Clones an index
Clones an index
close
Closes an index.
Closes an index.
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.
deletedatastream
Deletes a data stream.
Deletes a data stream.
deleteindextemplate
Deletes an index template.
Deletes an index template.
deletetemplate
Deletes an index template.
Deletes an index template.
diskusage
Analyzes the disk usage of each field of an index or data stream
Analyzes the disk usage of each field of an index or data stream
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.
existstemplate
Returns information about whether a particular index template exists.
Returns information about whether a particular index template exists.
fieldusagestats
Returns the field usage stats for each field of an index
Returns the field usage stats for each field of an index
flush
Performs the flush operation on one or more indices.
Performs the flush operation on one or more indices.
forcemerge
Performs the force merge operation on one or more indices.
Performs the force merge operation on one or more indices.
get
Returns information about one or more indices.
Returns information about one or more indices.
getalias
Returns an alias.
Returns an alias.
getdatastream
Returns data streams.
Returns data streams.
getfieldmapping
Returns mapping for one or more fields.
Returns mapping for one or more fields.
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.
gettemplate
Returns an index template.
Returns an index template.
migratetodatastream
Migrates an alias to a data stream
Migrates an alias to a data stream
modifydatastream
Modifies a data stream
Modifies a data stream
open
Opens an index.
Opens an index.
promotedatastream
Promotes a data stream from a replicated data stream managed by CCR to a regular data stream
Promotes a data stream from a replicated data stream managed by CCR to a regular data stream
putalias
Creates or updates an alias.
Creates or updates an alias.
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.
recovery
Returns information about ongoing index shard recoveries.
Returns information about ongoing index shard recoveries.
refresh
Performs the refresh operation in one or more indices.
Performs the refresh operation in one or more indices.
reloadsearchanalyzers
Reloads an index's search analyzers and their resources.
Reloads an index's search analyzers and their resources.
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.
segments
Provides low-level information about segments in a Lucene index.
Provides low-level information about segments in a Lucene index.
shardstores
Provides store information for shard copies of indices.
Provides store information for shard copies of indices.
shrink
Allow to shrink an existing index into a new index with fewer primary shards.
Allow to shrink an existing index into a new index with fewer primary shards.
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
split
Allows you to split an existing index into a new index with more primary shards.
Allows you to split an existing index into a new index with more primary shards.
stats
Provides statistics on operations happening in an index.
Provides statistics on operations happening in an index.
unfreeze
Unfreezes an index.
Unfreezes an index.
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.
geoipstats
Returns statistical information about geoip databases
Returns statistical information about geoip databases
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
delete
Deletes licensing information for the cluster
Deletes licensing information for the cluster
get
Retrieves licensing information for the cluster
Retrieves licensing information for the cluster
getbasicstatus
Retrieves information about the status of the basic license.
Retrieves information about the status of the basic license.
gettrialstatus
Retrieves information about the status of the trial license.
Retrieves information about the status of the trial license.
post
Updates the license for the cluster.
Updates the license for the cluster.
poststartbasic
Starts an indefinite basic license.
Starts an indefinite basic license.
poststarttrial
starts a limited time trial license.
starts a limited time trial license.
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
migration
deprecations
Retrieves information about different cluster, node, and index level settings that use deprecated features that will be removed or changed in the next major version.
Retrieves information about different cluster, node, and index level settings that use deprecated features that will be removed or changed in the next major version.
getfeatureupgradestatus
Find out whether system features need to be upgraded or not
Find out whether system features need to be upgraded or not
postfeatureupgrade
Begin upgrades for system features
Begin upgrades for system features
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.
deleteexpireddata
Deletes expired and unused machine learning data.
Deletes expired and unused machine learning data.
deletefilter
Deletes a filter.
Deletes a filter.
deleteforecast
Deletes forecasts from a machine learning job.
Deletes forecasts from a machine learning job.
deletejob
Deletes an existing anomaly detection job.
Deletes an existing anomaly detection job.
deletemodelsnapshot
Deletes an existing model snapshot.
Deletes an existing model snapshot.
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.
explaindataframeanalytics
Explains a data frame analytics config.
Explains a data frame analytics config.
flushjob
Forces any buffered data to be processed by the job.
Forces any buffered data to be processed by the job.
forecast
Predicts the future behavior of a time series by using its historical behavior.
Predicts the future behavior of a time series by using its historical behavior.
getbuckets
Retrieves anomaly detection job results for one or more buckets.
Retrieves anomaly detection job results for one or more buckets.
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.
getcategories
Retrieves anomaly detection job results for one or more categories.
Retrieves anomaly detection job results for one or more categories.
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.
getinfluencers
Retrieves anomaly detection job results for one or more influencers.
Retrieves anomaly detection job results for one or more influencers.
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.
getmemorystats
Returns information on how ML is using memory.
Returns information on how ML is using memory.
getmodelsnapshots
Retrieves information about model snapshots.
Retrieves information about model snapshots.
getmodelsnapshotupgradestats
Gets stats for anomaly detection job model snapshot upgrades that are in progress.
Gets stats for anomaly detection job model snapshot upgrades that are in progress.
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.
getrecords
Retrieves anomaly records for an anomaly detection job.
Retrieves anomaly records for an anomaly detection job.
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.
info
Returns defaults and limits used by machine learning.
Returns defaults and limits used by machine learning.
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.
revertmodelsnapshot
Reverts to a specific snapshot.
Reverts to a specific snapshot.
setupgrademode
Sets a cluster wide upgrade_mode setting that prepares machine learning indices for an upgrade.
Sets a cluster wide upgrade_mode setting that prepares machine learning indices for an upgrade.
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.
updatemodelsnapshot
Updates certain properties of a snapshot.
Updates certain properties of a snapshot.
upgradejobsnapshot
Upgrades a given job snapshot to the current major version.
Upgrades a given job snapshot to the current major version.
validate
Validates an anomaly detection job.
Validates an anomaly detection job.
validatedetector
Validates an anomaly detection detector.
Validates an anomaly detection detector.
nodes
clearrepositoriesmeteringarchive
Removes the archived repositories metering information present in the cluster.
Removes the archived repositories metering information present in the cluster.
getrepositoriesmeteringinfo
Returns cluster repositories metering information.
Returns cluster repositories metering information.
hotthreads
Returns information about hot threads on each node in the cluster.
Returns information about hot threads on each node in the cluster.
info
Returns information about nodes in the cluster.
Returns information about nodes in the cluster.
reloadsecuresettings
Reloads secure settings.
Reloads secure settings.
stats
Returns statistical information about nodes in the cluster.
Returns statistical information about nodes in the cluster.
usage
Returns low-level information about REST actions usage on nodes.
Returns low-level information about REST actions usage on nodes.
Rollup an index
Rollup an index
deletejob
Deletes an existing rollup job.
Deletes an existing rollup job.
getjobs
Retrieves the configuration, stats, and status of rollup jobs.
Retrieves the configuration, stats, and status of rollup jobs.
getrollupcaps
Returns the capabilities of any rollup jobs that have been configured for a specific index or index pattern.
Returns the capabilities of any rollup jobs that have been configured for a specific index or index pattern.
getrollupindexcaps
Returns the rollup capabilities of all jobs inside of a rollup index (e.g.
Returns the rollup capabilities of all jobs inside of a rollup index (e.g.
putjob
Creates a rollup job.
Creates a rollup job.
rollupsearch
Enables searching rolled-up data using the standard query DSL.
Enables searching rolled-up data using the standard query DSL.
startjob
Starts an existing, stopped rollup job.
Starts an existing, stopped rollup job.
stopjob
Stops an existing, started rollup job.
Stops an existing, started rollup job.
searchablesnapshots
cachestats
Retrieve node-level cache statistics about searchable snapshots.
Retrieve node-level cache statistics about searchable snapshots.
clearcache
Clear the cache of searchable snapshots.
Clear the cache of searchable snapshots.
mount
Mount a snapshot as a searchable index.
Mount a snapshot as a searchable index.
stats
Retrieve shard-level statistics about searchable snapshots.
Retrieve shard-level statistics about searchable snapshots.
security
activateuserprofile
Creates or updates the user profile on behalf of another user.
Creates or updates the user profile on behalf of another user.
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.
changepassword
Changes the passwords of users in the native realm and built-in users.
Changes the passwords of users in the native realm and built-in users.
clearapikeycache
Clear a subset or all entries from the API key cache.
Clear a subset or all entries from the API key cache.
clearcachedprivileges
Evicts application privileges from the native application privileges cache.
Evicts application privileges from the native application privileges cache.
clearcachedrealms
Evicts users from the user cache.
Evicts users from the user cache.
clearcachedroles
Evicts roles from the native role cache.
Evicts roles from the native role cache.
clearcachedservicetokens
Evicts tokens from the service account token caches.
Evicts tokens from the service account token caches.
createapikey
Creates an API key for access without requiring basic authentication.
Creates an API key for access without requiring basic authentication.
createservicetoken
Creates a service account token for access without requiring basic authentication.
Creates a service account token for access without requiring basic authentication.
deleteprivileges
Removes application privileges.
Removes application privileges.
deleterole
Removes roles in the native realm.
Removes roles in the native realm.
deleterolemapping
Removes role mappings.
Removes role mappings.
deleteservicetoken
Deletes a service account token.
Deletes a service account token.
deleteuser
Deletes users from the native realm.
Deletes users from the native realm.
disableuser
Disables users in the native realm.
Disables users in the native realm.
disableuserprofile
Disables a user profile so it's not visible in user profile searches.
Disables a user profile so it's not visible in user profile searches.
enableuser
Enables users in the native realm.
Enables users in the native realm.
enableuserprofile
Enables a user profile so it's visible in user profile searches.
Enables a user profile so it's visible in user profile searches.
enrollkibana
Allows a kibana instance to configure itself to communicate with a secured elasticsearch cluster.
Allows a kibana instance to configure itself to communicate with a secured elasticsearch cluster.
enrollnode
Allows a new node to enroll to an existing cluster with security enabled.
Allows a new node to enroll to an existing cluster with security enabled.
getapikey
Retrieves information for one or more API keys.
Retrieves information for one or more API keys.
getbuiltinprivileges
Retrieves the list of cluster privileges and index privileges that are available in this version of Elasticsearch.
Retrieves the list of cluster privileges and index privileges that are available in this version of Elasticsearch.
getprivileges
Retrieves application privileges.
Retrieves application privileges.
getrole
Retrieves roles in the native realm.
Retrieves roles in the native realm.
getrolemapping
Retrieves role mappings.
Retrieves role mappings.
getserviceaccounts
Retrieves information about service accounts.
Retrieves information about service accounts.
getservicecredentials
Retrieves information of all service credentials for a service account.
Retrieves information of all service credentials for a service account.
gettoken
Creates a bearer token for access without requiring basic authentication.
Creates a bearer token for access without requiring basic authentication.
getuser
Retrieves information about users in the native realm and built-in users.
Retrieves information about users in the native realm and built-in users.
getuserprivileges
Retrieves security privileges for the logged in user.
Retrieves security privileges for the logged in user.
getuserprofile
Retrieves user profile for the given unique ID.
Retrieves user profile for the given unique ID.
grantapikey
Creates an API key on behalf of another user.
Creates an API key on behalf of another user.
hasprivileges
Determines whether the specified user has a specified list of privileges.
Determines whether the specified user has a specified list of privileges.
hasprivilegesuserprofile
Determines whether the users associated with the specified profile IDs have all the requested privileges.
Determines whether the users associated with the specified profile IDs have all the requested privileges.
invalidateapikey
Invalidates one or more API keys.
Invalidates one or more API keys.
invalidatetoken
Invalidates one or more access tokens or refresh tokens.
Invalidates one or more access tokens or refresh tokens.
oidcauthenticate
Exchanges an OpenID Connection authentication response message for an Elasticsearch access token and refresh token pair
Exchanges an OpenID Connection authentication response message for an Elasticsearch access token and refresh token pair
oidclogout
Invalidates a refresh token and access token that was generated from the OpenID Connect Authenticate API
Invalidates a refresh token and access token that was generated from the OpenID Connect Authenticate API
oidcprepareauthentication
Creates an OAuth 2.0 authentication request as a URL string
Creates an OAuth 2.0 authentication request as a URL string
putprivileges
Adds or updates application privileges.
Adds or updates application privileges.
putrole
Adds and updates roles in the native realm.
Adds and updates roles in the native realm.
putrolemapping
Creates and updates role mappings.
Creates and updates role mappings.
putuser
Adds and updates users in the native realm.
Adds and updates users in the native realm.
queryapikeys
Retrieves information for API keys using a subset of query DSL
Retrieves information for API keys using a subset of query DSL
samlauthenticate
Exchanges a SAML Response message for an Elasticsearch access token and refresh token pair
Exchanges a SAML Response message for an Elasticsearch access token and refresh token pair
samlcompletelogout
Verifies the logout response sent from the SAML IdP
Verifies the logout response sent from the SAML IdP
samlinvalidate
Consumes a SAML LogoutRequest
Consumes a SAML LogoutRequest
samllogout
Invalidates an access token and a refresh token that were generated via the SAML Authenticate API
Invalidates an access token and a refresh token that were generated via the SAML Authenticate API
samlprepareauthentication
Creates a SAML authentication request
Creates a SAML authentication request
samlserviceprovidermetadata
Generates SAML metadata for the Elastic stack SAML 2.0 Service Provider
Generates SAML metadata for the Elastic stack SAML 2.0 Service Provider
suggestuserprofiles
Get suggestions for user profiles that match specified search criteria.
Get suggestions for user profiles that match specified search criteria.
updateuserprofiledata
Update application specific data for the user profile of the given unique ID.
Update application specific data for the user profile of the given unique ID.
shutdown
deletenode
Removes a node from the shutdown list.
Removes a node from the shutdown list.
getnode
Retrieve status of a node or nodes that are currently marked as shutting down.
Retrieve status of a node or nodes that are currently marked as shutting down.
putnode
Adds a node to be shut down.
Adds a node to be shut down.
slm
deletelifecycle
Deletes an existing snapshot lifecycle policy.
Deletes an existing snapshot lifecycle policy.
executelifecycle
Immediately creates a snapshot according to the lifecycle policy, without waiting for the scheduled time.
Immediately creates a snapshot according to the lifecycle policy, without waiting for the scheduled time.
executeretention
Deletes any snapshots that are expired according to the policy's retention rules.
Deletes any snapshots that are expired according to the policy's retention rules.
getlifecycle
Retrieves one or more snapshot lifecycle policy definitions and information about the latest snapshot attempts.
Retrieves one or more snapshot lifecycle policy definitions and information about the latest snapshot attempts.
getstats
Returns global and policy-level statistics about actions taken by snapshot lifecycle management.
Returns global and policy-level statistics about actions taken by snapshot lifecycle management.
getstatus
Retrieves the status of snapshot lifecycle management (SLM).
Retrieves the status of snapshot lifecycle management (SLM).
putlifecycle
Creates or updates a snapshot lifecycle policy.
Creates or updates a snapshot lifecycle policy.
start
Turns on snapshot lifecycle management (SLM).
Turns on snapshot lifecycle management (SLM).
stop
Turns off snapshot lifecycle management (SLM).
Turns off snapshot lifecycle management (SLM).
snapshot
cleanuprepository
Removes stale data from repository.
Removes stale data from repository.
clone
Clones indices from one snapshot into another snapshot in the same repository.
Clones indices from one snapshot into another snapshot in the same repository.
create
Creates a snapshot in a repository.
Creates a snapshot in a repository.
createrepository
Creates a repository.
Creates a repository.
delete
Deletes one or more snapshots.
Deletes one or more snapshots.
deleterepository
Deletes a repository.
Deletes a repository.
get
Returns information about a snapshot.
Returns information about a snapshot.
getrepository
Returns information about a repository.
Returns information about a repository.
restore
Restores a snapshot.
Restores a snapshot.
status
Returns information about the status of a snapshot.
Returns information about the status of a snapshot.
verifyrepository
Verifies a repository.
Verifies a repository.
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
ssl
certificates
Retrieves information about the X.509 certificates used to encrypt communications in the cluster.
Retrieves information about the X.509 certificates used to encrypt communications in the cluster.
tasks
cancel
Cancels a task, if it can be cancelled through an API.
Cancels a task, if it can be cancelled through an API.
get
Returns information about a task.
Returns information about a task.
list
Returns a list of tasks.
Returns a list of tasks.
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.
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.
upgradetransforms
Upgrades all transforms.
Upgrades all transforms.
enums/accesstokengranttype
Package accesstokengranttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/get_token/types.ts#L23-L28
Package accesstokengranttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/get_token/types.ts#L23-L28
enums/acknowledgementoptions
Package acknowledgementoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L106-L110
Package acknowledgementoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L106-L110
enums/actionexecutionmode
Package actionexecutionmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L70-L91
Package actionexecutionmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L70-L91
enums/actionstatusoptions
Package actionstatusoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L99-L104
Package actionstatusoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L99-L104
enums/actiontype
Package actiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L61-L68
Package actiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Action.ts#L61-L68
enums/allocationexplaindecision
Package allocationexplaindecision https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L32-L37
Package allocationexplaindecision https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L32-L37
enums/apikeygranttype
Package apikeygranttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/grant_api_key/types.ts#L31-L34
Package apikeygranttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/grant_api_key/types.ts#L31-L34
enums/appliesto
Package appliesto https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L67-L72
Package appliesto https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L67-L72
enums/boundaryscanner
Package boundaryscanner https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L26-L30
Package boundaryscanner https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L26-L30
enums/bytes
Package bytes https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L142-L160
Package bytes https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L142-L160
enums/calendarinterval
Package calendarinterval https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L109-L126
Package calendarinterval https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L109-L126
enums/catanomalydetectorcolumn
Package catanomalydetectorcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L32-L401
Package catanomalydetectorcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L32-L401
enums/catdatafeedcolumn
Package catdatafeedcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L405-L471
Package catdatafeedcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L405-L471
enums/catdfacolumn
Package catdfacolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L472-L557
Package catdfacolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L472-L557
enums/categorizationstatus
Package categorizationstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L80-L83
Package categorizationstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L80-L83
enums/cattrainedmodelscolumn
Package cattrainedmodelscolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L561-L635
Package cattrainedmodelscolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L561-L635
enums/cattransformcolumn
Package cattransformcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L640-L844
Package cattransformcolumn https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cat/_types/CatBase.ts#L640-L844
enums/childscoremode
Package childscoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/joining.ts#L25-L39
Package childscoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/joining.ts#L25-L39
enums/chunkingmode
Package chunkingmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Datafeed.ts#L171-L175
Package chunkingmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Datafeed.ts#L171-L175
enums/clusterprivilege
Package clusterprivilege https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/Privileges.ts#L41-L79
Package clusterprivilege https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/Privileges.ts#L41-L79
enums/combinedfieldsoperator
Package combinedfieldsoperator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/abstractions.ts#L204-L207
Package combinedfieldsoperator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/abstractions.ts#L204-L207
enums/combinedfieldszeroterms
Package combinedfieldszeroterms https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/abstractions.ts#L209-L212
Package combinedfieldszeroterms https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/abstractions.ts#L209-L212
enums/conditionoperator
Package conditionoperator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L74-L79
Package conditionoperator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L74-L79
enums/conditiontype
Package conditiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Conditions.ts#L62-L68
Package conditiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Conditions.ts#L62-L68
enums/conflicts
Package conflicts https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L162-L165
Package conflicts https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L162-L165
enums/connectionscheme
Package connectionscheme https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L40-L43
Package connectionscheme https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L40-L43
enums/converttype
Package converttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L136-L144
Package converttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L136-L144
enums/dataattachmentformat
Package dataattachmentformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L187-L190
Package dataattachmentformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L187-L190
enums/datafeedstate
Package datafeedstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Datafeed.ts#L133-L138
Package datafeedstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Datafeed.ts#L133-L138
enums/dataframestate
Package dataframestate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Dataframe.ts#L20-L26
Package dataframestate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Dataframe.ts#L20-L26
enums/day
Package day https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Schedule.ts#L37-L45
Package day https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Schedule.ts#L37-L45
enums/decision
Package decision https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L86-L95
Package decision https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L86-L95
enums/delimitedpayloadencoding
Package delimitedpayloadencoding https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L61-L65
Package delimitedpayloadencoding https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L61-L65
enums/deploymentallocationstate
Package deploymentallocationstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L277-L290
Package deploymentallocationstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L277-L290
enums/deploymentstate
Package deploymentstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L262-L275
Package deploymentstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L262-L275
enums/deprecationlevel
Package deprecationlevel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/migration/deprecations/types.ts#L20-L27
Package deprecationlevel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/migration/deprecations/types.ts#L20-L27
enums/dfiindependencemeasure
Package dfiindependencemeasure https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L20-L24
Package dfiindependencemeasure https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L20-L24
enums/dfraftereffect
Package dfraftereffect https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L26-L30
Package dfraftereffect https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L26-L30
enums/dfrbasicmodel
Package dfrbasicmodel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L32-L40
Package dfrbasicmodel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L32-L40
enums/distanceunit
Package distanceunit https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L30-L49
Package distanceunit https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L30-L49
enums/dynamicmapping
Package dynamicmapping https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/dynamic-template.ts#L37-L46
Package dynamicmapping https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/dynamic-template.ts#L37-L46
enums/edgengramside
Package edgengramside https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L73-L76
Package edgengramside https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L73-L76
enums/emailpriority
Package emailpriority https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L197-L203
Package emailpriority https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L197-L203
enums/enrichpolicyphase
Package enrichpolicyphase https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/enrich/execute_policy/types.ts#L24-L29
Package enrichpolicyphase https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/enrich/execute_policy/types.ts#L24-L29
enums/excludefrequent
Package excludefrequent https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Detector.ts#L82-L87
Package excludefrequent https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Detector.ts#L82-L87
enums/executionphase
Package executionphase https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Execution.ts#L49-L58
Package executionphase https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Execution.ts#L49-L58
enums/executionstatus
Package executionstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Execution.ts#L38-L47
Package executionstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Execution.ts#L38-L47
enums/expandwildcard
Package expandwildcard https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L174-L188
Package expandwildcard https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L174-L188
enums/feature
Package feature https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/get/IndicesGetRequest.ts#L89-L93
Package feature https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/get/IndicesGetRequest.ts#L89-L93
enums/fieldsortnumerictype
Package fieldsortnumerictype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L36-L41
Package fieldsortnumerictype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L36-L41
enums/fieldtype
Package fieldtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/Property.ts#L156-L199
Package fieldtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/Property.ts#L156-L199
enums/fieldvaluefactormodifier
Package fieldvaluefactormodifier https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L147-L158
Package fieldvaluefactormodifier https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L147-L158
enums/filtertype
Package filtertype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Filter.ts#L43-L46
Package filtertype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Filter.ts#L43-L46
enums/followerindexstatus
Package followerindexstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ccr/follow_info/types.ts#L30-L33
Package followerindexstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ccr/follow_info/types.ts#L30-L33
enums/functionboostmode
Package functionboostmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L138-L145
Package functionboostmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L138-L145
enums/functionscoremode
Package functionscoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L129-L136
Package functionscoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L129-L136
enums/gappolicy
Package gappolicy https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L52-L55
Package gappolicy https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L52-L55
enums/geodistancetype
Package geodistancetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L51-L54
Package geodistancetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L51-L54
enums/geoexecution
Package geoexecution https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/geo.ts#L43-L46
Package geoexecution https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/geo.ts#L43-L46
enums/geoorientation
Package geoorientation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/geo.ts#L30-L35
Package geoorientation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/geo.ts#L30-L35
enums/geoshaperelation
Package geoshaperelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L67-L72
Package geoshaperelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Geo.ts#L67-L72
enums/geostrategy
Package geostrategy https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/geo.ts#L52-L55
Package geostrategy https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/geo.ts#L52-L55
enums/geovalidationmethod
Package geovalidationmethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/geo.ts#L107-L111
Package geovalidationmethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/geo.ts#L107-L111
enums/granttype
Package granttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/GrantType.ts#L20-L23
Package granttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/GrantType.ts#L20-L23
enums/gridtype
Package gridtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search_mvt/_types/GridType.ts#L20-L25
Package gridtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search_mvt/_types/GridType.ts#L20-L25
enums/groupby
Package groupby https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/tasks/_types/GroupBy.ts#L20-L27
Package groupby https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/tasks/_types/GroupBy.ts#L20-L27
enums/healthstatus
Package healthstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L192-L212
Package healthstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L192-L212
enums/highlighterencoder
Package highlighterencoder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L61-L64
Package highlighterencoder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L61-L64
enums/highlighterfragmenter
Package highlighterfragmenter https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L66-L69
Package highlighterfragmenter https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L66-L69
enums/highlighterorder
Package highlighterorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L71-L73
Package highlighterorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L71-L73
enums/highlightertagsschema
Package highlightertagsschema https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L75-L77
Package highlightertagsschema https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L75-L77
enums/highlightertype
Package highlightertype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L79-L85
Package highlightertype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/highlighting.ts#L79-L85
enums/holtwinterstype
Package holtwinterstype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L231-L236
Package holtwinterstype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L231-L236
enums/httpinputmethod
Package httpinputmethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L61-L67
Package httpinputmethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L61-L67
enums/ibdistribution
Package ibdistribution https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L42-L45
Package ibdistribution https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L42-L45
enums/iblambda
Package iblambda https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L47-L50
Package iblambda https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L47-L50
enums/icucollationalternate
Package icucollationalternate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L88-L91
Package icucollationalternate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L88-L91
enums/icucollationcasefirst
Package icucollationcasefirst https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L93-L96
Package icucollationcasefirst https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L93-L96
enums/icucollationdecomposition
Package icucollationdecomposition https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L98-L101
Package icucollationdecomposition https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L98-L101
enums/icucollationstrength
Package icucollationstrength https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L103-L109
Package icucollationstrength https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L103-L109
enums/icunormalizationmode
Package icunormalizationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L77-L80
Package icunormalizationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L77-L80
enums/icunormalizationtype
Package icunormalizationtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L82-L86
Package icunormalizationtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L82-L86
enums/icutransformdirection
Package icutransformdirection https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L72-L75
Package icutransformdirection https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/icu-plugin.ts#L72-L75
enums/include
Package include https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Include.ts#L20-L42
Package include https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Include.ts#L20-L42
enums/indexcheckonstartup
Package indexcheckonstartup https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L253-L260
Package indexcheckonstartup https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L253-L260
enums/indexingjobstate
Package indexingjobstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/rollup/get_jobs/types.ts#L66-L72
Package indexingjobstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/rollup/get_jobs/types.ts#L66-L72
enums/indexmetadatastate
Package indexmetadatastate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/stats/types.ts#L203-L209
Package indexmetadatastate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/stats/types.ts#L203-L209
enums/indexoptions
Package indexoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/core.ts#L224-L229
Package indexoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/core.ts#L224-L229
enums/indexprivilege
Package indexprivilege https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/Privileges.ts#L138-L158
Package indexprivilege https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/_types/Privileges.ts#L138-L158
enums/indexroutingallocationoptions
Package indexroutingallocationoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexRouting.ts#L38-L43
Package indexroutingallocationoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexRouting.ts#L38-L43
enums/indexroutingrebalanceoptions
Package indexroutingrebalanceoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexRouting.ts#L45-L50
Package indexroutingrebalanceoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexRouting.ts#L45-L50
enums/indicesblockoptions
Package indicesblockoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/add_block/IndicesAddBlockRequest.ts#L43-L48
Package indicesblockoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/add_block/IndicesAddBlockRequest.ts#L43-L48
enums/inputtype
Package inputtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L102-L106
Package inputtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L102-L106
enums/jobblockedreason
Package jobblockedreason https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Job.ts#L174-L178
Package jobblockedreason https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Job.ts#L174-L178
enums/jobstate
Package jobstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Job.ts#L36-L42
Package jobstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Job.ts#L36-L42
enums/keeptypesmode
Package keeptypesmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L212-L215
Package keeptypesmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L212-L215
enums/kuromojitokenizationmode
Package kuromojitokenizationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/kuromoji-plugin.ts#L52-L56
Package kuromojitokenizationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/kuromoji-plugin.ts#L52-L56
enums/language
Package language https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/languages.ts#L20-L55
Package language https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/languages.ts#L20-L55
enums/level
Package level https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L222-L226
Package level https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L222-L226
enums/licensestatus
Package licensestatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/license/_types/License.ts#L35-L40
Package licensestatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/license/_types/License.ts#L35-L40
enums/licensetype
Package licensetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/license/_types/License.ts#L23-L33
Package licensetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/license/_types/License.ts#L23-L33
enums/lifecycleoperationmode
Package lifecycleoperationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Lifecycle.ts#L20-L24
Package lifecycleoperationmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Lifecycle.ts#L20-L24
enums/matchtype
Package matchtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/dynamic-template.ts#L32-L35
Package matchtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/dynamic-template.ts#L32-L35
enums/memorystatus
Package memorystatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L85-L89
Package memorystatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L85-L89
enums/metric
Package metric https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/rollup/_types/Metric.ts#L22-L28
Package metric https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/rollup/_types/Metric.ts#L22-L28
enums/migrationstatus
Package migrationstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L30-L35
Package migrationstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L30-L35
enums/minimuminterval
Package minimuminterval https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L64-L71
Package minimuminterval https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L64-L71
enums/missingorder
Package missingorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/AggregationContainer.ts#L210-L214
Package missingorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/AggregationContainer.ts#L210-L214
enums/month
Package month https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Schedule.ts#L70-L83
Package month https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Schedule.ts#L70-L83
enums/multivaluemode
Package multivaluemode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L160-L165
Package multivaluemode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/compound.ts#L160-L165
enums/noderole
Package noderole https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Node.ts#L67-L85
Package noderole https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Node.ts#L67-L85
enums/noridecompoundmode
Package noridecompoundmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/tokenizers.ts#L74-L78
Package noridecompoundmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/tokenizers.ts#L74-L78
enums/normalization
Package normalization https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L52-L58
Package normalization https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Similarity.ts#L52-L58
enums/normalizemethod
Package normalizemethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L254-L262
Package normalizemethod https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/pipeline.ts#L254-L262
enums/numericfielddataformat
Package numericfielddataformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/NumericFielddataFormat.ts#L20-L23
Package numericfielddataformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/NumericFielddataFormat.ts#L20-L23
enums/onscripterror
Package onscripterror https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/core.ts#L108-L111
Package onscripterror https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/core.ts#L108-L111
enums/operator
Package operator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/Operator.ts#L22-L27
Package operator https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/Operator.ts#L22-L27
enums/optype
Package optype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L228-L231
Package optype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L228-L231
enums/pagerdutycontexttype
Package pagerdutycontexttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L67-L70
Package pagerdutycontexttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L67-L70
enums/pagerdutyeventtype
Package pagerdutyeventtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L72-L76
Package pagerdutyeventtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Actions.ts#L72-L76
enums/phoneticencoder
Package phoneticencoder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L23-L36
Package phoneticencoder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L23-L36
enums/phoneticlanguage
Package phoneticlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L38-L51
Package phoneticlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L38-L51
enums/phoneticnametype
Package phoneticnametype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L53-L57
Package phoneticnametype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L53-L57
enums/phoneticruletype
Package phoneticruletype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L59-L62
Package phoneticruletype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/phonetic-plugin.ts#L59-L62
enums/quantifier
Package quantifier https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Conditions.ts#L72-L75
Package quantifier https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Conditions.ts#L72-L75
enums/rangerelation
Package rangerelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/term.ts#L105-L109
Package rangerelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/term.ts#L105-L109
enums/ratemode
Package ratemode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L123-L126
Package ratemode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L123-L126
enums/refresh
Package refresh https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L233-L240
Package refresh https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L233-L240
enums/responsecontenttype
Package responsecontenttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L108-L112
Package responsecontenttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/_types/Input.ts#L108-L112
enums/result
Package result https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Result.ts#L20-L27
Package result https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Result.ts#L20-L27
enums/resultposition
Package resultposition https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/eql/search/types.ts#L20-L32
Package resultposition https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/eql/search/types.ts#L20-L32
enums/routingstate
Package routingstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L303-L324
Package routingstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L303-L324
enums/ruleaction
Package ruleaction https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L41-L50
Package ruleaction https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Rule.ts#L41-L50
enums/runtimefieldtype
Package runtimefieldtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/RuntimeFields.ts#L32-L40
Package runtimefieldtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/RuntimeFields.ts#L32-L40
enums/sampleraggregationexecutionhint
Package sampleraggregationexecutionhint https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L160-L164
Package sampleraggregationexecutionhint https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L160-L164
enums/scoremode
Package scoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/rescoring.ts#L36-L42
Package scoremode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/rescoring.ts#L36-L42
enums/scriptlanguage
Package scriptlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Scripting.ts#L24-L33
Package scriptlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Scripting.ts#L24-L33
enums/scriptsorttype
Package scriptsorttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L75-L78
Package scriptsorttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L75-L78
enums/searchtype
Package searchtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L242-L247
Package searchtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L242-L247
enums/segmentsortmissing
Package segmentsortmissing https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L43-L48
Package segmentsortmissing https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L43-L48
enums/segmentsortmode
Package segmentsortmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L36-L41
Package segmentsortmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L36-L41
enums/segmentsortorder
Package segmentsortorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L29-L34
Package segmentsortorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSegmentSort.ts#L29-L34
enums/shapetype
Package shapetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L330-L333
Package shapetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L330-L333
enums/shardroutingstate
Package shardroutingstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/stats/types.ts#L157-L162
Package shardroutingstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/stats/types.ts#L157-L162
enums/shardsstatsstage
Package shardsstatsstage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/snapshot/_types/SnapshotShardsStatsStage.ts#L20-L31
Package shardsstatsstage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/snapshot/_types/SnapshotShardsStatsStage.ts#L20-L31
enums/shardstoreallocation
Package shardstoreallocation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/shard_stores/types.ts#L40-L44
Package shardstoreallocation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/shard_stores/types.ts#L40-L44
enums/shardstorestatus
Package shardstorestatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/shard_stores/types.ts#L55-L64
Package shardstorestatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/shard_stores/types.ts#L55-L64
enums/shutdownstatus
Package shutdownstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/get_node/ShutdownGetNodeResponse.ts#L45-L50
Package shutdownstatus https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/get_node/ShutdownGetNodeResponse.ts#L45-L50
enums/shutdowntype
Package shutdowntype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/get_node/ShutdownGetNodeResponse.ts#L40-L43
Package shutdowntype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/get_node/ShutdownGetNodeResponse.ts#L40-L43
enums/simplequerystringflag
Package simplequerystringflag https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L278-L292
Package simplequerystringflag https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L278-L292
enums/slicescalculation
Package slicescalculation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L326-L334
Package slicescalculation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L326-L334
enums/snapshotsort
Package snapshotsort https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/snapshot/_types/SnapshotInfo.ts#L67-L78
Package snapshotsort https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/snapshot/_types/SnapshotInfo.ts#L67-L78
enums/snapshotupgradestate
Package snapshotupgradestate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L91-L96
Package snapshotupgradestate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/Model.ts#L91-L96
enums/snowballlanguage
Package snowballlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/languages.ts#L57-L80
Package snowballlanguage https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/languages.ts#L57-L80
enums/sortmode
Package sortmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L101-L110
Package sortmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L101-L110
enums/sortorder
Package sortorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L112-L115
Package sortorder https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/sort.ts#L112-L115
enums/statslevel
Package statslevel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/searchable_snapshots/_types/stats.ts#L20-L24
Package statslevel https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/searchable_snapshots/_types/stats.ts#L20-L24
enums/storagetype
Package storagetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L507-L534
Package storagetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L507-L534
enums/stringdistance
Package stringdistance https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/suggester.ts#L234-L240
Package stringdistance https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/suggester.ts#L234-L240
enums/suggestmode
Package suggestmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L249-L253
Package suggestmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L249-L253
enums/suggestsort
Package suggestsort https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/suggester.ts#L242-L245
Package suggestsort https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/suggester.ts#L242-L245
enums/synonymformat
Package synonymformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L104-L107
Package synonymformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/token_filters.ts#L104-L107
enums/templateformat
Package templateformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/get_role/types.ts#L41-L44
Package templateformat https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/security/get_role/types.ts#L41-L44
enums/termsaggregationcollectmode
Package termsaggregationcollectmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L403-L406
Package termsaggregationcollectmode https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L403-L406
enums/termsaggregationexecutionhint
Package termsaggregationexecutionhint https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L408-L413
Package termsaggregationexecutionhint https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/bucket.ts#L408-L413
enums/termvectoroption
Package termvectoroption https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/TermVectorOption.ts#L20-L28
Package termvectoroption https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/TermVectorOption.ts#L20-L28
enums/textquerytype
Package textquerytype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L219-L226
Package textquerytype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L219-L226
enums/threadtype
Package threadtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L255-L261
Package threadtype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L255-L261
enums/timeseriesmetrictype
Package timeseriesmetrictype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/TimeSeriesMetricType.ts#L20-L25
Package timeseriesmetrictype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/mapping/TimeSeriesMetricType.ts#L20-L25
enums/timeunit
Package timeunit https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Time.ts#L69-L84
Package timeunit https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/Time.ts#L69-L84
enums/tokenchar
Package tokenchar https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/tokenizers.ts#L46-L53
Package tokenchar https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/analysis/tokenizers.ts#L46-L53
enums/tokenizationtruncate
Package tokenizationtruncate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/inference.ts#L309-L313
Package tokenizationtruncate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/inference.ts#L309-L313
enums/totalhitsrelation
Package totalhitsrelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/hits.ts#L95-L100
Package totalhitsrelation https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_global/search/_types/hits.ts#L95-L100
enums/trainedmodeltype
Package trainedmodeltype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L246-L260
Package trainedmodeltype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ml/_types/TrainedModel.ts#L246-L260
enums/translogdurability
Package translogdurability https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L356-L371
Package translogdurability https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/indices/_types/IndexSettings.ts#L356-L371
enums/ttesttype
Package ttesttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L156-L160
Package ttesttype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L156-L160
enums/type_
Package type_ https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/_types/types.ts#L20-L24
Package type_ https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/shutdown/_types/types.ts#L20-L24
enums/unassignedinformationreason
Package unassignedinformationreason https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L127-L146
Package unassignedinformationreason https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/cluster/allocation_explain/types.ts#L127-L146
enums/useragentproperty
Package useragentproperty https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L76-L87
Package useragentproperty https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/ingest/_types/Processors.ts#L76-L87
enums/valuetype
Package valuetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L189-L200
Package valuetype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/aggregations/metric.ts#L189-L200
enums/versiontype
Package versiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L91-L96
Package versiontype https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L91-L96
enums/waitforactiveshardoptions
Package waitforactiveshardoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L263-L267
Package waitforactiveshardoptions https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L263-L267
enums/waitforevents
Package waitforevents https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L269-L276
Package waitforevents https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/common.ts#L269-L276
enums/watchermetric
Package watchermetric https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/stats/types.ts#L42-L48
Package watchermetric https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/stats/types.ts#L42-L48
enums/watcherstate
Package watcherstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/stats/types.ts#L26-L31
Package watcherstate https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/watcher/stats/types.ts#L26-L31
enums/zerotermsquery
Package zerotermsquery https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L228-L231
Package zerotermsquery https://github.com/elastic/elasticsearch-specification/blob/1b56d7e58f5c59f05d1641c6d6a8117c5e01d741/specification/_types/query_dsl/fulltext.ts#L228-L231
watcher
ackwatch
Acknowledges a watch, manually throttling the execution of the watch's actions.
Acknowledges a watch, manually throttling the execution of the watch's actions.
activatewatch
Activates a currently inactive watch.
Activates a currently inactive watch.
deactivatewatch
Deactivates a currently active watch.
Deactivates a currently active watch.
deletewatch
Removes a watch from Watcher.
Removes a watch from Watcher.
executewatch
Forces the execution of a stored watch.
Forces the execution of a stored watch.
getwatch
Retrieves a watch by its ID.
Retrieves a watch by its ID.
putwatch
Creates a new watch, or updates an existing one.
Creates a new watch, or updates an existing one.
querywatches
Retrieves stored watches.
Retrieves stored watches.
start
Starts Watcher if it is not already running.
Starts Watcher if it is not already running.
stats
Retrieves the current Watcher metrics.
Retrieves the current Watcher metrics.
stop
Stops Watcher if it is running.
Stops Watcher if it is running.
xpack
info
Retrieves information about the installed X-Pack features.
Retrieves information about the installed X-Pack features.
usage
Retrieves usage information about the installed X-Pack features.
Retrieves usage information about the installed X-Pack features.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL