Module Values.ChangesetSummarySource

A Changeset is unit of data in a Dataset.

Sourcetype nonrec t = {
  1. changesetId : ChangesetId.t option;
    (*

    The unique identifier for a Changeset.

    *)
  2. changesetArn : ChangesetArn.t option;
    (*

    The ARN identifier of the Changeset.

    *)
  3. datasetId : DatasetId.t option;
    (*

    The unique identifier for the FinSpace Dataset in which the Changeset is created.

    *)
  4. changeType : ChangeType.t option;
    (*

    Type that indicates how a Changeset is applied to a Dataset. REPLACE – Changeset is considered as a replacement to all prior loaded Changesets. APPEND – Changeset is considered as an addition to the end of all prior loaded Changesets. MODIFY – Changeset is considered as a replacement to a specific prior ingested Changeset.

    *)
  5. sourceParams : SourceParams.t option;
    (*

    Options that define the location of the data being ingested.

    *)
  6. formatParams : FormatParams.t option;
    (*

    Options that define the structure of the source file(s).

    *)
  7. createTime : TimestampEpoch.t option;
    (*

    The timestamp at which the Changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  8. status : IngestionStatus.t option;
    (*

    Status of the Changeset ingestion. PENDING – Changeset is pending creation. FAILED – Changeset creation has failed. SUCCESS – Changeset creation has succeeded. RUNNING – Changeset creation is running. STOP_REQUESTED – User requested Changeset creation to stop.

    *)
  9. errorInfo : ChangesetErrorInfo.t option;
    (*

    The structure with error messages.

    *)
  10. activeUntilTimestamp : TimestampEpoch.t option;
    (*

    Time until which the Changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  11. activeFromTimestamp : TimestampEpoch.t option;
    (*

    Beginning time from which the Changeset is active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  12. updatesChangesetId : ChangesetId.t option;
    (*

    The unique identifier of the Changeset that is updated.

    *)
  13. updatedByChangesetId : ChangesetId.t option;
    (*

    The unique identifier of the updated Changeset.

    *)
}
Sourceval make : ?changesetId:??? -> ?changesetArn:??? -> ?datasetId:??? -> ?changeType:??? -> ?sourceParams:??? -> ?formatParams:??? -> ?createTime:??? -> ?status:??? -> ?errorInfo:??? -> ?activeUntilTimestamp:??? -> ?activeFromTimestamp:??? -> ?updatesChangesetId:??? -> ?updatedByChangesetId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of TimestampEpoch.t | `Map of ([> `String of StringMapKey.t ] * [> `String of StringMapValue.t ]) list | `String of ChangesetId.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list ]) 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