Module Values.DataSourceRunActivitySource

The activity details of the data source run.

Sourcetype nonrec t = {
  1. database : Name.t option;
    (*

    The database included in the data source run activity.

    *)
  2. dataSourceRunId : DataSourceRunId.t option;
    (*

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

    *)
  3. technicalName : Name.t option;
    (*

    The technical name included in the data source run activity.

    *)
  4. dataAssetStatus : DataAssetActivityStatus.t option;
    (*

    The status of the asset included in the data source run activity.

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

    The project ID included in the data source run activity.

    *)
  6. dataAssetId : String_.t option;
    (*

    The identifier of the asset included in the data source run activity.

    *)
  7. technicalDescription : Description.t option;
    (*

    The technical description included in the data source run activity.

    *)
  8. errorMessage : DataSourceErrorMessage.t option;
  9. lineageSummary : LineageInfo.t option;
    (*

    The data lineage summary.

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

    The timestamp of when data source run activity was created.

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

    The timestamp of when data source run activity was updated.

    *)
}
Sourceval make : ?database:??? -> ?dataSourceRunId:??? -> ?technicalName:??? -> ?dataAssetStatus:??? -> ?projectId:??? -> ?dataAssetId:??? -> ?technicalDescription:??? -> ?errorMessage:??? -> ?lineageSummary:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Enum of string | `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