import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Interface OSPF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceOspf({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceOspf(args: GetInterfaceOspfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfaceOspf. */ export interface GetInterfaceOspfArgs { /** * A device name from the provider configuration. */ device?: string; name: string; /** * Interface type */ type: string; } /** * A collection of values returned by getInterfaceOspf. */ export interface GetInterfaceOspfResult { /** * Route cost of this interface */ readonly cost: number; /** * Interval after which a neighbor is declared dead */ readonly deadInterval: number; /** * A device name from the provider configuration. */ readonly device?: string; /** * Time between HELLO packets */ readonly helloInterval: number; /** * The path of the retrieved object. */ readonly id: string; /** * Message digest authentication password (key) */ readonly messageDigestKeys: outputs.GetInterfaceOspfMessageDigestKey[]; /** * Ignores the MTU in DBD packets */ readonly mtuIgnore: boolean; readonly name: string; /** * Specify OSPF broadcast multi-access network */ readonly networkTypeBroadcast: boolean; /** * Specify OSPF NBMA network */ readonly networkTypeNonBroadcast: boolean; /** * Specify OSPF point-to-multipoint network */ readonly networkTypePointToMultipoint: boolean; /** * Specify OSPF point-to-point network */ readonly networkTypePointToPoint: boolean; /** * Router priority */ readonly priority: number; readonly processIds: outputs.GetInterfaceOspfProcessId[]; /** * IP hops */ readonly ttlSecurityHops: number; /** * Interface type */ readonly type: string; } /** * This data source can read the Interface OSPF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceOspf({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceOspfOutput(args: GetInterfaceOspfOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfaceOspf. */ export interface GetInterfaceOspfOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; /** * Interface type */ type: pulumi.Input; }