bit_locker_keys
Creates, updates, deletes, gets or lists a bit_locker_keys resource.
Overview
| Name | bit_locker_keys |
| Type | Resource |
| Id | azure_extras.storage_import_export.bit_locker_keys |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
bitLockerKey | string | BitLocker recovery key or password. |
driveId | string | Drive ID. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | job_name, resource_group_name, subscription_id | Accept-Language | Returns the BitLocker Keys for all drives in the specified job. |
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 |
|---|---|---|
job_name | string | The name of the import/export job. Required. |
resource_group_name | string | The resource group name uniquely identifies the resource group within the user subscription. Required. |
subscription_id | string | |
Accept-Language | string |
SELECT examples
- list
Returns the BitLocker Keys for all drives in the specified job.
SELECT
bitLockerKey,
driveId
FROM azure_extras.storage_import_export.bit_locker_keys
WHERE job_name = '{{ job_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND Accept-Language = '{{ Accept-Language }}'
;