Module Values.ProgressSource

Provides information about the progress of the schema conversion operation.

Sourcetype nonrec t = {
  1. progressPercent : DoubleOptional.t option;
    (*

    The percent complete for the current step of the schema conversion operation.

    *)
  2. totalObjects : Long.t option;
    (*

    The number of objects in this schema conversion operation.

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

    The step of the schema conversion operation. This parameter can store one of the following values: IN_PROGRESS – The operation is running. LOADING_METADATA – Loads metadata from the source database. COUNTING_OBJECTS – Determines the number of objects involved in the operation. ANALYZING – Analyzes the source database objects. CONVERTING – Converts the source database objects to a format compatible with the target database. APPLYING – Applies the converted code to the target database. FINISHED – The operation completed successfully.

    *)
  4. processedObject : ProcessedObject.t option;
    (*

    The name of the database object that the schema conversion operation currently uses.

    *)
}
Sourceval make : ?progressPercent:??? -> ?totalObjects:??? -> ?progressStep:??? -> ?processedObject:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DoubleOptional.t | `Long of Long.t | `String of String_.t | `Structure of (string * [> `String of String_.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