[−][src]Struct openshift_openapi::api::apps::v1::DeploymentConfigStatus
DeploymentConfigStatus represents the current deployment state.
Fields
available_replicas: i32AvailableReplicas 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: i64LatestVersion is used to determine whether the current deployment associated with a deployment config is out of sync.
observed_generation: i64ObservedGeneration 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: i32Replicas is the total number of pods targeted by this deployment config.
UnavailableReplicas is the total number of unavailable pods targeted by this deployment config.
updated_replicas: i32UpdatedReplicas 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]
fn clone(&self) -> DeploymentConfigStatus[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DeploymentConfigStatus[src]
impl Default for DeploymentConfigStatus[src]
fn default() -> DeploymentConfigStatus[src]
impl<'de> Deserialize<'de> for DeploymentConfigStatus[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>, [src]
D: Deserializer<'de>,
impl PartialEq<DeploymentConfigStatus> for DeploymentConfigStatus[src]
fn eq(&self, other: &DeploymentConfigStatus) -> bool[src]
fn ne(&self, other: &DeploymentConfigStatus) -> bool[src]
impl Serialize for DeploymentConfigStatus[src]
impl StructuralPartialEq for DeploymentConfigStatus[src]
Auto Trait Implementations
impl RefUnwindSafe for DeploymentConfigStatus
impl Send for DeploymentConfigStatus
impl Sync for DeploymentConfigStatus
impl Unpin for DeploymentConfigStatus
impl UnwindSafe for DeploymentConfigStatus
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,