import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Interface OSPFv3 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceOspfv3({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceOspfv3(args: GetInterfaceOspfv3Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfaceOspfv3. */ export interface GetInterfaceOspfv3Args { /** * A device name from the provider configuration. */ device?: string; name: string; /** * Interface type */ type: string; } /** * A collection of values returned by getInterfaceOspfv3. */ export interface GetInterfaceOspfv3Result { /** * Static route cost value of the interface */ readonly cost: number; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; 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; /** * Interface type */ readonly type: string; } /** * This data source can read the Interface OSPFv3 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfaceOspfv3({ * name: "1", * type: "Loopback", * }); * ``` */ export declare function getInterfaceOspfv3Output(args: GetInterfaceOspfv3OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfaceOspfv3. */ export interface GetInterfaceOspfv3OutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; /** * Interface type */ type: pulumi.Input; }