protectable_containers
Creates, updates, deletes, gets or lists a protectable_containers
resource.
Overview
Name | protectable_containers |
Type | Resource |
Id | azure.recovery_services_backup.protectable_containers |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Protectable Container Class. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | fabricName, resourceGroupName, subscriptionId, vaultName | Lists the containers that can be registered to Recovery Services Vault. |
SELECT
examples
Lists the containers that can be registered to Recovery Services Vault.
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_backup.protectable_containers
WHERE fabricName = '{{ fabricName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';