Skip to content
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 @@ -160,6 +160,7 @@ internal static class ApiUrlLookup
internal static ApiUrls InferenceGet = new ApiUrls(new[] { "_inference", "_inference/{inference_id}", "_inference/{task_type}/{inference_id}" });
internal static ApiUrls InferenceInference = new ApiUrls(new[] { "_inference/{inference_id}", "_inference/{task_type}/{inference_id}" });
internal static ApiUrls InferencePut = new ApiUrls(new[] { "_inference/{inference_id}", "_inference/{task_type}/{inference_id}" });
internal static ApiUrls InferencePutAi21 = new ApiUrls(new[] { "_inference/{task_type}/{ai21_inference_id}" });
internal static ApiUrls InferencePutAlibabacloud = new ApiUrls(new[] { "_inference/{task_type}/{alibabacloud_inference_id}" });
internal static ApiUrls InferencePutAmazonbedrock = new ApiUrls(new[] { "_inference/{task_type}/{amazonbedrock_inference_id}" });
internal static ApiUrls InferencePutAmazonsagemaker = new ApiUrls(new[] { "_inference/{task_type}/{amazonsagemaker_inference_id}" });
Expand All @@ -175,6 +176,7 @@ internal static class ApiUrlLookup
internal static ApiUrls InferencePutGooglevertexai = new ApiUrls(new[] { "_inference/{task_type}/{googlevertexai_inference_id}" });
internal static ApiUrls InferencePutHuggingFace = new ApiUrls(new[] { "_inference/{task_type}/{huggingface_inference_id}" });
internal static ApiUrls InferencePutJinaai = new ApiUrls(new[] { "_inference/{task_type}/{jinaai_inference_id}" });
internal static ApiUrls InferencePutLlama = new ApiUrls(new[] { "_inference/{task_type}/{llama_inference_id}" });
internal static ApiUrls InferencePutMistral = new ApiUrls(new[] { "_inference/{task_type}/{mistral_inference_id}" });
internal static ApiUrls InferencePutOpenai = new ApiUrls(new[] { "_inference/{task_type}/{openai_inference_id}" });
internal static ApiUrls InferencePutVoyageai = new ApiUrls(new[] { "_inference/{task_type}/{voyageai_inference_id}" });
Expand Down
15 changes: 15 additions & 0 deletions src/Elastic.Clients.Elasticsearch/_Generated/Api/BulkRequest.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,11 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clien
/// PHP: Check out bulk indexing.
/// </para>
/// </item>
/// <item>
/// <para>
/// Ruby: Check out <c>Elasticsearch::Helpers::BulkHelper</c>
/// </para>
/// </item>
/// </list>
/// <para>
/// <strong>Submitting bulk requests with cURL</strong>
Expand Down Expand Up @@ -614,6 +619,11 @@ internal BulkRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConstructor
/// PHP: Check out bulk indexing.
/// </para>
/// </item>
/// <item>
/// <para>
/// Ruby: Check out <c>Elasticsearch::Helpers::BulkHelper</c>
/// </para>
/// </item>
/// </list>
/// <para>
/// <strong>Submitting bulk requests with cURL</strong>
Expand Down Expand Up @@ -1093,6 +1103,11 @@ public Elastic.Clients.Elasticsearch.BulkRequestDescriptor RequestConfiguration(
/// PHP: Check out bulk indexing.
/// </para>
/// </item>
/// <item>
/// <para>
/// Ruby: Check out <c>Elasticsearch::Helpers::BulkHelper</c>
/// </para>
/// </item>
/// </list>
/// <para>
/// <strong>Submitting bulk requests with cURL</strong>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ public sealed partial class GetClusterSettingsRequestParameters : Elastic.Transp

/// <summary>
/// <para>
/// If <c>true</c>, returns default cluster settings from the local node.
/// If <c>true</c>, also returns default values for all other cluster settings, reflecting the values
/// in the <c>elasticsearch.yml</c> file of one of the nodes in the cluster. If the nodes in your
/// cluster do not all have the same values in their <c>elasticsearch.yml</c> config files then the
/// values returned by this API may vary from invocation to invocation and may not reflect the
/// values that Elasticsearch uses in all situations. Use the <c>GET _nodes/settings</c> API to
/// fetch the settings for each individual node in your cluster.
/// </para>
/// </summary>
public bool? IncludeDefaults { get => Q<bool?>("include_defaults"); set => Q("include_defaults", value); }
Expand Down Expand Up @@ -129,7 +134,12 @@ internal GetClusterSettingsRequest(Elastic.Clients.Elasticsearch.Serialization.J

/// <summary>
/// <para>
/// If <c>true</c>, returns default cluster settings from the local node.
/// If <c>true</c>, also returns default values for all other cluster settings, reflecting the values
/// in the <c>elasticsearch.yml</c> file of one of the nodes in the cluster. If the nodes in your
/// cluster do not all have the same values in their <c>elasticsearch.yml</c> config files then the
/// values returned by this API may vary from invocation to invocation and may not reflect the
/// values that Elasticsearch uses in all situations. Use the <c>GET _nodes/settings</c> API to
/// fetch the settings for each individual node in your cluster.
/// </para>
/// </summary>
public bool? IncludeDefaults { get => Q<bool?>("include_defaults"); set => Q("include_defaults", value); }
Expand Down Expand Up @@ -190,7 +200,12 @@ public Elastic.Clients.Elasticsearch.Cluster.GetClusterSettingsRequestDescriptor

/// <summary>
/// <para>
/// If <c>true</c>, returns default cluster settings from the local node.
/// If <c>true</c>, also returns default values for all other cluster settings, reflecting the values
/// in the <c>elasticsearch.yml</c> file of one of the nodes in the cluster. If the nodes in your
/// cluster do not all have the same values in their <c>elasticsearch.yml</c> config files then the
/// values returned by this API may vary from invocation to invocation and may not reflect the
/// values that Elasticsearch uses in all situations. Use the <c>GET _nodes/settings</c> API to
/// fetch the settings for each individual node in your cluster.
/// </para>
/// </summary>
public Elastic.Clients.Elasticsearch.Cluster.GetClusterSettingsRequestDescriptor IncludeDefaults(bool? value = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clien
/// </item>
/// </list>
/// <para>
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs//manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs/manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// </para>
/// </summary>
[System.Text.Json.Serialization.JsonConverter(typeof(Elastic.Clients.Elasticsearch.IndexManagement.PutMappingRequestConverter))]
Expand Down Expand Up @@ -476,7 +476,7 @@ internal PutMappingRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConst
/// </item>
/// </list>
/// <para>
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs//manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs/manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// </para>
/// </summary>
public readonly partial struct PutMappingRequestDescriptor
Expand Down Expand Up @@ -1110,7 +1110,7 @@ public Elastic.Clients.Elasticsearch.IndexManagement.PutMappingRequestDescriptor
/// </item>
/// </list>
/// <para>
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs//manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// Learn how to use the update mapping API with practical examples in the <a href="https://www.elastic.co/docs/manage-data/data-store/mapping/update-mappings-examples">Update mapping API examples</a> guide.
/// </para>
/// </summary>
public readonly partial struct PutMappingRequestDescriptor<TDocument>
Expand Down
Loading
Loading