Module Values.UpgradeHistorySource

History of the last 10 Upgrades and Upgrade Eligibility Checks.

Sourcetype nonrec t = {
  1. upgradeName : UpgradeName.t option;
    (*

    A string that describes the update briefly

    *)
  2. startTimestamp : StartTimestamp.t option;
    (*

    UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.

    *)
  3. upgradeStatus : UpgradeStatus.t option;
    (*

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

    *)
  4. stepsList : UpgradeStepsList.t option;
    (*

    A list of UpgradeStepItem s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check.

    *)
}
Sourceval make : ?upgradeName:??? -> ?startTimestamp:??? -> ?upgradeStatus:??? -> ?stepsList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of Double.t | `Enum of string | `List of [> `String of Issue.t ] list ]) list ] list | `String of UpgradeName.t | `Timestamp of StartTimestamp.t ]) 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