Struct google_container1::PrivateClusterConfig[][src]

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

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

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.

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

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

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 Default for PrivateClusterConfig
[src]

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

impl Clone for PrivateClusterConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PrivateClusterConfig
[src]

Formats the value using the given formatter. Read more

impl Part for PrivateClusterConfig
[src]

Auto Trait Implementations