@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
41 lines • 2.33 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.TemplateAssociation = exports.Template = exports.ServiceQuota = exports.getTemplatesOutput = exports.getTemplates = exports.getServiceQuotaOutput = exports.getServiceQuota = exports.getServiceOutput = exports.getService = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.getService = null;
exports.getServiceOutput = null;
utilities.lazyLoad(exports, ["getService", "getServiceOutput"], () => require("./getService"));
exports.getServiceQuota = null;
exports.getServiceQuotaOutput = null;
utilities.lazyLoad(exports, ["getServiceQuota", "getServiceQuotaOutput"], () => require("./getServiceQuota"));
exports.getTemplates = null;
exports.getTemplatesOutput = null;
utilities.lazyLoad(exports, ["getTemplates", "getTemplatesOutput"], () => require("./getTemplates"));
exports.ServiceQuota = null;
utilities.lazyLoad(exports, ["ServiceQuota"], () => require("./serviceQuota"));
exports.Template = null;
utilities.lazyLoad(exports, ["Template"], () => require("./template"));
exports.TemplateAssociation = null;
utilities.lazyLoad(exports, ["TemplateAssociation"], () => require("./templateAssociation"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:servicequotas/serviceQuota:ServiceQuota":
return new exports.ServiceQuota(name, undefined, { urn });
case "aws:servicequotas/template:Template":
return new exports.Template(name, undefined, { urn });
case "aws:servicequotas/templateAssociation:TemplateAssociation":
return new exports.TemplateAssociation(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "servicequotas/serviceQuota", _module);
pulumi.runtime.registerResourceModule("aws", "servicequotas/template", _module);
pulumi.runtime.registerResourceModule("aws", "servicequotas/templateAssociation", _module);
//# sourceMappingURL=index.js.map