#[non_exhaustive]pub struct MasterAuthorizedNetworksConfig {
pub enabled: bool,
pub cidr_blocks: Vec<CidrBlock>,
pub gcp_public_cidrs_access_enabled: Option<bool>,
pub private_endpoint_enforcement_enabled: Option<bool>,
/* private fields */
}Expand description
Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.enabled: boolWhether or not master authorized networks is enabled.
cidr_blocks: Vec<CidrBlock>cidr_blocks define up to 50 external networks that could access Kubernetes master through HTTPS.
gcp_public_cidrs_access_enabled: Option<bool>Whether master is accessible via Google Compute Engine Public IP addresses.
private_endpoint_enforcement_enabled: Option<bool>Whether master authorized networks is enforced on private endpoint or not.
Implementations§
Source§impl MasterAuthorizedNetworksConfig
impl MasterAuthorizedNetworksConfig
pub fn new() -> Self
Sourcepub fn set_enabled<T: Into<bool>>(self, v: T) -> Self
pub fn set_enabled<T: Into<bool>>(self, v: T) -> Self
Sets the value of enabled.
Sourcepub fn set_cidr_blocks<T, V>(self, v: T) -> Self
pub fn set_cidr_blocks<T, V>(self, v: T) -> Self
Sets the value of cidr_blocks.
Sourcepub fn set_gcp_public_cidrs_access_enabled<T>(self, v: T) -> Self
pub fn set_gcp_public_cidrs_access_enabled<T>(self, v: T) -> Self
Sets the value of gcp_public_cidrs_access_enabled.
Sourcepub fn set_or_clear_gcp_public_cidrs_access_enabled<T>(
self,
v: Option<T>,
) -> Self
pub fn set_or_clear_gcp_public_cidrs_access_enabled<T>( self, v: Option<T>, ) -> Self
Sets or clears the value of gcp_public_cidrs_access_enabled.
Sourcepub fn set_private_endpoint_enforcement_enabled<T>(self, v: T) -> Self
pub fn set_private_endpoint_enforcement_enabled<T>(self, v: T) -> Self
Sets the value of private_endpoint_enforcement_enabled.
Sourcepub fn set_or_clear_private_endpoint_enforcement_enabled<T>(
self,
v: Option<T>,
) -> Self
pub fn set_or_clear_private_endpoint_enforcement_enabled<T>( self, v: Option<T>, ) -> Self
Sets or clears the value of private_endpoint_enforcement_enabled.
Trait Implementations§
Source§impl Clone for MasterAuthorizedNetworksConfig
impl Clone for MasterAuthorizedNetworksConfig
Source§fn clone(&self) -> MasterAuthorizedNetworksConfig
fn clone(&self) -> MasterAuthorizedNetworksConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for MasterAuthorizedNetworksConfig
impl Default for MasterAuthorizedNetworksConfig
Source§fn default() -> MasterAuthorizedNetworksConfig
fn default() -> MasterAuthorizedNetworksConfig
Source§impl PartialEq for MasterAuthorizedNetworksConfig
impl PartialEq for MasterAuthorizedNetworksConfig
Source§fn eq(&self, other: &MasterAuthorizedNetworksConfig) -> bool
fn eq(&self, other: &MasterAuthorizedNetworksConfig) -> bool
self and other values to be equal, and is used by ==.