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 1
1
using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Runtime . Serialization ;
4
- using System . Security . Cryptography . X509Certificates ;
5
4
using Newtonsoft . Json ;
6
5
using Newtonsoft . Json . Converters ;
7
6
@@ -295,7 +294,26 @@ public enum StoreCopy
295
294
public class AllocationStore
296
295
{
297
296
[ JsonProperty ( "shard_copy" ) ]
297
+ [ Obsolete ( "Removed in Elasticsearch 5.2" ) ]
298
298
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 ; }
299
317
}
300
318
301
319
[ JsonObject ]
You can’t perform that action at this time.
0 commit comments