@pulumi/ise
Version:
A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1
33 lines • 1.64 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.getDeviceGroupOutput = exports.getDeviceGroup = exports.getDeviceOutput = exports.getDevice = exports.DeviceGroup = exports.Device = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.Device = null;
utilities.lazyLoad(exports, ["Device"], () => require("./device"));
exports.DeviceGroup = null;
utilities.lazyLoad(exports, ["DeviceGroup"], () => require("./deviceGroup"));
exports.getDevice = null;
exports.getDeviceOutput = null;
utilities.lazyLoad(exports, ["getDevice", "getDeviceOutput"], () => require("./getDevice"));
exports.getDeviceGroup = null;
exports.getDeviceGroupOutput = null;
utilities.lazyLoad(exports, ["getDeviceGroup", "getDeviceGroupOutput"], () => require("./getDeviceGroup"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "ise:network/device:Device":
return new exports.Device(name, undefined, { urn });
case "ise:network/deviceGroup:DeviceGroup":
return new exports.DeviceGroup(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("ise", "network/device", _module);
pulumi.runtime.registerResourceModule("ise", "network/deviceGroup", _module);
//# sourceMappingURL=index.js.map