Get Kx Scaling Group
finspace_get_kx_scaling_group | R Documentation |
Retrieves details of a scaling group¶
Description¶
Retrieves details of a scaling group.
Usage¶
Arguments¶
environmentId
[required] A unique identifier for the kdb environment.
scalingGroupName
[required] A unique identifier for the kdb scaling group.
Value¶
A list with the following syntax:
list(
scalingGroupName = "string",
scalingGroupArn = "string",
hostType = "string",
clusters = list(
"string"
),
availabilityZoneId = "string",
status = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"DELETING"|"DELETED"|"DELETE_FAILED",
statusReason = "string",
lastModifiedTimestamp = as.POSIXct(
"2015-01-01"
),
createdTimestamp = as.POSIXct(
"2015-01-01"
)
)