UNPKG

@maienm/pulumi-lidarr

Version:

A Pulumi package for creating and managing Lidarr resources. Based on terraform-provider-lidarr: version v1.11.0

63 lines (62 loc) 1.3 kB
import * as pulumi from "@pulumi/pulumi"; /** * <!-- subcategory:Tags -->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<GetTagResult>; /** * 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; } /** * <!-- subcategory:Tags -->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<GetTagResult>; /** * A collection of arguments for invoking getTag. */ export interface GetTagOutputArgs { /** * Tag label. */ label: pulumi.Input<string>; }