Skip to content

Commit 6566a55

Browse files
authored
Merge branch 'main' into reindex/add-metrics
2 parents 290fa48 + bb71252 commit 6566a55

37 files changed

+216
-7
lines changed

rest-api-spec/src/main/resources/rest-api-spec/api/cat.segments.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,17 @@
9696
},
9797
"ignore_unavailable": {
9898
"type": "boolean",
99+
"default": false,
99100
"description": "Whether specified concrete indices should be ignored when unavailable (missing or closed). Only allowed when providing an index expression."
100101
},
101102
"ignore_throttled": {
102103
"type": "boolean",
104+
"default": false,
103105
"description": "Whether specified concrete, expanded or aliased indices should be ignored when throttled. Only allowed when providing an index expression."
104106
},
105107
"allow_no_indices": {
106108
"type": "boolean",
109+
"default": true,
107110
"description": "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified). Only allowed when providing an index expression."
108111
},
109112
"expand_wildcards": {

rest-api-spec/src/main/resources/rest-api-spec/api/esql.get_query.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"esql.get_query": {
33
"documentation": {
4-
"url": null,
4+
"url": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-esql-get-query",
55
"description": "Get a specific running ES|QL query information"
66
},
77
"stability": "experimental",

rest-api-spec/src/main/resources/rest-api-spec/api/esql.list_queries.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"esql.list_queries": {
33
"documentation": {
4-
"url": null,
4+
"url": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-esql-list-queries",
55
"description": "Get running ES|QL queries information"
66
},
77
"stability": "experimental",

rest-api-spec/src/main/resources/rest-api-spec/api/indices.resolve_index.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"logsdb",
5959
"lookup"
6060
],
61-
"default": "",
6261
"description": "Filter indices by index mode. Comma-separated list of IndexMode. Empty means no filter."
6362
},
6463
"project_routing": {

rest-api-spec/src/main/resources/rest-api-spec/api/inference.chat_completion_unified.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
"body": {
3434
"description": "The inference payload",
3535
"required": true
36+
},
37+
"params": {
38+
"timeout": {
39+
"type": "time",
40+
"description": "Specifies the amount of time to wait for the inference request to complete.",
41+
"default": "30s"
42+
}
3643
}
3744
}
3845
}

rest-api-spec/src/main/resources/rest-api-spec/api/inference.completion.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
"body": {
3434
"description": "The inference payload",
3535
"required": true
36+
},
37+
"params": {
38+
"timeout": {
39+
"type": "time",
40+
"description": "Specifies the amount of time to wait for the inference request to complete.",
41+
"default": "30s"
42+
}
3643
}
3744
}
3845
}

rest-api-spec/src/main/resources/rest-api-spec/api/inference.inference.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@
4949
"body": {
5050
"description": "The inference payload",
5151
"required": true
52+
},
53+
"params": {
54+
"timeout": {
55+
"type": "time",
56+
"description": "The amount of time to wait for the inference request to complete.",
57+
"default": "30s"
58+
}
5259
}
5360
}
5461
}

rest-api-spec/src/main/resources/rest-api-spec/api/inference.put.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@
4949
"body": {
5050
"description": "The inference endpoint's task and service settings",
5151
"required": true
52+
},
53+
"params": {
54+
"timeout": {
55+
"type": "time",
56+
"description": "Specifies the amount of time to wait for the inference endpoint to be created.",
57+
"default": "30s"
58+
}
5259
}
5360
}
5461
}

rest-api-spec/src/main/resources/rest-api-spec/api/inference.put_ai21.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@
3737
"body": {
3838
"description": "The inference endpoint's task and service settings",
3939
"required": true
40+
},
41+
"params": {
42+
"timeout": {
43+
"type": "time",
44+
"description": "Specifies the amount of time to wait for the inference endpoint to be created.",
45+
"default": "30s"
46+
}
4047
}
4148
}
4249
}

rest-api-spec/src/main/resources/rest-api-spec/api/inference.put_alibabacloud.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@
3737
"body": {
3838
"description": "The inference endpoint's task and service settings",
3939
"required": true
40+
},
41+
"params": {
42+
"timeout": {
43+
"type": "time",
44+
"description": "Specifies the amount of time to wait for the inference endpoint to be created.",
45+
"default": "30s"
46+
}
4047
}
4148
}
4249
}

0 commit comments

Comments
 (0)