Skip to content

[codegen] 7.x synchronization #5556

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
merged 1 commit into from
Apr 20, 2021
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
4 changes: 4 additions & 0 deletions src/ApiGenerator/RestSpecification/Core/snapshot.get.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
"type":"boolean",
"description":"Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown"
},
"index_details":{
"type":"boolean",
"description":"Whether to include details of each index in the snapshot, if those details are available. Defaults to false."
},
"verbose":{
"type":"boolean",
"description":"Whether to show verbose snapshot info or only show the basic info found in the repository index blob"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ public bool? IgnoreUnavailable
set => Q("ignore_unavailable", value);
}

///<summary>Whether to include details of each index in the snapshot, if those details are available. Defaults to false.</summary>
public bool? IndexDetails
{
get => Q<bool? >("index_details");
set => Q("index_details", value);
}

///<summary>Explicit operation timeout for connection to master node</summary>
public TimeSpan MasterTimeout
{
Expand Down