2024/03/26 - FinSpace User Environment Management service - 1 new 1 updated api methods
Changes Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.
Deletes the specified nodes from a cluster.
See also: AWS API Documentation
Request Syntax
client.delete_kx_cluster_node( environmentId='string', clusterName='string', nodeId='string' )
string
[REQUIRED]
A unique identifier for the kdb environment.
string
[REQUIRED]
The name of the cluster, for which you want to delete the nodes.
string
[REQUIRED]
A unique identifier for the node that you want to delete.
dict
Response Syntax
{}
Response Structure
(dict) --
{'nodes': {'status': 'RUNNING | PROVISIONING'}}
Lists all the nodes in a kdb cluster.
See also: AWS API Documentation
Request Syntax
client.list_kx_cluster_nodes( environmentId='string', clusterName='string', nextToken='string', maxResults=123 )
string
[REQUIRED]
A unique identifier for the kdb environment.
string
[REQUIRED]
A unique name for the cluster.
string
A token that indicates where a results page should begin.
integer
The maximum number of results to return in this request.
dict
Response Syntax
{ 'nodes': [ { 'nodeId': 'string', 'availabilityZoneId': 'string', 'launchTime': datetime(2015, 1, 1), 'status': 'RUNNING'|'PROVISIONING' }, ], 'nextToken': 'string' }
Response Structure
(dict) --
nodes (list) --
A list of nodes associated with the cluster.
(dict) --
A structure that stores metadata for a kdb node.
nodeId (string) --
A unique identifier for the node.
availabilityZoneId (string) --
The identifier of the availability zones where subnets for the environment are created.
launchTime (datetime) --
The time when a particular node is started. 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 (string) --
Specifies the status of the cluster nodes.
RUNNING – The node is actively serving.
PROVISIONING – The node is being prepared.
nextToken (string) --
A token that indicates where a results page should begin.