Skip to content

Auto-generated code for 8.19 #2867

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 40 additions & 7 deletions docs/reference.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ client.search({ ... })
** *`profile` (Optional, boolean)*: Set to `true` to return detailed timing information about the execution of individual components in a search request. NOTE: This is a debugging tool and adds significant overhead to search execution.
** *`query` (Optional, { bool, boosting, common, combined_fields, constant_score, dis_max, distance_feature, exists, function_score, fuzzy, geo_bounding_box, geo_distance, geo_grid, geo_polygon, geo_shape, has_child, has_parent, ids, intervals, knn, match, match_all, match_bool_prefix, match_none, match_phrase, match_phrase_prefix, more_like_this, multi_match, nested, parent_id, percolate, pinned, prefix, query_string, range, rank_feature, regexp, rule, script, script_score, semantic, shape, simple_query_string, span_containing, span_field_masking, span_first, span_multi, span_near, span_not, span_or, span_term, span_within, sparse_vector, term, terms, terms_set, text_expansion, weighted_tokens, wildcard, wrapper, type })*: The search definition using the Query DSL.
** *`rescore` (Optional, { window_size, query, learning_to_rank } | { window_size, query, learning_to_rank }[])*: Can be used to improve precision by reordering just the top (for example 100 - 500) documents returned by the `query` and `post_filter` phases.
** *`retriever` (Optional, { standard, knn, rrf, text_similarity_reranker, rule })*: A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
** *`retriever` (Optional, { standard, knn, rrf, text_similarity_reranker, rule, rescorer, linear, pinned })*: A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as `query` and `knn`.
** *`script_fields` (Optional, Record<string, { script, ignore_failure }>)*: Retrieve a script evaluation (based on different fields) for each hit.
** *`search_after` (Optional, number | number | string | boolean | null | User-defined value[])*: Used to retrieve the next page of hits using a set of sort values from the previous page.
** *`size` (Optional, number)*: The number of hits to return, which must not be negative. By default, you cannot page through more than 10,000 hits using the `from` and `size` parameters. To page through more hits, use the `search_after` property.
Expand Down Expand Up @@ -7231,9 +7231,45 @@ Changes dynamic index settings in real time.
For data streams, index setting changes are applied to all backing indices by default.

To revert a setting to the default value, use a null value.
The list of per-index settings that can be updated dynamically on live indices can be found in index module documentation.
The list of per-index settings that can be updated dynamically on live indices can be found in index settings documentation.
To preserve existing settings from being updated, set the `preserve_existing` parameter to `true`.

There are multiple valid ways to represent index settings in the request body. You can specify only the setting, for example:

----
{
"number_of_replicas": 1
}
----

Or you can use an `index` setting object:
----
{
"index": {
"number_of_replicas": 1
}
}
----

Or you can use dot annotation:
----
{
"index.number_of_replicas": 1
}
----

Or you can embed any of the aforementioned options in a `settings` object. For example:

----
{
"settings": {
"index": {
"number_of_replicas": 1
}
}
}
----

NOTE: You can only define new analyzers on closed indices.
To add an analyzer, you must close the index, define the analyzer, and reopen the index.
You cannot close the write index of a data stream.
Expand Down Expand Up @@ -8013,12 +8049,9 @@ Valid values are: `all`, `open`, `closed`, `hidden`, `none`.
==== chat_completion_unified
Perform chat completion inference

The chat completion inference API enables real-time responses for chat completion tasks by delivering answers incrementally, reducing response times during computation.
The chat completion inference API enables real-time responses for chat completion tasks by delivering answers incrementally, reducing response times during computation.
It only works with the `chat_completion` task type for `openai` and `elastic` inference services.

IMPORTANT: The inference APIs enable you to use certain services, such as built-in machine learning models (ELSER, E5), models uploaded through Eland, Cohere, OpenAI, Azure, Google AI Studio, Google Vertex AI, Anthropic, Watsonx.ai, or Hugging Face.
For built-in models and models uploaded through Eland, the inference APIs offer an alternative way to use and manage trained models. However, if you do not plan to use the inference APIs to use these models or if you want to use non-NLP models, use the machine learning trained model APIs.

NOTE: The `chat_completion` task type is only available within the _stream API and only supports streaming.
The Chat completion inference API and the Stream inference API differ in their response structure and capabilities.
The Chat completion inference API provides more comprehensive customization options through more fields and function calling support.
Expand Down Expand Up @@ -8421,7 +8454,7 @@ client.inference.putGooglevertexai({ task_type, googlevertexai_inference_id, ser
==== Arguments

* *Request (object):*
** *`task_type` (Enum("rerank" | "text_embedding"))*: The type of the inference task that the model will perform.
** *`task_type` (Enum("rerank" | "text_embedding" | "completion" | "chat_completion"))*: The type of the inference task that the model will perform.
** *`googlevertexai_inference_id` (string)*: The unique identifier of the inference endpoint.
** *`service` (Enum("googlevertexai"))*: The type of service supported for the specified task type. In this case, `googlevertexai`.
** *`service_settings` ({ location, model_id, project_id, rate_limit, service_account_json })*: Settings used to install the inference model. These settings are specific to the `googlevertexai` service.
Expand Down
2 changes: 1 addition & 1 deletion src/api/api/indices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ export default class Indices {
}

/**
* Update index settings. Changes dynamic index settings in real time. For data streams, index setting changes are applied to all backing indices by default. To revert a setting to the default value, use a null value. The list of per-index settings that can be updated dynamically on live indices can be found in index module documentation. To preserve existing settings from being updated, set the `preserve_existing` parameter to `true`. NOTE: You can only define new analyzers on closed indices. To add an analyzer, you must close the index, define the analyzer, and reopen the index. You cannot close the write index of a data stream. To update the analyzer for a data stream's write index and future backing indices, update the analyzer in the index template used by the stream. Then roll over the data stream to apply the new analyzer to the stream's write index and future backing indices. This affects searches and any new data added to the stream after the rollover. However, it does not affect the data stream's backing indices or their existing data. To change the analyzer for existing backing indices, you must create a new data stream and reindex your data into it.
* Update index settings. Changes dynamic index settings in real time. For data streams, index setting changes are applied to all backing indices by default. To revert a setting to the default value, use a null value. The list of per-index settings that can be updated dynamically on live indices can be found in index settings documentation. To preserve existing settings from being updated, set the `preserve_existing` parameter to `true`. There are multiple valid ways to represent index settings in the request body. You can specify only the setting, for example: ``` { "number_of_replicas": 1 } ``` Or you can use an `index` setting object: ``` { "index": { "number_of_replicas": 1 } } ``` Or you can use dot annotation: ``` { "index.number_of_replicas": 1 } ``` Or you can embed any of the aforementioned options in a `settings` object. For example: ``` { "settings": { "index": { "number_of_replicas": 1 } } } ``` NOTE: You can only define new analyzers on closed indices. To add an analyzer, you must close the index, define the analyzer, and reopen the index. You cannot close the write index of a data stream. To update the analyzer for a data stream's write index and future backing indices, update the analyzer in the index template used by the stream. Then roll over the data stream to apply the new analyzer to the stream's write index and future backing indices. This affects searches and any new data added to the stream after the rollover. However, it does not affect the data stream's backing indices or their existing data. To change the analyzer for existing backing indices, you must create a new data stream and reindex your data into it.
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.19/indices-update-settings.html | Elasticsearch API documentation}
*/
async putSettings (this: That, params: T.IndicesPutSettingsRequest | TB.IndicesPutSettingsRequest, options?: TransportRequestOptionsWithOutMeta): Promise<T.IndicesPutSettingsResponse>
Expand Down
2 changes: 1 addition & 1 deletion src/api/api/inference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class Inference {
}

/**
* Perform chat completion inference The chat completion inference API enables real-time responses for chat completion tasks by delivering answers incrementally, reducing response times during computation. It only works with the `chat_completion` task type for `openai` and `elastic` inference services. IMPORTANT: The inference APIs enable you to use certain services, such as built-in machine learning models (ELSER, E5), models uploaded through Eland, Cohere, OpenAI, Azure, Google AI Studio, Google Vertex AI, Anthropic, Watsonx.ai, or Hugging Face. For built-in models and models uploaded through Eland, the inference APIs offer an alternative way to use and manage trained models. However, if you do not plan to use the inference APIs to use these models or if you want to use non-NLP models, use the machine learning trained model APIs. NOTE: The `chat_completion` task type is only available within the _stream API and only supports streaming. The Chat completion inference API and the Stream inference API differ in their response structure and capabilities. The Chat completion inference API provides more comprehensive customization options through more fields and function calling support. If you use the `openai` service or the `elastic` service, use the Chat completion inference API.
* Perform chat completion inference The chat completion inference API enables real-time responses for chat completion tasks by delivering answers incrementally, reducing response times during computation. It only works with the `chat_completion` task type for `openai` and `elastic` inference services. NOTE: The `chat_completion` task type is only available within the _stream API and only supports streaming. The Chat completion inference API and the Stream inference API differ in their response structure and capabilities. The Chat completion inference API provides more comprehensive customization options through more fields and function calling support. If you use the `openai` service or the `elastic` service, use the Chat completion inference API.
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.19/chat-completion-inference-api.html | Elasticsearch API documentation}
*/
async chatCompletionUnified (this: That, params: T.InferenceChatCompletionUnifiedRequest | TB.InferenceChatCompletionUnifiedRequest, options?: TransportRequestOptionsWithOutMeta): Promise<T.InferenceChatCompletionUnifiedResponse>
Expand Down
74 changes: 68 additions & 6 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2243,7 +2243,7 @@ export type EpochTime<Unit = unknown> = Unit

export interface ErrorCauseKeys {
type: string
reason?: string
reason?: string | null
stack_trace?: string
caused_by?: ErrorCause
root_cause?: ErrorCause[]
Expand Down Expand Up @@ -2426,6 +2426,12 @@ export interface InlineGetKeys<TDocument = unknown> {
export type InlineGet<TDocument = unknown> = InlineGetKeys<TDocument>
& { [property: string]: any }

export interface InnerRetriever {
retriever: RetrieverContainer
weight: float
normalizer: ScoreNormalizer
}

export type Ip = string

export interface KnnQuery extends QueryDslQueryBase {
Expand Down Expand Up @@ -2471,6 +2477,11 @@ export type Level = 'cluster' | 'indices' | 'shards'

export type LifecycleOperationMode = 'RUNNING' | 'STOPPING' | 'STOPPED'

export interface LinearRetriever extends RetrieverBase {
retrievers?: InnerRetriever[]
rank_window_size: integer
}

export type MapboxVectorTiles = ArrayBuffer

export interface MergesStats {
Expand Down Expand Up @@ -2559,6 +2570,13 @@ export type Password = string

export type Percentage = string | float

export interface PinnedRetriever extends RetrieverBase {
retriever: RetrieverContainer
ids?: string[]
docs?: SpecifiedDocument[]
rank_window_size: integer
}

export type PipelineName = string

export interface PluginStats {
Expand Down Expand Up @@ -2644,6 +2662,11 @@ export interface RescoreVector {
oversample: float
}

export interface RescorerRetriever extends RetrieverBase {
retriever: RetrieverContainer
rescore: SearchRescore | SearchRescore[]
}

export type Result = 'created' | 'updated' | 'deleted' | 'not_found' | 'noop'

export interface Retries {
Expand All @@ -2654,6 +2677,7 @@ export interface Retries {
export interface RetrieverBase {
filter?: QueryDslQueryContainer | QueryDslQueryContainer[]
min_score?: float
_name?: string
}

export interface RetrieverContainer {
Expand All @@ -2662,6 +2686,9 @@ export interface RetrieverContainer {
rrf?: RRFRetriever
text_similarity_reranker?: TextSimilarityReranker
rule?: RuleRetriever
rescorer?: RescorerRetriever
linear?: LinearRetriever
pinned?: PinnedRetriever
}

export type Routing = string
Expand All @@ -2672,14 +2699,16 @@ export interface RrfRank {
}

export interface RuleRetriever extends RetrieverBase {
ruleset_ids: Id[]
ruleset_ids: Id | Id[]
match_criteria: any
retriever: RetrieverContainer
rank_window_size?: integer
}

export type ScalarValue = long | double | string | boolean | null

export type ScoreNormalizer = 'none' | 'minmax' | 'l2_norm'

export interface ScoreSort {
order?: SortOrder
}
Expand Down Expand Up @@ -2828,6 +2857,11 @@ export type SortOrder = 'asc' | 'desc'

export type SortResults = FieldValue[]

export interface SpecifiedDocument {
index?: IndexName
id: Id
}

export interface StandardRetriever extends RetrieverBase {
query?: QueryDslQueryContainer
search_after?: SortResults
Expand Down Expand Up @@ -6108,7 +6142,7 @@ export type QueryDslGeoDistanceQuery = QueryDslGeoDistanceQueryKeys
export type QueryDslGeoExecution = 'memory' | 'indexed'

export interface QueryDslGeoGridQuery extends QueryDslQueryBase {
geogrid?: GeoTile
geotile?: GeoTile
geohash?: GeoHash
geohex?: GeoHexCell
}
Expand Down Expand Up @@ -6178,6 +6212,8 @@ export interface QueryDslIntervalsContainer {
fuzzy?: QueryDslIntervalsFuzzy
match?: QueryDslIntervalsMatch
prefix?: QueryDslIntervalsPrefix
range?: QueryDslIntervalsRange
regexp?: QueryDslIntervalsRegexp
wildcard?: QueryDslIntervalsWildcard
}

Expand Down Expand Up @@ -6223,9 +6259,26 @@ export interface QueryDslIntervalsQuery extends QueryDslQueryBase {
fuzzy?: QueryDslIntervalsFuzzy
match?: QueryDslIntervalsMatch
prefix?: QueryDslIntervalsPrefix
range?: QueryDslIntervalsRange
regexp?: QueryDslIntervalsRegexp
wildcard?: QueryDslIntervalsWildcard
}

export interface QueryDslIntervalsRange {
analyzer?: string
gte?: string
gt?: string
lte?: string
lt?: string
use_field?: Field
}

export interface QueryDslIntervalsRegexp {
analyzer?: string
pattern: string
use_field?: Field
}

export interface QueryDslIntervalsWildcard {
analyzer?: string
pattern: string
Expand Down Expand Up @@ -6543,7 +6596,8 @@ export interface QueryDslRegexpQuery extends QueryDslQueryBase {

export interface QueryDslRuleQuery extends QueryDslQueryBase {
organic: QueryDslQueryContainer
ruleset_ids: Id[]
ruleset_ids?: Id | Id[]
ruleset_id?: string
match_criteria: any
}

Expand Down Expand Up @@ -13208,7 +13262,7 @@ export interface InferenceGoogleVertexAITaskSettings {
top_n?: integer
}

export type InferenceGoogleVertexAITaskType = 'rerank' | 'text_embedding'
export type InferenceGoogleVertexAITaskType = 'rerank' | 'text_embedding' | 'completion' | 'chat_completion'

export interface InferenceHuggingFaceServiceSettings {
api_key: string
Expand Down Expand Up @@ -19900,6 +19954,14 @@ export interface SlmSnapshotLifecycle {
stats: SlmStatistics
}

export interface SlmSnapshotPolicyStats {
policy: string
snapshots_taken: long
snapshots_failed: long
snapshots_deleted: long
snapshot_deletion_failures: long
}

export interface SlmStatistics {
retention_deletion_time?: Duration
retention_deletion_time_millis?: DurationValue<UnitMillis>
Expand Down Expand Up @@ -19965,7 +20027,7 @@ export interface SlmGetStatsResponse {
total_snapshot_deletion_failures: long
total_snapshots_failed: long
total_snapshots_taken: long
policy_stats: string[]
policy_stats: SlmSnapshotPolicyStats[]
}

export interface SlmGetStatusRequest extends RequestBase {
Expand Down
Loading