@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
82 lines • 2.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../../types/output";
/**
* > **Deprecated:** Use `proxmoxve.hardware/mapping.Pci` instead. This data source will be removed in v1.0.
*
* Retrieves a PCI hardware mapping from a Proxmox VE cluster.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const example = proxmoxve.hardware.mapping.getPciLegacy({
* name: "example",
* });
* export const dataProxmoxVirtualEnvironmentHardwareMappingPci = example;
* ```
*/
export declare function getPciLegacy(args: GetPciLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetPciLegacyResult>;
/**
* A collection of arguments for invoking getPciLegacy.
*/
export interface GetPciLegacyArgs {
/**
* The name of this PCI hardware mapping.
*/
name: string;
}
/**
* A collection of values returned by getPciLegacy.
*/
export interface GetPciLegacyResult {
/**
* The comment of this PCI hardware mapping.
*/
readonly comment: string;
/**
* The unique identifier of this PCI hardware mapping data source.
*/
readonly id: string;
/**
* The actual map of devices for the hardware mapping.
*/
readonly maps: outputs.hardware.mapping.GetPciLegacyMap[];
/**
* Indicates whether to use with mediated devices.
*/
readonly mediatedDevices: boolean;
/**
* The name of this PCI hardware mapping.
*/
readonly name: string;
}
/**
* > **Deprecated:** Use `proxmoxve.hardware/mapping.Pci` instead. This data source will be removed in v1.0.
*
* Retrieves a PCI hardware mapping from a Proxmox VE cluster.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const example = proxmoxve.hardware.mapping.getPciLegacy({
* name: "example",
* });
* export const dataProxmoxVirtualEnvironmentHardwareMappingPci = example;
* ```
*/
export declare function getPciLegacyOutput(args: GetPciLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPciLegacyResult>;
/**
* A collection of arguments for invoking getPciLegacy.
*/
export interface GetPciLegacyOutputArgs {
/**
* The name of this PCI hardware mapping.
*/
name: pulumi.Input<string>;
}
//# sourceMappingURL=getPciLegacy.d.ts.map