Struct elasticsearch::rollup::Rollup[][src]

pub struct Rollup<'a> { /* fields omitted */ }

Namespace client for Rollup APIs

Implementations

impl<'a> Rollup<'a>[src]

pub fn new(transport: &'a Transport) -> Self[src]

Creates a new instance of Rollup

pub fn transport(&self) -> &Transport[src]

pub fn delete_job<'b>(
    &'a self,
    parts: RollupDeleteJobParts<'b>
) -> RollupDeleteJob<'a, 'b>
[src]

Rollup Delete Job API

Deletes an existing rollup job.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn get_jobs<'b>(
    &'a self,
    parts: RollupGetJobsParts<'b>
) -> RollupGetJobs<'a, 'b>
[src]

Rollup Get Jobs API

Retrieves the configuration, stats, and status of rollup jobs.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn get_rollup_caps<'b>(
    &'a self,
    parts: RollupGetRollupCapsParts<'b>
) -> RollupGetRollupCaps<'a, 'b>
[src]

Rollup Get Rollup Caps API

Returns the capabilities of any rollup jobs that have been configured for a specific index or index pattern.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn get_rollup_index_caps<'b>(
    &'a self,
    parts: RollupGetRollupIndexCapsParts<'b>
) -> RollupGetRollupIndexCaps<'a, 'b>
[src]

Rollup Get Rollup Index Caps API

Returns the rollup capabilities of all jobs inside of a rollup index (e.g. the index where rollup data is stored).  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn put_job<'b>(
    &'a self,
    parts: RollupPutJobParts<'b>
) -> RollupPutJob<'a, 'b, ()>
[src]

Rollup Put Job API

Creates a rollup job.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn rollup<'b>(
    &'a self,
    parts: RollupRollupParts<'b>
) -> RollupRollup<'a, 'b, ()>
[src]

Rollup Rollup API

Rollup an index

Rollup Rollup Search API

Enables searching rolled-up data using the standard query DSL.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn start_job<'b>(
    &'a self,
    parts: RollupStartJobParts<'b>
) -> RollupStartJob<'a, 'b, ()>
[src]

Rollup Start Job API

Starts an existing, stopped rollup job.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

pub fn stop_job<'b>(
    &'a self,
    parts: RollupStopJobParts<'b>
) -> RollupStopJob<'a, 'b, ()>
[src]

Rollup Stop Job API

Stops an existing, started rollup job.  

Optional, experimental

This requires the experimental-apis feature. Can have breaking changes in future versions or might even be removed entirely.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Rollup<'a>

impl<'a> Send for Rollup<'a>

impl<'a> Sync for Rollup<'a>

impl<'a> Unpin for Rollup<'a>

impl<'a> !UnwindSafe for Rollup<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.