From 359e12d65ac3d3f060a7ccb9955407056a3e4343 Mon Sep 17 00:00:00 2001 From: Russ Cam Date: Thu, 27 Jun 2019 19:26:07 +1000 Subject: [PATCH] Remove Snapshot stats fields (#3886) Relates: https://github.com/elastic/elasticsearch/pull/30890 --- .../SnapshotStatus/SnapshotStatusResponse.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Nest/Modules/SnapshotAndRestore/Snapshot/SnapshotStatus/SnapshotStatusResponse.cs b/src/Nest/Modules/SnapshotAndRestore/Snapshot/SnapshotStatus/SnapshotStatusResponse.cs index f73c4946c33..45ad34018f1 100644 --- a/src/Nest/Modules/SnapshotAndRestore/Snapshot/SnapshotStatus/SnapshotStatusResponse.cs +++ b/src/Nest/Modules/SnapshotAndRestore/Snapshot/SnapshotStatus/SnapshotStatusResponse.cs @@ -85,22 +85,10 @@ public class SnapshotShardsStats public class SnapshotStats { - [DataMember(Name ="number_of_files")] - public long NumberOfFiles { get; internal set; } - - [DataMember(Name ="processed_files")] - public long ProcessedFiles { get; internal set; } - - [DataMember(Name ="processed_size_in_bytes")] - public long ProcessedSizeInBytes { get; internal set; } - [DataMember(Name ="start_time_in_millis")] public long StartTimeInMilliseconds { get; internal set; } [DataMember(Name ="time_in_millis")] public long TimeInMilliseconds { get; internal set; } - - [DataMember(Name ="total_size_in_bytes")] - public long TotalSizeInBytes { get; internal set; } } }