bit_locker_keys
Creates, updates, deletes, gets or lists a bit_locker_keys
resource.
Overview
Name | bit_locker_keys |
Type | Resource |
Id | azure.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 | jobName , subscriptionId , resourceGroupName | api-version , 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 |
---|---|---|
jobName | string | The name of the import/export job. |
resourceGroupName | string | The resource group name uniquely identifies the resource group within the user subscription. |
subscriptionId | string | The subscription ID for the Azure user. |
Accept-Language | string | Specifies the preferred language for the response. |
api-version | string | Specifies the API version to use for this request. |
SELECT
examples
- list
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 }}'
;