UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

44 lines (43 loc) 1.37 kB
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>; }