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

51 lines (50 loc) 1.39 kB
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>; }