@natzka-oss/pulumi-netbox
Version:
A Pulumi package for creating and managing Netbox cloud resources.
28 lines • 1.14 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.getContactOutput = exports.getContact = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
function getContact(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("netbox:tenancy/getContact:getContact", {
"description": args.description,
"name": args.name,
"slug": args.slug,
}, opts);
}
exports.getContact = getContact;
function getContactOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("netbox:tenancy/getContact:getContact", {
"description": args.description,
"name": args.name,
"slug": args.slug,
}, opts);
}
exports.getContactOutput = getContactOutput;
//# sourceMappingURL=getContact.js.map