UNPKG

@kengachu-pulumi/azure-native-web

Version:

Pulumi Azure Native package for web

83 lines (82 loc) 2.72 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the send key name and value for a Hybrid Connection. * * Uses Azure REST API version 2018-11-01. * * Other available API versions: 2016-08-01, 2018-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listWebAppHybridConnectionKeys(args: ListWebAppHybridConnectionKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListWebAppHybridConnectionKeysResult>; export interface ListWebAppHybridConnectionKeysArgs { /** * The name of the web app. */ name: string; /** * The namespace for this hybrid connection. */ namespaceName: string; /** * The relay name for this hybrid connection. */ relayName: string; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: string; } /** * Hybrid Connection key contract. This has the send key name and value for a Hybrid Connection. */ export interface ListWebAppHybridConnectionKeysResult { /** * Resource Id. */ readonly id: string; /** * Kind of resource. */ readonly kind?: string; /** * Resource Name. */ readonly name: string; /** * The name of the send key. */ readonly sendKeyName: string; /** * The value of the send key. */ readonly sendKeyValue: string; /** * Resource type. */ readonly type: string; } /** * Gets the send key name and value for a Hybrid Connection. * * Uses Azure REST API version 2018-11-01. * * Other available API versions: 2016-08-01, 2018-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listWebAppHybridConnectionKeysOutput(args: ListWebAppHybridConnectionKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWebAppHybridConnectionKeysResult>; export interface ListWebAppHybridConnectionKeysOutputArgs { /** * The name of the web app. */ name: pulumi.Input<string>; /** * The namespace for this hybrid connection. */ namespaceName: pulumi.Input<string>; /** * The relay name for this hybrid connection. */ relayName: pulumi.Input<string>; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: pulumi.Input<string>; }