pub struct MachineStatusInitialization {
pub bootstrap_data_secret_created: Option<bool>,
pub infrastructure_provisioned: Option<bool>,
}Expand description
initialization provides observations of the Machine initialization process. NOTE: Fields in this struct are part of the Cluster API contract and are used to orchestrate initial Machine provisioning.
Fields§
§bootstrap_data_secret_created: Option<bool>bootstrapDataSecretCreated is true when the bootstrap provider reports that the Machine’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 Machine’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 MachineStatusInitialization
impl Clone for MachineStatusInitialization
Source§fn clone(&self) -> MachineStatusInitialization
fn clone(&self) -> MachineStatusInitialization
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MachineStatusInitialization
impl Debug for MachineStatusInitialization
Source§impl Default for MachineStatusInitialization
impl Default for MachineStatusInitialization
Source§fn default() -> MachineStatusInitialization
fn default() -> MachineStatusInitialization
Source§impl<'de> Deserialize<'de> for MachineStatusInitialization
impl<'de> Deserialize<'de> for MachineStatusInitialization
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 MachineStatusInitialization
impl JsonSchema for MachineStatusInitialization
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 moreimpl StructuralPartialEq for MachineStatusInitialization
Auto Trait Implementations§
impl Freeze for MachineStatusInitialization
impl RefUnwindSafe for MachineStatusInitialization
impl Send for MachineStatusInitialization
impl Sync for MachineStatusInitialization
impl Unpin for MachineStatusInitialization
impl UnwindSafe for MachineStatusInitialization
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