Module Values.GetChangesetResponseSource

The response from a describe changeset operation

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 where 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;
    (*

    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;
    (*

    The status of Changeset creation operation.

    *)
  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 being updated.

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

    The unique identifier of the updated Changeset.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?changesetId:??? -> ?changesetArn:??? -> ?datasetId:??? -> ?changeType:??? -> ?sourceParams:??? -> ?formatParams:??? -> ?createTime:??? -> ?status:??? -> ?errorInfo:??? -> ?activeUntilTimestamp:??? -> ?activeFromTimestamp:??? -> ?updatesChangesetId:??? -> ?updatedByChangesetId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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