pub struct NetworkConfig {Show 17 fields
pub datapath_provider: Option<String>,
pub default_enable_private_nodes: Option<bool>,
pub default_snat_status: Option<DefaultSnatStatus>,
pub disable_l4_lb_firewall_reconciliation: Option<bool>,
pub dns_config: Option<DNSConfig>,
pub enable_cilium_clusterwide_network_policy: Option<bool>,
pub enable_fqdn_network_policy: Option<bool>,
pub enable_intra_node_visibility: Option<bool>,
pub enable_l4ilb_subsetting: Option<bool>,
pub enable_multi_networking: Option<bool>,
pub gateway_api_config: Option<GatewayAPIConfig>,
pub in_transit_encryption_config: Option<String>,
pub network: Option<String>,
pub network_performance_config: Option<ClusterNetworkPerformanceConfig>,
pub private_ipv6_google_access: Option<String>,
pub service_external_ips_config: Option<ServiceExternalIPsConfig>,
pub subnetwork: Option<String>,
}Expand description
NetworkConfig reports the relative names of network & subnetwork.
This type is not used in any activity, and only used as part of another schema.
Fields§
§datapath_provider: Option<String>The desired datapath provider for this cluster. By default, uses the IPTables-based kube-proxy implementation.
default_enable_private_nodes: Option<bool>Controls whether by default nodes have private IP addresses only. It is invalid to specify both PrivateClusterConfig.enablePrivateNodes and this field at the same time. To update the default setting, use ClusterUpdate.desired_default_enable_private_nodes
default_snat_status: Option<DefaultSnatStatus>Whether the cluster disables default in-node sNAT rules. In-node sNAT rules will be disabled when default_snat_status is disabled. When disabled is set to false, default IP masquerade rules will be applied to the nodes to prevent sNAT on cluster internal traffic.
disable_l4_lb_firewall_reconciliation: Option<bool>Disable L4 load balancer VPC firewalls to enable firewall policies.
dns_config: Option<DNSConfig>DNSConfig contains clusterDNS config for this cluster.
enable_cilium_clusterwide_network_policy: Option<bool>Whether CiliumClusterwideNetworkPolicy is enabled on this cluster.
enable_fqdn_network_policy: Option<bool>Whether FQDN Network Policy is enabled on this cluster.
enable_intra_node_visibility: Option<bool>Whether Intra-node visibility is enabled for this cluster. This makes same node pod to pod traffic visible for VPC network.
enable_l4ilb_subsetting: Option<bool>Whether L4ILB Subsetting is enabled for this cluster.
enable_multi_networking: Option<bool>Whether multi-networking is enabled for this cluster.
gateway_api_config: Option<GatewayAPIConfig>GatewayAPIConfig contains the desired config of Gateway API on this cluster.
in_transit_encryption_config: Option<String>Specify the details of in-transit encryption. Now named inter-node transparent encryption.
network: Option<String>Output only. The relative name of the Google Compute Engine network to which the cluster is connected. Example: projects/my-project/global/networks/my-network
network_performance_config: Option<ClusterNetworkPerformanceConfig>Network bandwidth tier configuration.
private_ipv6_google_access: Option<String>The desired state of IPv6 connectivity to Google Services. By default, no private IPv6 access to or from Google Services (all access will be via IPv4)
service_external_ips_config: Option<ServiceExternalIPsConfig>ServiceExternalIPsConfig specifies if services with externalIPs field are blocked or not.
subnetwork: Option<String>Output only. The relative name of the Google Compute Engine subnetwork to which the cluster is connected. Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
Trait Implementations§
Source§impl Clone for NetworkConfig
impl Clone for NetworkConfig
Source§fn clone(&self) -> NetworkConfig
fn clone(&self) -> NetworkConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more