Skip to content

List Kx Changesets

finspace_list_kx_changesets R Documentation

Returns a list of all the changesets for a database

Description

Returns a list of all the changesets for a database.

Usage

finspace_list_kx_changesets(environmentId, databaseName, nextToken,
  maxResults)

Arguments

environmentId

[required] A unique identifier for the kdb environment.

databaseName

[required] The name of the kdb database.

nextToken

A token that indicates where a results page should begin.

maxResults

The maximum number of results to return in this request.

Value

A list with the following syntax:

list(
  kxChangesets = list(
    list(
      changesetId = "string",
      createdTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      activeFromTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      lastModifiedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      status = "PENDING"|"PROCESSING"|"FAILED"|"COMPLETED"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_kx_changesets(
  environmentId = "string",
  databaseName = "string",
  nextToken = "string",
  maxResults = 123
)