Skip to content

Commit 8a2cc40

Browse files
committed
Make name mandatory
1 parent 69c253a commit 8a2cc40

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

output/schema/schema.json

Lines changed: 1 addition & 1 deletion
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
@@ -164,12 +164,6 @@
164164
],
165165
"response": []
166166
},
167-
"indices.resolve_cluster": {
168-
"request": [
169-
"Request: path parameter 'name' is required in the json spec"
170-
],
171-
"response": []
172-
},
173167
"indices.rollover": {
174168
"request": [
175169
"Request: missing json spec query parameter 'lazy'"

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/indices/resolve_cluster/ResolveClusterRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export interface Request extends RequestBase {
8787
* If no index expression is specified, information about all remote clusters configured on the local cluster
8888
* is returned without doing any index matching
8989
*/
90-
name?: Names
90+
name: Names
9191
}
9292
query_parameters: {
9393
/**

0 commit comments

Comments
 (0)