Skip to content

mapCloudAccountExocomputeAccount

Map cloud accounts to an Exocompute account.

Arguments

Argument Type Description
input (required) MapCloudAccountExocomputeAccountInput! Input for mapping cloud accounts to an Exocompute account.

Returns

MapCloudAccountExocomputeAccountReply!

Sample

mutation MapCloudAccountExocomputeAccount($input: MapCloudAccountExocomputeAccountInput!) {
  mapCloudAccountExocomputeAccount(input: $input) {
    isSuccess
  }
}
{
  "input": {
    "cloudAccountIds": [
      "00000000-0000-0000-0000-000000000000"
    ],
    "cloudVendor": "ALL_VENDORS",
    "exocomputeCloudAccountId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "mapCloudAccountExocomputeAccount": {
      "isSuccess": true
    }
  }
}