Skip to main content

recovery_points_recommended_for_move

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

Overview

Namerecovery_points_recommended_for_move
TypeResource
Idazure.recovery_services_backup.recovery_points_recommended_for_move

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
eTagstringOptional ETag.
locationstringThe geo-location where the resource lives.
objectTypestringThis property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. Default value is None.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
threatInfoarrayRecovery point threat information.
threatStatusstringThreat status of the recovery point. Known values are: "Unknown", "Healthy", "UnHealthy", "Warning", and "NotAvailable". (Unknown, Healthy, UnHealthy, Warning, NotAvailable)
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectvault_name, resource_group_name, fabric_name, container_name, protected_item_name, subscription_idLists the recovery points recommended for move to another tier.

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
container_namestringName of the container whose details need to be fetched. Required.
fabric_namestringThe name of the BackupFabricResource. Required.
protected_item_namestringBacked up item name whose details are to be fetched. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
vault_namestringThe name of the VaultResource. Required.

SELECT examples

Lists the recovery points recommended for move to another tier.

SELECT
id,
name,
eTag,
location,
objectType,
systemData,
tags,
threatInfo,
threatStatus,
type
FROM azure.recovery_services_backup.recovery_points_recommended_for_move
WHERE vault_name = '{{ vault_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND fabric_name = '{{ fabric_name }}' -- required
AND container_name = '{{ container_name }}' -- required
AND protected_item_name = '{{ protected_item_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;