File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
ApiGenerator/RestSpecification/Core
Elasticsearch.Net/Api/RequestParameters Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 38
38
"type" :" boolean" ,
39
39
"description" :" Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown"
40
40
},
41
+ "index_details" :{
42
+ "type" :" boolean" ,
43
+ "description" :" Whether to include details of each index in the snapshot, if those details are available. Defaults to false."
44
+ },
41
45
"verbose" :{
42
46
"type" :" boolean" ,
43
47
"description" :" Whether to show verbose snapshot info or only show the basic info found in the repository index blob"
Original file line number Diff line number Diff line change @@ -149,6 +149,13 @@ public bool? IgnoreUnavailable
149
149
set => Q ( "ignore_unavailable" , value ) ;
150
150
}
151
151
152
+ ///<summary>Whether to include details of each index in the snapshot, if those details are available. Defaults to false.</summary>
153
+ public bool ? IndexDetails
154
+ {
155
+ get => Q < bool ? > ( "index_details" ) ;
156
+ set => Q ( "index_details" , value ) ;
157
+ }
158
+
152
159
///<summary>Explicit operation timeout for connection to master node</summary>
153
160
public TimeSpan MasterTimeout
154
161
{
You can’t perform that action at this time.
0 commit comments