@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
49 lines • 1.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* > **Deprecated:** Use `proxmoxve.sdn/fabric.Ospf` instead. This data source will be removed in v1.0.
*
* OSPF Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster.
*/
export declare function getOspfLegacy(args: GetOspfLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetOspfLegacyResult>;
/**
* A collection of arguments for invoking getOspfLegacy.
*/
export interface GetOspfLegacyArgs {
/**
* The unique identifier of the SDN fabric.
*/
id: string;
}
/**
* A collection of values returned by getOspfLegacy.
*/
export interface GetOspfLegacyResult {
/**
* OSPF area. Either a IPv4 address or a 32-bit number. Gets validated in rust.
*/
readonly area: string;
/**
* The unique identifier of the SDN fabric.
*/
readonly id: string;
/**
* IPv4 prefix cidr for the fabric.
*/
readonly ipPrefix: string;
}
/**
* > **Deprecated:** Use `proxmoxve.sdn/fabric.Ospf` instead. This data source will be removed in v1.0.
*
* OSPF Fabric in Proxmox SDN. Fabrics in Proxmox VE SDN provide automated routing between nodes in a cluster.
*/
export declare function getOspfLegacyOutput(args: GetOspfLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOspfLegacyResult>;
/**
* A collection of arguments for invoking getOspfLegacy.
*/
export interface GetOspfLegacyOutputArgs {
/**
* The unique identifier of the SDN fabric.
*/
id: pulumi.Input<string>;
}
//# sourceMappingURL=getOspfLegacy.d.ts.map