import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to fetch the Host Keys of an existing Function App * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.appservice.getFunctionAppHostKeys({ * name: "example-function", * resourceGroupName: exampleAzurermResourceGroup.name, * }); * ``` */ export declare function getFunctionAppHostKeys(args: GetFunctionAppHostKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFunctionAppHostKeys. */ export interface GetFunctionAppHostKeysArgs { /** * The name of the Function App. */ name: string; /** * The name of the Resource Group where the Function App exists. */ resourceGroupName: string; } /** * A collection of values returned by getFunctionAppHostKeys. */ export interface GetFunctionAppHostKeysResult { /** * Function App resource's Blobs Extension system key. */ readonly blobsExtensionKey: string; /** * Function App resource's default function key. */ readonly defaultFunctionKey: string; /** * Function App resource's Durable Task Extension system key. */ readonly durabletaskExtensionKey: string; /** * Function App resource's Event Grid Extension Config system key. */ readonly eventGridExtensionConfigKey: string; readonly eventGridExtensionKey: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; /** * Function App resource's secret key */ readonly primaryKey: string; readonly resourceGroupName: string; /** * Function App resource's SignalR Extension system key. */ readonly signalrExtensionKey: string; /** * Function App resource's Web PubSub Extension system key. */ readonly webpubsubExtensionKey: string; } /** * Use this data source to fetch the Host Keys of an existing Function App * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.appservice.getFunctionAppHostKeys({ * name: "example-function", * resourceGroupName: exampleAzurermResourceGroup.name, * }); * ``` */ export declare function getFunctionAppHostKeysOutput(args: GetFunctionAppHostKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFunctionAppHostKeys. */ export interface GetFunctionAppHostKeysOutputArgs { /** * The name of the Function App. */ name: pulumi.Input; /** * The name of the Resource Group where the Function App exists. */ resourceGroupName: pulumi.Input; }