Skip to content

Commit 0b24a09

Browse files
committed
Update openapi schema
1 parent 8d00b77 commit 0b24a09

File tree

1 file changed

+58
-3
lines changed

1 file changed

+58
-3
lines changed

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 58 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30601,6 +30601,15 @@
3060130601
"total": {
3060230602
"type": "number"
3060330603
},
30604+
"running": {
30605+
"type": "number"
30606+
},
30607+
"partial": {
30608+
"type": "number"
30609+
},
30610+
"failed": {
30611+
"type": "number"
30612+
},
3060430613
"details": {
3060530614
"type": "object",
3060630615
"additionalProperties": {
@@ -30611,7 +30620,10 @@
3061130620
"required": [
3061230621
"skipped",
3061330622
"successful",
30614-
"total"
30623+
"total",
30624+
"running",
30625+
"partial",
30626+
"failed"
3061530627
]
3061630628
},
3061730629
"_types:ClusterDetails": {
@@ -32189,7 +32201,7 @@
3218932201
"externalDocs": {
3219032202
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-text-expansion-query.html"
3219132203
},
32192-
"description": "Uses a natural language processing model to convert the query text into a list of token-weight pairs which are then used in a query against a rank features field.",
32204+
"description": "Uses a natural language processing model to convert the query text into a list of token-weight pairs which are then used in a query against a sparse vector or rank features field.",
3219332205
"type": "object",
3219432206
"additionalProperties": {
3219532207
"$ref": "#/components/schemas/_types.query_dsl:TextExpansionQuery"
@@ -48459,6 +48471,13 @@
4845948471
"ilm_policy": {
4846048472
"$ref": "#/components/schemas/_types:Name"
4846148473
},
48474+
"next_generation_managed_by": {
48475+
"$ref": "#/components/schemas/_types:ManagedBy"
48476+
},
48477+
"prefer_ilm": {
48478+
"description": "Indicates if ILM should take precedence over DSL in case both are configured to managed this data stream.",
48479+
"type": "boolean"
48480+
},
4846248481
"indices": {
4846348482
"description": "Array of objects containing information about the data stream’s backing indices.\nThe last item in this array contains information about the stream’s current write index.",
4846448483
"type": "array",
@@ -48493,13 +48512,37 @@
4849348512
"required": [
4849448513
"generation",
4849548514
"hidden",
48515+
"next_generation_managed_by",
48516+
"prefer_ilm",
4849648517
"indices",
4849748518
"name",
4849848519
"status",
4849948520
"template",
4850048521
"timestamp_field"
4850148522
]
4850248523
},
48524+
"_types:ManagedBy": {
48525+
"oneOf": [
48526+
{
48527+
"type": "string",
48528+
"enum": [
48529+
"Index Lifecycle Management"
48530+
]
48531+
},
48532+
{
48533+
"type": "string",
48534+
"enum": [
48535+
"Data stream lifecycle"
48536+
]
48537+
},
48538+
{
48539+
"type": "string",
48540+
"enum": [
48541+
"Unmanaged"
48542+
]
48543+
}
48544+
]
48545+
},
4850348546
"indices._types:DataStreamIndex": {
4850448547
"type": "object",
4850548548
"properties": {
@@ -48508,11 +48551,23 @@
4850848551
},
4850948552
"index_uuid": {
4851048553
"$ref": "#/components/schemas/_types:Uuid"
48554+
},
48555+
"ilm_policy": {
48556+
"$ref": "#/components/schemas/_types:Name"
48557+
},
48558+
"managed_by": {
48559+
"$ref": "#/components/schemas/_types:ManagedBy"
48560+
},
48561+
"prefer_ilm": {
48562+
"description": "Indicates if ILM should take precedence over DSL in case both are configured to manage this index.",
48563+
"type": "boolean"
4851148564
}
4851248565
},
4851348566
"required": [
4851448567
"index_name",
48515-
"index_uuid"
48568+
"index_uuid",
48569+
"managed_by",
48570+
"prefer_ilm"
4851648571
]
4851748572
},
4851848573
"indices._types:DataStreamTimestampField": {

0 commit comments

Comments
 (0)