Interface IUpdateByQueryRequest
Assembly: OpenSearch.Client.dll
Syntax
public interface IUpdateByQueryRequest : IRequest<UpdateByQueryRequestParameters>, IRequest
Properties
|
Edit this page
View Source
Index
Declaration
[IgnoreDataMember]
Indices Index { get; }
Property Value
|
Edit this page
View Source
MaximumDocuments
Limit the number of processed documents
Declaration
[DataMember(Name = "max_docs")]
long? MaximumDocuments { get; set; }
Property Value
|
Edit this page
View Source
Query
Query to select documents to update
Declaration
[DataMember(Name = "query")]
QueryContainer Query { get; set; }
Property Value
|
Edit this page
View Source
Script
A script specifying the update to make
Declaration
[DataMember(Name = "script")]
IScript Script { get; set; }
Property Value
|
Edit this page
View Source
Slice
Parallelize the update process by splitting a query into
multiple slices.
Declaration
[DataMember(Name = "slice")]
ISlicedScroll Slice { get; set; }
Property Value
Extension Methods