|
| 1 | +using Newtonsoft.Json; |
| 2 | +using System; |
| 3 | +using System.Collections.Generic; |
| 4 | +using System.Linq; |
| 5 | +using System.Text; |
| 6 | + |
| 7 | +namespace Nest |
| 8 | +{ |
| 9 | + [JsonObject] |
| 10 | + public class CatSegmentsRecord : ICatRecord |
| 11 | + { |
| 12 | + [JsonProperty("index")] |
| 13 | + public string Index { get; set; } |
| 14 | + |
| 15 | + [JsonProperty("shard")] |
| 16 | + public string Shard { get; set; } |
| 17 | + |
| 18 | + [JsonProperty("prirep")] |
| 19 | + public string PrimaryReplica { get; set; } |
| 20 | + |
| 21 | + [JsonProperty("ip")] |
| 22 | + public string Ip { get; set; } |
| 23 | + |
| 24 | + [JsonProperty("segment")] |
| 25 | + public string Segment { get; set; } |
| 26 | + |
| 27 | + [JsonProperty("generation")] |
| 28 | + public string Generation { get; set; } |
| 29 | + |
| 30 | + [JsonProperty("docs.count")] |
| 31 | + public string DocsCount { get; set; } |
| 32 | + |
| 33 | + [JsonProperty("docs.deleted")] |
| 34 | + public string DocsDeleted { get; set; } |
| 35 | + |
| 36 | + [JsonProperty("size")] |
| 37 | + public string Size { get; set; } |
| 38 | + |
| 39 | + [JsonProperty("size.memory")] |
| 40 | + public string SizeMemory { get; set; } |
| 41 | + |
| 42 | + [JsonProperty("committed")] |
| 43 | + public string Committed { get; set; } |
| 44 | + |
| 45 | + [JsonProperty("searchable")] |
| 46 | + public string Searchable { get; set; } |
| 47 | + |
| 48 | + [JsonProperty("version")] |
| 49 | + public string Version { get; set; } |
| 50 | + |
| 51 | + [JsonProperty("compound")] |
| 52 | + public string Compound { get; set; } |
| 53 | + } |
| 54 | +} |
0 commit comments