-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathClearCacheRequest.g.cs
216 lines (173 loc) · 10.5 KB
/
ClearCacheRequest.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
// 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.IndexManagement;
public sealed partial class ClearCacheRequestParameters : 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>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`.<br/>Valid values are: `all`, `open`, `closed`, `hidden`, `none`.</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`, clears the fields cache.<br/>Use the `fields` parameter to clear the cache of specific fields only.</para>
/// </summary>
public bool? Fielddata { get => Q<bool?>("fielddata"); set => Q("fielddata", value); }
/// <summary>
/// <para>Comma-separated list of field names used to limit the `fielddata` parameter.</para>
/// </summary>
public Elastic.Clients.Elasticsearch.Serverless.Fields? Fields { get => Q<Elastic.Clients.Elasticsearch.Serverless.Fields?>("fields"); set => Q("fields", 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`, clears the query cache.</para>
/// </summary>
public bool? Query { get => Q<bool?>("query"); set => Q("query", value); }
/// <summary>
/// <para>If `true`, clears the request cache.</para>
/// </summary>
public bool? Request { get => Q<bool?>("request"); set => Q("request", value); }
}
/// <summary>
/// <para>Clears the caches of one or more indices.<br/>For data streams, the API clears the caches of the stream’s backing indices.</para>
/// </summary>
public sealed partial class ClearCacheRequest : PlainRequest<ClearCacheRequestParameters>
{
public ClearCacheRequest()
{
}
public ClearCacheRequest(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.IndexManagementClearCache;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => false;
internal override string OperationName => "indices.clear_cache";
/// <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>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`.<br/>Valid values are: `all`, `open`, `closed`, `hidden`, `none`.</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`, clears the fields cache.<br/>Use the `fields` parameter to clear the cache of specific fields only.</para>
/// </summary>
[JsonIgnore]
public bool? Fielddata { get => Q<bool?>("fielddata"); set => Q("fielddata", value); }
/// <summary>
/// <para>Comma-separated list of field names used to limit the `fielddata` parameter.</para>
/// </summary>
[JsonIgnore]
public Elastic.Clients.Elasticsearch.Serverless.Fields? Fields { get => Q<Elastic.Clients.Elasticsearch.Serverless.Fields?>("fields"); set => Q("fields", 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`, clears the query cache.</para>
/// </summary>
[JsonIgnore]
public bool? Query { get => Q<bool?>("query"); set => Q("query", value); }
/// <summary>
/// <para>If `true`, clears the request cache.</para>
/// </summary>
[JsonIgnore]
public bool? Request { get => Q<bool?>("request"); set => Q("request", value); }
}
/// <summary>
/// <para>Clears the caches of one or more indices.<br/>For data streams, the API clears the caches of the stream’s backing indices.</para>
/// </summary>
public sealed partial class ClearCacheRequestDescriptor<TDocument> : RequestDescriptor<ClearCacheRequestDescriptor<TDocument>, ClearCacheRequestParameters>
{
internal ClearCacheRequestDescriptor(Action<ClearCacheRequestDescriptor<TDocument>> configure) => configure.Invoke(this);
public ClearCacheRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public ClearCacheRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.IndexManagementClearCache;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => false;
internal override string OperationName => "indices.clear_cache";
public ClearCacheRequestDescriptor<TDocument> AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public ClearCacheRequestDescriptor<TDocument> ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public ClearCacheRequestDescriptor<TDocument> Fielddata(bool? fielddata = true) => Qs("fielddata", fielddata);
public ClearCacheRequestDescriptor<TDocument> Fields(Elastic.Clients.Elasticsearch.Serverless.Fields? fields) => Qs("fields", fields);
public ClearCacheRequestDescriptor<TDocument> IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public ClearCacheRequestDescriptor<TDocument> Query(bool? query = true) => Qs("query", query);
public ClearCacheRequestDescriptor<TDocument> Request(bool? request = true) => Qs("request", request);
public ClearCacheRequestDescriptor<TDocument> Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
}
}
/// <summary>
/// <para>Clears the caches of one or more indices.<br/>For data streams, the API clears the caches of the stream’s backing indices.</para>
/// </summary>
public sealed partial class ClearCacheRequestDescriptor : RequestDescriptor<ClearCacheRequestDescriptor, ClearCacheRequestParameters>
{
internal ClearCacheRequestDescriptor(Action<ClearCacheRequestDescriptor> configure) => configure.Invoke(this);
public ClearCacheRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.Indices? indices) : base(r => r.Optional("index", indices))
{
}
public ClearCacheRequestDescriptor()
{
}
internal override ApiUrls ApiUrls => ApiUrlLookup.IndexManagementClearCache;
protected override HttpMethod StaticHttpMethod => HttpMethod.POST;
internal override bool SupportsBody => false;
internal override string OperationName => "indices.clear_cache";
public ClearCacheRequestDescriptor AllowNoIndices(bool? allowNoIndices = true) => Qs("allow_no_indices", allowNoIndices);
public ClearCacheRequestDescriptor ExpandWildcards(ICollection<Elastic.Clients.Elasticsearch.Serverless.ExpandWildcard>? expandWildcards) => Qs("expand_wildcards", expandWildcards);
public ClearCacheRequestDescriptor Fielddata(bool? fielddata = true) => Qs("fielddata", fielddata);
public ClearCacheRequestDescriptor Fields(Elastic.Clients.Elasticsearch.Serverless.Fields? fields) => Qs("fields", fields);
public ClearCacheRequestDescriptor IgnoreUnavailable(bool? ignoreUnavailable = true) => Qs("ignore_unavailable", ignoreUnavailable);
public ClearCacheRequestDescriptor Query(bool? query = true) => Qs("query", query);
public ClearCacheRequestDescriptor Request(bool? request = true) => Qs("request", request);
public ClearCacheRequestDescriptor Indices(Elastic.Clients.Elasticsearch.Serverless.Indices? indices)
{
RouteValues.Optional("index", indices);
return Self;
}
protected override void Serialize(Utf8JsonWriter writer, JsonSerializerOptions options, IElasticsearchClientSettings settings)
{
}
}