@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
27 lines • 1.23 kB
JavaScript
;
// *** 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.DeviceGroup = exports.Device = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.Device = null;
utilities.lazyLoad(exports, ["Device"], () => require("./device"));
exports.DeviceGroup = null;
utilities.lazyLoad(exports, ["DeviceGroup"], () => require("./deviceGroup"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "f5bigip:cm/device:Device":
return new exports.Device(name, undefined, { urn });
case "f5bigip:cm/deviceGroup:DeviceGroup":
return new exports.DeviceGroup(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("f5bigip", "cm/device", _module);
pulumi.runtime.registerResourceModule("f5bigip", "cm/deviceGroup", _module);
//# sourceMappingURL=index.js.map