Skip to content

excludeAzureStorageAccountContainers

Updates the list of containers excluded from protection for the specified storage account.

Arguments

Argument Type Description
input (required) ExcludeAzureStorageAccountContainersInput! Input to update storage account containers to be excluded from protection.

Returns

Void

Sample

mutation ExcludeAzureStorageAccountContainers($input: ExcludeAzureStorageAccountContainersInput!) {
  excludeAzureStorageAccountContainers(input: $input)
}
{
  "input": {
    "containers": [
      "example-string"
    ],
    "storageAccountId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "excludeAzureStorageAccountContainers": "example-string"
  }
}