import * as pulumi from "@pulumi/pulumi"; /** * Notification Prowl resource. * For more information refer to [Notification](https://wiki.servarr.com/lidarr/settings#connect) and [Prowl](https://wiki.servarr.com/lidarr/supported#prowl). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@maienm/pulumi-lidarr"; * * const example = new lidarr.notifications.Prowl("example", { * apiKey: "APIKey", * includeHealthWarnings: false, * onApplicationUpdate: false, * onGrab: false, * onHealthIssue: false, * onReleaseImport: true, * onUpgrade: true, * priority: -2, * }); * ``` * * ## Import * * import using the API/UI ID * * ```sh * $ pulumi import lidarr:Notifications/prowl:Prowl example 1 * ``` */ export declare class Prowl extends pulumi.CustomResource { /** * Get an existing Prowl resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ProwlState, opts?: pulumi.CustomResourceOptions): Prowl; /** * Returns true if the given object is an instance of Prowl. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Prowl; /** * API key. */ readonly apiKey: pulumi.Output; /** * Include health warnings. */ readonly includeHealthWarnings: pulumi.Output; /** * NotificationProwl name. */ readonly name: pulumi.Output; /** * On album delete flag. */ readonly onAlbumDelete: pulumi.Output; /** * On application update flag. */ readonly onApplicationUpdate: pulumi.Output; /** * On artist delete flag. */ readonly onArtistDelete: pulumi.Output; /** * On grab flag. */ readonly onGrab: pulumi.Output; /** * On health issue flag. */ readonly onHealthIssue: pulumi.Output; /** * On health restored flag. */ readonly onHealthRestored: pulumi.Output; /** * On release import flag. */ readonly onReleaseImport: pulumi.Output; /** * On upgrade flag. */ readonly onUpgrade: pulumi.Output; /** * Priority.`-2` Very Low, `-1` Low, `0` Normal, `1` High, `2` Emergency. */ readonly priority: pulumi.Output; /** * List of associated tags. */ readonly tags: pulumi.Output; /** * Create a Prowl resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ProwlArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Prowl resources. */ export interface ProwlState { /** * API key. */ apiKey?: pulumi.Input; /** * Include health warnings. */ includeHealthWarnings?: pulumi.Input; /** * NotificationProwl name. */ name?: pulumi.Input; /** * On album delete flag. */ onAlbumDelete?: pulumi.Input; /** * On application update flag. */ onApplicationUpdate?: pulumi.Input; /** * On artist delete flag. */ onArtistDelete?: pulumi.Input; /** * On grab flag. */ onGrab?: pulumi.Input; /** * On health issue flag. */ onHealthIssue?: pulumi.Input; /** * On health restored flag. */ onHealthRestored?: pulumi.Input; /** * On release import flag. */ onReleaseImport?: pulumi.Input; /** * On upgrade flag. */ onUpgrade?: pulumi.Input; /** * Priority.`-2` Very Low, `-1` Low, `0` Normal, `1` High, `2` Emergency. */ priority?: pulumi.Input; /** * List of associated tags. */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a Prowl resource. */ export interface ProwlArgs { /** * API key. */ apiKey: pulumi.Input; /** * Include health warnings. */ includeHealthWarnings?: pulumi.Input; /** * NotificationProwl name. */ name?: pulumi.Input; /** * On album delete flag. */ onAlbumDelete?: pulumi.Input; /** * On application update flag. */ onApplicationUpdate?: pulumi.Input; /** * On artist delete flag. */ onArtistDelete?: pulumi.Input; /** * On grab flag. */ onGrab?: pulumi.Input; /** * On health issue flag. */ onHealthIssue?: pulumi.Input; /** * On health restored flag. */ onHealthRestored?: pulumi.Input; /** * On release import flag. */ onReleaseImport?: pulumi.Input; /** * On upgrade flag. */ onUpgrade?: pulumi.Input; /** * Priority.`-2` Very Low, `-1` Low, `0` Normal, `1` High, `2` Emergency. */ priority?: pulumi.Input; /** * List of associated tags. */ tags?: pulumi.Input[]>; }