Skip to content

exocomputeGetClusterConnectionInfo

Obtains the YAML file needed to connect a customer-managed cluster to RSC.

Arguments

Argument Type Description
input (required) ExocomputeGetClusterConnectionInput! Input to obtain the connection command and YAML file needed to connect a customer-managed cluster to RSC.

Returns

ExocomputeGetClusterConnectionInfoReply!

Sample

query ExocomputeGetClusterConnectionInfo($input: ExocomputeGetClusterConnectionInput!) {
  exocomputeGetClusterConnectionInfo(input: $input) {
    clusterSetupYaml
    clusterUuid
  }
}
{
  "input": {
    "cloudType": "AWS",
    "exocomputeConfigId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "exocomputeGetClusterConnectionInfo": {
      "clusterSetupYaml": "example-string",
      "clusterUuid": "00000000-0000-0000-0000-000000000000"
    }
  }
}