UNPKG

@pulumi/vsphere

Version:

A Pulumi package for creating vsphere resources

30 lines 1.47 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getGuestOsCustomizationOutput = exports.getGuestOsCustomization = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The `vsphere.GuestOsCustomization` data source can be used to discover the * details about a customization specification for a guest operating system. */ function getGuestOsCustomization(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("vsphere:index/getGuestOsCustomization:getGuestOsCustomization", { "name": args.name, }, opts); } exports.getGuestOsCustomization = getGuestOsCustomization; /** * The `vsphere.GuestOsCustomization` data source can be used to discover the * details about a customization specification for a guest operating system. */ function getGuestOsCustomizationOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("vsphere:index/getGuestOsCustomization:getGuestOsCustomization", { "name": args.name, }, opts); } exports.getGuestOsCustomizationOutput = getGuestOsCustomizationOutput; //# sourceMappingURL=getGuestOsCustomization.js.map