UNPKG

@maienm/pulumi-readarr

Version:

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

53 lines (52 loc) 1.18 kB
import * as pulumi from "@pulumi/pulumi"; /** * <!-- subcategory:Indexers -->Indexer Config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Indexers.getConfig({}); * ``` */ export declare function getConfig(opts?: pulumi.InvokeOptions): Promise<GetConfigResult>; /** * A collection of values returned by getConfig. */ export interface GetConfigResult { /** * Delay Profile ID. */ readonly id: number; /** * Maximum size. */ readonly maximumSize: number; /** * Minimum age. */ readonly minimumAge: number; /** * Retention. */ readonly retention: number; /** * RSS sync interval. */ readonly rssSyncInterval: number; } /** * <!-- subcategory:Indexers -->Indexer Config. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const example = readarr.Indexers.getConfig({}); * ``` */ export declare function getConfigOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetConfigResult>;