/// <inheritdoc />
 public Task <IIndicesShardStoresResponse> IndicesShardStoresAsync(IIndicesShardStoresRequest request,
                                                                   CancellationToken cancellationToken = default(CancellationToken)
                                                                   ) =>
 Dispatcher
 .DispatchAsync <IIndicesShardStoresRequest, IndicesShardStoresRequestParameters, IndicesShardStoresResponse,
                 IIndicesShardStoresResponse>(
     request,
     cancellationToken,
     (p, d, c) => LowLevelDispatch.IndicesShardStoresDispatchAsync <IndicesShardStoresResponse>(p, c)
     );
 /// <inheritdoc/>
 public Task <IIndicesShardStoresResponse> IndicesShardStoresAsync(IIndicesShardStoresRequest request) =>
 this.Dispatcher.DispatchAsync <IIndicesShardStoresRequest, IndicesShardStoresRequestParameters, IndicesShardStoresResponse, IIndicesShardStoresResponse>(
     request,
     (p, d) => this.LowLevelDispatch.IndicesShardStoresDispatchAsync <IndicesShardStoresResponse>(p)
     );
 /// <inheritdoc/>
 public IIndicesShardStoresResponse IndicesShardStores(IIndicesShardStoresRequest request) =>
 this.Dispatcher.Dispatch <IIndicesShardStoresRequest, IndicesShardStoresRequestParameters, IndicesShardStoresResponse>(
     request,
     (p, d) => this.LowLevelDispatch.IndicesShardStoresDispatch <IndicesShardStoresResponse>(p)
     );
 public static Task <IndicesShardStoresResponse> IndicesShardStoresAsync(this IElasticClient client, IIndicesShardStoresRequest request,
                                                                         CancellationToken ct = default
                                                                         )
 => client.Indices.ShardStoresAsync(request, ct);
 public static IndicesShardStoresResponse IndicesShardStores(this IElasticClient client, IIndicesShardStoresRequest request)
 => client.Indices.ShardStores(request);
		/// <inheritdoc/>
		public Task<IIndicesShardStoresResponse> IndicesShardStoresAsync(IIndicesShardStoresRequest request) =>
			this.Dispatcher.DispatchAsync<IIndicesShardStoresRequest, IndicesShardStoresRequestParameters, IndicesShardStoresResponse, IIndicesShardStoresResponse>(
				request,
				(p, d) => this.LowLevelDispatch.IndicesShardStoresDispatchAsync<IndicesShardStoresResponse>(p)
			);
		/// <inheritdoc/>
		public IIndicesShardStoresResponse IndicesShardStores(IIndicesShardStoresRequest request) =>
			this.Dispatcher.Dispatch<IIndicesShardStoresRequest, IndicesShardStoresRequestParameters, IndicesShardStoresResponse>(
				request,
				(p, d) => this.LowLevelDispatch.IndicesShardStoresDispatch<IndicesShardStoresResponse>(p)
			);
 /// <inheritdoc />
 public Task <IndicesShardStoresResponse> IndicesShardStoresAsync(IIndicesShardStoresRequest request, CancellationToken ct = default) =>
 DoRequestAsync <IIndicesShardStoresRequest, IndicesShardStoresResponse>(request, request.RequestParameters, ct);
 /// <inheritdoc />
 public IndicesShardStoresResponse IndicesShardStores(IIndicesShardStoresRequest request) =>
 DoRequest <IIndicesShardStoresRequest, IndicesShardStoresResponse>(request, request.RequestParameters);