UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

65 lines 1.9 kB
import * as pulumi from "@pulumi/pulumi"; /** * OpenFabric Fabric Node 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. */ fabricId: string; /** * The unique identifier of the SDN fabric node. */ nodeId: string; } /** * A collection of values returned by getOpenfabric. */ export interface GetOpenfabricResult { /** * 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; /** * IPv6 address for the fabric node. */ readonly ip6: string; /** * The unique identifier of the SDN fabric node. */ readonly nodeId: string; } /** * OpenFabric Fabric Node 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. */ fabricId: pulumi.Input<string>; /** * The unique identifier of the SDN fabric node. */ nodeId: pulumi.Input<string>; } //# sourceMappingURL=getOpenfabric.d.ts.map