UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

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