Skip to content

Commit 0a4e6be

Browse files
Regenerate client for 8.13 (#8071) (#8072)
Co-authored-by: Florian Bernd <[email protected]>
1 parent d65d6b9 commit 0a4e6be

File tree

3,333 files changed

+265098
-80760
lines changed

Some content is hidden

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

3,333 files changed

+265098
-80760
lines changed

docfx.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"metadata": [
3+
{
4+
"src": [
5+
{
6+
"src": "./src/Elastic.Clients.Elasticsearch",
7+
"files": [
8+
"**/*.csproj"
9+
]
10+
}
11+
],
12+
"dest": "api"
13+
}
14+
],
15+
"build": {
16+
"content": [
17+
{
18+
"files": [
19+
"**/*.{md,yml}"
20+
],
21+
"exclude": [
22+
"_site/**"
23+
]
24+
}
25+
],
26+
"resource": [
27+
{
28+
"files": [
29+
"images/**"
30+
]
31+
}
32+
],
33+
"output": "_site",
34+
"template": [
35+
"default",
36+
"modern"
37+
],
38+
"globalMetadata": {
39+
"_appName": "Elasticsearch.NET",
40+
"_appTitle": "Elasticsearch.NET",
41+
"_enableSearch": true,
42+
"_disableContribution": true,
43+
"pdf": false
44+
}
45+
}
46+
}

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

+139-8
Large diffs are not rendered by default.

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/AsyncSearchStatusRequest.g.cs

-8
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ public AsyncSearchStatusRequestDescriptor(Elastic.Clients.Elasticsearch.Serverle
6262
{
6363
}
6464

65-
internal AsyncSearchStatusRequestDescriptor()
66-
{
67-
}
68-
6965
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchStatus;
7066

7167
protected override HttpMethod StaticHttpMethod => HttpMethod.GET;
@@ -96,10 +92,6 @@ public AsyncSearchStatusRequestDescriptor(Elastic.Clients.Elasticsearch.Serverle
9692
{
9793
}
9894

99-
internal AsyncSearchStatusRequestDescriptor()
100-
{
101-
}
102-
10395
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchStatus;
10496

10597
protected override HttpMethod StaticHttpMethod => HttpMethod.GET;

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/AsyncSearchStatusResponse.g.cs

+16
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,34 @@ public sealed partial class AsyncSearchStatusResponse : ElasticsearchResponse
3939
/// </summary>
4040
[JsonInclude, JsonPropertyName("completion_status")]
4141
public int? CompletionStatus { get; init; }
42+
43+
/// <summary>
44+
/// <para>Indicates when the async search completed. Only present<br/>when the search has completed.</para>
45+
/// </summary>
4246
[JsonInclude, JsonPropertyName("completion_time")]
4347
public DateTimeOffset? CompletionTime { get; init; }
4448
[JsonInclude, JsonPropertyName("completion_time_in_millis")]
4549
public long? CompletionTimeInMillis { get; init; }
50+
51+
/// <summary>
52+
/// <para>Indicates when the async search will expire.</para>
53+
/// </summary>
4654
[JsonInclude, JsonPropertyName("expiration_time")]
4755
public DateTimeOffset? ExpirationTime { get; init; }
4856
[JsonInclude, JsonPropertyName("expiration_time_in_millis")]
4957
public long ExpirationTimeInMillis { get; init; }
5058
[JsonInclude, JsonPropertyName("id")]
5159
public string? Id { get; init; }
60+
61+
/// <summary>
62+
/// <para>When the query is no longer running, this property indicates whether the search failed or was successfully completed on all shards.<br/>While the query is running, `is_partial` is always set to `true`.</para>
63+
/// </summary>
5264
[JsonInclude, JsonPropertyName("is_partial")]
5365
public bool IsPartial { get; init; }
66+
67+
/// <summary>
68+
/// <para>Indicates whether the search is still running or has completed.<br/>NOTE: If the search failed after some shards returned their results or the node that is coordinating the async search dies, results may be partial even though `is_running` is `false`.</para>
69+
/// </summary>
5470
[JsonInclude, JsonPropertyName("is_running")]
5571
public bool IsRunning { get; init; }
5672

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/DeleteAsyncSearchRequest.g.cs

-8
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ public DeleteAsyncSearchRequestDescriptor(Elastic.Clients.Elasticsearch.Serverle
6262
{
6363
}
6464

65-
internal DeleteAsyncSearchRequestDescriptor()
66-
{
67-
}
68-
6965
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchDelete;
7066

7167
protected override HttpMethod StaticHttpMethod => HttpMethod.DELETE;
@@ -96,10 +92,6 @@ public DeleteAsyncSearchRequestDescriptor(Elastic.Clients.Elasticsearch.Serverle
9692
{
9793
}
9894

99-
internal DeleteAsyncSearchRequestDescriptor()
100-
{
101-
}
102-
10395
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchDelete;
10496

10597
protected override HttpMethod StaticHttpMethod => HttpMethod.DELETE;

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/DeleteAsyncSearchResponse.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
using Elastic.Clients.Elasticsearch.Serverless.Fluent;
2121
using Elastic.Clients.Elasticsearch.Serverless.Serialization;
2222
using Elastic.Transport.Products.Elasticsearch;
23+
using System;
2324
using System.Collections.Generic;
2425
using System.Text.Json.Serialization;
2526

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/GetAsyncSearchRequest.g.cs

-8
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ public GetAsyncSearchRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.
9494
{
9595
}
9696

97-
internal GetAsyncSearchRequestDescriptor()
98-
{
99-
}
100-
10197
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchGet;
10298

10399
protected override HttpMethod StaticHttpMethod => HttpMethod.GET;
@@ -132,10 +128,6 @@ public GetAsyncSearchRequestDescriptor(Elastic.Clients.Elasticsearch.Serverless.
132128
{
133129
}
134130

135-
internal GetAsyncSearchRequestDescriptor()
136-
{
137-
}
138-
139131
internal override ApiUrls ApiUrls => ApiUrlLookup.AsyncSearchGet;
140132

141133
protected override HttpMethod StaticHttpMethod => HttpMethod.GET;

src/Elastic.Clients.Elasticsearch.Serverless/_Generated/Api/AsyncSearch/GetAsyncSearchResponse.g.cs

+15
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,33 @@ namespace Elastic.Clients.Elasticsearch.Serverless.AsyncSearch;
2828

2929
public sealed partial class GetAsyncSearchResponse<TDocument> : ElasticsearchResponse
3030
{
31+
/// <summary>
32+
/// <para>Indicates when the async search completed. Only present<br/>when the search has completed.</para>
33+
/// </summary>
3134
[JsonInclude, JsonPropertyName("completion_time")]
3235
public DateTimeOffset? CompletionTime { get; init; }
3336
[JsonInclude, JsonPropertyName("completion_time_in_millis")]
3437
public long? CompletionTimeInMillis { get; init; }
38+
39+
/// <summary>
40+
/// <para>Indicates when the async search will expire.</para>
41+
/// </summary>
3542
[JsonInclude, JsonPropertyName("expiration_time")]
3643
public DateTimeOffset? ExpirationTime { get; init; }
3744
[JsonInclude, JsonPropertyName("expiration_time_in_millis")]
3845
public long ExpirationTimeInMillis { get; init; }
3946
[JsonInclude, JsonPropertyName("id")]
4047
public string? Id { get; init; }
48+
49+
/// <summary>
50+
/// <para>When the query is no longer running, this property indicates whether the search failed or was successfully completed on all shards.<br/>While the query is running, `is_partial` is always set to `true`.</para>
51+
/// </summary>
4152
[JsonInclude, JsonPropertyName("is_partial")]
4253
public bool IsPartial { get; init; }
54+
55+
/// <summary>
56+
/// <para>Indicates whether the search is still running or has completed.<br/>NOTE: If the search failed after some shards returned their results or the node that is coordinating the async search dies, results may be partial even though `is_running` is `false`.</para>
57+
/// </summary>
4358
[JsonInclude, JsonPropertyName("is_running")]
4459
public bool IsRunning { get; init; }
4560
[JsonInclude, JsonPropertyName("response")]

0 commit comments

Comments
 (0)