Skip to main content

backup_instances_extension_routings

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

Overview

Namebackup_instances_extension_routings
TypeResource
Idazure.data_protection.backup_instances_extension_routings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringProxy Resource Id represents the complete path to the resource.
namestringProxy Resource name associated with the resource.
propertiesobjectBackupInstanceResource properties
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectProxy Resource tags.
typestringProxy Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceIdGets a list of backup instances associated with a tracked resource

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceIdstringARM path of the resource to be protected using Microsoft.DataProtection

SELECT examples

Gets a list of backup instances associated with a tracked resource

SELECT
id,
name,
properties,
systemData,
tags,
type
FROM azure.data_protection.backup_instances_extension_routings
WHERE resourceId = '{{ resourceId }}' -- required
;