Skip to content

Commit 55b15b7

Browse files
committed
Regenerate client
1 parent 5590581 commit 55b15b7

File tree

117 files changed

+12379
-721
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+12379
-721
lines changed

src/Elastic.Clients.Elasticsearch/_Generated/Api/ApiUrlLookup.g.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ internal static class ApiUrlLookup
6868
internal static ApiUrls EsqlAsyncQueryDelete = new ApiUrls(new[] { "_query/async/{id}" });
6969
internal static ApiUrls EsqlAsyncQueryGet = new ApiUrls(new[] { "_query/async/{id}" });
7070
internal static ApiUrls EsqlAsyncQueryStop = new ApiUrls(new[] { "_query/async/{id}/stop" });
71+
internal static ApiUrls EsqlGetQuery = new ApiUrls(new[] { "_query/queries/{id}" });
72+
internal static ApiUrls EsqlListQueries = new ApiUrls(new[] { "_query/queries" });
7173
internal static ApiUrls EsqlQuery = new ApiUrls(new[] { "_query" });
7274
internal static ApiUrls FeaturesGetFeatures = new ApiUrls(new[] { "_features" });
7375
internal static ApiUrls FeaturesResetFeatures = new ApiUrls(new[] { "_features/_reset" });
@@ -95,6 +97,7 @@ internal static class ApiUrlLookup
9597
internal static ApiUrls IndexManagementDeleteAlias = new ApiUrls(new[] { "{index}/_alias/{name}" });
9698
internal static ApiUrls IndexManagementDeleteDataLifecycle = new ApiUrls(new[] { "_data_stream/{name}/_lifecycle" });
9799
internal static ApiUrls IndexManagementDeleteDataStream = new ApiUrls(new[] { "_data_stream/{name}" });
100+
internal static ApiUrls IndexManagementDeleteDataStreamOptions = new ApiUrls(new[] { "_data_stream/{name}/_options" });
98101
internal static ApiUrls IndexManagementDeleteIndexTemplate = new ApiUrls(new[] { "_index_template/{name}" });
99102
internal static ApiUrls IndexManagementDeleteTemplate = new ApiUrls(new[] { "_template/{name}" });
100103
internal static ApiUrls IndexManagementDiskUsage = new ApiUrls(new[] { "{index}/_disk_usage" });
@@ -112,6 +115,8 @@ internal static class ApiUrlLookup
112115
internal static ApiUrls IndexManagementGetDataLifecycle = new ApiUrls(new[] { "_data_stream/{name}/_lifecycle" });
113116
internal static ApiUrls IndexManagementGetDataLifecycleStats = new ApiUrls(new[] { "_lifecycle/stats" });
114117
internal static ApiUrls IndexManagementGetDataStream = new ApiUrls(new[] { "_data_stream", "_data_stream/{name}" });
118+
internal static ApiUrls IndexManagementGetDataStreamOptions = new ApiUrls(new[] { "_data_stream/{name}/_options" });
119+
internal static ApiUrls IndexManagementGetDataStreamSettings = new ApiUrls(new[] { "_data_stream/{name}/_settings" });
115120
internal static ApiUrls IndexManagementGetFieldMapping = new ApiUrls(new[] { "_mapping/field/{fields}", "{index}/_mapping/field/{fields}" });
116121
internal static ApiUrls IndexManagementGetIndexTemplate = new ApiUrls(new[] { "_index_template", "_index_template/{name}" });
117122
internal static ApiUrls IndexManagementGetMapping = new ApiUrls(new[] { "_mapping", "{index}/_mapping" });
@@ -125,6 +130,8 @@ internal static class ApiUrlLookup
125130
internal static ApiUrls IndexManagementPromoteDataStream = new ApiUrls(new[] { "_data_stream/_promote/{name}" });
126131
internal static ApiUrls IndexManagementPutAlias = new ApiUrls(new[] { "{index}/_alias/{name}" });
127132
internal static ApiUrls IndexManagementPutDataLifecycle = new ApiUrls(new[] { "_data_stream/{name}/_lifecycle" });
133+
internal static ApiUrls IndexManagementPutDataStreamOptions = new ApiUrls(new[] { "_data_stream/{name}/_options" });
134+
internal static ApiUrls IndexManagementPutDataStreamSettings = new ApiUrls(new[] { "_data_stream/{name}/_settings" });
128135
internal static ApiUrls IndexManagementPutIndexTemplate = new ApiUrls(new[] { "_index_template/{name}" });
129136
internal static ApiUrls IndexManagementPutMapping = new ApiUrls(new[] { "{index}/_mapping" });
130137
internal static ApiUrls IndexManagementPutSettings = new ApiUrls(new[] { "_settings", "{index}/_settings" });

src/Elastic.Clients.Elasticsearch/_Generated/Api/BulkRequest.g.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,10 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clien
342342
/// The request will only wait for those three shards to refresh.
343343
/// The other two shards that make up the index do not participate in the <c>_bulk</c> request at all.
344344
/// </para>
345+
/// <para>
346+
/// You might want to disable the refresh interval temporarily to improve indexing throughput for large bulk requests.
347+
/// Refer to the linked documentation for step-by-step instructions using the index settings API.
348+
/// </para>
345349
/// </summary>
346350
[System.Text.Json.Serialization.JsonConverter(typeof(Elastic.Clients.Elasticsearch.BulkRequestConverter))]
347351
public partial class BulkRequest : Elastic.Clients.Elasticsearch.Requests.PlainRequest<Elastic.Clients.Elasticsearch.BulkRequestParameters>
@@ -668,6 +672,10 @@ internal BulkRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConstructor
668672
/// The request will only wait for those three shards to refresh.
669673
/// The other two shards that make up the index do not participate in the <c>_bulk</c> request at all.
670674
/// </para>
675+
/// <para>
676+
/// You might want to disable the refresh interval temporarily to improve indexing throughput for large bulk requests.
677+
/// Refer to the linked documentation for step-by-step instructions using the index settings API.
678+
/// </para>
671679
/// </summary>
672680
public readonly partial struct BulkRequestDescriptor
673681
{
@@ -1143,6 +1151,10 @@ public Elastic.Clients.Elasticsearch.BulkRequestDescriptor RequestConfiguration(
11431151
/// The request will only wait for those three shards to refresh.
11441152
/// The other two shards that make up the index do not participate in the <c>_bulk</c> request at all.
11451153
/// </para>
1154+
/// <para>
1155+
/// You might want to disable the refresh interval temporarily to improve indexing throughput for large bulk requests.
1156+
/// Refer to the linked documentation for step-by-step instructions using the index settings API.
1157+
/// </para>
11461158
/// </summary>
11471159
public readonly partial struct BulkRequestDescriptor<TDocument>
11481160
{

src/Elastic.Clients.Elasticsearch/_Generated/Api/Cluster/AllocationExplainRequest.g.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clien
120120
/// For unassigned shards, it provides an explanation for why the shard is unassigned.
121121
/// For assigned shards, it provides an explanation for why the shard is remaining on its current node and has not moved or rebalanced to another node.
122122
/// This API can be very useful when attempting to diagnose why a shard is unassigned or why a shard continues to remain on its current node when you might expect otherwise.
123+
/// Refer to the linked documentation for examples of how to troubleshoot allocation issues using this API.
123124
/// </para>
124125
/// </summary>
125126
[System.Text.Json.Serialization.JsonConverter(typeof(Elastic.Clients.Elasticsearch.Cluster.AllocationExplainRequestConverter))]
@@ -206,6 +207,7 @@ internal AllocationExplainRequest(Elastic.Clients.Elasticsearch.Serialization.Js
206207
/// For unassigned shards, it provides an explanation for why the shard is unassigned.
207208
/// For assigned shards, it provides an explanation for why the shard is remaining on its current node and has not moved or rebalanced to another node.
208209
/// This API can be very useful when attempting to diagnose why a shard is unassigned or why a shard continues to remain on its current node when you might expect otherwise.
210+
/// Refer to the linked documentation for examples of how to troubleshoot allocation issues using this API.
209211
/// </para>
210212
/// </summary>
211213
public readonly partial struct AllocationExplainRequestDescriptor

src/Elastic.Clients.Elasticsearch/_Generated/Api/Cluster/GetClusterSettingsRequest.g.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clien
8888
/// <summary>
8989
/// <para>
9090
/// Get cluster-wide settings.
91+
/// </para>
92+
/// <para>
9193
/// By default, it returns only settings that have been explicitly defined.
9294
/// </para>
9395
/// </summary>
@@ -152,6 +154,8 @@ internal GetClusterSettingsRequest(Elastic.Clients.Elasticsearch.Serialization.J
152154
/// <summary>
153155
/// <para>
154156
/// Get cluster-wide settings.
157+
/// </para>
158+
/// <para>
155159
/// By default, it returns only settings that have been explicitly defined.
156160
/// </para>
157161
/// </summary>

src/Elastic.Clients.Elasticsearch/_Generated/Api/Cluster/GetClusterSettingsResponse.g.cs

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,32 @@ internal GetClusterSettingsResponse(Elastic.Clients.Elasticsearch.Serialization.
9494
_ = sentinel;
9595
}
9696

97+
/// <summary>
98+
/// <para>
99+
/// The default setting values.
100+
/// </para>
101+
/// </summary>
97102
public System.Collections.Generic.IReadOnlyDictionary<string, object>? Defaults { get; set; }
103+
104+
/// <summary>
105+
/// <para>
106+
/// The settings that persist after the cluster restarts.
107+
/// </para>
108+
/// </summary>
98109
public
99110
#if NET7_0_OR_GREATER
100-
required
111+
required
101112
#endif
102-
System.Collections.Generic.IReadOnlyDictionary<string, object> Persistent { get; set; }
113+
System.Collections.Generic.IReadOnlyDictionary<string, object> Persistent { get; set; }
114+
115+
/// <summary>
116+
/// <para>
117+
/// The settings that do not persist after the cluster restarts.
118+
/// </para>
119+
/// </summary>
103120
public
104121
#if NET7_0_OR_GREATER
105-
required
122+
required
106123
#endif
107-
System.Collections.Generic.IReadOnlyDictionary<string, object> Transient { get; set; }
124+
System.Collections.Generic.IReadOnlyDictionary<string, object> Transient { get; set; }
108125
}

0 commit comments

Comments
 (0)