import * as pulumi from "@pulumi/pulumi"; /** * Single Metadata Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getMetadataProfile({ * name: "Example", * }); * ``` */ export declare function getMetadataProfile(args: GetMetadataProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMetadataProfile. */ export interface GetMetadataProfileArgs { /** * Metadata Profile name. */ name: string; } /** * A collection of values returned by getMetadataProfile. */ export interface GetMetadataProfileResult { /** * Metadata Profile ID. */ readonly id: number; /** * Metadata Profile name. */ readonly name: string; /** * Primary album types. */ readonly primaryAlbumTypes: number[]; /** * Release statuses. */ readonly releaseStatuses: number[]; /** * Secondary album types. */ readonly secondaryAlbumTypes: number[]; } /** * Single Metadata Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getMetadataProfile({ * name: "Example", * }); * ``` */ export declare function getMetadataProfileOutput(args: GetMetadataProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getMetadataProfile. */ export interface GetMetadataProfileOutputArgs { /** * Metadata Profile name. */ name: pulumi.Input; }