import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing VPN Server Configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getVpnServerConfiguration({ * name: "existing-local-vpn-server-configuration", * resourceGroupName: "existing-resource-group", * }); * export const azurermVpnServerConfiguration = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getVpnServerConfiguration(args: GetVpnServerConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVpnServerConfiguration. */ export interface GetVpnServerConfigurationArgs { /** * The Name of the VPN Server Configuration. */ name: string; /** * The name of the Resource Group where the VPN Server Configuration exists. */ resourceGroupName: string; } /** * A collection of values returned by getVpnServerConfiguration. */ export interface GetVpnServerConfigurationResult { /** * A `azureActiveDirectoryAuthentication` block as defined below. */ readonly azureActiveDirectoryAuthentications: outputs.network.GetVpnServerConfigurationAzureActiveDirectoryAuthentication[]; /** * One or more `clientRevokedCertificate` blocks as defined below. */ readonly clientRevokedCertificates: outputs.network.GetVpnServerConfigurationClientRevokedCertificate[]; /** * One or more `clientRootCertificate` blocks as defined below. */ readonly clientRootCertificates: outputs.network.GetVpnServerConfigurationClientRootCertificate[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The `bgpSettings` block as defined below. */ readonly ipsecPolicies: outputs.network.GetVpnServerConfigurationIpsecPolicy[]; /** * The Azure Region where the VPN Server Configuration exists. */ readonly location: string; /** * The name used to uniquely identify this certificate. */ readonly name: string; /** * A `radius` block as defined below. */ readonly radii: outputs.network.GetVpnServerConfigurationRadius[]; readonly resourceGroupName: string; /** * A mapping of tags to assign to the VPN Server Configuration. */ readonly tags: { [key: string]: string; }; /** * The list of Authentication Types applicable for the VPN Server Configuration. */ readonly vpnAuthenticationTypes: string[]; /** * The list of VPN Protocols to use for the VPN Server Configuration. */ readonly vpnProtocols: string[]; } /** * Use this data source to access information about an existing VPN Server Configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getVpnServerConfiguration({ * name: "existing-local-vpn-server-configuration", * resourceGroupName: "existing-resource-group", * }); * export const azurermVpnServerConfiguration = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getVpnServerConfigurationOutput(args: GetVpnServerConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVpnServerConfiguration. */ export interface GetVpnServerConfigurationOutputArgs { /** * The Name of the VPN Server Configuration. */ name: pulumi.Input; /** * The name of the Resource Group where the VPN Server Configuration exists. */ resourceGroupName: pulumi.Input; }