Skip to content

checkAzurePersistentStorageSubscriptionCanUnmap

Checks if we can unmap the archival location from the subscription.

Arguments

Argument Type Description
cloudAccountId (required) UUID! The Rubrik ID of the cloud account.
feature (required) CloudAccountFeature! A cloud account feature of Rubrik Security Cloud.
unmappingValidationType (required) UnmappingValidationType! Unmapping validation type.

Returns

CheckAzurePersistentStorageSubscriptionCanUnmapReply!

Sample

query CheckAzurePersistentStorageSubscriptionCanUnmap($cloudAccountId: UUID!, $feature: CloudAccountFeature!, $unmappingValidationType: UnmappingValidationType!) {
  checkAzurePersistentStorageSubscriptionCanUnmap(
    cloudAccountId: $cloudAccountId
    feature: $feature
    unmappingValidationType: $unmappingValidationType
  ) {
    canUnmap
  }
}
{
  "cloudAccountId": "00000000-0000-0000-0000-000000000000",
  "feature": "ALL",
  "unmappingValidationType": "AST"
}
{
  "data": {
    "checkAzurePersistentStorageSubscriptionCanUnmap": {
      "canUnmap": true
    }
  }
}