UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

52 lines 1.71 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getPciOutput = exports.getPci = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../../utilities"); /** * 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 dataProxmoxVirtualEnvironmentHardwareMappingPci = example; * ``` */ function getPci(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("proxmoxve:Hardware/mapping/getPci:getPci", { "name": args.name, }, opts); } exports.getPci = getPci; /** * 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 dataProxmoxVirtualEnvironmentHardwareMappingPci = example; * ``` */ function getPciOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("proxmoxve:Hardware/mapping/getPci:getPci", { "name": args.name, }, opts); } exports.getPciOutput = getPciOutput; //# sourceMappingURL=getPci.js.map