backup_engines
Creates, updates, deletes, gets or lists a backup_engines
resource.
Overview
Name | backup_engines |
Type | Resource |
Id | azure.recovery_services_backup.backup_engines |
Fields
- vw_backup_engines
- backup_engines
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
azure_backup_agent_version | text | field from the properties object |
backupEngineName | text | field from the properties object |
backup_engine_id | text | field from the properties object |
backup_engine_state | text | field from the properties object |
backup_engine_type | text | field from the properties object |
backup_management_type | text | field from the properties object |
can_re_register | text | field from the properties object |
dpm_version | text | field from the properties object |
extended_info | text | field from the properties object |
friendly_name | text | field from the properties object |
health_status | text | field from the properties object |
is_azure_backup_agent_upgrade_available | text | field from the properties object |
is_dpm_upgrade_available | text | field from the properties object |
registration_status | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
vaultName | text | field from the properties object |
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 | The base backup engine class. All workload specific backup engines derive 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 |
---|---|---|---|
get | SELECT | backupEngineName, resourceGroupName, subscriptionId, vaultName | Returns backup management server registered to Recovery Services Vault. |
list | SELECT | resourceGroupName, subscriptionId, vaultName | Backup management servers registered to Recovery Services Vault. Returns a pageable list of servers. |
SELECT
examples
Backup management servers registered to Recovery Services Vault. Returns a pageable list of servers.
- vw_backup_engines
- backup_engines
SELECT
id,
name,
azure_backup_agent_version,
backupEngineName,
backup_engine_id,
backup_engine_state,
backup_engine_type,
backup_management_type,
can_re_register,
dpm_version,
extended_info,
friendly_name,
health_status,
is_azure_backup_agent_upgrade_available,
is_dpm_upgrade_available,
registration_status,
resourceGroupName,
subscriptionId,
type,
vaultName
FROM azure.recovery_services_backup.vw_backup_engines
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_backup.backup_engines
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';