Skip to content

Commit

Permalink
Fix Indices.BulkAsync summary (#717)
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]>
  • Loading branch information
Juliana M. Crivelli and Xtansia authored Aug 7, 2024
1 parent cd5391e commit c2fdd5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/OpenSearch.Client/OpenSearchClient.Indices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -811,9 +811,9 @@ Task<PutMappingResponse> PutMappingAsync<TDocument>(Func<PutMappingDescriptor<TD
/// </summary>
Task<SplitIndexResponse> SplitAsync(ISplitIndexRequest request, CancellationToken ct = default);
/// <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>
BulkAliasResponse BulkAlias(Func<BulkAliasDescriptor, IBulkAliasRequest> selector);
/// <summary>
Expand Down Expand Up @@ -1621,9 +1621,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 c2fdd5d

Please sign in to comment.