UNPKG

@maienm/pulumi-prowlarr

Version:

A Pulumi package for creating and managing Prowlarr resources. Based on terraform-provider-prowlarr: version v2.3.0

42 lines (41 loc) 1.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * <!-- 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({}); * ``` */ export declare function getNotifications(opts?: pulumi.InvokeOptions): Promise<GetNotificationsResult>; /** * A collection of values returned by getNotifications. */ export interface GetNotificationsResult { /** * The ID of this resource. */ readonly id: string; /** * Notification list. */ readonly notifications: outputs.Notifications.GetNotificationsNotification[]; } /** * <!-- 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({}); * ``` */ export declare function getNotificationsOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetNotificationsResult>;