File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/Nest/Cluster/ClusterStats Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ public class ClusterNodesStats
12
12
[ DataMember ( Name = "discovery_types" ) ]
13
13
public IReadOnlyDictionary < string , int > DiscoveryTypes { get ; internal set ; }
14
14
15
+ [ DataMember ( Name = "packaging_types" ) ]
16
+ public IReadOnlyCollection < NodePackagingType > PackagingTypes { get ; internal set ; }
17
+
15
18
[ DataMember ( Name = "fs" ) ]
16
19
public ClusterFileSystem FileSystem { get ; internal set ; }
17
20
@@ -34,6 +37,18 @@ public class ClusterNodesStats
34
37
public IReadOnlyCollection < string > Versions { get ; internal set ; }
35
38
}
36
39
40
+ public class NodePackagingType
41
+ {
42
+ [ DataMember ( Name = "flavor" ) ]
43
+ public string Flavor { get ; internal set ; }
44
+
45
+ [ DataMember ( Name = "type" ) ]
46
+ public string Type { get ; internal set ; }
47
+
48
+ [ DataMember ( Name = "count" ) ]
49
+ public int Count { get ; internal set ; }
50
+ }
51
+
37
52
[ DataContract ]
38
53
public class ClusterNetworkTypes
39
54
{
You can’t perform that action at this time.
0 commit comments