30 lines
1.6 KiB
JavaScript
30 lines
1.6 KiB
JavaScript
"use strict";
|
|
// *** WARNING: this file was generated by crd2pulumi. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BackendTLSPolicyPatch = exports.BackendTLSPolicyList = exports.BackendTLSPolicy = void 0;
|
|
const pulumi = require("@pulumi/pulumi");
|
|
const utilities = require("../../utilities");
|
|
exports.BackendTLSPolicy = null;
|
|
utilities.lazyLoad(exports, ["BackendTLSPolicy"], () => require("./backendTLSPolicy"));
|
|
exports.BackendTLSPolicyList = null;
|
|
utilities.lazyLoad(exports, ["BackendTLSPolicyList"], () => require("./backendTLSPolicyList"));
|
|
exports.BackendTLSPolicyPatch = null;
|
|
utilities.lazyLoad(exports, ["BackendTLSPolicyPatch"], () => require("./backendTLSPolicyPatch"));
|
|
const _module = {
|
|
version: utilities.getVersion(),
|
|
construct: (name, type, urn) => {
|
|
switch (type) {
|
|
case "kubernetes:gateway.networking.k8s.io/v1alpha3:BackendTLSPolicy":
|
|
return new exports.BackendTLSPolicy(name, undefined, { urn });
|
|
case "kubernetes:gateway.networking.k8s.io/v1alpha3:BackendTLSPolicyList":
|
|
return new exports.BackendTLSPolicyList(name, undefined, { urn });
|
|
case "kubernetes:gateway.networking.k8s.io/v1alpha3:BackendTLSPolicyPatch":
|
|
return new exports.BackendTLSPolicyPatch(name, undefined, { urn });
|
|
default:
|
|
throw new Error(`unknown resource type ${type}`);
|
|
}
|
|
},
|
|
};
|
|
pulumi.runtime.registerResourceModule("crds", "gateway.networking.k8s.io/v1alpha3", _module);
|