Skip to content

deleteAzureCloudAccountWithoutOauth

Delete the Azure Subscriptions cloud account for the given feature without OAuth.

Arguments

Argument Type Description
input (required) DeleteAzureCloudAccountWithoutOauthInput! Input for deleting an Azure Cloud Account without OAuth.

Returns

DeleteAzureCloudAccountWithoutOauthReply!

Sample

mutation DeleteAzureCloudAccountWithoutOauth($input: DeleteAzureCloudAccountWithoutOauthInput!) {
  deleteAzureCloudAccountWithoutOauth(input: $input)
}
{
  "input": {
    "azureSubscriptionRubrikIds": [
      "00000000-0000-0000-0000-000000000000"
    ],
    "features": [
      "ALL"
    ]
  }
}
{
  "data": {
    "deleteAzureCloudAccountWithoutOauth": {
      "status": [
        {
          "azureSubscriptionNativeId": "example-string",
          "error": "example-string",
          "isSuccess": true
        }
      ]
    }
  }
}