@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
53 lines • 3.29 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.getDbSubnetGroupOutput = exports.getDbSubnetGroup = exports.getDbParameterGroupOutput = exports.getDbParameterGroup = exports.getDbInstanceOutput = exports.getDbInstance = exports.getDbClusterParameterGroupOutput = exports.getDbClusterParameterGroup = exports.getDbClusterOutput = exports.getDbCluster = exports.DbSubnetGroup = exports.DbParameterGroup = exports.DbInstance = exports.DbClusterParameterGroup = exports.DbCluster = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.DbCluster = null;
utilities.lazyLoad(exports, ["DbCluster"], () => require("./dbCluster"));
exports.DbClusterParameterGroup = null;
utilities.lazyLoad(exports, ["DbClusterParameterGroup"], () => require("./dbClusterParameterGroup"));
exports.DbInstance = null;
utilities.lazyLoad(exports, ["DbInstance"], () => require("./dbInstance"));
exports.DbParameterGroup = null;
utilities.lazyLoad(exports, ["DbParameterGroup"], () => require("./dbParameterGroup"));
exports.DbSubnetGroup = null;
utilities.lazyLoad(exports, ["DbSubnetGroup"], () => require("./dbSubnetGroup"));
exports.getDbCluster = null;
exports.getDbClusterOutput = null;
utilities.lazyLoad(exports, ["getDbCluster", "getDbClusterOutput"], () => require("./getDbCluster"));
exports.getDbClusterParameterGroup = null;
exports.getDbClusterParameterGroupOutput = null;
utilities.lazyLoad(exports, ["getDbClusterParameterGroup", "getDbClusterParameterGroupOutput"], () => require("./getDbClusterParameterGroup"));
exports.getDbInstance = null;
exports.getDbInstanceOutput = null;
utilities.lazyLoad(exports, ["getDbInstance", "getDbInstanceOutput"], () => require("./getDbInstance"));
exports.getDbParameterGroup = null;
exports.getDbParameterGroupOutput = null;
utilities.lazyLoad(exports, ["getDbParameterGroup", "getDbParameterGroupOutput"], () => require("./getDbParameterGroup"));
exports.getDbSubnetGroup = null;
exports.getDbSubnetGroupOutput = null;
utilities.lazyLoad(exports, ["getDbSubnetGroup", "getDbSubnetGroupOutput"], () => require("./getDbSubnetGroup"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws-native:neptune:DbCluster":
return new exports.DbCluster(name, undefined, { urn });
case "aws-native:neptune:DbClusterParameterGroup":
return new exports.DbClusterParameterGroup(name, undefined, { urn });
case "aws-native:neptune:DbInstance":
return new exports.DbInstance(name, undefined, { urn });
case "aws-native:neptune:DbParameterGroup":
return new exports.DbParameterGroup(name, undefined, { urn });
case "aws-native:neptune:DbSubnetGroup":
return new exports.DbSubnetGroup(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws-native", "neptune", _module);
//# sourceMappingURL=index.js.map