Module Values.UpgradeStepItemSource

Represents a single step of an upgrade or upgrade eligibility check workflow.

Sourcetype nonrec t = {
  1. upgradeStep : UpgradeStep.t option;
    (*

    One of three steps that an upgrade or upgrade eligibility check goes through: PreUpgradeCheck Snapshot Upgrade

    *)
  2. upgradeStepStatus : UpgradeStatus.t option;
    (*

    The current status of the upgrade. The status can take one of the following values: In Progress Succeeded Succeeded with Issues Failed

    *)
  3. issues : Issues.t option;
    (*

    A list of strings containing detailed information about the errors encountered in a particular step.

    *)
  4. progressPercent : Double.t option;
    (*

    The floating point value representing the progress percentage of a particular step.

    *)
}
Sourceval make : ?upgradeStep:??? -> ?upgradeStepStatus:??? -> ?issues:??? -> ?progressPercent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of Issue.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t