finspace function

FinSpace User Environment Management service

FinSpace User Environment Management service

The FinSpace management service provides the APIs for managing FinSpace environments.

finspace(config = list(), credentials = list(), endpoint = NULL, region = NULL)

Arguments

  • config: Optional configuration of credentials, endpoint, and/or region.

    • credentials :

      • creds :

        • access_key_id : AWS access key ID
        • secret_access_key : AWS secret access key
        • session_token : AWS temporary session token
      • profile : The name of a profile to use. If not given, then the default profile is used.

      • anonymous : Set anonymous credentials.

    • endpoint : The complete URL to use for the constructed client.

    • region : The AWS Region used in instantiating the client.

    • close_connection : Immediately close all HTTP connections.

    • timeout : The time in seconds till a timeout exception is thrown when attempting to make a connection. The default is 60 seconds.

    • s3_force_path_style : Set this to true to force the request to use path-style addressing, i.e. http://s3.amazonaws.com/BUCKET/KEY.

    • sts_regional_endpoint : Set sts regional endpoint resolver to regional or legacy https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html

  • credentials: Optional credentials shorthand for the config parameter

    • creds :

      • access_key_id : AWS access key ID
      • secret_access_key : AWS secret access key
      • session_token : AWS temporary session token
    • profile : The name of a profile to use. If not given, then the default profile is used.

    • anonymous : Set anonymous credentials.

  • endpoint: Optional shorthand for complete URL to use for the constructed client.

  • region: Optional shorthand for AWS Region used in instantiating the client.

Returns

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Service syntax

svc <- finspace(
  config = list(
    credentials = list(
 creds = list(
   access_key_id = "string",
   secret_access_key = "string",
   session_token = "string"
 ),
 profile = "string",
 anonymous = "logical"
    ),
    endpoint = "string",
    region = "string",
    close_connection = "logical",
    timeout = "numeric",
    s3_force_path_style = "logical",
    sts_regional_endpoint = "string"
  ),
  credentials = list(
    creds = list(
 access_key_id = "string",
 secret_access_key = "string",
 session_token = "string"
    ),
    profile = "string",
    anonymous = "logical"
  ),
  endpoint = "string",
  region = "string"
)

Operations

create_environmentCreate a new FinSpace environment
create_kx_changesetCreates a changeset for a kdb database
create_kx_clusterCreates a new kdb cluster
create_kx_databaseCreates a new kdb database in the environment
create_kx_dataviewCreates a snapshot of kdb database with tiered storage capabilities and a pre-warmed cache, ready for mounting on kdb clusters
create_kx_environmentCreates a managed kdb environment for the account
create_kx_scaling_groupCreates a new scaling group
create_kx_userCreates a user in FinSpace kdb environment with an associated IAM role
create_kx_volumeCreates a new volume with a specific amount of throughput and storage capacity
delete_environmentDelete an FinSpace environment
delete_kx_clusterDeletes a kdb cluster
delete_kx_cluster_nodeDeletes the specified nodes from a cluster
delete_kx_databaseDeletes the specified database and all of its associated data
delete_kx_dataviewDeletes the specified dataview
delete_kx_environmentDeletes the kdb environment
delete_kx_scaling_groupDeletes the specified scaling group
delete_kx_userDeletes a user in the specified kdb environment
delete_kx_volumeDeletes a volume
get_environmentReturns the FinSpace environment object
get_kx_changesetReturns information about a kdb changeset
get_kx_clusterRetrieves information about a kdb cluster
get_kx_connection_stringRetrieves a connection string for a user to connect to a kdb cluster
get_kx_databaseReturns database information for the specified environment ID
get_kx_dataviewRetrieves details of the dataview
get_kx_environmentRetrieves all the information for the specified kdb environment
get_kx_scaling_groupRetrieves details of a scaling group
get_kx_userRetrieves information about the specified kdb user
get_kx_volumeRetrieves the information about the volume
list_environmentsA list of all of your FinSpace environments
list_kx_changesetsReturns a list of all the changesets for a database
list_kx_cluster_nodesLists all the nodes in a kdb cluster
list_kx_clustersReturns a list of clusters
list_kx_databasesReturns a list of all the databases in the kdb environment
list_kx_dataviewsReturns a list of all the dataviews in the database
list_kx_environmentsReturns a list of kdb environments created in an account
list_kx_scaling_groupsReturns a list of scaling groups in a kdb environment
list_kx_usersLists all the users in a kdb environment
list_kx_volumesLists all the volumes in a kdb environment
list_tags_for_resourceA list of all tags for a resource
tag_resourceAdds metadata tags to a FinSpace resource
untag_resourceRemoves metadata tags from a FinSpace resource
update_environmentUpdate your FinSpace environment
update_kx_cluster_code_configurationAllows you to update code configuration on a running cluster
update_kx_cluster_databasesUpdates the databases mounted on a kdb cluster, which includes the changesetId and all the dbPaths to be cached
update_kx_databaseUpdates information for the given kdb database
update_kx_dataviewUpdates the specified dataview
update_kx_environmentUpdates information for the given kdb environment
update_kx_environment_networkUpdates environment network to connect to your internal network by using a transit gateway
update_kx_userUpdates the user details
update_kx_volumeUpdates the throughput or capacity of a volume

Examples

## Not run: svc <- finspace() svc$create_environment( Foo = 123 ) ## End(Not run)
  • Maintainer: Dyfan Jones
  • License: Apache License (>= 2.0)
  • Last published: 2025-03-17

Downloads (last 30 days):