Module Values.IngestionJobSource

Contains details about a data ingestion job. Data sources are ingested into a knowledge base so that Large Language Models (LLMs) can use your data. This data type is used in the following API operations: StartIngestionJob response GetIngestionJob response ListIngestionJob response

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

    The unique identifier of the knowledge 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. statistics : IngestionJobStatistics.t option;
    (*

    Contains statistics about the data ingestion job.

    *)
  7. failureReasons : FailureReasons.t option;
    (*

    A list of reasons that the data ingestion job failed.

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

    The time the data ingestion job started. If you stop a data ingestion job, the startedAt time is the time the job was started before the job was stopped.

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

    The time the data ingestion job was last updated. If you stop a data ingestion job, the updatedAt time is the time the job was stopped.

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