import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Single Custom Format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getCustomFormat({ * name: "Example", * }); * ``` */ export declare function getCustomFormat(args: GetCustomFormatArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomFormat. */ export interface GetCustomFormatArgs { /** * Specification name. */ name: string; } /** * A collection of values returned by getCustomFormat. */ export interface GetCustomFormatResult { /** * Custom Format ID. */ readonly id: number; /** * Include custom format when renaming flag. */ readonly includeCustomFormatWhenRenaming: boolean; /** * Custom Format name. */ readonly name: string; /** * Specifications. */ readonly specifications: outputs.Profiles.GetCustomFormatSpecification[]; } /** * Single Custom Format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Profiles.getCustomFormat({ * name: "Example", * }); * ``` */ export declare function getCustomFormatOutput(args: GetCustomFormatOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomFormat. */ export interface GetCustomFormatOutputArgs { /** * Specification name. */ name: pulumi.Input; }