UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

27 lines 1.19 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.UnitKind = exports.SaaS = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.SaaS = null; utilities.lazyLoad(exports, ["SaaS"], () => require("./saaS")); exports.UnitKind = null; utilities.lazyLoad(exports, ["UnitKind"], () => require("./unitKind")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "gcp:saasruntime/saaS:SaaS": return new exports.SaaS(name, undefined, { urn }); case "gcp:saasruntime/unitKind:UnitKind": return new exports.UnitKind(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("gcp", "saasruntime/saaS", _module); pulumi.runtime.registerResourceModule("gcp", "saasruntime/unitKind", _module); //# sourceMappingURL=index.js.map