UNPKG

@pulumi/gcp

Version:

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

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