Skip to content

unmapAzureCloudAccountExocomputeSubscription

Unmap Azure cloud accounts from the mapped Exocompute subscription.

Arguments

Argument Type Description
input (required) UnmapAzureCloudAccountExocomputeSubscriptionInput! Input for unmapping Azure cloud accounts from the mapped Exocompute subscription.

Returns

UnmapAzureCloudAccountExocomputeSubscriptionReply!

Sample

mutation UnmapAzureCloudAccountExocomputeSubscription($input: UnmapAzureCloudAccountExocomputeSubscriptionInput!) {
  unmapAzureCloudAccountExocomputeSubscription(input: $input) {
    isSuccess
  }
}
{
  "input": {
    "cloudAccountIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "unmapAzureCloudAccountExocomputeSubscription": {
      "isSuccess": true
    }
  }
}