mirror of https://github.com/pulumi/pulumi.git
26 lines
978 B
TypeScript
26 lines
978 B
TypeScript
// *** WARNING: this file was generated by test. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as utilities from "../../utilities";
|
|
|
|
// Export members:
|
|
export { ConfigGroupArgs } from "./configGroup";
|
|
export type ConfigGroup = import("./configGroup").ConfigGroup;
|
|
export const ConfigGroup: typeof import("./configGroup").ConfigGroup = null as any;
|
|
utilities.lazyLoad(exports, ["ConfigGroup"], () => require("./configGroup"));
|
|
|
|
|
|
const _module = {
|
|
version: utilities.getVersion(),
|
|
construct: (name: string, type: string, urn: string): pulumi.Resource => {
|
|
switch (type) {
|
|
case "kubernetes:yaml/v2:ConfigGroup":
|
|
return new ConfigGroup(name, <any>undefined, { urn })
|
|
default:
|
|
throw new Error(`unknown resource type ${type}`);
|
|
}
|
|
},
|
|
};
|
|
pulumi.runtime.registerResourceModule("kubernetes", "yaml/v2", _module)
|