pub struct IndicesUpgrade<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Indices Upgrade API
DEPRECATED Upgrades to the current version of Lucene.
Implementations§
Source§impl<'a, 'b, B> IndicesUpgrade<'a, 'b, B>where
B: Body,
impl<'a, 'b, B> IndicesUpgrade<'a, 'b, B>where
B: Body,
Sourcepub fn new(transport: &'a Transport, parts: IndicesUpgradeParts<'b>) -> Self
pub fn new(transport: &'a Transport, parts: IndicesUpgradeParts<'b>) -> Self
Creates a new instance of IndicesUpgrade with the specified API parts
Sourcepub fn allow_no_indices(self, allow_no_indices: bool) -> Self
pub fn allow_no_indices(self, allow_no_indices: bool) -> Self
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all
string or when no indices have been specified)
Sourcepub fn body<T>(self, body: T) -> IndicesUpgrade<'a, 'b, JsonBody<T>>where
T: Serialize,
pub fn body<T>(self, body: T) -> IndicesUpgrade<'a, 'b, JsonBody<T>>where
T: Serialize,
The body for the API call
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 expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
pub fn expand_wildcards(self, expand_wildcards: &'b [ExpandWildcards]) -> Self
Whether to expand wildcard expression to concrete indices that are open, closed or both.
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
Whether specified concrete indices should be ignored when unavailable (missing or closed)
Sourcepub fn only_ancient_segments(self, only_ancient_segments: bool) -> Self
pub fn only_ancient_segments(self, only_ancient_segments: bool) -> Self
If true, only ancient (an older Lucene major release) segments will be upgraded
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 source(self, source: &'b str) -> Self
pub fn source(self, source: &'b str) -> Self
The URL-encoded request definition. Useful for libraries that do not accept a request body for non-POST requests.
Sourcepub fn wait_for_completion(self, wait_for_completion: bool) -> Self
pub fn wait_for_completion(self, wait_for_completion: bool) -> Self
Specify whether the request should block until the all segments are upgraded (default: false)
Trait Implementations§
Source§impl<'a, 'b, B: Clone> Clone for IndicesUpgrade<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for IndicesUpgrade<'a, 'b, B>
Source§fn clone(&self) -> IndicesUpgrade<'a, 'b, B>
fn clone(&self) -> IndicesUpgrade<'a, 'b, B>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more