Skip to main content

registered_identities

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

Overview

Nameregistered_identities
TypeResource
Idazure.recovery_services.registered_identities

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
deletedeletesubscriptionId, resourceGroupName, vaultName, identityNameUnregisters the given container from your Recovery Services vault.

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
identityNamestringName of the protection container to unregister.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
vaultNamestringThe name of the recovery services vault.

DELETE examples

Unregisters the given container from your Recovery Services vault.

DELETE FROM azure.recovery_services.registered_identities
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND vaultName = '{{ vaultName }}' --required
AND identityName = '{{ identityName }}' --required
;