import * as pulumi from "@pulumi/pulumi"; /** * Import List Exclusion resource. * For more information refer to [ImportListExclusions](https://wiki.servarr.com/lidarr/settings#list-exclusions) documentation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@maienm/pulumi-lidarr"; * * const example = new lidarr.importlists.Exclusion("example", { * artistName: "Queen", * foreignId: "0383dadf-2a4e-4d10-a46a-e9e041da8eb3", * }); * ``` * * ## Import * * import using the API/UI ID * * ```sh * $ pulumi import lidarr:ImportLists/exclusion:Exclusion example 10 * ``` */ export declare class Exclusion extends pulumi.CustomResource { /** * Get an existing Exclusion 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?: ExclusionState, opts?: pulumi.CustomResourceOptions): Exclusion; /** * Returns true if the given object is an instance of Exclusion. 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 Exclusion; /** * Artist to be excluded. */ readonly artistName: pulumi.Output; /** * Musicbrainz ID. */ readonly foreignId: pulumi.Output; /** * Create a Exclusion 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: ExclusionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Exclusion resources. */ export interface ExclusionState { /** * Artist to be excluded. */ artistName?: pulumi.Input; /** * Musicbrainz ID. */ foreignId?: pulumi.Input; } /** * The set of arguments for constructing a Exclusion resource. */ export interface ExclusionArgs { /** * Artist to be excluded. */ artistName: pulumi.Input; /** * Musicbrainz ID. */ foreignId: pulumi.Input; }