@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
78 lines • 2.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../../types/output";
/**
* 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.getPci({
* name: "example",
* });
* export const dataProxmoxHardwareMappingPci = example;
* ```
*/
export declare function getPci(args: GetPciArgs, opts?: pulumi.InvokeOptions): Promise<GetPciResult>;
/**
* A collection of arguments for invoking getPci.
*/
export interface GetPciArgs {
/**
* The name of this PCI hardware mapping.
*/
name: string;
}
/**
* A collection of values returned by getPci.
*/
export interface GetPciResult {
/**
* 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.GetPciMap[];
/**
* Indicates whether to use with mediated devices.
*/
readonly mediatedDevices: boolean;
/**
* The name of this PCI hardware mapping.
*/
readonly name: string;
}
/**
* 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.getPci({
* name: "example",
* });
* export const dataProxmoxHardwareMappingPci = example;
* ```
*/
export declare function getPciOutput(args: GetPciOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPciResult>;
/**
* A collection of arguments for invoking getPci.
*/
export interface GetPciOutputArgs {
/**
* The name of this PCI hardware mapping.
*/
name: pulumi.Input<string>;
}
//# sourceMappingURL=getPci.d.ts.map