Skip to content

Commit 61ff828

Browse files
committed
Regenerate client
1 parent 984d7e2 commit 61ff828

File tree

186 files changed

+1773
-7468
lines changed

Some content is hidden

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

186 files changed

+1773
-7468
lines changed

src/Elastic.Clients.Elasticsearch/_Generated/Api/AsyncSearch/SubmitAsyncSearchRequest.g.cs

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ public sealed partial class SubmitAsyncSearchRequestParameters : Elastic.Transpo
130130
/// The number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests
131131
/// </para>
132132
/// </summary>
133-
public int? MaxConcurrentShardRequests { get => Q<int?>("max_concurrent_shard_requests"); set => Q("max_concurrent_shard_requests", value); }
133+
public long? MaxConcurrentShardRequests { get => Q<long?>("max_concurrent_shard_requests"); set => Q("max_concurrent_shard_requests", value); }
134+
public string? MinCompatibleShardNode { get => Q<string?>("min_compatible_shard_node"); set => Q("min_compatible_shard_node", value); }
134135

135136
/// <summary>
136137
/// <para>
@@ -708,7 +709,8 @@ internal SubmitAsyncSearchRequest(Elastic.Clients.Elasticsearch.Serialization.Js
708709
/// The number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests
709710
/// </para>
710711
/// </summary>
711-
public int? MaxConcurrentShardRequests { get => Q<int?>("max_concurrent_shard_requests"); set => Q("max_concurrent_shard_requests", value); }
712+
public long? MaxConcurrentShardRequests { get => Q<long?>("max_concurrent_shard_requests"); set => Q("max_concurrent_shard_requests", value); }
713+
public string? MinCompatibleShardNode { get => Q<string?>("min_compatible_shard_node"); set => Q("min_compatible_shard_node", value); }
712714

713715
/// <summary>
714716
/// <para>
@@ -1218,12 +1220,18 @@ public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescrip
12181220
/// The number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests
12191221
/// </para>
12201222
/// </summary>
1221-
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor MaxConcurrentShardRequests(int? value)
1223+
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor MaxConcurrentShardRequests(long? value)
12221224
{
12231225
Instance.MaxConcurrentShardRequests = value;
12241226
return this;
12251227
}
12261228

1229+
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor MinCompatibleShardNode(string? value)
1230+
{
1231+
Instance.MinCompatibleShardNode = value;
1232+
return this;
1233+
}
1234+
12271235
/// <summary>
12281236
/// <para>
12291237
/// Specify the node or shard the operation should be performed on (default: random)
@@ -2597,12 +2605,18 @@ public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescrip
25972605
/// The number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests
25982606
/// </para>
25992607
/// </summary>
2600-
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor<TDocument> MaxConcurrentShardRequests(int? value)
2608+
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor<TDocument> MaxConcurrentShardRequests(long? value)
26012609
{
26022610
Instance.MaxConcurrentShardRequests = value;
26032611
return this;
26042612
}
26052613

2614+
public Elastic.Clients.Elasticsearch.AsyncSearch.SubmitAsyncSearchRequestDescriptor<TDocument> MinCompatibleShardNode(string? value)
2615+
{
2616+
Instance.MinCompatibleShardNode = value;
2617+
return this;
2618+
}
2619+
26062620
/// <summary>
26072621
/// <para>
26082622
/// Specify the node or shard the operation should be performed on (default: random)

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -412,14 +412,6 @@ internal HealthResponse(Elastic.Clients.Elasticsearch.Serialization.JsonConstruc
412412
#endif
413413
int UnassignedPrimaryShards { get; set; }
414414

415-
/// <summary>
416-
/// <para>
417-
/// The number of primary shards that are not allocated.
418-
/// </para>
419-
/// </summary>
420-
[JsonInclude, JsonPropertyName("unassigned_primary_shards")]
421-
public int UnassignedPrimaryShards { get; init; }
422-
423415
/// <summary>
424416
/// <para>
425417
/// The number of shards that are not allocated.

src/Elastic.Clients.Elasticsearch/_Generated/Api/Esql/AsyncQueryRequest.g.cs

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,17 @@ namespace Elastic.Clients.Elasticsearch.Esql;
2525

2626
public sealed partial class AsyncQueryRequestParameters : Elastic.Transport.RequestParameters
2727
{
28+
/// <summary>
29+
/// <para>
30+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
31+
/// If <c>false</c>, the query will fail if there are any failures.
32+
/// </para>
33+
/// <para>
34+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
35+
/// </para>
36+
/// </summary>
37+
public bool? AllowPartialResults { get => Q<bool?>("allow_partial_results"); set => Q("allow_partial_results", value); }
38+
2839
/// <summary>
2940
/// <para>
3041
/// The character to use between values within a CSV row.
@@ -211,6 +222,17 @@ internal AsyncQueryRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConst
211222

212223
internal override string OperationName => "esql.async_query";
213224

225+
/// <summary>
226+
/// <para>
227+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
228+
/// If <c>false</c>, the query will fail if there are any failures.
229+
/// </para>
230+
/// <para>
231+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
232+
/// </para>
233+
/// </summary>
234+
public bool? AllowPartialResults { get => Q<bool?>("allow_partial_results"); set => Q("allow_partial_results", value); }
235+
214236
/// <summary>
215237
/// <para>
216238
/// The character to use between values within a CSV row.
@@ -342,6 +364,21 @@ public AsyncQueryRequestDescriptor()
342364
public static explicit operator Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor(Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequest instance) => new Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor(instance);
343365
public static implicit operator Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequest(Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor descriptor) => descriptor.Instance;
344366

367+
/// <summary>
368+
/// <para>
369+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
370+
/// If <c>false</c>, the query will fail if there are any failures.
371+
/// </para>
372+
/// <para>
373+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
374+
/// </para>
375+
/// </summary>
376+
public Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor AllowPartialResults(bool? value = true)
377+
{
378+
Instance.AllowPartialResults = value;
379+
return this;
380+
}
381+
345382
/// <summary>
346383
/// <para>
347384
/// The character to use between values within a CSV row.
@@ -605,6 +642,21 @@ public AsyncQueryRequestDescriptor()
605642
public static explicit operator Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor<TDocument>(Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequest instance) => new Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor<TDocument>(instance);
606643
public static implicit operator Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequest(Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor<TDocument> descriptor) => descriptor.Instance;
607644

645+
/// <summary>
646+
/// <para>
647+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
648+
/// If <c>false</c>, the query will fail if there are any failures.
649+
/// </para>
650+
/// <para>
651+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
652+
/// </para>
653+
/// </summary>
654+
public Elastic.Clients.Elasticsearch.Esql.AsyncQueryRequestDescriptor<TDocument> AllowPartialResults(bool? value = true)
655+
{
656+
Instance.AllowPartialResults = value;
657+
return this;
658+
}
659+
608660
/// <summary>
609661
/// <para>
610662
/// The character to use between values within a CSV row.

src/Elastic.Clients.Elasticsearch/_Generated/Api/Esql/EsqlQueryRequest.g.cs

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,17 @@ namespace Elastic.Clients.Elasticsearch.Esql;
2525

2626
public sealed partial class EsqlQueryRequestParameters : Elastic.Transport.RequestParameters
2727
{
28+
/// <summary>
29+
/// <para>
30+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
31+
/// If <c>false</c>, the query will fail if there are any failures.
32+
/// </para>
33+
/// <para>
34+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
35+
/// </para>
36+
/// </summary>
37+
public bool? AllowPartialResults { get => Q<bool?>("allow_partial_results"); set => Q("allow_partial_results", value); }
38+
2839
/// <summary>
2940
/// <para>
3041
/// The character to use between values within a CSV row. Only valid for the CSV format.
@@ -180,6 +191,17 @@ internal EsqlQueryRequest(Elastic.Clients.Elasticsearch.Serialization.JsonConstr
180191

181192
internal override string OperationName => "esql.query";
182193

194+
/// <summary>
195+
/// <para>
196+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
197+
/// If <c>false</c>, the query will fail if there are any failures.
198+
/// </para>
199+
/// <para>
200+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
201+
/// </para>
202+
/// </summary>
203+
public bool? AllowPartialResults { get => Q<bool?>("allow_partial_results"); set => Q("allow_partial_results", value); }
204+
183205
/// <summary>
184206
/// <para>
185207
/// The character to use between values within a CSV row. Only valid for the CSV format.
@@ -279,6 +301,21 @@ public EsqlQueryRequestDescriptor()
279301
public static explicit operator Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor(Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequest instance) => new Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor(instance);
280302
public static implicit operator Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequest(Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor descriptor) => descriptor.Instance;
281303

304+
/// <summary>
305+
/// <para>
306+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
307+
/// If <c>false</c>, the query will fail if there are any failures.
308+
/// </para>
309+
/// <para>
310+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
311+
/// </para>
312+
/// </summary>
313+
public Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor AllowPartialResults(bool? value = true)
314+
{
315+
Instance.AllowPartialResults = value;
316+
return this;
317+
}
318+
282319
/// <summary>
283320
/// <para>
284321
/// The character to use between values within a CSV row. Only valid for the CSV format.
@@ -498,6 +535,21 @@ public EsqlQueryRequestDescriptor()
498535
public static explicit operator Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor<TDocument>(Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequest instance) => new Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor<TDocument>(instance);
499536
public static implicit operator Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequest(Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor<TDocument> descriptor) => descriptor.Instance;
500537

538+
/// <summary>
539+
/// <para>
540+
/// If <c>true</c>, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
541+
/// If <c>false</c>, the query will fail if there are any failures.
542+
/// </para>
543+
/// <para>
544+
/// To override the default behavior, you can set the <c>esql.query.allow_partial_results</c> cluster setting to <c>false</c>.
545+
/// </para>
546+
/// </summary>
547+
public Elastic.Clients.Elasticsearch.Esql.EsqlQueryRequestDescriptor<TDocument> AllowPartialResults(bool? value = true)
548+
{
549+
Instance.AllowPartialResults = value;
550+
return this;
551+
}
552+
501553
/// <summary>
502554
/// <para>
503555
/// The character to use between values within a CSV row. Only valid for the CSV format.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ internal sealed partial class GetSourceResponseConverter<TDocument> : System.Tex
2727
{
2828
public override Elastic.Clients.Elasticsearch.GetSourceResponse<TDocument> Read(ref System.Text.Json.Utf8JsonReader reader, System.Type typeToConvert, System.Text.Json.JsonSerializerOptions options)
2929
{
30-
return new Elastic.Clients.Elasticsearch.GetSourceResponse<TDocument>(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorSentinel.Instance) { Source = reader.ReadValue<TDocument>(options, static TDocument (ref System.Text.Json.Utf8JsonReader r, System.Text.Json.JsonSerializerOptions o) => r.ReadValueEx<TDocument>(o, typeof(Elastic.Clients.Elasticsearch.Serialization.SourceMarker<TDocument>))!) };
30+
return new Elastic.Clients.Elasticsearch.GetSourceResponse<TDocument>(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorSentinel.Instance) { Document = reader.ReadValue<TDocument>(options, static TDocument (ref System.Text.Json.Utf8JsonReader r, System.Text.Json.JsonSerializerOptions o) => r.ReadValueEx<TDocument>(o, typeof(Elastic.Clients.Elasticsearch.Serialization.SourceMarker<TDocument>))!) };
3131
}
3232

3333
public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clients.Elasticsearch.GetSourceResponse<TDocument> value, System.Text.Json.JsonSerializerOptions options)
3434
{
35-
writer.WriteValue(options, value.Source, static (System.Text.Json.Utf8JsonWriter w, System.Text.Json.JsonSerializerOptions o, TDocument v) => w.WriteValueEx<TDocument>(o, v, typeof(Elastic.Clients.Elasticsearch.Serialization.SourceMarker<TDocument>)));
35+
writer.WriteValue(options, value.Document, static (System.Text.Json.Utf8JsonWriter w, System.Text.Json.JsonSerializerOptions o, TDocument v) => w.WriteValueEx<TDocument>(o, v, typeof(Elastic.Clients.Elasticsearch.Serialization.SourceMarker<TDocument>)));
3636
}
3737
}
3838

@@ -71,5 +71,5 @@ internal GetSourceResponse(Elastic.Clients.Elasticsearch.Serialization.JsonConst
7171
#if NET7_0_OR_GREATER
7272
required
7373
#endif
74-
TDocument Source { get; set; }
74+
TDocument Document { get; set; }
7575
}

src/Elastic.Clients.Elasticsearch/_Generated/Api/IndexLifecycleManagement/GetLifecycleResponse.g.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ internal sealed partial class GetLifecycleResponseConverter : System.Text.Json.S
2727
{
2828
public override Elastic.Clients.Elasticsearch.IndexLifecycleManagement.GetLifecycleResponse Read(ref System.Text.Json.Utf8JsonReader reader, System.Type typeToConvert, System.Text.Json.JsonSerializerOptions options)
2929
{
30-
return new Elastic.Clients.Elasticsearch.IndexLifecycleManagement.GetLifecycleResponse(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorSentinel.Instance) { Lifecycles = reader.ReadValue<System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>>(options, static System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> (ref System.Text.Json.Utf8JsonReader r, System.Text.Json.JsonSerializerOptions o) => r.ReadDictionaryValue<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>(o, null, null)!) };
30+
return new Elastic.Clients.Elasticsearch.IndexLifecycleManagement.GetLifecycleResponse(Elastic.Clients.Elasticsearch.Serialization.JsonConstructorSentinel.Instance) { Values = reader.ReadValue<System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>>(options, static System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> (ref System.Text.Json.Utf8JsonReader r, System.Text.Json.JsonSerializerOptions o) => r.ReadDictionaryValue<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>(o, null, null)!) };
3131
}
3232

3333
public override void Write(System.Text.Json.Utf8JsonWriter writer, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.GetLifecycleResponse value, System.Text.Json.JsonSerializerOptions options)
3434
{
35-
writer.WriteValue(options, value.Lifecycles, static (System.Text.Json.Utf8JsonWriter w, System.Text.Json.JsonSerializerOptions o, System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> v) => w.WriteDictionaryValue<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>(o, v, null, null));
35+
writer.WriteValue(options, value.Values, static (System.Text.Json.Utf8JsonWriter w, System.Text.Json.JsonSerializerOptions o, System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> v) => w.WriteDictionaryValue<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle>(o, v, null, null));
3636
}
3737
}
3838

@@ -54,5 +54,5 @@ internal GetLifecycleResponse(Elastic.Clients.Elasticsearch.Serialization.JsonCo
5454
#if NET7_0_OR_GREATER
5555
required
5656
#endif
57-
System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> Lifecycles { get; set; }
57+
System.Collections.Generic.IReadOnlyDictionary<string, Elastic.Clients.Elasticsearch.IndexLifecycleManagement.Lifecycle> Values { get; set; }
5858
}

src/Elastic.Clients.Elasticsearch/_Generated/Api/IndexLifecycleManagement/MigrateToDataTiersRequest.g.cs

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,6 @@ public sealed partial class MigrateToDataTiersRequestParameters : Elastic.Transp
3232
/// </para>
3333
/// </summary>
3434
public bool? DryRun { get => Q<bool?>("dry_run"); set => Q("dry_run", value); }
35-
36-
/// <summary>
37-
/// <para>
38-
/// The period to wait for a connection to the master node.
39-
/// If no response is received before the timeout expires, the request fails and returns an error.
40-
/// It can also be set to <c>-1</c> to indicate that the request should never timeout.
41-
/// </para>
42-
/// </summary>
43-
public Elastic.Clients.Elasticsearch.Duration? MasterTimeout { get => Q<Elastic.Clients.Elasticsearch.Duration?>("master_timeout"); set => Q("master_timeout", value); }
4435
}
4536

4637
internal sealed partial class MigrateToDataTiersRequestConverter : System.Text.Json.Serialization.JsonConverter<Elastic.Clients.Elasticsearch.IndexLifecycleManagement.MigrateToDataTiersRequest>
@@ -158,15 +149,6 @@ internal MigrateToDataTiersRequest(Elastic.Clients.Elasticsearch.Serialization.J
158149
/// </para>
159150
/// </summary>
160151
public bool? DryRun { get => Q<bool?>("dry_run"); set => Q("dry_run", value); }
161-
162-
/// <summary>
163-
/// <para>
164-
/// The period to wait for a connection to the master node.
165-
/// If no response is received before the timeout expires, the request fails and returns an error.
166-
/// It can also be set to <c>-1</c> to indicate that the request should never timeout.
167-
/// </para>
168-
/// </summary>
169-
public Elastic.Clients.Elasticsearch.Duration? MasterTimeout { get => Q<Elastic.Clients.Elasticsearch.Duration?>("master_timeout"); set => Q("master_timeout", value); }
170152
public string? LegacyTemplateToDelete { get; set; }
171153
public string? NodeAttribute { get; set; }
172154
}
@@ -234,19 +216,6 @@ public Elastic.Clients.Elasticsearch.IndexLifecycleManagement.MigrateToDataTiers
234216
return this;
235217
}
236218

237-
/// <summary>
238-
/// <para>
239-
/// The period to wait for a connection to the master node.
240-
/// If no response is received before the timeout expires, the request fails and returns an error.
241-
/// It can also be set to <c>-1</c> to indicate that the request should never timeout.
242-
/// </para>
243-
/// </summary>
244-
public Elastic.Clients.Elasticsearch.IndexLifecycleManagement.MigrateToDataTiersRequestDescriptor MasterTimeout(Elastic.Clients.Elasticsearch.Duration? value)
245-
{
246-
Instance.MasterTimeout = value;
247-
return this;
248-
}
249-
250219
public Elastic.Clients.Elasticsearch.IndexLifecycleManagement.MigrateToDataTiersRequestDescriptor LegacyTemplateToDelete(string? value)
251220
{
252221
Instance.LegacyTemplateToDelete = value;

0 commit comments

Comments
 (0)