[][src]Struct google_composer1::EnvironmentConfig

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 private_environment_config: Option<PrivateEnvironmentConfig>,
    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

dag_gcs_prefix: Option<String>

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.

software_config: Option<SoftwareConfig>

The configuration settings for software inside the environment.

node_config: Option<NodeConfig>

The configuration used for the Kubernetes Engine cluster.

airflow_uri: Option<String>

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

gke_cluster: Option<String>

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

private_environment_config: Option<PrivateEnvironmentConfig>

The configuration used for the Private IP Cloud Composer environment.

node_count: Option<i32>

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

Trait Implementations

impl Clone for EnvironmentConfig[src]

impl Debug for EnvironmentConfig[src]

impl Default for EnvironmentConfig[src]

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

impl Part for EnvironmentConfig[src]

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