import * as pulumi from "@pulumi/pulumi"; /** * Notification Kodi resource. * For more information refer to [Notification](https://wiki.servarr.com/lidarr/settings#connect) and [Kodi](https://wiki.servarr.com/lidarr/supported#xbmc). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@maienm/pulumi-lidarr"; * * const example = new lidarr.notifications.Kodi("example", { * host: "http://kodi.com", * includeHealthWarnings: false, * notify: true, * onApplicationUpdate: false, * onGrab: false, * onHealthIssue: false, * onReleaseImport: true, * onRename: false, * onTrackRetag: false, * onUpgrade: false, * password: "MyPass", * port: 8080, * username: "User", * }); * ``` * * ## Import * * import using the API/UI ID * * ```sh * $ pulumi import lidarr:Notifications/kodi:Kodi example 1 * ``` */ export declare class Kodi extends pulumi.CustomResource { /** * Get an existing Kodi 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?: KodiState, opts?: pulumi.CustomResourceOptions): Kodi; /** * Returns true if the given object is an instance of Kodi. 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 Kodi; /** * Always update flag. */ readonly alwaysUpdate: pulumi.Output; /** * Clean library flag. */ readonly cleanLibrary: pulumi.Output; /** * Display time. */ readonly displayTime: pulumi.Output; /** * Host. */ readonly host: pulumi.Output; /** * Include health warnings. */ readonly includeHealthWarnings: pulumi.Output; /** * NotificationKodi name. */ readonly name: pulumi.Output; /** * Notification flag. */ readonly notify: pulumi.Output; /** * On application update flag. */ readonly onApplicationUpdate: 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 rename flag. */ readonly onRename: pulumi.Output; /** * On track retag flag. */ readonly onTrackRetag: pulumi.Output; /** * On upgrade flag. */ readonly onUpgrade: pulumi.Output; /** * Password. */ readonly password: pulumi.Output; /** * Port. */ readonly port: pulumi.Output; /** * List of associated tags. */ readonly tags: pulumi.Output; /** * Update library flag. */ readonly updateLibrary: pulumi.Output; /** * Use SSL flag. */ readonly useSsl: pulumi.Output; /** * Username. */ readonly username: pulumi.Output; /** * Create a Kodi 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: KodiArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Kodi resources. */ export interface KodiState { /** * Always update flag. */ alwaysUpdate?: pulumi.Input; /** * Clean library flag. */ cleanLibrary?: pulumi.Input; /** * Display time. */ displayTime?: pulumi.Input; /** * Host. */ host?: pulumi.Input; /** * Include health warnings. */ includeHealthWarnings?: pulumi.Input; /** * NotificationKodi name. */ name?: pulumi.Input; /** * Notification flag. */ notify?: pulumi.Input; /** * On application update flag. */ onApplicationUpdate?: 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 rename flag. */ onRename?: pulumi.Input; /** * On track retag flag. */ onTrackRetag?: pulumi.Input; /** * On upgrade flag. */ onUpgrade?: pulumi.Input; /** * Password. */ password?: pulumi.Input; /** * Port. */ port?: pulumi.Input; /** * List of associated tags. */ tags?: pulumi.Input[]>; /** * Update library flag. */ updateLibrary?: pulumi.Input; /** * Use SSL flag. */ useSsl?: pulumi.Input; /** * Username. */ username?: pulumi.Input; } /** * The set of arguments for constructing a Kodi resource. */ export interface KodiArgs { /** * Always update flag. */ alwaysUpdate?: pulumi.Input; /** * Clean library flag. */ cleanLibrary?: pulumi.Input; /** * Display time. */ displayTime?: pulumi.Input; /** * Host. */ host: pulumi.Input; /** * Include health warnings. */ includeHealthWarnings?: pulumi.Input; /** * NotificationKodi name. */ name?: pulumi.Input; /** * Notification flag. */ notify?: pulumi.Input; /** * On application update flag. */ onApplicationUpdate?: 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 rename flag. */ onRename?: pulumi.Input; /** * On track retag flag. */ onTrackRetag?: pulumi.Input; /** * On upgrade flag. */ onUpgrade?: pulumi.Input; /** * Password. */ password?: pulumi.Input; /** * Port. */ port: pulumi.Input; /** * List of associated tags. */ tags?: pulumi.Input[]>; /** * Update library flag. */ updateLibrary?: pulumi.Input; /** * Use SSL flag. */ useSsl?: pulumi.Input; /** * Username. */ username?: pulumi.Input; }