import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the OSPF VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getOspfVrf({ * processId: 2, * vrf: "VRF1", * }); * ``` */ export declare function getOspfVrf(args: GetOspfVrfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOspfVrf. */ export interface GetOspfVrfArgs { /** * A device name from the provider configuration. */ device?: string; /** * Process ID */ processId: number; /** * VPN Routing/Forwarding Instance */ vrf: string; } /** * A collection of values returned by getOspfVrf. */ export interface GetOspfVrfResult { /** * OSPF area parameters */ readonly areas: outputs.GetOspfVrfArea[]; /** * Enable BFD on all interfaces */ readonly bfdAllInterfaces: boolean; /** * Distribute a default route */ readonly defaultInformationOriginate: boolean; /** * Always advertise default route */ readonly defaultInformationOriginateAlways: boolean; /** * Set metric of redistributed routes */ readonly defaultMetric: number; /** * A device name from the provider configuration. */ readonly device?: string; /** * Administrative distance */ readonly distance: number; /** * OSPF domain-tag */ readonly domainTag: number; /** * The path of the retrieved object. */ readonly id: string; /** * Configure LDP automatic configuration */ readonly mplsLdpAutoconfig: boolean; /** * Configure LDP-IGP Synchronization */ readonly mplsLdpSync: boolean; /** * Specify a neighbor router */ readonly neighbors: outputs.GetOspfVrfNeighbor[]; /** * Enable routing on an IP network */ readonly networks: outputs.GetOspfVrfNetwork[]; /** * Suppress routing updates on all interfaces */ readonly passiveInterfaceDefault: boolean; /** * OSPF topology priority */ readonly priority: number; /** * Process ID */ readonly processId: number; /** * Override configured router identifier (peers will reset) */ readonly routerId: string; /** * Shutdown the OSPF protocol under the current instance */ readonly shutdown: boolean; /** * Configure IP address summaries */ readonly summaryAddresses: outputs.GetOspfVrfSummaryAddress[]; /** * VPN Routing/Forwarding Instance */ readonly vrf: string; } /** * This data source can read the OSPF VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getOspfVrf({ * processId: 2, * vrf: "VRF1", * }); * ``` */ export declare function getOspfVrfOutput(args: GetOspfVrfOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getOspfVrf. */ export interface GetOspfVrfOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * Process ID */ processId: pulumi.Input; /** * VPN Routing/Forwarding Instance */ vrf: pulumi.Input; }