Skip to content

Update Kx Database

finspace_update_kx_database R Documentation

Updates information for the given kdb database

Description

Updates information for the given kdb database.

Usage

finspace_update_kx_database(environmentId, databaseName, description,
  clientToken)

Arguments

environmentId

[required] A unique identifier for the kdb environment.

databaseName

[required] The name of the kdb database.

description

A description of the database.

clientToken

[required] A token that ensures idempotency. This token expires in 10 minutes.

Value

A list with the following syntax:

list(
  databaseName = "string",
  environmentId = "string",
  description = "string",
  lastModifiedTimestamp = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_kx_database(
  environmentId = "string",
  databaseName = "string",
  description = "string",
  clientToken = "string"
)