@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
57 lines • 1.86 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* > **Deprecated:** Use `proxmoxve.sdn/fabric.Openfabric` instead. This data source will be removed in v1.0.
*
* OpenFabric Fabric 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.
*/
id: string;
}
/**
* A collection of values returned by getOpenfabricLegacy.
*/
export interface GetOpenfabricLegacyResult {
/**
* 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;
}
/**
* > **Deprecated:** Use `proxmoxve.sdn/fabric.Openfabric` instead. This data source will be removed in v1.0.
*
* OpenFabric Fabric 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.
*/
id: pulumi.Input<string>;
}
//# sourceMappingURL=getOpenfabricLegacy.d.ts.map