Module Values.IngestionJobSummarySource

Contains details about a data ingestion job.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t option;
    (*

    The unique identifier of the knowledge base for the data ingestion job.

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

    The unique identifier of the data source for the data ingestion job.

    *)
  3. ingestionJobId : Id.t option;
    (*

    The unique identifier of the data ingestion job.

    *)
  4. description : Description.t option;
    (*

    The description of the data ingestion job.

    *)
  5. status : IngestionJobStatus.t option;
    (*

    The status of the data ingestion job.

    *)
  6. startedAt : DateTimestamp.t option;
    (*

    The time the data ingestion job started.

    *)
  7. updatedAt : DateTimestamp.t option;
    (*

    The time the data ingestion job was last updated.

    *)
  8. statistics : IngestionJobStatistics.t option;
    (*

    Contains statistics for the data ingestion job.

    *)
}
Sourceval make : ?knowledgeBaseId:??? -> ?dataSourceId:??? -> ?ingestionJobId:??? -> ?description:??? -> ?status:??? -> ?startedAt:??? -> ?updatedAt:??? -> ?statistics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Structure of (string * [> `Long of PrimitiveLong.t ]) list | `Timestamp of DateTimestamp.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