@maienm/pulumi-prowlarr
Version:
A Pulumi package for creating and managing Prowlarr resources. Based on terraform-provider-prowlarr: version v2.3.0
41 lines • 1.44 kB
JavaScript
;
// *** 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.getNotificationsOutput = exports.getNotifications = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* <!-- subcategory:Notifications -->List all available Notifications.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const example = prowlarr.Notifications.getNotifications({});
* ```
*/
function getNotifications(opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("prowlarr:Notifications/getNotifications:getNotifications", {}, opts);
}
exports.getNotifications = getNotifications;
/**
* <!-- subcategory:Notifications -->List all available Notifications.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const example = prowlarr.Notifications.getNotifications({});
* ```
*/
function getNotificationsOutput(opts) {
return pulumi.output(getNotifications(opts));
}
exports.getNotificationsOutput = getNotificationsOutput;
//# sourceMappingURL=getNotifications.js.map