Skip to content

unmapCloudAccountExocomputeAccount

Unmap cloud accounts from the mapped Exocompute account.

Arguments

Argument Type Description
input (required) UnmapCloudAccountExocomputeAccountInput! Input for unmapping cloud account from the mapped Exocompute account.

Returns

UnmapCloudAccountExocomputeAccountReply!

Sample

mutation UnmapCloudAccountExocomputeAccount($input: UnmapCloudAccountExocomputeAccountInput!) {
  unmapCloudAccountExocomputeAccount(input: $input) {
    isSuccess
  }
}
{
  "input": {
    "cloudAccountIds": [
      "00000000-0000-0000-0000-000000000000"
    ],
    "cloudVendor": "ALL_VENDORS"
  }
}
{
  "data": {
    "unmapCloudAccountExocomputeAccount": {
      "isSuccess": true
    }
  }
}