Skip to content

Add Query Parameters to Cluster Allocation Explain API #129342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d3a29bb
Add Path Parameters to Cluster Allocation Explain API
joshua-adams-1 Jun 12, 2025
77080cb
Update PARAMETER_KEY in RestRequestTests
joshua-adams-1 Jun 13, 2025
a8042af
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jun 13, 2025
84817db
David Turner revision 1 comments fixed
joshua-adams-1 Jun 13, 2025
17ac269
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jun 13, 2025
4e77b90
Add Versioning to REST Tests
joshua-adams-1 Jun 13, 2025
96e219b
Remove unnecessary parameter check
joshua-adams-1 Jul 8, 2025
ec073da
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 8, 2025
6b3d902
Rename test reason to 9.2.0
joshua-adams-1 Jul 8, 2025
b6df9a5
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 8, 2025
f004bf4
Remove PATH_PARAMETERS constant
joshua-adams-1 Jul 8, 2025
78f5f3b
Remove comments from 10_basic.yml
joshua-adams-1 Jul 8, 2025
842a67e
Update path params to query params
joshua-adams-1 Jul 8, 2025
78f074c
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 8, 2025
0451f37
Add YAML test capabilities
joshua-adams-1 Jul 8, 2025
a7e8fa6
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 8, 2025
a8ca621
Make rest API equal to api spec
joshua-adams-1 Jul 8, 2025
bc11bdd
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 8, 2025
e87058d
Fix David Turner comments
joshua-adams-1 Jul 11, 2025
cd00b33
Merge branch 'main' into feature/allocation-explain-query-string-para…
joshua-adams-1 Jul 11, 2025
d88c054
[CI] Auto commit changes from spotless
Jul 11, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@
]
},
"params":{
"index": {
"type": "string",
"description": "Specifies the name of the index that you would like an explanation for"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

},
"shard": {
"type": "number",
"description": "Specifies the ID of the shard that you would like an explanation for"
},
"primary": {
"type":"boolean",
"description":"If true, returns explanation for the primary shard for the given shard ID"
},
"current_node": {
"type": "string",
"description": "Specifies the node ID or the name of the node to only explain a shard that is currently located on the specified node"
},
"master_timeout":{
"type":"time",
"description":"Timeout for connection to master node"
Expand Down
Loading