Skip to main content

bit_locker_keys

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

Overview

Namebit_locker_keys
TypeResource
Idazure_extras.storage_import_export.bit_locker_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bitLockerKeystringBitLocker recovery key or password.
driveIdstringDrive ID.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectjob_name, resource_group_name, subscription_idAccept-LanguageReturns 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.

NameDatatypeDescription
job_namestringThe name of the import/export job. Required.
resource_group_namestringThe resource group name uniquely identifies the resource group within the user subscription. Required.
subscription_idstring
Accept-Languagestring

SELECT examples

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 }}'
;