Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions compiler/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions docs/examples/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 10 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
},
"dependencies": {
"@redocly/cli": "^1.34.6",
"bump-cli": "^2.9.10"
"bump-cli": "^2.9.11"
},
"version": "overlay"
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
},
"timeout": {
"type": "time",
"default": "30s",
"description": "Timeout for acknowledgements from all nodes"
}
}
Expand Down
7 changes: 7 additions & 0 deletions specification/_json_spec/_internal.get_desired_nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
"methods": ["GET"]
}
]
},
"params": {
"master_timeout": {
"type": "time",
"description": "Period to wait for a connection to the master node.",
"default": "30s"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@
"params": {
"names": {
"type": "list",
"default": [],
"description": "A comma-separated list of node names to prevalidate"
},
"ids": {
"type": "list",
"default": [],
"description": "A comma-separated list of node IDs to prevalidate"
},
"external_ids": {
"type": "list",
"default": [],
"description": "A comma-separated list of node external IDs to prevalidate"
},
"master_timeout": {
Expand All @@ -37,6 +40,7 @@
},
"timeout": {
"type": "time",
"default": "30s",
"description": "Explicit operation timeout"
}
}
Expand Down
12 changes: 11 additions & 1 deletion specification/_json_spec/_internal.update_desired_nodes.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"description": "the history id"
},
"version": {
"type": "int",
"type": "long",
"description": "the version number"
}
}
Expand All @@ -32,6 +32,16 @@
"dry_run": {
"type": "boolean",
"description": "Simulate the update"
},
"master_timeout": {
"type": "time",
"description": "Period to wait for a connection to the master node.",
"default": "30s"
},
"timeout": {
"type": "time",
"description": "Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.",
"default": "30s"
}
},
"body": {
Expand Down
11 changes: 5 additions & 6 deletions specification/_json_spec/async_search.submit.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
},
"analyze_wildcard": {
"type": "boolean",
"default": false,
"description": "Specify whether wildcard and prefix queries should be analyzed (default: false)"
},
"ccs_minimize_roundtrips": {
Expand Down Expand Up @@ -91,7 +92,8 @@
},
"from": {
"type": "int",
"description": "Starting offset (default: 0)"
"default": 0,
"description": "Starting offset"
},
"ignore_unavailable": {
"type": "boolean",
Expand Down Expand Up @@ -119,10 +121,6 @@
"type": "string",
"description": "Specify the node or shard the operation should be performed on (default: random)"
},
"project_routing": {
"type": "string",
"description": "A Lucene query using project metadata tags to limit which projects to search, such as _alias:_origin or _alias:*pr*. Only supported in serverless."
},
"rest_total_hits_as_int": {
"type": "boolean",
"description": "Indicates whether hits.total should be rendered as an integer or an object in the rest search response",
Expand All @@ -143,7 +141,8 @@
},
"size": {
"type": "int",
"description": "Number of hits to return (default: 10)"
"default": 10,
"description": "Number of hits to return"
},
"sort": {
"type": "list",
Expand Down
14 changes: 11 additions & 3 deletions specification/_json_spec/capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,28 @@
},
"path": {
"type": "string",
"default": "/",
"description": "API path to check"
},
"parameters": {
"type": "string",
"type": "list",
"default": [],
"description": "Comma-separated list of API parameters to check"
},
"capabilities": {
"type": "string",
"type": "list",
"default": [],
"description": "Comma-separated list of arbitrary API capabilities to check"
},
"local_only": {
"type": "boolean",
"description": "True if only the node being called should be considered",
"visibility": "private"
"default": false
},
"timeout": {
"type": "time",
"description": "Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.",
"default": "30s"
}
}
}
Expand Down
13 changes: 12 additions & 1 deletion specification/_json_spec/cat.circuit_breaker.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,18 @@
},
"h": {
"type": "list",
"description": "Comma-separated list of column names to display"
"description": "Comma-separated list of column names to display",
"options": [
"breaker",
"estimated",
"estimated_bytes",
"limit",
"limit_bytes",
"node_id",
"node_name",
"overhead",
"tripped"
]
},
"help": {
"type": "boolean",
Expand Down
4 changes: 0 additions & 4 deletions specification/_json_spec/cat.count.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@
"description": "Return help information",
"default": false
},
"project_routing": {
"type": "string",
"description": "A Lucene query using project metadata tags to limit which projects to search, such as _alias:_origin or _alias:*pr*. Only supported in serverless."
},
"s": {
"type": "list",
"description": "Comma-separated list of column names or column aliases to sort by"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"description": "Return settings in flat format (default: false)"
},
"settings_filter": {
"type": "string",
"type": "list",
"description": "Filter out results, for example to filter out sensitive information. Supports wildcards or full settings keys"
}
}
Expand Down
Loading