@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.39 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Returns the public encryption key of the device.
*
* Uses Azure REST API version 2017-06-01.
*/
export declare function getManagerDevicePublicEncryptionKey(args: GetManagerDevicePublicEncryptionKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetManagerDevicePublicEncryptionKeyResult>;
export interface GetManagerDevicePublicEncryptionKeyArgs {
/**
* The device name
*/
deviceName: string;
/**
* The manager name
*/
managerName: string;
/**
* The resource group name
*/
resourceGroupName: string;
}
/**
* The public key.
*/
export interface GetManagerDevicePublicEncryptionKeyResult {
/**
* The key.
*/
readonly key: string;
}
/**
* Returns the public encryption key of the device.
*
* Uses Azure REST API version 2017-06-01.
*/
export declare function getManagerDevicePublicEncryptionKeyOutput(args: GetManagerDevicePublicEncryptionKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagerDevicePublicEncryptionKeyResult>;
export interface GetManagerDevicePublicEncryptionKeyOutputArgs {
/**
* The device name
*/
deviceName: pulumi.Input<string>;
/**
* The manager name
*/
managerName: pulumi.Input<string>;
/**
* The resource group name
*/
resourceGroupName: pulumi.Input<string>;
}