Skip to main content

backup_protectable_items

Creates, updates, deletes, gets or lists a backup_protectable_items resource.

Overview

Namebackup_protectable_items
TypeResource
Idazure.recovery_services_backup.backup_protectable_items

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectBase class for backup item. Workload-specific backup items are derived from this class.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, vaultNameProvides a pageable list of protectable objects within your subscription according to the query filter and the
pagination parameters.

SELECT examples

Provides a pageable list of protectable objects within your subscription according to the query filter and the pagination parameters.

SELECT
id,
name,
properties,
type
FROM azure.recovery_services_backup.backup_protectable_items
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';