backup_instances_extension_routings
Creates, updates, deletes, gets or lists a backup_instances_extension_routings
resource.
Overview
Name | backup_instances_extension_routings |
Type | Resource |
Id | azure.data_protection.backup_instances_extension_routings |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Proxy Resource Id represents the complete path to the resource. |
name | string | Proxy Resource name associated with the resource. |
properties | object | BackupInstanceResource properties |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Proxy Resource tags. |
type | string | Proxy Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceId | Gets 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.
Name | Datatype | Description |
---|---|---|
resourceId | string | ARM path of the resource to be protected using Microsoft.DataProtection |
SELECT
examples
- list
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
;