pub enum Update {
Show 15 variants
OperationTransitionedToJob(String),
ApplyFailed(String, String),
VerifyingAtComponent(String, String),
UpdateSuccessful(String, String),
TransferFailed(String, String),
AwaitToUpdate(String, String),
TransferringToComponent(String, String),
ApplyingOnComponent(String, String),
VerificationFailed(String, String),
UpdateInProgress,
TargetDetermined(String, String),
AllTargetsDetermined,
InstallingOnComponent(String, String),
ActivateFailed(String, String),
AwaitToActivate(String, String),
}
Expand description
This registry defines the update status and error messages.
Variants§
OperationTransitionedToJob(String)
This message shall be used to indicate that the update operation transitioned to a job for managing the progress of the operation.
Tuple Fields
ApplyFailed(String, String)
This message shall be used to indicate that the component failed to apply an image.
Tuple Fields
VerifyingAtComponent(String, String)
This message shall be used to indicate that a component is verifying an image.
Tuple Fields
UpdateSuccessful(String, String)
This message shall be used to indicate that a resource or device was updated.
Tuple Fields
TransferFailed(String, String)
This message shall be used to indicate that the service failed to transfer an image to a component.
Tuple Fields
AwaitToUpdate(String, String)
This message shall be used to indicate that the resource or device is awaiting for an action to proceed with installing an image.
Tuple Fields
TransferringToComponent(String, String)
This message shall be used to indicate that the service is transferring an image to a component.
Tuple Fields
ApplyingOnComponent(String, String)
This message shall be used to indicate that a component is applying an image.
Tuple Fields
VerificationFailed(String, String)
This message shall be used to indicate that the component failed to verify an image.
Tuple Fields
UpdateInProgress
This message shall be used to indicate that an update is in progress.
TargetDetermined(String, String)
This message shall be used to indicate that a target resource or device for a image has been determined for update.
Tuple Fields
AllTargetsDetermined
This message shall be used to indicate that all target resources or devices for an update operation have been determined by the service.
InstallingOnComponent(String, String)
This message shall be used to indicate that a component is installing an image.
Tuple Fields
ActivateFailed(String, String)
This message shall be used to indicate that the component failed to activate the image.
Tuple Fields
AwaitToActivate(String, String)
This message shall be used to indicate that the resource or device is awaiting for an action to proceed with activating an image.