registered_identities
Creates, updates, deletes, gets or lists a registered_identities resource.
Overview
| Name | registered_identities |
| Type | Resource |
| Id | azure.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete | delete | subscriptionId, resourceGroupName, vaultName, identityName | Unregisters 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.
| Name | Datatype | Description |
|---|---|---|
identityName | string | Name of the protection container to unregister. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
vaultName | string | The name of the recovery services vault. |
DELETE examples
- delete
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
;