Struct google_composer1::EnvironmentConfig[][src]

pub struct EnvironmentConfig {
    pub dag_gcs_prefix: Option<String>,
    pub software_config: Option<SoftwareConfig>,
    pub node_config: Option<NodeConfig>,
    pub airflow_uri: Option<String>,
    pub gke_cluster: Option<String>,
    pub node_count: Option<i32>,
}

Configuration information for an environment.

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

Fields

Output only. The Cloud Storage prefix of the DAGs for this environment. Although Cloud Storage objects reside in a flat namespace, a hierarchical file tree can be simulated using "/"-delimited object name prefixes. DAG objects for this environment reside in a simulated directory with the given prefix.

The configuration settings for software inside the environment.

The configuration used for the Kubernetes Engine cluster.

Output only. The URI of the Apache Airflow Web UI hosted within this environment (see Airflow web interface).

Output only. The Kubernetes Engine cluster used to run this environment.

The number of nodes in the Kubernetes Engine cluster that will be used to run this environment.

Trait Implementations

impl Default for EnvironmentConfig
[src]

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

impl Clone for EnvironmentConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EnvironmentConfig
[src]

Formats the value using the given formatter. Read more

impl Part for EnvironmentConfig
[src]

Auto Trait Implementations