Skip to main content

restorable_time_ranges

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

Overview

Namerestorable_time_ranges
TypeResource
Idazure.data_protection.restorable_time_ranges

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
objectTypestring:vartype object_type: str
restorableTimeRangesarrayReturns the Restore Ranges available on the Backup Instance.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
findselectresource_group_name, vault_name, backup_instance_name, subscription_idfind.

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
backup_instance_namestringThe name of the BackupInstanceResource. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
vault_namestringThe name of the backup vault. Required.

SELECT examples

find.

SELECT
id,
name,
objectType,
restorableTimeRanges,
systemData,
type
FROM azure.data_protection.restorable_time_ranges
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND vault_name = '{{ vault_name }}' -- required
AND backup_instance_name = '{{ backup_instance_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;