import * as pulumi from "@pulumi/pulumi"; /** * OSPF Fabric Node 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. */ fabricId: string; /** * The unique identifier of the SDN fabric node. */ nodeId: string; } /** * A collection of values returned by getOspf. */ export interface GetOspfResult { /** * The unique identifier of the SDN fabric. */ readonly fabricId: string; /** * The unique identifier of the SDN fabric node, in the format \n\n/\n\n. */ readonly id: string; /** * Set of interface names associated with the fabric node. */ readonly interfaceNames: string[]; /** * IPv4 address for the fabric node. */ readonly ip: string; /** * The unique identifier of the SDN fabric node. */ readonly nodeId: string; } /** * OSPF Fabric Node 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. */ fabricId: pulumi.Input; /** * The unique identifier of the SDN fabric node. */ nodeId: pulumi.Input; } //# sourceMappingURL=getOspf.d.ts.map