-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathFieldCapsRequest.g.cs
397 lines (333 loc) · 19.3 KB
/
FieldCapsRequest.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
// 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 FieldCapsRequestParameters : RequestParameters
{
/// <summary>
/// <para>If false, the request returns an error if any wildcard expression, index alias,<br/>or `_all` value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request<br/>targeting `foo*,bar*` returns an error if an index starts with foo but no index starts with bar.</para>
/// </summary>
public bool? AllowNoIndices { get => Q<bool?>("allow_no_indices"); set => Q("allow_no_indices", value); }
/// <summary>
/// <para>Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. 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>An optional set of filters: can include +metadata,-metadata,-nested,-multifield,-parent</para>
/// </summary>
public string? Filters { get => Q<string?>("filters"); set => Q("filters", value); }
/// <summary>
/// <para>If `true`, missing or closed indices are not included in the response.</para>
/// </summary>
public bool? IgnoreUnavailable { get => Q<bool?>("ignore_unavailable"); set => Q("ignore_unavailable", value); }
/// <summary>
/// <para>If false, empty fields are not included in the response.</para>
/// </summary>
public bool? IncludeEmptyFields { get => Q<bool?>("include_empty_fields"); set => Q("include_empty_fields", value); }
/// <summary>
/// <para>If true, unmapped fields are included in the response.</para>
/// </summary>
public bool? IncludeUnmapped { get => Q<bool?>("include_unmapped"); set => Q("include_unmapped", value); }
/// <summary>
/// <para>Only return results for fields that have one of the types in the list</para>
/// </summary>
public ICollection<string>? Types { get => Q<ICollection<string>?>("types"); set => Q("types", value); }
}
/// <summary>
/// <para>The field capabilities API returns the information about the capabilities of fields among multiple indices.<br/>The field capabilities API returns runtime fields like any other field. For example, a runtime field with a type<br/>of keyword is returned as any other field that belongs to the `keyword` family.</para>
/// </summary>
public sealed partial class FieldCapsRequest : PlainRequest<FieldCapsRequestParameters>
{
public FieldCapsRequest()
{
}
public FieldCapsRequest(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceFieldCaps;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "field_caps";
/// <summary>
/// <para>If false, the request returns an error if any wildcard expression, index alias,<br/>or `_all` value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request<br/>targeting `foo*,bar*` returns an error if an index starts with foo but no index starts with bar.</para>
/// </summary>
[JsonIgnore]
public bool? AllowNoIndices { get => Q<bool?>("allow_no_indices"); set => Q("allow_no_indices", value); }
/// <summary>
/// <para>Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. 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>An optional set of filters: can include +metadata,-metadata,-nested,-multifield,-parent</para>
/// </summary>
[JsonIgnore]
public string? Filters { get => Q<string?>("filters"); set => Q("filters", value); }
/// <summary>
/// <para>If `true`, missing or closed indices are not included in the response.</para>
/// </summary>
[JsonIgnore]
public bool? IgnoreUnavailable { get => Q<bool?>("ignore_unavailable"); set => Q("ignore_unavailable", value); }
/// <summary>
/// <para>If false, empty fields are not included in the response.</para>
/// </summary>
[JsonIgnore]
public bool? IncludeEmptyFields { get => Q<bool?>("include_empty_fields"); set => Q("include_empty_fields", value); }
/// <summary>
/// <para>If true, unmapped fields are included in the response.</para>
/// </summary>
[JsonIgnore]
public bool? IncludeUnmapped { get => Q<bool?>("include_unmapped"); set => Q("include_unmapped", value); }
/// <summary>
/// <para>Only return results for fields that have one of the types in the list</para>
/// </summary>
[JsonIgnore]
public ICollection<string>? Types { get => Q<ICollection<string>?>("types"); set => Q("types", value); }
/// <summary>
/// <para>List of fields to retrieve capabilities for. Wildcard (`*`) expressions are supported.</para>
/// </summary>
[JsonInclude, JsonPropertyName("fields")]
[JsonConverter(typeof(SingleOrManyFieldsConverter))]
public Elastic.Clients.Elasticsearch.Serverless.Fields? Fields { get; set; }
/// <summary>
/// <para>Allows to filter indices if the provided query rewrites to match_none on every shard.</para>
/// </summary>
[JsonInclude, JsonPropertyName("index_filter")]
public Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? IndexFilter { get; set; }
/// <summary>
/// <para>Defines ad-hoc runtime fields in the request similar to the way it is done in search requests.<br/>These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.</para>
/// </summary>
[JsonInclude, JsonPropertyName("runtime_mappings")]
public IDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeField>? RuntimeMappings { get; set; }
}
/// <summary>
/// <para>The field capabilities API returns the information about the capabilities of fields among multiple indices.<br/>The field capabilities API returns runtime fields like any other field. For example, a runtime field with a type<br/>of keyword is returned as any other field that belongs to the `keyword` family.</para>
/// </summary>
public sealed partial class FieldCapsRequestDescriptor<TDocument> : RequestDescriptor<FieldCapsRequestDescriptor<TDocument>, FieldCapsRequestParameters>
{
internal FieldCapsRequestDescriptor(Action<FieldCapsRequestDescriptor<TDocument>> configure) => configure.Invoke(this);
public FieldCapsRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public FieldCapsRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceFieldCaps;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "field_caps";
public FieldCapsRequestDescriptor<TDocument> AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public FieldCapsRequestDescriptor<TDocument> ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public FieldCapsRequestDescriptor<TDocument> Filters(string? filters) => Qs("filters", filters);
public FieldCapsRequestDescriptor<TDocument> IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public FieldCapsRequestDescriptor<TDocument> IncludeEmptyFields(bool? includeEmptyFields = true) => Qs("include_empty_fields", includeEmptyFields);
public FieldCapsRequestDescriptor<TDocument> IncludeUnmapped(bool? includeUnmapped = true) => Qs("include_unmapped", includeUnmapped);
public FieldCapsRequestDescriptor<TDocument> Types(ICollection<string>? types) => Qs("types", types);
public FieldCapsRequestDescriptor<TDocument> Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
private Elastic.Clients.Elasticsearch.Serverless.Fields? FieldsValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? IndexFilterValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument> IndexFilterDescriptor { get; set; }
private Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>> IndexFilterDescriptorAction { get; set; }
private IDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor<TDocument>> RuntimeMappingsValue { get; set; }
/// <summary>
/// <para>List of fields to retrieve capabilities for. Wildcard (`*`) expressions are supported.</para>
/// </summary>
public FieldCapsRequestDescriptor<TDocument> Fields(Elastic.Clients.Elasticsearch.Serverless.Fields? fields)
{
FieldsValue = fields;
return Self;
}
/// <summary>
/// <para>Allows to filter indices if the provided query rewrites to match_none on every shard.</para>
/// </summary>
public FieldCapsRequestDescriptor<TDocument> IndexFilter(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? indexFilter)
{
IndexFilterDescriptor = null;
IndexFilterDescriptorAction = null;
IndexFilterValue = indexFilter;
return Self;
}
public FieldCapsRequestDescriptor<TDocument> IndexFilter(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument> descriptor)
{
IndexFilterValue = null;
IndexFilterDescriptorAction = null;
IndexFilterDescriptor = descriptor;
return Self;
}
public FieldCapsRequestDescriptor<TDocument> IndexFilter(Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>> configure)
{
IndexFilterValue = null;
IndexFilterDescriptor = null;
IndexFilterDescriptorAction = configure;
return Self;
}
/// <summary>
/// <para>Defines ad-hoc runtime fields in the request similar to the way it is done in search requests.<br/>These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.</para>
/// </summary>
public FieldCapsRequestDescriptor<TDocument> RuntimeMappings(Func<FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor<TDocument>>, FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor<TDocument>>> selector)
{
RuntimeMappingsValue = selector?.Invoke(new FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor<TDocument>>());
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
writer.WriteStartObject();
if (FieldsValue is not null)
{
writer.WritePropertyName("fields");
JsonSerializer.Serialize(writer, FieldsValue, options);
}
if (IndexFilterDescriptor is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, IndexFilterDescriptor, options);
}
else if (IndexFilterDescriptorAction is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, new Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor<TDocument>(IndexFilterDescriptorAction), options);
}
else if (IndexFilterValue is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, IndexFilterValue, options);
}
if (RuntimeMappingsValue is not null)
{
writer.WritePropertyName("runtime_mappings");
JsonSerializer.Serialize(writer, RuntimeMappingsValue, options);
}
writer.WriteEndObject();
}
}
/// <summary>
/// <para>The field capabilities API returns the information about the capabilities of fields among multiple indices.<br/>The field capabilities API returns runtime fields like any other field. For example, a runtime field with a type<br/>of keyword is returned as any other field that belongs to the `keyword` family.</para>
/// </summary>
public sealed partial class FieldCapsRequestDescriptor : RequestDescriptor<FieldCapsRequestDescriptor, FieldCapsRequestParameters>
{
internal FieldCapsRequestDescriptor(Action<FieldCapsRequestDescriptor> configure) => configure.Invoke(this);
public FieldCapsRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public FieldCapsRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.NoNamespaceFieldCaps;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => true;
internal override string OperationName => "field_caps";
public FieldCapsRequestDescriptor AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public FieldCapsRequestDescriptor ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public FieldCapsRequestDescriptor Filters(string? filters) => Qs("filters", filters);
public FieldCapsRequestDescriptor IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public FieldCapsRequestDescriptor IncludeEmptyFields(bool? includeEmptyFields = true) => Qs("include_empty_fields", includeEmptyFields);
public FieldCapsRequestDescriptor IncludeUnmapped(bool? includeUnmapped = true) => Qs("include_unmapped", includeUnmapped);
public FieldCapsRequestDescriptor Types(ICollection<string>? types) => Qs("types", types);
public FieldCapsRequestDescriptor Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
private Elastic.Clients.Elasticsearch.Serverless.Fields? FieldsValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? IndexFilterValue { get; set; }
private Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor IndexFilterDescriptor { get; set; }
private Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor> IndexFilterDescriptorAction { get; set; }
private IDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor> RuntimeMappingsValue { get; set; }
/// <summary>
/// <para>List of fields to retrieve capabilities for. Wildcard (`*`) expressions are supported.</para>
/// </summary>
public FieldCapsRequestDescriptor Fields(Elastic.Clients.Elasticsearch.Serverless.Fields? fields)
{
FieldsValue = fields;
return Self;
}
/// <summary>
/// <para>Allows to filter indices if the provided query rewrites to match_none on every shard.</para>
/// </summary>
public FieldCapsRequestDescriptor IndexFilter(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.Query? indexFilter)
{
IndexFilterDescriptor = null;
IndexFilterDescriptorAction = null;
IndexFilterValue = indexFilter;
return Self;
}
public FieldCapsRequestDescriptor IndexFilter(Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor descriptor)
{
IndexFilterValue = null;
IndexFilterDescriptorAction = null;
IndexFilterDescriptor = descriptor;
return Self;
}
public FieldCapsRequestDescriptor IndexFilter(Action<Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor> configure)
{
IndexFilterValue = null;
IndexFilterDescriptor = null;
IndexFilterDescriptorAction = configure;
return Self;
}
/// <summary>
/// <para>Defines ad-hoc runtime fields in the request similar to the way it is done in search requests.<br/>These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.</para>
/// </summary>
public FieldCapsRequestDescriptor RuntimeMappings(Func<FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor>, FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor>> selector)
{
RuntimeMappingsValue = selector?.Invoke(new FluentDescriptorDictionary<Elastic.Clients.Elasticsearch.Serverless.Field, Elastic.Clients.Elasticsearch.Serverless.Mapping.RuntimeFieldDescriptor>());
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
writer.WriteStartObject();
if (FieldsValue is not null)
{
writer.WritePropertyName("fields");
JsonSerializer.Serialize(writer, FieldsValue, options);
}
if (IndexFilterDescriptor is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, IndexFilterDescriptor, options);
}
else if (IndexFilterDescriptorAction is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, new Elastic.Clients.Elasticsearch.Serverless.QueryDsl.QueryDescriptor(IndexFilterDescriptorAction), options);
}
else if (IndexFilterValue is not null)
{
writer.WritePropertyName("index_filter");
JsonSerializer.Serialize(writer, IndexFilterValue, options);
}
if (RuntimeMappingsValue is not null)
{
writer.WritePropertyName("runtime_mappings");
JsonSerializer.Serialize(writer, RuntimeMappingsValue, options);
}
writer.WriteEndObject();
}
}