pub struct ClusterReroute<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Cluster Reroute API
Allows to manually change the allocation of individual shards in the cluster.
Implementations§
Source§impl<'a, 'b, B> ClusterReroute<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> ClusterReroute<'a, 'b, B>where
B: Body,
Sourcepub fn new(transport: &'a Transport) -> Self
pub fn new(transport: &'a Transport) -> Self
Creates a new instance of ClusterReroute
Sourcepub fn body<T>(self, body: T) -> ClusterReroute<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(self, body: T) -> ClusterReroute<'a, 'b, JsonBody<T>>where
T: Serialize,
The body for the API call
Sourcepub fn dry_run(self, dry_run: bool) -> Self
pub fn dry_run(self, dry_run: bool) -> Self
Simulate the operation only and return the resulting state
Sourcepub fn error_trace(self, error_trace: bool) -> Self
pub fn error_trace(self, error_trace: bool) -> Self
Include the stack trace of returned errors.
Sourcepub fn explain(self, explain: bool) -> Self
pub fn explain(self, explain: bool) -> Self
Return an explanation of why the commands can or cannot be executed
Sourcepub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
pub fn filter_path(self, filter_path: &'b [&'b str]) -> Self
A comma-separated list of filters used to reduce the response.
Sourcepub fn header(self, key: HeaderName, value: HeaderValue) -> Self
pub fn header(self, key: HeaderName, value: HeaderValue) -> Self
Adds a HTTP header
Sourcepub fn master_timeout(self, master_timeout: &'b str) -> Self
pub fn master_timeout(self, master_timeout: &'b str) -> Self
Explicit operation timeout for connection to master node
Sourcepub fn metric(self, metric: &'b [&'b str]) -> Self
pub fn metric(self, metric: &'b [&'b str]) -> Self
Limit the information returned to the specified metrics. Defaults to all but metadata
Sourcepub fn request_timeout(self, timeout: Duration) -> Self
pub fn request_timeout(self, timeout: Duration) -> Self
Sets a request timeout for this API call.
The timeout is applied from when the request starts connecting until the response body has finished.
Sourcepub fn retry_failed(self, retry_failed: bool) -> Self
pub fn retry_failed(self, retry_failed: bool) -> Self
Retries allocation of shards that are blocked due to too many subsequent allocation failures
Trait Implementations§
Source§impl<'a, 'b, B: Clone> Clone for ClusterReroute<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for ClusterReroute<'a, 'b, B>
Source§fn clone(&self) -> ClusterReroute<'a, 'b, B>
fn clone(&self) -> ClusterReroute<'a, 'b, B>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more