Skip to content

Commit 8df1c22

Browse files
Mpdreamzrusscam
authored andcommitted
Add uuid to indices stats (#3437)
As per elastic/elasticsearch#31871 (cherry picked from commit cdfcc2c)
1 parent a884743 commit 8df1c22

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Nest/Indices/Monitoring/IndicesStats/IndicesStats.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ namespace Nest
66
[JsonObject]
77
public class IndicesStats
88
{
9+
/// <summary>
10+
/// Universal Unique Identifier for the index
11+
/// </summary>
12+
/// <remarks>
13+
/// Introduced in Elasticsearch 6.4.0
14+
/// </remarks>
15+
[JsonProperty("uuid")]
16+
public string UUID { get; }
17+
918
[JsonProperty("primaries")]
1019
public IndexStats Primaries { get; internal set; }
1120

0 commit comments

Comments
 (0)