@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
32 lines • 1.72 kB
JavaScript
// *** 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.ManagedZone = exports.EndpointAttachment = exports.Connection = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.Connection = null;
utilities.lazyLoad(exports, ["Connection"], () => require("./connection"));
exports.EndpointAttachment = null;
utilities.lazyLoad(exports, ["EndpointAttachment"], () => require("./endpointAttachment"));
exports.ManagedZone = null;
utilities.lazyLoad(exports, ["ManagedZone"], () => require("./managedZone"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "gcp:integrationconnectors/connection:Connection":
return new exports.Connection(name, undefined, { urn });
case "gcp:integrationconnectors/endpointAttachment:EndpointAttachment":
return new exports.EndpointAttachment(name, undefined, { urn });
case "gcp:integrationconnectors/managedZone:ManagedZone":
return new exports.ManagedZone(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("gcp", "integrationconnectors/connection", _module);
pulumi.runtime.registerResourceModule("gcp", "integrationconnectors/endpointAttachment", _module);
pulumi.runtime.registerResourceModule("gcp", "integrationconnectors/managedZone", _module);
//# sourceMappingURL=index.js.map
;