import * as pulumi from "@pulumi/pulumi"; /** * OSPF Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOspf(args: GetOspfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOspf. */ export interface GetOspfArgs { /** * The unique identifier of the SDN fabric. */ id: string; } /** * A collection of values returned by getOspf. */ export interface GetOspfResult { /** * OSPF area. Either a IPv4 address or a 32-bit number. Gets validated in rust. */ readonly area: string; /** * The unique identifier of the SDN fabric. */ readonly id: string; /** * IPv4 prefix cidr for the fabric. */ readonly ipPrefix: string; } /** * OSPF Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOspfOutput(args: GetOspfOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOspf. */ export interface GetOspfOutputArgs { /** * The unique identifier of the SDN fabric. */ id: pulumi.Input; } //# sourceMappingURL=getOspf.d.ts.map