import * as pulumi from "@pulumi/pulumi"; /** * Single available Primary Album Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getPrimaryAlbumType({ * name: "Single", * }); * ``` */ export declare function getPrimaryAlbumType(args: GetPrimaryAlbumTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrimaryAlbumType. */ export interface GetPrimaryAlbumTypeArgs { /** * PrimaryAlbumType. */ name: string; } /** * A collection of values returned by getPrimaryAlbumType. */ export interface GetPrimaryAlbumTypeResult { /** * PrimaryAlbumType ID. */ readonly id: number; /** * PrimaryAlbumType. */ readonly name: string; } /** * Single available Primary Album Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getPrimaryAlbumType({ * name: "Single", * }); * ``` */ export declare function getPrimaryAlbumTypeOutput(args: GetPrimaryAlbumTypeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getPrimaryAlbumType. */ export interface GetPrimaryAlbumTypeOutputArgs { /** * PrimaryAlbumType. */ name: pulumi.Input; }