File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
src/Nest/Cluster/ClusterAllocationExplain Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . Runtime . Serialization ;
4- using System . Security . Cryptography . X509Certificates ;
54using Newtonsoft . Json ;
65using Newtonsoft . Json . Converters ;
76
@@ -295,7 +294,26 @@ public enum StoreCopy
295294 public class AllocationStore
296295 {
297296 [ JsonProperty ( "shard_copy" ) ]
297+ [ Obsolete ( "Removed in Elasticsearch 5.2" ) ]
298298 public StoreCopy ShardCopy { get ; set ; }
299+
300+ [ JsonProperty ( "found" ) ]
301+ public bool ? Found { get ; set ; }
302+
303+ [ JsonProperty ( "in_sync" ) ]
304+ public bool ? InSync { get ; set ; }
305+
306+ [ JsonProperty ( "allocation_id" ) ]
307+ public string AllocationId { get ; set ; }
308+
309+ [ JsonProperty ( "matching_sync_id" ) ]
310+ public bool ? MatchingSyncId { get ; set ; }
311+
312+ [ JsonProperty ( "matching_size_in_bytes" ) ]
313+ public long ? MatchingSizeInBytes { get ; set ; }
314+
315+ [ JsonProperty ( "store_exception" ) ]
316+ public string StoreException { get ; set ; }
299317 }
300318
301319 [ JsonObject ]
You can’t perform that action at this time.
0 commit comments