File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
src/Nest/XPack/AsyncSearch/Status Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Licensed to Elasticsearch B.V under one or more agreements.
2
+ // Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3
+ // See the LICENSE file in the project root for more information
4
+
5
+ namespace Nest
6
+ {
7
+ [ MapsApi ( "async_search.status.json" ) ]
8
+ [ ReadAs ( typeof ( AsyncSearchStatusRequest ) ) ]
9
+ public partial interface IAsyncSearchStatusRequest { }
10
+
11
+ /// <inheritdoc cref="IAsyncSearchStatusRequest"/>
12
+ public partial class AsyncSearchStatusRequest
13
+ {
14
+ }
15
+
16
+ /// <inheritdoc cref="IAsyncSearchStatusRequest"/>
17
+ public partial class AsyncSearchStatusDescriptor
18
+ {
19
+ }
20
+ }
Original file line number Diff line number Diff line change
1
+ // Licensed to Elasticsearch B.V under one or more agreements.
2
+ // Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3
+ // See the LICENSE file in the project root for more information
4
+
5
+ using System . Runtime . Serialization ;
6
+
7
+ namespace Nest
8
+ {
9
+ public class AsyncSearchStatusResponse : AsyncSearchResponseBase
10
+ {
11
+ [ DataMember ( Name = "_shards" ) ]
12
+ public ShardStatistics Shards { get ; internal set ; }
13
+
14
+ [ DataMember ( Name = "completion_status" ) ]
15
+ public int ? CompletionStatus { get ; internal set ; }
16
+ }
17
+ }
You can’t perform that action at this time.
0 commit comments