pub struct Autopilot {
pub enabled: Option<bool>,
pub privileged_admission_config: Option<PrivilegedAdmissionConfig>,
pub workload_policy_config: Option<WorkloadPolicyConfig>,
}Expand description
Autopilot is the configuration for Autopilot settings on the cluster.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enabled: Option<bool>Enable Autopilot
privileged_admission_config: Option<PrivilegedAdmissionConfig>PrivilegedAdmissionConfig is the configuration related to privileged admission control.
workload_policy_config: Option<WorkloadPolicyConfig>WorkloadPolicyConfig is the configuration related to GCW workload policy
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Autopilot
impl<'de> Deserialize<'de> for Autopilot
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 Autopilot
Auto Trait Implementations§
impl Freeze for Autopilot
impl RefUnwindSafe for Autopilot
impl Send for Autopilot
impl Sync for Autopilot
impl Unpin for Autopilot
impl UnwindSafe for Autopilot
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