Skip to content

Commit fcda832

Browse files
committed
This API comments
1 parent 4609dc7 commit fcda832

19 files changed

+23
-28
lines changed

src/Nest/Cluster/ClusterSettings/ClusterPutSettings/RemoteClusterConfiguration.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
namespace Nest
66
{
77
/// <summary>
8-
/// This is a custom dictionary that helps in the creation of remote cluster configuration
9-
/// you can pass to the Put Cluster Settings API
8+
/// Simplifies the creation of remote cluster configuration, can be combined with a dictionary using the overloaded + operator
109
/// </summary>
1110
public class RemoteClusterConfiguration : IsADictionaryBase<string, object>
1211
{

src/Nest/XPack/CrossClusterReplication/AutoFollow/CreateAutoFollowPattern/CreateAutoFollowPatternRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Nest
55
{
66
/// <summary>
7-
/// This API creates a new named collection of auto-follow patterns against the remote cluster specified
7+
/// Creates a new named collection of auto-follow patterns against the remote cluster specified
88
/// in the request body. Newly created indices on the remote cluster matching any of the specified patterns
99
/// will be automatically configured as follower indices.
1010
/// </summary>

src/Nest/XPack/CrossClusterReplication/AutoFollow/CreateAutoFollowPattern/ElasticClient-CreateAutoFollowPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Nest
88
public partial interface IElasticClient
99
{
1010
/// <summary>
11-
/// This API creates a new named collection of auto-follow patterns against the remote cluster specified
11+
/// Creates a new named collection of auto-follow patterns against the remote cluster specified
1212
/// in the request body. Newly created indices on the remote cluster matching any of the specified patterns
1313
/// will be automatically configured as follower indices.
1414
/// </summary>

src/Nest/XPack/CrossClusterReplication/AutoFollow/DeleteAutoFollowPattern/DeleteAutoFollowPatternRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Nest
55
{
6-
/// <summary> This API deletes a configured collection of auto-follow patterns. </summary>
6+
/// <summary> Deletes a configured collection of auto-follow patterns. </summary>
77
[MapsApi("ccr.delete_auto_follow_pattern.json")]
88
[ContractJsonConverter(typeof(ReadAsTypeJsonConverter<DeleteAutoFollowPatternRequest>))]
99
public partial interface IDeleteAutoFollowPatternRequest { }

src/Nest/XPack/CrossClusterReplication/AutoFollow/DeleteAutoFollowPattern/ElasticClient-DeleteAutoFollowPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Nest
77
{
88
public partial interface IElasticClient
99
{
10-
/// <summary>This API deletes a configured collection of auto-follow patterns.</summary>
10+
/// <summary>Deletes a configured collection of auto-follow patterns.</summary>
1111
IDeleteAutoFollowPatternResponse DeleteAutoFollowPattern(Name name, Func<DeleteAutoFollowPatternDescriptor, IDeleteAutoFollowPatternRequest> selector = null);
1212

1313
/// <inheritdoc cref="DeleteAutoFollowPattern(Name,System.Func{Nest.DeleteAutoFollowPatternDescriptor,Nest.IDeleteAutoFollowPatternRequest})" />

src/Nest/XPack/CrossClusterReplication/AutoFollow/GetAutoFollowPattern/ElasticClient-GetAutoFollowPattern.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Nest
77
{
88
public partial interface IElasticClient
99
{
10-
/// <summary> This API gets configured auto-follow patterns. This API will return the specified auto-follow pattern collection. </summary>
10+
/// <summary> Gets configured auto-follow patterns. Returns the specified auto-follow pattern collection. </summary>
1111
IGetAutoFollowPatternResponse GetAutoFollowPattern(Func<GetAutoFollowPatternDescriptor, IGetAutoFollowPatternRequest> selector = null);
1212

1313
/// <inheritdoc cref="GetAutoFollowPattern(System.Func{Nest.GetAutoFollowPatternDescriptor,Nest.IGetAutoFollowPatternRequest})" />

src/Nest/XPack/CrossClusterReplication/AutoFollow/GetAutoFollowPattern/GetAutoFollowPatternRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Nest
55
{
6-
/// <summary> This API gets configured auto-follow patterns. This API will return the specified auto-follow pattern collection. </summary>
6+
/// <summary> Gets configured auto-follow patterns. This API will return the specified auto-follow pattern collection. </summary>
77
[MapsApi("ccr.get_auto_follow_pattern.json")]
88
[ContractJsonConverter(typeof(ReadAsTypeJsonConverter<GetAutoFollowPatternRequest>))]
99
public partial interface IGetAutoFollowPatternRequest { }

src/Nest/XPack/CrossClusterReplication/Follow/CreateFollowIndex/CreateFollowIndexRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace Nest
66
{
77
/// <summary>
8-
/// This API creates a new follower index that is configured to follow the referenced leader index.
8+
/// Creates a new follower index that is configured to follow the referenced leader index.
99
/// When this API returns, the follower index exists, and cross-cluster replication starts replicating operations
1010
/// from the leader index to the follower index
1111
/// </summary>

src/Nest/XPack/CrossClusterReplication/Follow/CreateFollowIndex/ElasticClient-CreateFollowIndex.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Nest
88
public partial interface IElasticClient
99
{
1010
/// <summary>
11-
/// This API creates a new follower index that is configured to follow the referenced leader index.
11+
/// Creates a new follower index that is configured to follow the referenced leader index.
1212
/// When this API returns, the follower index exists, and cross-cluster replication starts replicating
1313
/// operations from the leader index to the follower index.
1414
/// </summary>

src/Nest/XPack/CrossClusterReplication/Follow/FollowIndexStats/ElasticClient-FollowIndexStats.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ namespace Nest
88
public partial interface IElasticClient
99
{
1010
/// <summary>
11-
/// This API gets follower stats. This API will return shard-level stats about the
12-
/// following tasks associated with each shard for the specified indices.
11+
/// Gets follower stats. Returns shard-level stats about the following tasks associated with each shard for the specified indices.
1312
/// </summary>
1413
IFollowIndexStatsResponse FollowIndexStats(Indices indices, Func<FollowIndexStatsDescriptor, IFollowIndexStatsRequest> selector = null);
1514

0 commit comments

Comments
 (0)