Skip to content
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions src/Nest/Indices/Monitoring/IndicesStats/IndicesStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ namespace Nest
[JsonObject]
public class IndicesStats
{
/// <summary>
/// Introduced in 6.4.0, returns the index UUID
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe move Introduced in 6.4.0, into <remarks></remarks>?

/// </summary>
[JsonProperty("uuid")]
public string Uuid { get; }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be UUID, to match elsewhere?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes


[JsonProperty("primaries")]
public IndexStats Primaries { get; internal set; }

Expand Down