Struct google_composer1::api::Environment[][src]

pub struct Environment {
    pub config: Option<EnvironmentConfig>,
    pub create_time: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub name: Option<String>,
    pub state: Option<String>,
    pub update_time: Option<String>,
    pub uuid: Option<String>,
}

An environment for running orchestration tasks.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

config: Option<EnvironmentConfig>

Configuration parameters for this environment.

create_time: Option<String>

Output only. The time at which this environment was created.

labels: Option<HashMap<String, String>>

Optional. User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map are UTF8 strings that comply with the following restrictions: * Keys must conform to regexp: \p{Ll}\p{Lo}{0,62} * Values must conform to regexp: [\p{Ll}\p{Lo}\p{N}_-]{0,63} * Both keys and values are additionally constrained to be <= 128 bytes in size.

name: Option<String>

The resource name of the environment, in the form: “projects/{projectId}/locations/{locationId}/environments/{environmentId}” EnvironmentId must start with a lowercase letter followed by up to 63 lowercase letters, numbers, or hyphens, and cannot end with a hyphen.

state: Option<String>

The current state of the environment.

update_time: Option<String>

Output only. The time at which this environment was last modified.

uuid: Option<String>

Output only. The UUID (Universally Unique IDentifier) associated with this environment. This value is generated when the environment is created.

Trait Implementations

impl Clone for Environment[src]

impl Debug for Environment[src]

impl Default for Environment[src]

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

impl RequestValue for Environment[src]

impl ResponseResult for Environment[src]

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