@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.37 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Returns the BitLocker Keys for all drives in the specified job.
*
* Uses Azure REST API version 2021-01-01.
*/
export declare function listBitLockerKey(args: ListBitLockerKeyArgs, opts?: pulumi.InvokeOptions): Promise<ListBitLockerKeyResult>;
export interface ListBitLockerKeyArgs {
/**
* The name of the import/export job.
*/
jobName: string;
/**
* The resource group name uniquely identifies the resource group within the user subscription.
*/
resourceGroupName: string;
}
/**
* GetBitLockerKeys response
*/
export interface ListBitLockerKeyResult {
/**
* drive status
*/
readonly value?: outputs.importexport.DriveBitLockerKeyResponse[];
}
/**
* Returns the BitLocker Keys for all drives in the specified job.
*
* Uses Azure REST API version 2021-01-01.
*/
export declare function listBitLockerKeyOutput(args: ListBitLockerKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListBitLockerKeyResult>;
export interface ListBitLockerKeyOutputArgs {
/**
* The name of the import/export job.
*/
jobName: pulumi.Input<string>;
/**
* The resource group name uniquely identifies the resource group within the user subscription.
*/
resourceGroupName: pulumi.Input<string>;
}