UNPKG

@maienm/pulumi-readarr

Version:

A Pulumi package for creating and managing Readarr resources. Based on terraform-provider-readarr: version v2.1.0

47 lines 1.51 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getNotificationOutput = exports.getNotification = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * <!-- subcategory:Notifications -->Single Notification. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Notifications.getNotification({ * name: "Example", * }); * ``` */ function getNotification(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("readarr:Notifications/getNotification:getNotification", { "name": args.name, }, opts); } exports.getNotification = getNotification; /** * <!-- subcategory:Notifications -->Single Notification. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Notifications.getNotification({ * name: "Example", * }); * ``` */ function getNotificationOutput(args, opts) { return pulumi.output(args).apply((a) => getNotification(a, opts)); } exports.getNotificationOutput = getNotificationOutput; //# sourceMappingURL=getNotification.js.map