Struct elasticsearch::snapshot::SnapshotRepositoryAnalyze
source · [−]pub struct SnapshotRepositoryAnalyze<'a, 'b, B> { /* private fields */ }
Expand description
Builder for the Snapshot Repository Analyze API
Analyzes a repository for correctness and performance
Implementations
sourceimpl<'a, 'b, B> SnapshotRepositoryAnalyze<'a, 'b, B> where
B: Body,
impl<'a, 'b, B> SnapshotRepositoryAnalyze<'a, 'b, B> where
B: Body,
sourcepub fn new(
transport: &'a Transport,
parts: SnapshotRepositoryAnalyzeParts<'b>
) -> Self
pub fn new(
transport: &'a Transport,
parts: SnapshotRepositoryAnalyzeParts<'b>
) -> Self
Creates a new instance of SnapshotRepositoryAnalyze with the specified API parts
sourcepub fn blob_count(self, blob_count: i64) -> Self
pub fn blob_count(self, blob_count: i64) -> Self
Number of blobs to create during the test. Defaults to 100.
sourcepub fn body<T>(self, body: T) -> SnapshotRepositoryAnalyze<'a, 'b, JsonBody<T>> where
T: Serialize,
pub fn body<T>(self, body: T) -> SnapshotRepositoryAnalyze<'a, 'b, JsonBody<T>> where
T: Serialize,
The body for the API call
sourcepub fn concurrency(self, concurrency: i64) -> Self
pub fn concurrency(self, concurrency: i64) -> Self
Number of operations to run concurrently during the test. Defaults to 10.
sourcepub fn detailed(self, detailed: bool) -> Self
pub fn detailed(self, detailed: bool) -> Self
Whether to return detailed results or a summary. Defaults to ‘false’ so that only the summary is returned.
sourcepub fn early_read_node_count(self, early_read_node_count: i64) -> Self
pub fn early_read_node_count(self, early_read_node_count: i64) -> Self
Number of nodes on which to perform an early read on a blob, i.e. before writing has completed. Early reads are rare actions so the ‘rare_action_probability’ parameter is also relevant. Defaults to 2.
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 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 max_blob_size(self, max_blob_size: &'b str) -> Self
pub fn max_blob_size(self, max_blob_size: &'b str) -> Self
Maximum size of a blob to create during the test, e.g ‘1gb’ or ‘100mb’. Defaults to ‘10mb’.
sourcepub fn max_total_data_size(self, max_total_data_size: &'b str) -> Self
pub fn max_total_data_size(self, max_total_data_size: &'b str) -> Self
Maximum total size of all blobs to create during the test, e.g ‘1tb’ or ‘100gb’. Defaults to ‘1gb’.
sourcepub fn rare_action_probability(self, rare_action_probability: i64) -> Self
pub fn rare_action_probability(self, rare_action_probability: i64) -> Self
Probability of taking a rare action such as an early read or an overwrite. Defaults to 0.02.
sourcepub fn rarely_abort_writes(self, rarely_abort_writes: bool) -> Self
pub fn rarely_abort_writes(self, rarely_abort_writes: bool) -> Self
Whether to rarely abort writes before they complete. Defaults to ‘true’.
sourcepub fn read_node_count(self, read_node_count: i64) -> Self
pub fn read_node_count(self, read_node_count: i64) -> Self
Number of nodes on which to read a blob after writing. Defaults to 10.
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 seed(self, seed: i64) -> Self
pub fn seed(self, seed: i64) -> Self
Seed for the random number generator used to create the test workload. Defaults to a random value.
Trait Implementations
sourceimpl<'a, 'b, B: Clone> Clone for SnapshotRepositoryAnalyze<'a, 'b, B>
impl<'a, 'b, B: Clone> Clone for SnapshotRepositoryAnalyze<'a, 'b, B>
sourcefn clone(&self) -> SnapshotRepositoryAnalyze<'a, 'b, B>
fn clone(&self) -> SnapshotRepositoryAnalyze<'a, 'b, B>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, 'b, B> !RefUnwindSafe for SnapshotRepositoryAnalyze<'a, 'b, B>
impl<'a, 'b, B> Send for SnapshotRepositoryAnalyze<'a, 'b, B> where
B: Send,
impl<'a, 'b, B> Sync for SnapshotRepositoryAnalyze<'a, 'b, B> where
B: Sync,
impl<'a, 'b, B> Unpin for SnapshotRepositoryAnalyze<'a, 'b, B> where
B: Unpin,
impl<'a, 'b, B> !UnwindSafe for SnapshotRepositoryAnalyze<'a, 'b, B>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more