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
+ // ███╗ ██╗ ██████╗ ████████╗██╗ ██████╗███████╗
6
+ // ████╗ ██║██╔═══██╗╚══██╔══╝██║██╔════╝██╔════╝
7
+ // ██╔██╗ ██║██║ ██║ ██║ ██║██║ █████╗
8
+ // ██║╚██╗██║██║ ██║ ██║ ██║██║ ██╔══╝
9
+ // ██║ ╚████║╚██████╔╝ ██║ ██║╚██████╗███████╗
10
+ // ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝
11
+ // ------------------------------------------------
12
+ //
13
+ // This file is automatically generated.
14
+ // Please do not edit these files manually.
15
+ //
16
+ // ------------------------------------------------
17
+
18
+ using Elastic . Transport ;
19
+ using System ;
20
+ using System . Collections . Generic ;
21
+ using System . Linq . Expressions ;
22
+ using System . Text . Json ;
23
+ using System . Text . Json . Serialization ;
24
+
25
+ #nullable restore
26
+ namespace Elastic . Clients . Elasticsearch . AsyncSearch
27
+ {
28
+ public class AsyncSearchStatusRequestParameters : RequestParameters < AsyncSearchStatusRequestParameters >
29
+ {
30
+ }
31
+
32
+ public partial class AsyncSearchStatusRequest : PlainRequestBase < AsyncSearchStatusRequestParameters >
33
+ {
34
+ public AsyncSearchStatusRequest ( Elastic . Clients . Elasticsearch . Id id ) : base ( r => r . Required ( "id" , id ) )
35
+ {
36
+ }
37
+
38
+ internal override ApiUrls ApiUrls => ApiUrlsLookups . AsyncSearchStatus ;
39
+ protected override HttpMethod HttpMethod => HttpMethod . GET ;
40
+ protected override bool SupportsBody => false ;
41
+ }
42
+
43
+ public sealed partial class AsyncSearchStatusRequestDescriptor : RequestDescriptorBase < AsyncSearchStatusRequestDescriptor , AsyncSearchStatusRequestParameters >
44
+ {
45
+ public AsyncSearchStatusRequestDescriptor ( Elastic . Clients . Elasticsearch . Id id ) : base ( r => r . Required ( "id" , id ) )
46
+ {
47
+ }
48
+
49
+ internal AsyncSearchStatusRequestDescriptor ( )
50
+ {
51
+ }
52
+
53
+ internal AsyncSearchStatusRequestDescriptor ( Action < AsyncSearchStatusRequestDescriptor > configure ) => configure . Invoke ( this ) ;
54
+ internal override ApiUrls ApiUrls => ApiUrlsLookups . AsyncSearchStatus ;
55
+ protected override HttpMethod HttpMethod => HttpMethod . GET ;
56
+ protected override bool SupportsBody => false ;
57
+ protected override void Serialize ( Utf8JsonWriter writer , JsonSerializerOptions options , IElasticsearchClientSettings settings )
58
+ {
59
+ }
60
+ }
61
+ }
0 commit comments