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

76 lines (75 loc) 2.71 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the value of the shared key of VpnLink connection specified. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-03-01, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listVpnLinkConnectionDefaultSharedKey(args: ListVpnLinkConnectionDefaultSharedKeyArgs, opts?: pulumi.InvokeOptions): Promise<ListVpnLinkConnectionDefaultSharedKeyResult>; export interface ListVpnLinkConnectionDefaultSharedKeyArgs { /** * The name of the vpn connection. */ connectionName: string; /** * The name of the gateway. */ gatewayName: string; /** * The name of the vpn link connection. */ linkConnectionName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * SharedKey Resource . */ export interface ListVpnLinkConnectionDefaultSharedKeyResult { /** * Resource ID. */ readonly id?: string; /** * The name of the resource that is unique within a resource group. This name can be used to access the resource. */ readonly name?: string; /** * Properties of the shared key. */ readonly properties: outputs.network.SharedKeyPropertiesResponse; /** * Resource type. */ readonly type: string; } /** * Gets the value of the shared key of VpnLink connection specified. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-03-01, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listVpnLinkConnectionDefaultSharedKeyOutput(args: ListVpnLinkConnectionDefaultSharedKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListVpnLinkConnectionDefaultSharedKeyResult>; export interface ListVpnLinkConnectionDefaultSharedKeyOutputArgs { /** * The name of the vpn connection. */ connectionName: pulumi.Input<string>; /** * The name of the gateway. */ gatewayName: pulumi.Input<string>; /** * The name of the vpn link connection. */ linkConnectionName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }