Module Values.LineageSqlQueryRunDetailsSource

The SQL query run details of a data lineage run.

Sourcetype nonrec t = {
  1. queryStartTime : Timestamp.t option;
    (*

    The query start time in the SQL query run details of a data lineage run.

    *)
  2. queryEndTime : Timestamp.t option;
    (*

    The query end time in the SQL query run details of a data lineage run.

    *)
  3. totalQueriesProcessed : Integer.t option;
    (*

    The total queries processed in the SQL query run details of a data lineage run.

    *)
  4. numQueriesFailed : Integer.t option;
    (*

    The number of queries that failed in the SQL query run details of a data lineage run.

    *)
  5. errorMessages : FailedQueryProcessingErrorMessages.t option;
    (*

    The error message of the SQL query run details of a data lineage run.

    *)
}
Sourceval make : ?queryStartTime:??? -> ?queryEndTime:??? -> ?totalQueriesProcessed:??? -> ?numQueriesFailed:??? -> ?errorMessages:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t ] list | `Timestamp of Timestamp.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