UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

53 lines 1.56 kB
import * as pulumi from "@pulumi/pulumi"; /** * OpenFabric Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOpenfabric(args: GetOpenfabricArgs, opts?: pulumi.InvokeOptions): Promise<GetOpenfabricResult>; /** * A collection of arguments for invoking getOpenfabric. */ export interface GetOpenfabricArgs { /** * The unique identifier of the SDN fabric. */ id: string; } /** * A collection of values returned by getOpenfabric. */ export interface GetOpenfabricResult { /** * The csnpInterval property for OpenFabric. */ readonly csnpInterval: number; /** * The helloInterval property for OpenFabric. */ readonly helloInterval: number; /** * The unique identifier of the SDN fabric. */ readonly id: string; /** * IPv6 prefix cidr for the fabric. */ readonly ip6Prefix: string; /** * IPv4 prefix cidr for the fabric. */ readonly ipPrefix: string; } /** * OpenFabric Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOpenfabricOutput(args: GetOpenfabricOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOpenfabricResult>; /** * A collection of arguments for invoking getOpenfabric. */ export interface GetOpenfabricOutputArgs { /** * The unique identifier of the SDN fabric. */ id: pulumi.Input<string>; } //# sourceMappingURL=getOpenfabric.d.ts.map