[][src]Struct google_run1::DomainMappingStatus

pub struct DomainMappingStatus {
    pub observed_generation: Option<i32>,
    pub url: Option<String>,
    pub conditions: Option<Vec<GoogleCloudRunV1Condition>>,
    pub resource_records: Option<Vec<ResourceRecord>>,
    pub mapped_route_name: Option<String>,
}

The current state of the Domain Mapping.

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 DomainMapping 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.

url: Option<String>

Cloud Run fully managed: not supported

Cloud Run on GKE: supported

Holds the URL that will serve the traffic of the DomainMapping. +optional

conditions: Option<Vec<GoogleCloudRunV1Condition>>

Array of observed DomainMappingConditions, indicating the current state of the DomainMapping.

resource_records: Option<Vec<ResourceRecord>>

The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.

mapped_route_name: Option<String>

The name of the route that the mapping currently points to.

Trait Implementations

impl Clone for DomainMappingStatus[src]

impl Debug for DomainMappingStatus[src]

impl Default for DomainMappingStatus[src]

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

impl Part for DomainMappingStatus[src]

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