UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

69 lines 2.22 kB
import * as pulumi from "@pulumi/pulumi"; /** * > **Deprecated:** Use `proxmoxve.sdn/fabric/node.Openfabric` instead. This data source will be removed in v1.0. * * OpenFabric Fabric Node in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOpenfabricLegacy(args: GetOpenfabricLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetOpenfabricLegacyResult>; /** * A collection of arguments for invoking getOpenfabricLegacy. */ export interface GetOpenfabricLegacyArgs { /** * 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 getOpenfabricLegacy. */ export interface GetOpenfabricLegacyResult { /** * 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; } /** * > **Deprecated:** Use `proxmoxve.sdn/fabric/node.Openfabric` instead. This data source will be removed in v1.0. * * OpenFabric Fabric Node in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster. */ export declare function getOpenfabricLegacyOutput(args: GetOpenfabricLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOpenfabricLegacyResult>; /** * A collection of arguments for invoking getOpenfabricLegacy. */ export interface GetOpenfabricLegacyOutputArgs { /** * The unique identifier of the SDN fabric. */ fabricId: pulumi.Input<string>; /** * The unique identifier of the SDN fabric node. */ nodeId: pulumi.Input<string>; } //# sourceMappingURL=getOpenfabricLegacy.d.ts.map