Skip to content

excludeAzureNativeManagedDisksFromSnapshot

Exclude the Managed Disks from snapshots, for the specified virtual machines.

Arguments

Argument Type Description
input (required) ExcludeAzureNativeManagedDisksFromSnapshotInput! Input for excluding Azure Native Managed Disks from Snapshot.

Returns

Void

Sample

mutation ExcludeAzureNativeManagedDisksFromSnapshot($input: ExcludeAzureNativeManagedDisksFromSnapshotInput!) {
  excludeAzureNativeManagedDisksFromSnapshot(input: $input)
}
{
  "input": {
    "managedDiskExclusions": [
      {
        "isExcludedFromSnapshot": true,
        "managedDiskRubrikId": "00000000-0000-0000-0000-000000000000"
      }
    ],
    "virtualMachineRubrikId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "excludeAzureNativeManagedDisksFromSnapshot": "example-string"
  }
}