[][src]Struct google_run1::DomainMappingSpec

pub struct DomainMappingSpec {
    pub route_name: Option<String>,
    pub force_override: Option<bool>,
    pub certificate_mode: Option<String>,
}

The desired state of the Domain Mapping.

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

Fields

route_name: Option<String>

The name of the Knative Route that this DomainMapping applies to. The route must exist.

force_override: Option<bool>

If set, the mapping will override any mapping set before this spec was set. It is recommended that the user leaves this empty to receive an error warning about a potential conflict and only set it once the respective UI has given such a warning.

certificate_mode: Option<String>

The mode of the certificate.

Trait Implementations

impl Clone for DomainMappingSpec[src]

impl Debug for DomainMappingSpec[src]

impl Default for DomainMappingSpec[src]

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

impl Part for DomainMappingSpec[src]

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