pub struct MachinePoolStatusInitialization {
pub bootstrap_data_secret_created: Option<bool>,
pub infrastructure_provisioned: Option<bool>,
}Expand description
initialization provides observations of the MachinePool initialization process. NOTE: Fields in this struct are part of the Cluster API contract and are used to orchestrate initial MachinePool provisioning.
Fields§
§bootstrap_data_secret_created: Option<bool>bootstrapDataSecretCreated is true when the bootstrap provider reports that the MachinePool’s boostrap secret is created. NOTE: this field is part of the Cluster API contract, and it is used to orchestrate provisioning. The value of this field is never updated after provisioning is completed.
infrastructure_provisioned: Option<bool>infrastructureProvisioned is true when the infrastructure provider reports that MachinePool’s infrastructure is fully provisioned. NOTE: this field is part of the Cluster API contract, and it is used to orchestrate provisioning. The value of this field is never updated after provisioning is completed.
Trait Implementations§
Source§impl Clone for MachinePoolStatusInitialization
impl Clone for MachinePoolStatusInitialization
Source§fn clone(&self) -> MachinePoolStatusInitialization
fn clone(&self) -> MachinePoolStatusInitialization
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for MachinePoolStatusInitialization
impl Default for MachinePoolStatusInitialization
Source§fn default() -> MachinePoolStatusInitialization
fn default() -> MachinePoolStatusInitialization
Source§impl<'de> Deserialize<'de> for MachinePoolStatusInitialization
impl<'de> Deserialize<'de> for MachinePoolStatusInitialization
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 MachinePoolStatusInitialization
impl JsonSchema for MachinePoolStatusInitialization
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreSource§impl PartialEq for MachinePoolStatusInitialization
impl PartialEq for MachinePoolStatusInitialization
Source§fn eq(&self, other: &MachinePoolStatusInitialization) -> bool
fn eq(&self, other: &MachinePoolStatusInitialization) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MachinePoolStatusInitialization
Auto Trait Implementations§
impl Freeze for MachinePoolStatusInitialization
impl RefUnwindSafe for MachinePoolStatusInitialization
impl Send for MachinePoolStatusInitialization
impl Sync for MachinePoolStatusInitialization
impl Unpin for MachinePoolStatusInitialization
impl UnwindSafe for MachinePoolStatusInitialization
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