Struct google_composer1::Environment[][src]

pub struct Environment {
    pub update_time: Option<String>,
    pub uuid: Option<String>,
    pub name: 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

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

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

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

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.

Configuration parameters for this environment.

The current state of the environment.

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

Trait Implementations

impl Default for Environment
[src]

Returns the "default value" for a type. Read more

impl Clone for Environment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Environment
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Environment
[src]

impl ResponseResult for Environment
[src]

Auto Trait Implementations

impl Send for Environment

impl Sync for Environment