Skip to content

[9.0] Regenerate client #8619

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ public sealed partial class AsyncQueryGetRequestParameters : Elastic.Transport.R
/// </summary>
public bool? DropNullColumns { get => Q<bool?>("drop_null_columns"); set => Q("drop_null_columns", value); }

/// <summary>
/// <para>
/// A short version of the Accept header, for example <c>json</c> or <c>yaml</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Esql.EsqlFormat? Format { get => Q<Elastic.Clients.Elasticsearch.Esql.EsqlFormat?>("format"); set => Q("format", value); }

/// <summary>
/// <para>
/// The period for which the query and its results are stored in the cluster.
Expand Down Expand Up @@ -135,6 +142,13 @@ internal AsyncQueryGetRequest(Elastic.Clients.Elasticsearch.Serialization.JsonCo
/// </summary>
public bool? DropNullColumns { get => Q<bool?>("drop_null_columns"); set => Q("drop_null_columns", value); }

/// <summary>
/// <para>
/// A short version of the Accept header, for example <c>json</c> or <c>yaml</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Esql.EsqlFormat? Format { get => Q<Elastic.Clients.Elasticsearch.Esql.EsqlFormat?>("format"); set => Q("format", value); }

/// <summary>
/// <para>
/// The period for which the query and its results are stored in the cluster.
Expand Down Expand Up @@ -210,6 +224,17 @@ public Elastic.Clients.Elasticsearch.Esql.AsyncQueryGetRequestDescriptor DropNul
return this;
}

/// <summary>
/// <para>
/// A short version of the Accept header, for example <c>json</c> or <c>yaml</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Esql.AsyncQueryGetRequestDescriptor Format(Elastic.Clients.Elasticsearch.Esql.EsqlFormat? value)
{
Instance.Format = value;
return this;
}

/// <summary>
/// <para>
/// The period for which the query and its results are stored in the cluster.
Expand Down
32 changes: 16 additions & 16 deletions src/Elastic.Clients.Elasticsearch/_Generated/Api/GetRequest.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public sealed partial class GetRequestParameters : Elastic.Transport.RequestPara
/// <summary>
/// <para>
/// Indicates whether the request forces synthetic <c>_source</c>.
/// Use this paramater to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Use this parameter to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index.
/// </para>
/// </summary>
Expand Down Expand Up @@ -101,8 +101,8 @@ public sealed partial class GetRequestParameters : Elastic.Transport.RequestPara
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Fields? StoredFields { get => Q<Elastic.Clients.Elasticsearch.Fields?>("stored_fields"); set => Q("stored_fields", value); }
Expand Down Expand Up @@ -275,7 +275,7 @@ internal GetRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorS
/// <summary>
/// <para>
/// Indicates whether the request forces synthetic <c>_source</c>.
/// Use this paramater to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Use this parameter to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index.
/// </para>
/// </summary>
Expand Down Expand Up @@ -348,8 +348,8 @@ internal GetRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorS
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Fields? StoredFields { get => Q<Elastic.Clients.Elasticsearch.Fields?>("stored_fields"); set => Q("stored_fields", value); }
Expand Down Expand Up @@ -491,7 +491,7 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor Index(Elastic.Clients.
/// <summary>
/// <para>
/// Indicates whether the request forces synthetic <c>_source</c>.
/// Use this paramater to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Use this parameter to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index.
/// </para>
/// </summary>
Expand Down Expand Up @@ -645,8 +645,8 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor SourceIncludes<T>(para
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.GetRequestDescriptor StoredFields(Elastic.Clients.Elasticsearch.Fields? value)
Expand All @@ -660,8 +660,8 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor StoredFields(Elastic.C
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.GetRequestDescriptor StoredFields<T>(params System.Linq.Expressions.Expression<System.Func<T, object?>>[] value)
Expand Down Expand Up @@ -885,7 +885,7 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor<TDocument> Index(Elast
/// <summary>
/// <para>
/// Indicates whether the request forces synthetic <c>_source</c>.
/// Use this paramater to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Use this parameter to test if the mapping supports synthetic <c>_source</c> and to get a sense of the worst case performance.
/// Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index.
/// </para>
/// </summary>
Expand Down Expand Up @@ -1028,8 +1028,8 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor<TDocument> SourceInclu
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.GetRequestDescriptor<TDocument> StoredFields(Elastic.Clients.Elasticsearch.Fields? value)
Expand All @@ -1043,8 +1043,8 @@ public Elastic.Clients.Elasticsearch.GetRequestDescriptor<TDocument> StoredField
/// A comma-separated list of stored fields to return as part of a hit.
/// If no fields are specified, no stored fields are included in the response.
/// If this field is specified, the <c>_source</c> parameter defaults to <c>false</c>.
/// Only leaf fields can be retrieved with the <c>stored_field</c> option.
/// Object fields can't be returned;if specified, the request fails.
/// Only leaf fields can be retrieved with the <c>stored_fields</c> option.
/// Object fields can't be returned; if specified, the request fails.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.GetRequestDescriptor<TDocument> StoredFields(params System.Linq.Expressions.Expression<System.Func<TDocument, object?>>[] value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public sealed partial class ClearCacheRequestParameters : Elastic.Transport.Requ
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? ExpandWildcards { get => Q<System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
Expand Down Expand Up @@ -173,7 +172,6 @@ internal ClearCacheRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConst
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? ExpandWildcards { get => Q<System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
Expand Down Expand Up @@ -280,7 +278,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor ExpandWildcards(System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? value)
Expand All @@ -294,7 +291,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor ExpandWildcards(params Elastic.Clients.Elasticsearch.ExpandWildcard[] values)
Expand Down Expand Up @@ -491,7 +487,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor<TDocument> ExpandWildcards(System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? value)
Expand All @@ -505,7 +500,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.ClearCacheRequestDescriptor<TDocument> ExpandWildcards(params Elastic.Clients.Elasticsearch.ExpandWildcard[] values)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public sealed partial class CloseIndexRequestParameters : Elastic.Transport.Requ
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? ExpandWildcards { get => Q<System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
Expand Down Expand Up @@ -180,7 +179,6 @@ internal CloseIndexRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConst
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? ExpandWildcards { get => Q<System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>?>("expand_wildcards"); set => Q("expand_wildcards", value); }
Expand Down Expand Up @@ -295,7 +293,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor ExpandWildcards(System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? value)
Expand All @@ -309,7 +306,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor ExpandWildcards(params Elastic.Clients.Elasticsearch.ExpandWildcard[] values)
Expand Down Expand Up @@ -493,7 +489,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor<TDocument> ExpandWildcards(System.Collections.Generic.ICollection<Elastic.Clients.Elasticsearch.ExpandWildcard>? value)
Expand All @@ -507,7 +502,6 @@ public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor
/// 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 <c>open,hidden</c>.
/// Valid values are: <c>all</c>, <c>open</c>, <c>closed</c>, <c>hidden</c>, <c>none</c>.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.IndexManagement.CloseIndexRequestDescriptor<TDocument> ExpandWildcards(params Elastic.Clients.Elasticsearch.ExpandWildcard[] values)
Expand Down
Loading
Loading