Struct k8s_openapi::v1_11::api::apps::v1::StatefulSetUpdateStrategy[][src]

pub struct StatefulSetUpdateStrategy {
    pub rolling_update: Option<RollingUpdateStatefulSetStrategy>,
    pub type_: Option<String>,
}

StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.

Fields

RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.

Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.

Trait Implementations

impl Clone for StatefulSetUpdateStrategy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StatefulSetUpdateStrategy
[src]

Formats the value using the given formatter. Read more

impl Default for StatefulSetUpdateStrategy
[src]

Returns the "default value" for a type. Read more

impl PartialEq for StatefulSetUpdateStrategy
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for StatefulSetUpdateStrategy
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for StatefulSetUpdateStrategy
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations