Values.CreateKxChangesetResponseSourceCreates a changeset for a kdb database. A changeset allows you to add and delete existing files by using an ordered list of change requests.
type nonrec t = {changesetId : ChangesetId.t option;A unique identifier for the changeset.
*)databaseName : DatabaseName.t option;The name of the kdb database.
*)environmentId : EnvironmentId.t option;A unique identifier for the kdb environment.
*)changeRequests : ChangeRequests.t option;A list of change requests.
*)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.
*)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.
*)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.
*)errorInfo : ErrorInfo.t option;The details of the error that you receive when creating a changeset. It consists of the type of error and the error message.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `LimitExceededException of LimitExceededException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `LimitExceededException of LimitExceededException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `LimitExceededException of LimitExceededException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val 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 ]