import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getRouterOspf(args?: GetRouterOspfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetRouterOspf. */ export interface GetRouterOspfArgs { vdomparam?: string; } /** * A collection of values returned by GetRouterOspf. */ export interface GetRouterOspfResult { readonly abrType: string; readonly areas: outputs.GetRouterOspfArea[]; readonly autoCostRefBandwidth: number; readonly bfd: string; readonly databaseOverflow: string; readonly databaseOverflowMaxLsas: number; readonly databaseOverflowTimeToRecover: number; readonly defaultInformationMetric: number; readonly defaultInformationMetricType: string; readonly defaultInformationOriginate: string; readonly defaultInformationRouteMap: string; readonly defaultMetric: number; readonly distance: number; readonly distanceExternal: number; readonly distanceInterArea: number; readonly distanceIntraArea: number; readonly distributeListIn: string; readonly distributeLists: outputs.GetRouterOspfDistributeList[]; readonly distributeRouteMapIn: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly logNeighbourChanges: string; readonly neighbors: outputs.GetRouterOspfNeighbor[]; readonly networks: outputs.GetRouterOspfNetwork[]; readonly ospfInterfaces: outputs.GetRouterOspfOspfInterface[]; readonly passiveInterfaces: outputs.GetRouterOspfPassiveInterface[]; readonly redistributes: outputs.GetRouterOspfRedistribute[]; readonly restartMode: string; readonly restartOnTopologyChange: string; readonly restartPeriod: number; readonly rfc1583Compatible: string; readonly routerId: string; readonly spfTimers: string; readonly summaryAddresses: outputs.GetRouterOspfSummaryAddress[]; readonly vdomparam?: string; } export declare function getRouterOspfOutput(args?: GetRouterOspfOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetRouterOspf. */ export interface GetRouterOspfOutputArgs { vdomparam?: pulumi.Input; }