Module Values.UpgradeStepItemSource

Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.

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

    Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through: PreUpgradeCheck Snapshot Upgrade

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

    The status of a particular step during an 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 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