[][src]Struct google_run1::EnvFromSource

pub struct EnvFromSource {
    pub prefix: Option<String>,
    pub config_map_ref: Option<ConfigMapEnvSource>,
    pub secret_ref: Option<SecretEnvSource>,
}

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

EnvFromSource represents the source of a set of ConfigMaps

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

Fields

prefix: Option<String>

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

config_map_ref: Option<ConfigMapEnvSource>

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

The ConfigMap to select from

secret_ref: Option<SecretEnvSource>

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

The Secret to select from

Trait Implementations

impl Clone for EnvFromSource[src]

impl Debug for EnvFromSource[src]

impl Default for EnvFromSource[src]

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

impl Part for EnvFromSource[src]

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