Skip to content

Commit 82f814c

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/docs/examples/multi-414e51b474
2 parents e9aac88 + cf282c3 commit 82f814c

File tree

75 files changed

+1758
-239
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1758
-239
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 303 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 291 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 598 additions & 122 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
2-
"endpointErrors": {},
2+
"endpointErrors": {
3+
"monitoring.bulk": {
4+
"request": [
5+
"Request: different number of urls in the json spec",
6+
"Request: missing json spec path parameter 'type'"
7+
],
8+
"response": []
9+
}
10+
},
311
"generalErrors": [
412
"Dangling type '_global.scripts_painless_execute:PainlessExecutionPosition'",
513
"Dangling type '_global.scripts_painless_execute:PainlessScript'",

output/typescript/types.ts

Lines changed: 45 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_doc_ids/table.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@ inference-api-put-jinaai,https://www.elastic.co/docs/api/doc/elasticsearch/opera
387387
inference-api-put-llama,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-llama,,
388388
inference-api-put-mistral,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-mistral,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/infer-service-mistral.html,
389389
inference-api-put-openai,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-openai,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/infer-service-openai.html,
390+
inference-api-put-openshift-ai,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-openshift-ai,,
390391
inference-api-put-voyageai,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-voyageai,,
391392
inference-api-put-watsonx,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put-watsonx,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/infer-service-watsonx-ai.html,
392393
inference-api-stream,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-stream-inference,https://www.elastic.co/guide/en/elasticsearch/reference/8.18/stream-inference-api.html,

specification/_global/rank_eval/RankEvalRequest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
import { RequestBase } from '@_types/Base'
21-
import { ExpandWildcards, Indices } from '@_types/common'
21+
import { ExpandWildcards, Indices, SearchType } from '@_types/common'
2222
import { RankEvalMetric, RankEvalRequestItem } from './types'
2323

2424
/**
@@ -66,7 +66,7 @@ export interface Request extends RequestBase {
6666
* @server_default false
6767
*/
6868
ignore_unavailable?: boolean
69-
search_type?: string
69+
search_type?: SearchType
7070
}
7171
body: {
7272
/** A set of typical search requests, together with their provided ratings. */

specification/_json_spec/bulk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"description": "If `true` then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` (the default) then do nothing with refreshes."
4242
},
4343
"routing": {
44-
"type": "string",
44+
"type": "list",
4545
"description": "Specific routing value"
4646
},
4747
"timeout": {

specification/_json_spec/cluster.delete_component_template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"methods": ["DELETE"],
1717
"parts": {
1818
"name": {
19-
"type": "string",
20-
"description": "The name of the template"
19+
"type": "list",
20+
"description": "Comma-separated list or wildcard expression of component template names used to limit the request."
2121
}
2222
}
2323
}

specification/_json_spec/cluster.exists_component_template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"methods": ["HEAD"],
1717
"parts": {
1818
"name": {
19-
"type": "string",
20-
"description": "The name of the template"
19+
"type": "list",
20+
"description": "Comma-separated list of component template names used to limit the request. Wildcard (*) expressions are supported."
2121
}
2222
}
2323
}

0 commit comments

Comments
 (0)