UNPKG

@natzka-oss/pulumi-netbox

Version:

A Pulumi package for creating and managing Netbox cloud resources.

28 lines 1.26 kB
"use strict"; // *** 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.getDeviceInterfacesOutput = exports.getDeviceInterfaces = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); function getDeviceInterfaces(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("netbox:dcim/getDeviceInterfaces:getDeviceInterfaces", { "filters": args.filters, "limit": args.limit, "nameRegex": args.nameRegex, }, opts); } exports.getDeviceInterfaces = getDeviceInterfaces; function getDeviceInterfacesOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("netbox:dcim/getDeviceInterfaces:getDeviceInterfaces", { "filters": args.filters, "limit": args.limit, "nameRegex": args.nameRegex, }, opts); } exports.getDeviceInterfacesOutput = getDeviceInterfacesOutput; //# sourceMappingURL=getDeviceInterfaces.js.map