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

74 lines (73 loc) 3.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This operation retrieves the route set information for an Express Route Gateway based on their resiliency * * Uses Azure REST API version 2024-07-01. * * Other available API versions: 2024-10-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 getVirtualNetworkGatewayRoutesInformation(args: GetVirtualNetworkGatewayRoutesInformationArgs, opts?: pulumi.InvokeOptions): Promise<GetVirtualNetworkGatewayRoutesInformationResult>; export interface GetVirtualNetworkGatewayRoutesInformationArgs { /** * Attempt to recalculate the Route Sets Information for the gateway */ attemptRefresh?: boolean; /** * The name of the resource group. */ resourceGroupName: string; /** * The name of the virtual network gateway. */ virtualNetworkGatewayName: string; } /** * Gateway Route Sets Information */ export interface GetVirtualNetworkGatewayRoutesInformationResult { /** * Dictionary containing map of the circuit id and circuit details */ readonly circuitsMetadataMap?: { [key: string]: outputs.network.CircuitMetadataMapResponse; }; /** * Timestamp denoting the last time when the route sets were computed for the gateway */ readonly lastComputedTime?: string; /** * Timestamp denoting the next eligible time to re-compute the route sets for the gateway */ readonly nextEligibleComputeTime?: string; /** * Version for the route set */ readonly routeSetVersion?: string; /** * List of Gateway Route Sets */ readonly routeSets?: outputs.network.GatewayRouteSetResponse[]; } /** * This operation retrieves the route set information for an Express Route Gateway based on their resiliency * * Uses Azure REST API version 2024-07-01. * * Other available API versions: 2024-10-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 getVirtualNetworkGatewayRoutesInformationOutput(args: GetVirtualNetworkGatewayRoutesInformationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVirtualNetworkGatewayRoutesInformationResult>; export interface GetVirtualNetworkGatewayRoutesInformationOutputArgs { /** * Attempt to recalculate the Route Sets Information for the gateway */ attemptRefresh?: pulumi.Input<boolean>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the virtual network gateway. */ virtualNetworkGatewayName: pulumi.Input<string>; }