[][src]Struct google_composer1::Environment

pub struct Environment {
    pub update_time: Option<String>,
    pub name: Option<String>,
    pub uuid: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub config: Option<EnvironmentConfig>,
    pub state: Option<String>,
    pub create_time: 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

update_time: Option<String>

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

name: Option<String>

The resource name of the environment, in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}"

uuid: Option<String>

Output only. The UUID (Universally Unique IDentifier) associated with this environment. This value is generated when the environment is 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.
config: Option<EnvironmentConfig>

Configuration parameters for this environment.

state: Option<String>

The current state of the environment.

create_time: Option<String>

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

Trait Implementations

impl ResponseResult for Environment[src]

impl RequestValue for Environment[src]

impl Default for Environment[src]

impl Clone for Environment[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Environment[src]

impl Serialize for Environment[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]