Skip to content

updateAzureCloudAccount

Update names of the Azure Subscriptions cloud account and regions for the given feature.

Arguments

Argument Type Description
input (required) UpdateAzureCloudAccountInput! Input for updating an Azure Cloud Account.

Returns

UpdateAzureCloudAccountReply!

Sample

mutation UpdateAzureCloudAccount($input: UpdateAzureCloudAccountInput!) {
  updateAzureCloudAccount(input: $input)
}
{
  "input": {
    "features": [
      "ALL"
    ],
    "subscriptions": [
      {}
    ]
  }
}
{
  "data": {
    "updateAzureCloudAccount": {
      "status": [
        {
          "azureSubscriptionNativeId": "example-string",
          "isSuccess": true
        }
      ]
    }
  }
}