[][src]Struct google_container1::PrivateClusterConfig

pub struct PrivateClusterConfig {
    pub enable_private_endpoint: Option<bool>,
    pub master_ipv4_cidr_block: Option<String>,
    pub private_endpoint: Option<String>,
    pub public_endpoint: Option<String>,
    pub enable_private_nodes: Option<bool>,
}

Configuration options for private clusters.

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

Fields

enable_private_endpoint: Option<bool>

Whether the master's internal IP address is used as the cluster endpoint.

master_ipv4_cidr_block: Option<String>

The IP range in CIDR notation to use for the hosted master network. This range will be used for assigning internal IP addresses to the master or set of masters, as well as the ILB VIP. This range must not overlap with any other ranges in use within the cluster's network.

private_endpoint: Option<String>

Output only. The internal IP address of this cluster's master endpoint.

public_endpoint: Option<String>

Output only. The external IP address of this cluster's master endpoint.

enable_private_nodes: Option<bool>

Whether nodes have internal IP addresses only. If enabled, all nodes are given only RFC 1918 private addresses and communicate with the master via private networking.

Trait Implementations

impl Part for PrivateClusterConfig[src]

impl Default for PrivateClusterConfig[src]

impl Clone for PrivateClusterConfig[src]

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

Performs copy-assignment from source. Read more

impl Debug for PrivateClusterConfig[src]

impl Serialize for PrivateClusterConfig[src]

impl<'de> Deserialize<'de> for PrivateClusterConfig[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]