Skip to content

Commit

Permalink
Fix Indices.BulkAsync summary (#717) (#746)
Browse files Browse the repository at this point in the history
* Fix Indices.BulkAsync summary

Signed-off-by: Juliana M. Crivelli <[email protected]>

* Update src/OpenSearch.Client/OpenSearchClient.Indices.cs

Co-authored-by: Thomas Farr <[email protected]>
Signed-off-by: Juliana M. Crivelli <[email protected]>

* Update src/OpenSearch.Client/OpenSearchClient.Indices.cs

Co-authored-by: Thomas Farr <[email protected]>
Signed-off-by: Juliana M. Crivelli <[email protected]>

* Update src/OpenSearch.Client/OpenSearchClient.Indices.cs

Co-authored-by: Thomas Farr <[email protected]>
Signed-off-by: Juliana M. Crivelli <[email protected]>

* Update src/OpenSearch.Client/OpenSearchClient.Indices.cs

Co-authored-by: Thomas Farr <[email protected]>
Signed-off-by: Juliana M. Crivelli <[email protected]>

---------

Signed-off-by: Juliana M. Crivelli <[email protected]>
Co-authored-by: Thomas Farr <[email protected]>
(cherry picked from commit c2fdd5d)

Co-authored-by: Juliana M. Crivelli <[email protected]>
  • Loading branch information
Xtansia and Juliana M. Crivelli authored Aug 8, 2024
1 parent 087dcfd commit 1256eeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenSearch.Client/OpenSearchClient.Indices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -795,9 +795,9 @@ public Task<PutMappingResponse> PutMappingAsync<TDocument>(Func<PutMappingDescri
/// </summary>
public Task<SplitIndexResponse> SplitAsync(ISplitIndexRequest request, CancellationToken ct = default) => DoRequestAsync<ISplitIndexRequest, SplitIndexResponse>(request, request.RequestParameters, ct);
/// <summary>
/// <c>GET</c> request to the <c>indices.stats</c> API, read more about this API online:
/// <c>POST</c> request to the <c>indices.update_aliases</c> API, read more about this API online:
/// <para></para>
/// <a href = "https://opensearch.org/docs/latest/opensearch/stats-api/">https://opensearch.org/docs/latest/opensearch/stats-api/</a>
/// <a href = "https://opensearch.org/docs/latest/opensearch/rest-api/alias/">https://opensearch.org/docs/latest/opensearch/rest-api/alias/</a>
/// </summary>
public BulkAliasResponse BulkAlias(Func<BulkAliasDescriptor, IBulkAliasRequest> selector) => BulkAlias(selector.InvokeOrDefault(new BulkAliasDescriptor()));
/// <summary>
Expand Down

0 comments on commit 1256eeb

Please sign in to comment.