NetworkConfig

Struct NetworkConfig 

Source
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

Source§

fn clone(&self) -> NetworkConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NetworkConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NetworkConfig

Source§

fn default() -> NetworkConfig

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for NetworkConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for NetworkConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Part for NetworkConfig

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,