[][src]Struct google_composer1::PrivateEnvironmentConfig

pub struct PrivateEnvironmentConfig {
    pub cloud_sql_ipv4_cidr_block: Option<String>,
    pub web_server_ipv4_cidr_block: Option<String>,
    pub web_server_ipv4_reserved_range: Option<String>,
    pub enable_private_environment: Option<bool>,
    pub private_cluster_config: Option<PrivateClusterConfig>,
}

The configuration information for configuring a Private IP Cloud Composer environment.

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

Fields

cloud_sql_ipv4_cidr_block: Option<String>

Optional. The CIDR block from which IP range in tenant project will be reserved for Cloud SQL. Needs to be disjoint from web_server_ipv4_cidr_block.

web_server_ipv4_cidr_block: Option<String>

Optional. The CIDR block from which IP range for web server will be reserved. Needs to be disjoint from private_cluster_config.master_ipv4_cidr_block and cloud_sql_ipv4_cidr_block.

web_server_ipv4_reserved_range: Option<String>

Output only. The IP range reserved for the tenant project's App Engine VMs.

enable_private_environment: Option<bool>

Optional. If true, a Private IP Cloud Composer environment is created. If this field is set to true, IPAllocationPolicy.use_ip_aliases must be set to true.

private_cluster_config: Option<PrivateClusterConfig>

Optional. Configuration for the private GKE cluster for a Private IP Cloud Composer environment.

Trait Implementations

impl Clone for PrivateEnvironmentConfig[src]

impl Debug for PrivateEnvironmentConfig[src]

impl Default for PrivateEnvironmentConfig[src]

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

impl Part for PrivateEnvironmentConfig[src]

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