[][src]Struct google_run1::RevisionStatus

pub struct RevisionStatus {
    pub observed_generation: Option<i32>,
    pub conditions: Option<Vec<GoogleCloudRunV1Condition>>,
    pub service_name: Option<String>,
    pub image_digest: Option<String>,
    pub log_url: Option<String>,
}

RevisionStatus communicates the observed state of the Revision (from the controller).

This type is not used in any activity, and only used as part of another schema.

Fields

observed_generation: Option<i32>

ObservedGeneration is the 'Generation' of the Revision that was last processed by the controller.

Clients polling for completed reconciliation should poll until observedGeneration = metadata.generation, and the Ready condition's status is True or False.

conditions: Option<Vec<GoogleCloudRunV1Condition>>

Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world.

As a Revision is being prepared, it will incrementally update conditions. Revision-specific conditions include:

  • "ResourcesAvailable": True when underlying resources have been provisioned.
  • "ContainerHealthy": True when the Revision readiness check completes.
  • "Active": True when the Revision may receive traffic.
service_name: Option<String>

Not currently used by Cloud Run.

image_digest: Option<String>

ImageDigest holds the resolved digest for the image specified within .Spec.Container.Image. The digest is resolved during the creation of Revision. This field holds the digest value regardless of whether a tag or digest was originally specified in the Container object.

log_url: Option<String>

Specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config. +optional

Trait Implementations

impl Clone for RevisionStatus[src]

impl Debug for RevisionStatus[src]

impl Default for RevisionStatus[src]

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

impl Part for RevisionStatus[src]

impl Serialize for RevisionStatus[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.

impl<T> Typeable for T where
    T: Any