We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a884743 commit 8df1c22Copy full SHA for 8df1c22
src/Nest/Indices/Monitoring/IndicesStats/IndicesStats.cs
@@ -6,6 +6,15 @@ namespace Nest
6
[JsonObject]
7
public class IndicesStats
8
{
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
+
18
[JsonProperty("primaries")]
19
public IndexStats Primaries { get; internal set; }
20
0 commit comments