UNPKG

@maienm/pulumi-readarr

Version:

A Pulumi package for creating and managing Readarr resources. Based on terraform-provider-readarr: version v2.1.0

72 lines (71 loc) 1.78 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * <!-- subcategory:Profiles -->Single Custom Format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Profiles.getCustomFormat({ * name: "Example", * }); * ``` */ export declare function getCustomFormat(args: GetCustomFormatArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomFormatResult>; /** * 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[]; } /** * <!-- subcategory:Profiles -->Single Custom Format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Profiles.getCustomFormat({ * name: "Example", * }); * ``` */ export declare function getCustomFormatOutput(args: GetCustomFormatOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCustomFormatResult>; /** * A collection of arguments for invoking getCustomFormat. */ export interface GetCustomFormatOutputArgs { /** * Specification name. */ name: pulumi.Input<string>; }