[][src]Struct gcp_client::google::cloud::dataproc::v1beta2::LifecycleConfig

pub struct LifecycleConfig {
    pub idle_delete_ttl: Option<Duration>,
    pub idle_start_time: Option<Timestamp>,
    pub ttl: Option<Ttl>,
}

Specifies the cluster auto-delete schedule configuration.

Fields

idle_delete_ttl: Option<Duration>

Optional. The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration.

idle_start_time: Option<Timestamp>

Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of Timestamp).

ttl: Option<Ttl>

Either the exact time the cluster should be deleted at or the cluster maximum age.

Trait Implementations

impl Clone for LifecycleConfig[src]

impl Debug for LifecycleConfig[src]

impl Default for LifecycleConfig[src]

impl Message for LifecycleConfig[src]

impl PartialEq<LifecycleConfig> for LifecycleConfig[src]

impl StructuralPartialEq for LifecycleConfig[src]

Auto Trait Implementations

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> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]