Module Values.GetKxChangesetResponseSource

Returns information about a kdb changeset.

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

    A unique identifier for the changeset.

    *)
  2. databaseName : DatabaseName.t option;
    (*

    The name of the kdb database.

    *)
  3. environmentId : EnvironmentId.t option;
    (*

    A unique identifier for the kdb environment.

    *)
  4. changeRequests : ChangeRequests.t option;
    (*

    A list of change request objects that are run in order.

    *)
  5. createdTimestamp : Timestamp.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.

    *)
  6. activeFromTimestamp : Timestamp.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.

    *)
  7. lastModifiedTimestamp : Timestamp.t option;
    (*

    The timestamp at which the changeset was updated 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 : ChangesetStatus.t option;
    (*

    Status of the changeset creation process. Pending – Changeset creation is pending. Processing – Changeset creation is running. Failed – Changeset creation has failed. Complete – Changeset creation has succeeded.

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

    Provides details in the event of a failed flow, including the error type and the related error message.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?changesetId:??? -> ?databaseName:??? -> ?environmentId:??? -> ?changeRequests:??? -> ?createdTimestamp:??? -> ?activeFromTimestamp:??? -> ?lastModifiedTimestamp:??? -> ?status:??? -> ?errorInfo:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `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 | `List of [> `Structure of (string * [> `Enum of string | `String of S3Path.t ]) list ] list | `String of ChangesetId.t | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list | `Timestamp of Timestamp.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