UNPKG

@maienm/pulumi-readarr

Version:

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

47 lines 1.55 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getDownloadClientOutput = exports.getDownloadClient = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * <!-- subcategory:Download Clients -->Single Download Client. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const test = readarr.DownloadClients.getDownloadClient({ * name: "Example", * }); * ``` */ function getDownloadClient(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("readarr:DownloadClients/getDownloadClient:getDownloadClient", { "name": args.name, }, opts); } exports.getDownloadClient = getDownloadClient; /** * <!-- subcategory:Download Clients -->Single Download Client. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as readarr from "@pulumi/readarr"; * * const test = readarr.DownloadClients.getDownloadClient({ * name: "Example", * }); * ``` */ function getDownloadClientOutput(args, opts) { return pulumi.output(args).apply((a) => getDownloadClient(a, opts)); } exports.getDownloadClientOutput = getDownloadClientOutput; //# sourceMappingURL=getDownloadClient.js.map