Skip to content
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

feat(swagger): scylla, add read barier endpoint #4107

Merged
merged 1 commit into from
Nov 12, 2024
Merged
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
37 changes: 37 additions & 0 deletions v3/swagger/gen/scylla/v1/client/operations/operations_client.go

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

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

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

41 changes: 41 additions & 0 deletions v3/swagger/scylla_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -12862,6 +12862,47 @@
},
"security": []
}
},
"/raft/read_barrier": {
"post": {
"description": "Triggers read barrier for the given Raft group to wait for previously committed commands in this group to be applied locally. For example, can be used on group 0 to wait for the node to obtain latest schema changes.",
"summary": "read_barrier",
"operationId": "RaftReadBarrierPost",
"deprecated": false,
"produces": [
"application/json"
],
"parameters": [
{
"name": "group_id",
"in": "query",
"required": false,
"type": "string",
"description": "The ID of the group. When absent, group0 is used."
},
{
"name": "timeout",
"in": "query",
"required": false,
"type": "integer",
"format": "int64",
"description": "Timeout in seconds after which the endpoint returns a failure. If not provided, 60s is used."
}
],
"responses": {
"200": {
"description": "Success",
"headers": {}
},
"default": {
"description": "internal server error",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
}
},
"security": []
}
}
},
"definitions": {
Expand Down
Loading