UNPKG

@maienm/pulumi-readarr

Version:

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

95 lines (94 loc) 2.14 kB
import * as pulumi from "@pulumi/pulumi"; /** * <!-- subcategory:Profiles -->Single Metadata Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Metadata.getProfile({ * name: "Example", * }); * ``` */ export declare function getProfile(args: GetProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileResult>; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileArgs { /** * Metadata Profile name. */ name: string; } /** * A collection of values returned by getProfile. */ export interface GetProfileResult { /** * Allowed languages. Comma separated list of ISO 639-3 language codes. */ readonly allowedLanguages: string; /** * Metadata Profile ID. */ readonly id: number; /** * Terms to ignore. */ readonly ignoreds: string[]; /** * Minimum pages. */ readonly minPages: number; /** * Minimum popularity. */ readonly minPopularity: number; /** * Metadata Profile name. */ readonly name: string; /** * Skip missing date. */ readonly skipMissingDate: boolean; /** * Skip missing ISBN. */ readonly skipMissingIsbn: boolean; /** * Skip parts and sets. */ readonly skipPartsAndSets: boolean; /** * Skip secondary series books. */ readonly skipSeriesSecondary: boolean; } /** * <!-- subcategory:Profiles -->Single Metadata Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Metadata.getProfile({ * name: "Example", * }); * ``` */ export declare function getProfileOutput(args: GetProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetProfileResult>; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileOutputArgs { /** * Metadata Profile name. */ name: pulumi.Input<string>; }