@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.16 kB
TypeScript
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>;
}