Module Values.DryRunProgressStatusSource

Information about the progress of a pre-upgrade dry run analysis.

Sourcetype nonrec t = {
  1. dryRunId : GUID.t option;
    (*

    The unique identifier of the dry run.

    *)
  2. dryRunStatus : String_.t option;
    (*

    The current status of the dry run.

    *)
  3. creationDate : String_.t option;
    (*

    The timestamp when the dry run was initiated.

    *)
  4. updateDate : String_.t option;
    (*

    The timestamp when the dry run was last updated.

    *)
  5. validationFailures : ValidationFailures.t option;
    (*

    Any validation failures that occurred as a result of the dry run.

    *)
}
Sourceval make : ?dryRunId:??? -> ?dryRunStatus:??? -> ?creationDate:??? -> ?updateDate:??? -> ?validationFailures:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of GUID.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