Skip to main content

bit_locker_keys

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

Overview

Namebit_locker_keys
TypeResource
Idazure.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
listselectjobName, subscriptionId, resourceGroupNameapi-version, Accept-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
jobNamestringThe name of the import/export job.
resourceGroupNamestringThe resource group name uniquely identifies the resource group within the user subscription.
subscriptionIdstringThe subscription ID for the Azure user.
Accept-LanguagestringSpecifies the preferred language for the response.
api-versionstringSpecifies the API version to use for this request.

SELECT examples

Returns the BitLocker Keys for all drives in the specified job.

SELECT
bitLockerKey,
driveId
FROM azure.storage_import_export.bit_locker_keys
WHERE jobName = '{{ jobName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND api-version = '{{ api-version }}'
AND Accept-Language = '{{ Accept-Language }}'
;