import * as pulumi from "@pulumi/pulumi"; /** * Single available Secondary Album Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getSecondaryAlbumType({ * name: "Remix", * }); * ``` */ export declare function getSecondaryAlbumType(args: GetSecondaryAlbumTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecondaryAlbumType. */ export interface GetSecondaryAlbumTypeArgs { /** * SecondaryAlbumType. */ name: string; } /** * A collection of values returned by getSecondaryAlbumType. */ export interface GetSecondaryAlbumTypeResult { /** * SecondaryAlbumType ID. */ readonly id: number; /** * SecondaryAlbumType. */ readonly name: string; } /** * Single available Secondary Album Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getSecondaryAlbumType({ * name: "Remix", * }); * ``` */ export declare function getSecondaryAlbumTypeOutput(args: GetSecondaryAlbumTypeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getSecondaryAlbumType. */ export interface GetSecondaryAlbumTypeOutputArgs { /** * SecondaryAlbumType. */ name: pulumi.Input; }