@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.83 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List all Radius servers with respective radius secrets from virtual network gateway VpnClientConfiguration.
*
* Uses Azure REST API version 2024-10-01.
*/
export declare function listVirtualNetworkGatewayRadiusSecrets(args: ListVirtualNetworkGatewayRadiusSecretsArgs, opts?: pulumi.InvokeOptions): Promise<ListVirtualNetworkGatewayRadiusSecretsResult>;
export interface ListVirtualNetworkGatewayRadiusSecretsArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the virtual network gateway.
*/
virtualNetworkGatewayName: string;
}
/**
* List of Radius servers with respective radius secrets.
*/
export interface ListVirtualNetworkGatewayRadiusSecretsResult {
/**
* URL to get the next set of operation list results if there are any.
*/
readonly nextLink?: string;
/**
* List of Radius servers with respective radius secrets.
*/
readonly value?: outputs.network.RadiusAuthServerResponse[];
}
/**
* List all Radius servers with respective radius secrets from virtual network gateway VpnClientConfiguration.
*
* Uses Azure REST API version 2024-10-01.
*/
export declare function listVirtualNetworkGatewayRadiusSecretsOutput(args: ListVirtualNetworkGatewayRadiusSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListVirtualNetworkGatewayRadiusSecretsResult>;
export interface ListVirtualNetworkGatewayRadiusSecretsOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the virtual network gateway.
*/
virtualNetworkGatewayName: pulumi.Input<string>;
}