Struct openshift_openapi::api::apps::v1::DeploymentConfigStatus[][src]

pub struct DeploymentConfigStatus {
    pub available_replicas: i32,
    pub conditions: Option<Vec<DeploymentCondition>>,
    pub details: Option<DeploymentDetails>,
    pub latest_version: i64,
    pub observed_generation: i64,
    pub ready_replicas: Option<i32>,
    pub replicas: i32,
    pub unavailable_replicas: i32,
    pub updated_replicas: i32,
}

DeploymentConfigStatus represents the current deployment state.

Fields

available_replicas: i32

AvailableReplicas is the total number of available pods targeted by this deployment config.

conditions: Option<Vec<DeploymentCondition>>

Conditions represents the latest available observations of a deployment config's current state.

details: Option<DeploymentDetails>

Details are the reasons for the update to this deployment config. This could be based on a change made by the user or caused by an automatic trigger

latest_version: i64

LatestVersion is used to determine whether the current deployment associated with a deployment config is out of sync.

observed_generation: i64

ObservedGeneration is the most recent generation observed by the deployment config controller.

ready_replicas: Option<i32>

Total number of ready pods targeted by this deployment.

replicas: i32

Replicas is the total number of pods targeted by this deployment config.

unavailable_replicas: i32

UnavailableReplicas is the total number of unavailable pods targeted by this deployment config.

updated_replicas: i32

UpdatedReplicas is the total number of non-terminated pods targeted by this deployment config that have the desired template spec.

Trait Implementations

impl Clone for DeploymentConfigStatus[src]

impl Debug for DeploymentConfigStatus[src]

impl Default for DeploymentConfigStatus[src]

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

impl PartialEq<DeploymentConfigStatus> for DeploymentConfigStatus[src]

impl Serialize for DeploymentConfigStatus[src]

impl StructuralPartialEq for DeploymentConfigStatus[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.