import * as pulumi from "@pulumi/pulumi"; /** * Import List Lidarr resource. * For more information refer to [Import List](https://wiki.servarr.com/lidarr/settings#import-lists) and [Lidarr](https://wiki.servarr.com/lidarr/supported#lidarrimport). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@maienm/pulumi-lidarr"; * * const example = new lidarr.importlists.Lidarr("example", { * apiKey: "APIKey", * baseUrl: "http://127.0.0.1:8686", * enableAutomaticAdd: false, * metadataProfileId: 1, * monitorNewItems: "all", * profileIds: [ * 1, * 2, * ], * qualityProfileId: 1, * rootFolderPath: "/config", * shouldMonitor: "specificAlbum", * shouldSearch: false, * tagIds: [ * 1, * 2, * 3, * ], * tags: [ * 1, * 2, * 3, * ], * }); * ``` * * ## Import * * import using the API/UI ID * * ```sh * $ pulumi import lidarr:ImportLists/lidarr:Lidarr example 1 * ``` */ export declare class Lidarr extends pulumi.CustomResource { /** * Get an existing Lidarr 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?: LidarrState, opts?: pulumi.CustomResourceOptions): Lidarr; /** * Returns true if the given object is an instance of Lidarr. 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 Lidarr; /** * API key. */ readonly apiKey: pulumi.Output; /** * Base URL. */ readonly baseUrl: pulumi.Output; /** * Enable automatic add flag. */ readonly enableAutomaticAdd: pulumi.Output; /** * List order. */ readonly listOrder: pulumi.Output; /** * Metadata profile ID. */ readonly metadataProfileId: pulumi.Output; /** * Monitor new items. */ readonly monitorNewItems: pulumi.Output; /** * Import List name. */ readonly name: pulumi.Output; /** * Profile IDs. */ readonly profileIds: pulumi.Output; /** * Quality profile ID. */ readonly qualityProfileId: pulumi.Output; /** * Root folder path. */ readonly rootFolderPath: pulumi.Output; /** * Should monitor. */ readonly shouldMonitor: pulumi.Output; /** * Should monitor existing flag. */ readonly shouldMonitorExisting: pulumi.Output; /** * Should search flag. */ readonly shouldSearch: pulumi.Output; /** * Tag IDs. */ readonly tagIds: pulumi.Output; /** * List of associated tags. */ readonly tags: pulumi.Output; /** * Create a Lidarr 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: LidarrArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Lidarr resources. */ export interface LidarrState { /** * API key. */ apiKey?: pulumi.Input; /** * Base URL. */ baseUrl?: pulumi.Input; /** * Enable automatic add flag. */ enableAutomaticAdd?: pulumi.Input; /** * List order. */ listOrder?: pulumi.Input; /** * Metadata profile ID. */ metadataProfileId?: pulumi.Input; /** * Monitor new items. */ monitorNewItems?: pulumi.Input; /** * Import List name. */ name?: pulumi.Input; /** * Profile IDs. */ profileIds?: pulumi.Input[]>; /** * Quality profile ID. */ qualityProfileId?: pulumi.Input; /** * Root folder path. */ rootFolderPath?: pulumi.Input; /** * Should monitor. */ shouldMonitor?: pulumi.Input; /** * Should monitor existing flag. */ shouldMonitorExisting?: pulumi.Input; /** * Should search flag. */ shouldSearch?: pulumi.Input; /** * Tag IDs. */ tagIds?: pulumi.Input[]>; /** * List of associated tags. */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a Lidarr resource. */ export interface LidarrArgs { /** * API key. */ apiKey: pulumi.Input; /** * Base URL. */ baseUrl: pulumi.Input; /** * Enable automatic add flag. */ enableAutomaticAdd?: pulumi.Input; /** * List order. */ listOrder?: pulumi.Input; /** * Metadata profile ID. */ metadataProfileId?: pulumi.Input; /** * Monitor new items. */ monitorNewItems?: pulumi.Input; /** * Import List name. */ name?: pulumi.Input; /** * Profile IDs. */ profileIds?: pulumi.Input[]>; /** * Quality profile ID. */ qualityProfileId?: pulumi.Input; /** * Root folder path. */ rootFolderPath?: pulumi.Input; /** * Should monitor. */ shouldMonitor?: pulumi.Input; /** * Should monitor existing flag. */ shouldMonitorExisting?: pulumi.Input; /** * Should search flag. */ shouldSearch?: pulumi.Input; /** * Tag IDs. */ tagIds?: pulumi.Input[]>; /** * List of associated tags. */ tags?: pulumi.Input[]>; }