Module Values.ApplicationAggregatedStatusSource

Application aggregated status.

Sourcetype nonrec t = {
  1. lastUpdateDateTime : ISO8601DatetimeString.t option;
    (*

    Application aggregated status last update dateTime.

    *)
  2. healthStatus : ApplicationHealthStatus.t option;
    (*

    Application aggregated status health status.

    *)
  3. progressStatus : ApplicationProgressStatus.t option;
    (*

    Application aggregated status progress status.

    *)
  4. totalSourceServers : PositiveInteger.t option;
    (*

    Application aggregated status total source servers amount.

    *)
}
Sourceval make : ?lastUpdateDateTime:??? -> ?healthStatus:??? -> ?progressStatus:??? -> ?totalSourceServers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of PositiveInteger.t | `String of ISO8601DatetimeString.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