Skip to content

updateAwsExocomputeConfigs

Update AWS Exocompute configs.

Arguments

Argument Type Description
input (required) UpdateAwsExocomputeConfigsInput! Input to create AWS exocompute configurations.

Returns

UpdateAwsExocomputeConfigsReply!

Sample

mutation UpdateAwsExocomputeConfigs($input: UpdateAwsExocomputeConfigsInput!) {
  updateAwsExocomputeConfigs(input: $input)
}
{
  "input": {
    "cloudAccountId": "00000000-0000-0000-0000-000000000000",
    "configs": [
      {
        "region": "AF_SOUTH_1"
      }
    ]
  }
}
{
  "data": {
    "updateAwsExocomputeConfigs": {
      "configs": [
        {
          "areSecurityGroupsRscManaged": true,
          "authServerRegion": "UNKNOWN_AWS_AUTH_SERVER_BASED_REGION",
          "clusterSecurityGroupId": "example-string",
          "configUuid": "example-string",
          "hasPcr": true,
          "message": "example-string"
        }
      ],
      "deleteStatus": [
        {
          "exocomputeConfigId": "example-string",
          "success": true
        }
      ]
    }
  }
}