UNPKG

@muhlba91/pulumi-proxmoxve

Version:

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

50 lines 1.75 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.getVm2Output = exports.getVm2 = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * !> **DO NOT USE** * This is an experimental implementation of a Proxmox VM datasource using Plugin Framework. */ function getVm2(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("proxmoxve:index/getVm2:getVm2", { "clone": args.clone, "cpu": args.cpu, "description": args.description, "id": args.id, "name": args.name, "nodeName": args.nodeName, "rng": args.rng, "tags": args.tags, "template": args.template, "timeouts": args.timeouts, "vga": args.vga, }, opts); } exports.getVm2 = getVm2; /** * !> **DO NOT USE** * This is an experimental implementation of a Proxmox VM datasource using Plugin Framework. */ function getVm2Output(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("proxmoxve:index/getVm2:getVm2", { "clone": args.clone, "cpu": args.cpu, "description": args.description, "id": args.id, "name": args.name, "nodeName": args.nodeName, "rng": args.rng, "tags": args.tags, "template": args.template, "timeouts": args.timeouts, "vga": args.vga, }, opts); } exports.getVm2Output = getVm2Output; //# sourceMappingURL=getVm2.js.map