backup_workload_items
Creates, updates, deletes, gets or lists a backup_workload_items
resource.
Overview
Name | backup_workload_items |
Type | Resource |
Id | azure.recovery_services_backup.backup_workload_items |
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 | Base class for backup item. Workload-specific backup items are derived from this 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 | containerName, fabricName, resourceGroupName, subscriptionId, vaultName | Provides a pageable list of workload item of a specific container according to the query filter and the pagination |
parameters. |
SELECT
examples
Provides a pageable list of workload item of a specific container according to the query filter and the pagination parameters.
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_backup.backup_workload_items
WHERE containerName = '{{ containerName }}'
AND fabricName = '{{ fabricName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';