mirror of https://github.com/pulumi/pulumi.git
66 lines
2.6 KiB
TypeScript
66 lines
2.6 KiB
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 { ArgFunctionArgs, ArgFunctionResult, ArgFunctionOutputArgs } from "./argFunction";
|
|
export const argFunction: typeof import("./argFunction").argFunction = null as any;
|
|
export const argFunctionOutput: typeof import("./argFunction").argFunctionOutput = null as any;
|
|
utilities.lazyLoad(exports, ["argFunction","argFunctionOutput"], () => require("./argFunction"));
|
|
|
|
export { CatArgs } from "./cat";
|
|
export type Cat = import("./cat").Cat;
|
|
export const Cat: typeof import("./cat").Cat = null as any;
|
|
utilities.lazyLoad(exports, ["Cat"], () => require("./cat"));
|
|
|
|
export { ComponentArgs } from "./component";
|
|
export type Component = import("./component").Component;
|
|
export const Component: typeof import("./component").Component = null as any;
|
|
utilities.lazyLoad(exports, ["Component"], () => require("./component"));
|
|
|
|
export { ProviderArgs } from "./provider";
|
|
export type Provider = import("./provider").Provider;
|
|
export const Provider: typeof import("./provider").Provider = null as any;
|
|
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
|
|
export { WorkloadArgs } from "./workload";
|
|
export type Workload = import("./workload").Workload;
|
|
export const Workload: typeof import("./workload").Workload = null as any;
|
|
utilities.lazyLoad(exports, ["Workload"], () => require("./workload"));
|
|
|
|
|
|
// Export sub-modules:
|
|
import * as types from "./types";
|
|
|
|
export {
|
|
types,
|
|
};
|
|
|
|
const _module = {
|
|
version: utilities.getVersion(),
|
|
construct: (name: string, type: string, urn: string): pulumi.Resource => {
|
|
switch (type) {
|
|
case "example::Cat":
|
|
return new Cat(name, <any>undefined, { urn })
|
|
case "example::Component":
|
|
return new Component(name, <any>undefined, { urn })
|
|
case "example::Workload":
|
|
return new Workload(name, <any>undefined, { urn })
|
|
default:
|
|
throw new Error(`unknown resource type ${type}`);
|
|
}
|
|
},
|
|
};
|
|
pulumi.runtime.registerResourceModule("example", "", _module)
|
|
pulumi.runtime.registerResourcePackage("example", {
|
|
version: utilities.getVersion(),
|
|
constructProvider: (name: string, type: string, urn: string): pulumi.ProviderResource => {
|
|
if (type !== "pulumi:providers:example") {
|
|
throw new Error(`unknown provider type ${type}`);
|
|
}
|
|
return new Provider(name, <any>undefined, { urn });
|
|
},
|
|
});
|