Module Values.WaveAggregatedStatusSource

Wave aggregated status.

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

    Wave aggregated status last update dateTime.

    *)
  2. replicationStartedDateTime : ISO8601DatetimeString.t option;
    (*

    DateTime marking when the first source server in the wave started replication.

    *)
  3. healthStatus : WaveHealthStatus.t option;
    (*

    Wave aggregated status health status.

    *)
  4. progressStatus : WaveProgressStatus.t option;
    (*

    Wave aggregated status progress status.

    *)
  5. totalApplications : PositiveInteger.t option;
    (*

    Wave aggregated status total applications amount.

    *)
}
Sourceval make : ?lastUpdateDateTime:??? -> ?replicationStartedDateTime:??? -> ?healthStatus:??? -> ?progressStatus:??? -> ?totalApplications:??? -> 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