-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathCountRequest.g.cs
411 lines (343 loc) · 19.3 KB
/
CountRequest.g.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
//
// ███╗ ██╗ ██████╗ ████████╗██╗ ██████╗███████╗
// ████╗ ██║██╔═══██╗╚══██╔══╝██║██╔════╝██╔════╝
// ██╔██╗ ██║██║ ██║ ██║ ██║██║ █████╗
// ██║╚██╗██║██║ ██║ ██║ ██║██║ ██╔══╝
// ██║ ╚████║╚██████╔╝ ██║ ██║╚██████╗███████╗
// ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝
// ------------------------------------------------
//
// This file is automatically generated.
// Please do not edit these files manually.
//
// ------------------------------------------------
#nullable restore
using Elastic.Clients.Elasticsearch.Serverless.Fluent;
using Elastic.Clients.Elasticsearch.Serverless.Requests;
using Elastic.Clients.Elasticsearch.Serverless.Serialization;
using Elastic.Transport;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text.Json;
using System.Text.Json.Serialization;
namespace Elastic.Clients.Elasticsearch.Serverless;
public sealed partial class CountRequestParameters : RequestParameters
{
/// <summary>
/// <para>If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices.<br/>This behavior applies even if the request targets other open indices.</para>
/// </summary>
public bool? AllowNoIndices { get => Q<bool?>("allow_no_indices"); set => Q("allow_no_indices", value); }
/// <summary>
/// <para>Analyzer to use for the query string.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
public string? Analyzer { get => Q<string?>("analyzer"); set => Q("analyzer", value); }
/// <summary>
/// <para>If `true`, wildcard and prefix queries are analyzed.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
public bool? AnalyzeWildcard { get => Q<bool?>("analyze_wildcard"); set => Q("analyze_wildcard", value); }
/// <summary>
/// <para>The default operator for query string query: `AND` or `OR`.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
public Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator? DefaultOperator { get => Q<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator?>("default_operator"); set => Q("default_operator", value); }
/// <summary>
/// <para>Field to use as default where no field prefix is given in the query string.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
public string? Df { get => Q<string?>("df"); set => Q("df", value); }
/// <summary>
/// <para>Type of index that wildcard patterns can match.<br/>If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.<br/>Supports comma-separated values, such as `open,hidden`.</para>
/// </summary>
public ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? ExpandWildcards { get => Q<ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
/// <summary>
/// <para>If `true`, concrete, expanded or aliased indices are ignored when frozen.</para>
/// </summary>
public bool? IgnoreThrottled { get => Q<bool?>("ignore_throttled"); set => Q("ignore_throttled", value); }
/// <summary>
/// <para>If `false`, the request returns an error if it targets a missing or closed index.</para>
/// </summary>
public bool? IgnoreUnavailable { get => Q<bool?>("ignore_unavailable"); set => Q("ignore_unavailable", value); }
/// <summary>
/// <para>If `true`, format-based query failures (such as providing text to a numeric field) in the query string will be ignored.</para>
/// </summary>
public bool? Lenient { get => Q<bool?>("lenient"); set => Q("lenient", value); }
/// <summary>
/// <para>Sets the minimum `_score` value that documents must have to be included in the result.</para>
/// </summary>
public double? MinScore { get => Q<double?>("min_score"); set => Q("min_score", value); }
/// <summary>
/// <para>Specifies the node or shard the operation should be performed on.<br/>Random by default.</para>
/// </summary>
public string? Preference { get => Q<string?>("preference"); set => Q("preference", value); }
/// <summary>
/// <para>Query in the Lucene query string syntax.</para>
/// </summary>
public string? QueryLuceneSyntax { get => Q<string?>("q"); set => Q("q", value); }
/// <summary>
/// <para>Custom value used to route operations to a specific shard.</para>
/// </summary>
public Elastic.Clients.Elasticsearch.Serverless.Routing? Routing { get => Q<Elastic.Clients.Elasticsearch.Serverless.Routing?>("routing"); set => Q("routing", value); }
/// <summary>
/// <para>Maximum number of documents to collect for each shard.<br/>If a query reaches this limit, Elasticsearch terminates the query early.<br/>Elasticsearch collects documents before sorting.</para>
/// </summary>
public long? TerminateAfter { get => Q<long?>("terminate_after"); set => Q("terminate_after", value); }
}
/// <summary>
/// <para>Returns number of documents matching a query.</para>
/// </summary>
public partial class CountRequest : PlainRequest<CountRequestParameters>
{
public CountRequest()
{
}
public CountRequest(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceCount;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "count";
/// <summary>
/// <para>If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices.<br/>This behavior applies even if the request targets other open indices.</para>
/// </summary>
[JsonIgnore]
public bool? AllowNoIndices { get => Q<bool?>("allow_no_indices"); set => Q("allow_no_indices", value); }
/// <summary>
/// <para>Analyzer to use for the query string.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
[JsonIgnore]
public string? Analyzer { get => Q<string?>("analyzer"); set => Q("analyzer", value); }
/// <summary>
/// <para>If `true`, wildcard and prefix queries are analyzed.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
[JsonIgnore]
public bool? AnalyzeWildcard { get => Q<bool?>("analyze_wildcard"); set => Q("analyze_wildcard", value); }
/// <summary>
/// <para>The default operator for query string query: `AND` or `OR`.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
[JsonIgnore]
public Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator? DefaultOperator { get => Q<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator?>("default_operator"); set => Q("default_operator", value); }
/// <summary>
/// <para>Field to use as default where no field prefix is given in the query string.<br/>This parameter can only be used when the `q` query string parameter is specified.</para>
/// </summary>
[JsonIgnore]
public string? Df { get => Q<string?>("df"); set => Q("df", value); }
/// <summary>
/// <para>Type of index that wildcard patterns can match.<br/>If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.<br/>Supports comma-separated values, such as `open,hidden`.</para>
/// </summary>
[JsonIgnore]
public ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? ExpandWildcards { get => Q<ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
/// <summary>
/// <para>If `true`, concrete, expanded or aliased indices are ignored when frozen.</para>
/// </summary>
[JsonIgnore]
public bool? IgnoreThrottled { get => Q<bool?>("ignore_throttled"); set => Q("ignore_throttled", value); }
/// <summary>
/// <para>If `false`, the request returns an error if it targets a missing or closed index.</para>
/// </summary>
[JsonIgnore]
public bool? IgnoreUnavailable { get => Q<bool?>("ignore_unavailable"); set => Q("ignore_unavailable", value); }
/// <summary>
/// <para>If `true`, format-based query failures (such as providing text to a numeric field) in the query string will be ignored.</para>
/// </summary>
[JsonIgnore]
public bool? Lenient { get => Q<bool?>("lenient"); set => Q("lenient", value); }
/// <summary>
/// <para>Sets the minimum `_score` value that documents must have to be included in the result.</para>
/// </summary>
[JsonIgnore]
public double? MinScore { get => Q<double?>("min_score"); set => Q("min_score", value); }
/// <summary>
/// <para>Specifies the node or shard the operation should be performed on.<br/>Random by default.</para>
/// </summary>
[JsonIgnore]
public string? Preference { get => Q<string?>("preference"); set => Q("preference", value); }
/// <summary>
/// <para>Query in the Lucene query string syntax.</para>
/// </summary>
[JsonIgnore]
public string? QueryLuceneSyntax { get => Q<string?>("q"); set => Q("q", value); }
/// <summary>
/// <para>Custom value used to route operations to a specific shard.</para>
/// </summary>
[JsonIgnore]
public Elastic.Clients.Elasticsearch.Serverless.Routing? Routing { get => Q<Elastic.Clients.Elasticsearch.Serverless.Routing?>("routing"); set => Q("routing", value); }
/// <summary>
/// <para>Maximum number of documents to collect for each shard.<br/>If a query reaches this limit, Elasticsearch terminates the query early.<br/>Elasticsearch collects documents before sorting.</para>
/// </summary>
[JsonIgnore]
public long? TerminateAfter { get => Q<long?>("terminate_after"); set => Q("terminate_after", value); }
/// <summary>
/// <para>Defines the search definition using the Query DSL.</para>
/// </summary>
[JsonInclude, JsonPropertyName("query")]
public Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? Query { get; set; }
}
/// <summary>
/// <para>Returns number of documents matching a query.</para>
/// </summary>
public sealed partial class CountRequestDescriptor<TDocument> : RequestDescriptor<CountRequestDescriptor<TDocument>, CountRequestParameters>
{
internal CountRequestDescriptor(Action<CountRequestDescriptor<TDocument>> configure) => configure.Invoke(this);
public CountRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public CountRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceCount;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "count";
public CountRequestDescriptor<TDocument> AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public CountRequestDescriptor<TDocument> Analyzer(string? analyzer) => Qs("analyzer", analyzer);
public CountRequestDescriptor<TDocument> AnalyzeWildcard(bool? analyzeWildcard = true) => Qs("analyze_wildcard", analyzeWildcard);
public CountRequestDescriptor<TDocument> DefaultOperator(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator? defaultOperator) => Qs("default_operator", defaultOperator);
public CountRequestDescriptor<TDocument> Df(string? df) => Qs("df", df);
public CountRequestDescriptor<TDocument> ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public CountRequestDescriptor<TDocument> IgnoreThrottled(bool? ignoreThrottled = true) => Qs("ignore_throttled", ignoreThrottled);
public CountRequestDescriptor<TDocument> IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public CountRequestDescriptor<TDocument> Lenient(bool? lenient = true) => Qs("lenient", lenient);
public CountRequestDescriptor<TDocument> MinScore(double? minScore) => Qs("min_score", minScore);
public CountRequestDescriptor<TDocument> Preference(string? preference) => Qs("preference", preference);
public CountRequestDescriptor<TDocument> QueryLuceneSyntax(string? queryLuceneSyntax) => Qs("q", queryLuceneSyntax);
public CountRequestDescriptor<TDocument> Routing(Elastic.Clients.Elasticsearch.Serverless.Routing? routing) => Qs("routing", routing);
public CountRequestDescriptor<TDocument> TerminateAfter(long? terminateAfter) => Qs("terminate_after", terminateAfter);
public CountRequestDescriptor<TDocument> Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? QueryValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument> QueryDescriptor { get; set; }
private Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>> QueryDescriptorAction { get; set; }
/// <summary>
/// <para>Defines the search definition using the Query DSL.</para>
/// </summary>
public CountRequestDescriptor<TDocument> Query(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? query)
{
QueryDescriptor = null;
QueryDescriptorAction = null;
QueryValue = query;
return Self;
}
public CountRequestDescriptor<TDocument> Query(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument> descriptor)
{
QueryValue = null;
QueryDescriptorAction = null;
QueryDescriptor = descriptor;
return Self;
}
public CountRequestDescriptor<TDocument> Query(Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>> configure)
{
QueryValue = null;
QueryDescriptor = null;
QueryDescriptorAction = configure;
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
writer.WriteStartObject();
if (QueryDescriptor is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, QueryDescriptor, options);
}
else if (QueryDescriptorAction is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, new Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>(QueryDescriptorAction), options);
}
else if (QueryValue is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, QueryValue, options);
}
writer.WriteEndObject();
}
}
/// <summary>
/// <para>Returns number of documents matching a query.</para>
/// </summary>
public sealed partial class CountRequestDescriptor : RequestDescriptor<CountRequestDescriptor, CountRequestParameters>
{
internal CountRequestDescriptor(Action<CountRequestDescriptor> configure) => configure.Invoke(this);
public CountRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public CountRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceCount;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "count";
public CountRequestDescriptor AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public CountRequestDescriptor Analyzer(string? analyzer) => Qs("analyzer", analyzer);
public CountRequestDescriptor AnalyzeWildcard(bool? analyzeWildcard = true) => Qs("analyze_wildcard", analyzeWildcard);
public CountRequestDescriptor DefaultOperator(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Operator? defaultOperator) => Qs("default_operator", defaultOperator);
public CountRequestDescriptor Df(string? df) => Qs("df", df);
public CountRequestDescriptor ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public CountRequestDescriptor IgnoreThrottled(bool? ignoreThrottled = true) => Qs("ignore_throttled", ignoreThrottled);
public CountRequestDescriptor IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public CountRequestDescriptor Lenient(bool? lenient = true) => Qs("lenient", lenient);
public CountRequestDescriptor MinScore(double? minScore) => Qs("min_score", minScore);
public CountRequestDescriptor Preference(string? preference) => Qs("preference", preference);
public CountRequestDescriptor QueryLuceneSyntax(string? queryLuceneSyntax) => Qs("q", queryLuceneSyntax);
public CountRequestDescriptor Routing(Elastic.Clients.Elasticsearch.Serverless.Routing? routing) => Qs("routing", routing);
public CountRequestDescriptor TerminateAfter(long? terminateAfter) => Qs("terminate_after", terminateAfter);
public CountRequestDescriptor Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? QueryValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor QueryDescriptor { get; set; }
private Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor> QueryDescriptorAction { get; set; }
/// <summary>
/// <para>Defines the search definition using the Query DSL.</para>
/// </summary>
public CountRequestDescriptor Query(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? query)
{
QueryDescriptor = null;
QueryDescriptorAction = null;
QueryValue = query;
return Self;
}
public CountRequestDescriptor Query(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor descriptor)
{
QueryValue = null;
QueryDescriptorAction = null;
QueryDescriptor = descriptor;
return Self;
}
public CountRequestDescriptor Query(Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor> configure)
{
QueryValue = null;
QueryDescriptor = null;
QueryDescriptorAction = configure;
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
writer.WriteStartObject();
if (QueryDescriptor is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, QueryDescriptor, options);
}
else if (QueryDescriptorAction is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, new Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor(QueryDescriptorAction), options);
}
else if (QueryValue is not null)
{
writer.WritePropertyName("query");
JsonSerializer.Serialize(writer, QueryValue, options);
}
writer.WriteEndObject();
}
}