Struct cluster_api_rs::api::capi_cluster::ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
source · pub struct ClusterTopologyWorkersMachineDeploymentsVariablesOverrides {
pub definition_from: Option<String>,
pub name: String,
pub value: Value,
}Expand description
ClusterVariable can be used to customize the Cluster through patches. Each ClusterVariable is associated with a
Variable definition in the ClusterClass status variables.
Fields§
§definition_from: Option<String>DefinitionFrom specifies where the definition of this Variable is from.
Deprecated: This field is deprecated, must not be set anymore and is going to be removed in the next apiVersion.
name: StringName of the variable.
value: ValueValue of the variable. Note: the value will be validated against the schema of the corresponding ClusterClassVariable from the ClusterClass. Note: We have to use apiextensionsv1.JSON instead of a custom JSON type, because controller-tools has a hard-coded schema for apiextensionsv1.JSON which cannot be produced by another type via controller-tools, i.e. it is not possible to have no type field. Ref: https://github.com/kubernetes-sigs/controller-tools/blob/d0e03a142d0ecdd5491593e941ee1d6b5d91dba6/pkg/crd/known_types.go#L106-L111
Trait Implementations§
source§impl Clone for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl Clone for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
source§fn clone(&self) -> ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
fn clone(&self) -> ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl Default for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
source§fn default() -> ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
fn default() -> ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
source§impl<'de> Deserialize<'de> for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl<'de> Deserialize<'de> for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
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 JsonSchema for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl JsonSchema for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
source§fn schema_name() -> String
fn schema_name() -> String
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl RefUnwindSafe for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl Send for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl Sync for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl Unpin for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
impl UnwindSafe for ClusterTopologyWorkersMachineDeploymentsVariablesOverrides
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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