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