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

43 lines (42 loc) 1.16 kB
import * as pulumi from "@pulumi/pulumi"; /** * Returns the activation key of the manager. * * Uses Azure REST API version 2017-06-01. */ export declare function listManagerActivationKey(args: ListManagerActivationKeyArgs, opts?: pulumi.InvokeOptions): Promise<ListManagerActivationKeyResult>; export interface ListManagerActivationKeyArgs { /** * The manager name */ managerName: string; /** * The resource group name */ resourceGroupName: string; } /** * The key. */ export interface ListManagerActivationKeyResult { /** * The activation key for the device. */ readonly activationKey: string; } /** * Returns the activation key of the manager. * * Uses Azure REST API version 2017-06-01. */ export declare function listManagerActivationKeyOutput(args: ListManagerActivationKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListManagerActivationKeyResult>; export interface ListManagerActivationKeyOutputArgs { /** * The manager name */ managerName: pulumi.Input<string>; /** * The resource group name */ resourceGroupName: pulumi.Input<string>; }