pub struct NetworkConfig {Show 15 fields
pub datapath_provider: Option<String>,
pub default_snat_status: Option<DefaultSnatStatus>,
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_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.
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(https://cloud.google.com/compute/docs/networks-and-firewalls#networks) 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 moreSource§impl Debug for NetworkConfig
impl Debug for NetworkConfig
Source§impl Default for NetworkConfig
impl Default for NetworkConfig
Source§fn default() -> NetworkConfig
fn default() -> NetworkConfig
Source§impl<'de> Deserialize<'de> for NetworkConfig
impl<'de> Deserialize<'de> for NetworkConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for NetworkConfig
impl Serialize for NetworkConfig
impl Part for NetworkConfig
Auto Trait Implementations§
impl Freeze for NetworkConfig
impl RefUnwindSafe for NetworkConfig
impl Send for NetworkConfig
impl Sync for NetworkConfig
impl Unpin for NetworkConfig
impl UnwindSafe for NetworkConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more