Module Values.DataSourceRunSummarySource

The details of a data source run.

Sourcetype nonrec t = {
  1. id : DataSourceRunId.t option;
    (*

    The identifier of the data source run.

    *)
  2. dataSourceId : DataSourceId.t option;
    (*

    The identifier of the data source of the data source run.

    *)
  3. type_ : DataSourceRunType.t option;
    (*

    The type of the data source run.

    *)
  4. status : DataSourceRunStatus.t option;
    (*

    The status of the data source run.

    *)
  5. projectId : ProjectId.t option;
    (*

    The project ID of the data source run.

    *)
  6. runStatisticsForAssets : RunStatisticsForAssets.t option;
  7. errorMessage : DataSourceErrorMessage.t option;
  8. createdAt : DateTime.t option;
    (*

    The timestamp of when a data source run was created.

    *)
  9. updatedAt : DateTime.t option;
    (*

    The timestamp of when a data source run was updated.

    *)
  10. startedAt : DateTime.t option;
    (*

    The timestamp of when a data source run was started.

    *)
  11. stoppedAt : DateTime.t option;
    (*

    The timestamp of when a data source run was stopped.

    *)
  12. lineageSummary : DataSourceRunLineageSummary.t option;
    (*

    The run lineage summary of a data source.

    *)
}
Sourceval make : ?id:??? -> ?dataSourceId:??? -> ?type_:??? -> ?status:??? -> ?projectId:??? -> ?runStatisticsForAssets:??? -> ?errorMessage:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?lineageSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DataSourceRunId.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t ]) list | `Timestamp of DateTime.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