pub struct MasterAuthorizedNetworksConfig {
pub cidr_blocks: Option<Vec<CidrBlock>>,
pub enabled: Option<bool>,
pub gcp_public_cidrs_access_enabled: Option<bool>,
pub private_endpoint_enforcement_enabled: Option<bool>,
}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.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cidr_blocks: Option<Vec<CidrBlock>>cidr_blocks define up to 50 external networks that could access Kubernetes master through HTTPS.
enabled: Option<bool>Whether or not master authorized networks is enabled.
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.
Trait Implementations§
Source§impl Clone for MasterAuthorizedNetworksConfig
impl Clone for MasterAuthorizedNetworksConfig
Source§fn clone(&self) -> MasterAuthorizedNetworksConfig
fn clone(&self) -> MasterAuthorizedNetworksConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for MasterAuthorizedNetworksConfig
impl Default for MasterAuthorizedNetworksConfig
Source§fn default() -> MasterAuthorizedNetworksConfig
fn default() -> MasterAuthorizedNetworksConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MasterAuthorizedNetworksConfig
impl<'de> Deserialize<'de> for MasterAuthorizedNetworksConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for MasterAuthorizedNetworksConfig
Auto Trait Implementations§
impl Freeze for MasterAuthorizedNetworksConfig
impl RefUnwindSafe for MasterAuthorizedNetworksConfig
impl Send for MasterAuthorizedNetworksConfig
impl Sync for MasterAuthorizedNetworksConfig
impl Unpin for MasterAuthorizedNetworksConfig
impl UnwindSafe for MasterAuthorizedNetworksConfig
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
Mutably borrows from an owned value. Read more