Skip to main content

item_level_recovery_connections

Creates, updates, deletes, gets or lists an item_level_recovery_connections resource.

Overview

Nameitem_level_recovery_connections
TypeResource
Idazure.recovery_services_backup.item_level_recovery_connections

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
provisionexecvaultName, resourceGroupName, subscriptionId, fabricName, containerName, protectedItemName, recoveryPointIdapi-versionProvisions a script which invokes an iSCSI connection to the backup data. Executing this script opens a file
explorer displaying all the recoverable files and folders. This is an asynchronous operation. To know the status of
provisioning, call GetProtectedItemOperationResult API.
revokeexecvaultName, resourceGroupName, subscriptionId, fabricName, containerName, protectedItemName, recoveryPointIdapi-versionRevokes an iSCSI connection which can be used to download a script. Executing this script opens a file explorer
displaying all recoverable files and folders. This is an asynchronous operation.

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
containerNamestringContainer name associated with the backed up items.
fabricNamestringFabric name associated with the backed up items.
protectedItemNamestringBacked up item name whose files/folders are to be restored.
recoveryPointIdstringRecovery point ID which represents backed up data. iSCSI connection will be revoked for
this backed up data.
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
subscriptionIdstringThe subscription Id.
vaultNamestringThe name of the recovery services vault.
api-versionstringClient Api Version.

Lifecycle Methods

Provisions a script which invokes an iSCSI connection to the backup data. Executing this script opens a file
explorer displaying all the recoverable files and folders. This is an asynchronous operation. To know the status of
provisioning, call GetProtectedItemOperationResult API.

EXEC azure.recovery_services_backup.item_level_recovery_connections.provision 
@vaultName='{{ vaultName }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@subscriptionId='{{ subscriptionId }}' --required,
@fabricName='{{ fabricName }}' --required,
@containerName='{{ containerName }}' --required,
@protectedItemName='{{ protectedItemName }}' --required,
@recoveryPointId='{{ recoveryPointId }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"properties": "{{ properties }}"
}'
;