UpdateStateEnum

enum UpdateStateEnum

The state of an OTA update.

  • The current state is unknown.

    Declaration

    Swift

    case unknown
  • The node is not yet in the process of software update.

    Declaration

    Swift

    case idle
  • The node is in the process of querying an OTA provider.

    Declaration

    Swift

    case querying
  • The node is waiting after a Busy response.

    Declaration

    Swift

    case delayedOnQuery
  • The node is in the process of downloading a software update.

    Declaration

    Swift

    case downloading
  • The node is in the process of verifying and applying a software update.

    Declaration

    Swift

    case applying
  • The node is waiting due to an AwaitNextAction response.

    Declaration

    Swift

    case delayedOnApply
  • The node is recovering to a previous version.

    Declaration

    Swift

    case rollingBack
  • The node is waiting on user consent.

    Declaration

    Swift

    case delayedOnUserConsent
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional(PaperSize.Legal)"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: UInt64)

    Parameters

    rawValue

    The raw value to use for the new instance.