forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct specification mismatches (opensearch-project#244)
* `node.stats::query.groups` should be `string[]` not `boolean` Signed-off-by: Thomas Farr <[email protected]> * Re-add `/_nodes/{metric}` nodes.info path Signed-off-by: Thomas Farr <[email protected]> * Correct cat.nodes record shape Signed-off-by: Thomas Farr <[email protected]> * Change references on `local` param to "cluster-manager" node to match others. Signed-off-by: Thomas Farr <[email protected]> * cluster.health::query.level also accepts `awareness_attributes` Signed-off-by: Thomas Farr <[email protected]> * Bytes also accepts the non `b` suffixed variants Signed-off-by: Thomas Farr <[email protected]> * Define metric enums Signed-off-by: Thomas Farr <[email protected]> * /_component_template APIs don't actually accept comma-separated lists Signed-off-by: Thomas Farr <[email protected]> * /_index_template APIs don't actually accept comma-separated lists Signed-off-by: Thomas Farr <[email protected]> * Fix lint Signed-off-by: Thomas Farr <[email protected]> * indices.add_block::path.index accepts a list of indices Signed-off-by: Thomas Farr <[email protected]> --------- Signed-off-by: Thomas Farr <[email protected]>
- Loading branch information
Showing
13 changed files
with
159 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ node_modules | |
|
||
# Jekyll Website | ||
_site/ | ||
|
||
# build output | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
openapi: 3.1.0 | ||
info: | ||
title: Schemas of cluster.state category | ||
description: Schemas of cluster.state category | ||
version: 1.0.0 | ||
paths: {} | ||
components: | ||
schemas: | ||
Metric: | ||
type: string | ||
enum: | ||
- blocks | ||
- metadata | ||
- nodes | ||
- routing_table | ||
- routing_nodes | ||
- master_node | ||
- cluster_manager_node | ||
- version | ||
- _all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters