import * as pulumi from "@pulumi/pulumi"; /** * Single Tag. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Tags.getTag({ * label: "example", * }); * ``` */ export declare function getTag(args: GetTagArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTag. */ export interface GetTagArgs { /** * Tag label. */ label: string; } /** * A collection of values returned by getTag. */ export interface GetTagResult { /** * Tag ID. */ readonly id: number; /** * Tag label. */ readonly label: string; } /** * Single Tag. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Tags.getTag({ * label: "example", * }); * ``` */ export declare function getTagOutput(args: GetTagOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getTag. */ export interface GetTagOutputArgs { /** * Tag label. */ label: pulumi.Input; }