Class FlushDescriptor
Descriptor for Flush
https://opensearch.org/docs/latest
Inheritance
FlushDescriptor
Assembly: OpenSearch.Client.dll
Syntax
public class FlushDescriptor : RequestDescriptorBase<FlushDescriptor, FlushRequestParameters, IFlushRequest>, IDescriptor, IFlushRequest, IRequest<FlushRequestParameters>, IRequest
Constructors
|
Edit this page
View Source
FlushDescriptor()
Declaration
|
Edit this page
View Source
FlushDescriptor(Indices)
Declaration
public FlushDescriptor(Indices index)
Parameters
Type |
Name |
Description |
Indices |
index |
Optional, accepts null
|
Methods
|
Edit this page
View Source
AllIndices()
A shortcut into calling Index(Indices.All)
Declaration
public FlushDescriptor AllIndices()
Returns
|
Edit this page
View Source
AllowNoIndices(bool?)
If false
, the request returns an error if any wildcard expression, index alias, or _all
value targets only missing or closed indices. This behavior applies even if the request targets other open indices.
Declaration
public FlushDescriptor AllowNoIndices(bool? allownoindices = true)
Parameters
Type |
Name |
Description |
bool? |
allownoindices |
|
Returns
|
Edit this page
View Source
ExpandWildcards(ExpandWildcards?)
Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as open,hidden
. Valid values are: all
, open
, closed
, hidden
, none
.
Declaration
public FlushDescriptor ExpandWildcards(ExpandWildcards? expandwildcards)
Parameters
Returns
|
Edit this page
View Source
Force(bool?)
If true
, the request forces a flush even if there are no changes to commit to the index.
Declaration
public FlushDescriptor Force(bool? force = true)
Parameters
Type |
Name |
Description |
bool? |
force |
|
Returns
|
Edit this page
View Source
IgnoreUnavailable(bool?)
If false
, the request returns an error if it targets a missing or closed index.
Declaration
public FlushDescriptor IgnoreUnavailable(bool? ignoreunavailable = true)
Parameters
Type |
Name |
Description |
bool? |
ignoreunavailable |
|
Returns
|
Edit this page
View Source
Index(Indices)
Comma-separated list of data streams, indices, and aliases to flush. Supports wildcards (*
). To flush all data streams and indices, omit this parameter or use *
or _all
.
Declaration
public FlushDescriptor Index(Indices index)
Parameters
Type |
Name |
Description |
Indices |
index |
|
Returns
|
Edit this page
View Source
Index<TOther>()
a shortcut into calling Index(typeof(TOther))
Declaration
public FlushDescriptor Index<TOther>() where TOther : class
Returns
Type Parameters
|
Edit this page
View Source
WaitIfOngoing(bool?)
If true
, the flush operation blocks until execution when another flush operation is running. If false
, OpenSearch returns an error if you request a flush when another flush operation is running.
Declaration
public FlushDescriptor WaitIfOngoing(bool? waitifongoing = true)
Parameters
Type |
Name |
Description |
bool? |
waitifongoing |
|
Returns
Implements
Extension Methods