Get Kx Changeset
finspace_get_kx_changeset | R Documentation |
Returns information about a kdb changeset¶
Description¶
Returns information about a kdb changeset.
Usage¶
Arguments¶
environmentId
[required] A unique identifier for the kdb environment.
databaseName
[required] The name of the kdb database.
changesetId
[required] A unique identifier of the changeset for which you want to retrieve data.
Value¶
A list with the following syntax:
list(
changesetId = "string",
databaseName = "string",
environmentId = "string",
changeRequests = list(
list(
changeType = "PUT"|"DELETE",
s3Path = "string",
dbPath = "string"
)
),
createdTimestamp = as.POSIXct(
"2015-01-01"
),
activeFromTimestamp = as.POSIXct(
"2015-01-01"
),
lastModifiedTimestamp = as.POSIXct(
"2015-01-01"
),
status = "PENDING"|"PROCESSING"|"FAILED"|"COMPLETED",
errorInfo = list(
errorMessage = "string",
errorType = "The inputs to this request are invalid."|"Service limits have been exceeded."|"Missing required permission to perform this request."|"One or more inputs to this request were not found."|"The system temporarily lacks sufficient resources to process the request."|"An internal error has occurred."|"Cancelled"|"A user recoverable error has occurred"
)
)