Skip to main content

backup_protection_intents

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

Overview

Namebackup_protection_intents
TypeResource
Idazure.recovery_services_backup.backup_protection_intents

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 ProtectionIntent.
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 all intents that are present within a vault.

SELECT examples

Provides a pageable list of all intents that are present within a vault.

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