@maienm/pulumi-lidarr
Version:
A Pulumi package for creating and managing Lidarr resources. Based on terraform-provider-lidarr: version v1.11.0
41 lines • 1.47 kB
JavaScript
;
// *** 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.getDownloadClientsOutput = exports.getDownloadClients = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* <!-- subcategory:Download Clients -->List all available DownloadClients.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as lidarr from "@pulumi/lidarr";
*
* const example = lidarr.DownloadClients.getDownloadClients({});
* ```
*/
function getDownloadClients(opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("lidarr:DownloadClients/getDownloadClients:getDownloadClients", {}, opts);
}
exports.getDownloadClients = getDownloadClients;
/**
* <!-- subcategory:Download Clients -->List all available DownloadClients.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as lidarr from "@pulumi/lidarr";
*
* const example = lidarr.DownloadClients.getDownloadClients({});
* ```
*/
function getDownloadClientsOutput(opts) {
return pulumi.output(getDownloadClients(opts));
}
exports.getDownloadClientsOutput = getDownloadClientsOutput;
//# sourceMappingURL=getDownloadClients.js.map