Skip to content

Commit d6bdf82

Browse files
[codegen] 7.x synchronization (#5559)
Co-authored-by: Mpdreamz <Mpdreamz@users.noreply.github.com>
1 parent 006603f commit d6bdf82

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

src/ApiGenerator/RestSpecification/Core/fleet.global_checkpoints.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
"description":"Whether to wait for the global checkpoint to advance past the specified current checkpoints",
3333
"default":"false"
3434
},
35+
"wait_for_index":{
36+
"type":"boolean",
37+
"description":"Whether to wait for the target index to exist and all primary shards be active",
38+
"default":"false"
39+
},
3540
"checkpoints":{
3641
"type":"list",
3742
"description":"Comma separated list of checkpoints",

src/ApiGenerator/RestSpecification/Core/searchable_snapshots.stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"searchable_snapshots.stats": {
33
"documentation": {
44
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/searchable-snapshots-apis.html",
5-
"description": "Retrieve various statistics about searchable snapshots."
5+
"description": "Retrieve shard-level statistics about searchable snapshots."
66
},
77
"stability": "experimental",
88
"visibility":"public",

src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.Fleet.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,12 @@ public bool? WaitForAdvance
4949
get => Q<bool? >("wait_for_advance");
5050
set => Q("wait_for_advance", value);
5151
}
52+
53+
///<summary>Whether to wait for the target index to exist and all primary shards be active</summary>
54+
public bool? WaitForIndex
55+
{
56+
get => Q<bool? >("wait_for_index");
57+
set => Q("wait_for_index", value);
58+
}
5259
}
5360
}

0 commit comments

Comments
 (0)