Skip to content

Commit d6275be

Browse files
authored
Merge branch '9.0' into backport-3873-to-9.0
2 parents fe9fd5b + 1caed30 commit d6275be

24 files changed

+1282
-1257
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 205 additions & 194 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: 203 additions & 213 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 121 additions & 377 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: 483 additions & 358 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: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,6 @@
176176
],
177177
"response": []
178178
},
179-
"ml.stop_datafeed": {
180-
"request": [
181-
"Request: missing json spec query parameter 'allow_no_datafeeds'"
182-
],
183-
"response": []
184-
},
185179
"msearch": {
186180
"request": [
187181
"Request: query parameter 'allow_no_indices' does not exist in the json spec",

output/typescript/types.ts

Lines changed: 38 additions & 16 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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ inference-api-delete,https://www.elastic.co/docs/api/doc/elasticsearch/operation
317317
inference-api-get,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-get
318318
inference-api-post,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-inference
319319
inference-api-put,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-put
320+
inference-api-put-watsonx,https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-service-watsonx-ai.html
320321
inference-api-stream,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-stream-inference
321322
inference-api-update,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-update
322323
inference-processor,https://www.elastic.co/guide/en/elasticsearch/reference/current/inference-processor.html
@@ -854,4 +855,7 @@ watcher-api-start,https://www.elastic.co/docs/api/doc/elasticsearch/operation/op
854855
watcher-api-stats,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-watcher-stats
855856
watcher-api-stop,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-watcher-stop
856857
watcher-api-update-settings,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-watcher-update-settings
858+
watsonx-api-keys,https://cloud.ibm.com/iam/apikeys
859+
watsonx-api-models,https://www.ibm.com/products/watsonx-ai/foundation-models
860+
watsonx-api-version,https://cloud.ibm.com/apidocs/watsonx-ai#active-version-dates
857861
xpack-rollup,https://www.elastic.co/guide/en/elasticsearch/reference/current/xpack-rollup.html
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"inference.put_watsonx": {
3+
"documentation": {
4+
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-service-watsonx-ai.html",
5+
"description": "Configure a Watsonx inference endpoint"
6+
},
7+
"stability": "stable",
8+
"visibility": "public",
9+
"headers": {
10+
"accept": ["application/json"],
11+
"content_type": ["application/json"]
12+
},
13+
"url": {
14+
"paths": [
15+
{
16+
"path": "/_inference/{task_type}/{watsonx_inference_id}",
17+
"methods": ["PUT"],
18+
"parts": {
19+
"task_type": {
20+
"type": "string",
21+
"description": "The task type"
22+
},
23+
"watsonx_inference_id": {
24+
"type": "string",
25+
"description": "The inference Id"
26+
}
27+
}
28+
}
29+
]
30+
},
31+
"body": {
32+
"description": "The inference endpoint's task and service settings"
33+
}
34+
}
35+
}

specification/_json_spec/ml.get_trained_models.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@
3939
"required": false,
4040
"description": "A comma-separate list of fields to optionally include. Valid options are 'definition' and 'total_feature_importance'. Default is none."
4141
},
42-
"include_model_definition": {
43-
"type": "boolean",
44-
"required": false,
45-
"description": "Should the full model definition be included in the results. These definitions can be large. So be cautious when including them. Defaults to false.",
46-
"default": false,
47-
"deprecated": true
48-
},
4942
"decompress_definition": {
5043
"type": "boolean",
5144
"required": false,

specification/_json_spec/ml.infer_trained_model.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,6 @@
2222
"required": true
2323
}
2424
}
25-
},
26-
{
27-
"path": "/_ml/trained_models/{model_id}/deployment/_infer",
28-
"methods": ["POST"],
29-
"parts": {
30-
"model_id": {
31-
"type": "string",
32-
"description": "The unique identifier of the trained model.",
33-
"required": true
34-
}
35-
},
36-
"deprecated": {
37-
"version": "8.3.0",
38-
"description": "/_ml/trained_models/{model_id}/deployment/_infer is deprecated. Use /_ml/trained_models/{model_id}/_infer instead"
39-
}
4025
}
4126
]
4227
},

0 commit comments

Comments
 (0)