@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
27 lines • 1.26 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.Table = exports.Setting = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../../utilities");
exports.Setting = null;
utilities.lazyLoad(exports, ["Setting"], () => require("./setting"));
exports.Table = null;
utilities.lazyLoad(exports, ["Table"], () => require("./table"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "fortios:firewall/ipmacbinding/setting:Setting":
return new exports.Setting(name, undefined, { urn });
case "fortios:firewall/ipmacbinding/table:Table":
return new exports.Table(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("fortios", "firewall/ipmacbinding/setting", _module);
pulumi.runtime.registerResourceModule("fortios", "firewall/ipmacbinding/table", _module);
//# sourceMappingURL=index.js.map
;