sealed trait BulkRequest extends ElasticRequest[BulkResponse] with HasRefresh[BulkRequest] with HasRouting[BulkRequest]
- Alphabetic
- By Inheritance
- BulkRequest
- HasRouting
- HasRefresh
- ElasticRequest
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def refresh(value: Boolean): BulkRequest
Configures whether or not to refresh the index after the operation in the zio.elasticsearch.ElasticRequest.
Configures whether or not to refresh the index after the operation in the zio.elasticsearch.ElasticRequest.
- value
should be
true
if the index should be refreshed after the executed operation,false
otherwise- returns
an instance of the zio.elasticsearch.ElasticRequest enriched with the
refresh
parameter.
- Definition Classes
- HasRefresh
- abstract def routing(value: elasticsearch.Routing): BulkRequest
Specifies a
routing
value to be used for this zio.elasticsearch.ElasticRequest.Specifies a
routing
value to be used for this zio.elasticsearch.ElasticRequest.- value
the Routing value to set for the zio.elasticsearch.ElasticRequest
- returns
an instance of the zio.elasticsearch.ElasticRequest enriched with the
routing
parameter.
- Definition Classes
- HasRouting
Concrete Value Members
- final def refreshFalse: BulkRequest
Sets
refresh
parameter tofalse
in the zio.elasticsearch.ElasticRequest.Sets
refresh
parameter tofalse
in the zio.elasticsearch.ElasticRequest. Same as refresh(false).- returns
a new instance of the zio.elasticsearch.ElasticRequest with the
refresh
parameter set tofalse
.
- Definition Classes
- HasRefresh
- See also
#refresh
- final def refreshTrue: BulkRequest
Sets
refresh
parameter totrue
in the zio.elasticsearch.ElasticRequest.Sets
refresh
parameter totrue
in the zio.elasticsearch.ElasticRequest. Same as refresh(true).- returns
a new instance of the zio.elasticsearch.ElasticRequest with the
refresh
parameter set totrue
.
- Definition Classes
- HasRefresh
- See also
#refresh