UNPKG

@muhlba91/pulumi-proxmoxve

Version:

A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.

45 lines 1.31 kB
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<GetOspfResult>; /** * 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<GetOspfResult>; /** * A collection of arguments for invoking getOspf. */ export interface GetOspfOutputArgs { /** * The unique identifier of the SDN fabric. */ id: pulumi.Input<string>; } //# sourceMappingURL=getOspf.d.ts.map