pub struct ConfigurationStatus {
pub conditions: Option<Vec<GoogleCloudRunV1Condition>>,
pub latest_created_revision_name: Option<String>,
pub latest_ready_revision_name: Option<String>,
pub observed_generation: Option<i32>,
}
Expand description
ConfigurationStatus communicates the observed state of the Configuration (from the controller).
This type is not used in any activity, and only used as part of another schema.
Fields§
§conditions: Option<Vec<GoogleCloudRunV1Condition>>
Conditions communicate information about ongoing/complete reconciliation processes that bring the “spec” inline with the observed state of the world.
latest_created_revision_name: Option<String>
LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, so for the latest ready revision, use LatestReadyRevisionName.
latest_ready_revision_name: Option<String>
LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its “Ready” condition become “True”.
observed_generation: Option<i32>
ObservedGeneration is the ‘Generation’ of the Configuration that was last processed by the controller. The observed generation is updated even if the controller failed to process the spec and create the Revision. Clients polling for completed reconciliation should poll until observedGeneration = metadata.generation, and the Ready condition’s status is True or False.
Trait Implementations§
Source§impl Clone for ConfigurationStatus
impl Clone for ConfigurationStatus
Source§fn clone(&self) -> ConfigurationStatus
fn clone(&self) -> ConfigurationStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ConfigurationStatus
impl Debug for ConfigurationStatus
Source§impl Default for ConfigurationStatus
impl Default for ConfigurationStatus
Source§fn default() -> ConfigurationStatus
fn default() -> ConfigurationStatus
Source§impl<'de> Deserialize<'de> for ConfigurationStatus
impl<'de> Deserialize<'de> for ConfigurationStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for ConfigurationStatus
impl Serialize for ConfigurationStatus
impl Part for ConfigurationStatus
Auto Trait Implementations§
impl Freeze for ConfigurationStatus
impl RefUnwindSafe for ConfigurationStatus
impl Send for ConfigurationStatus
impl Sync for ConfigurationStatus
impl Unpin for ConfigurationStatus
impl UnwindSafe for ConfigurationStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more