@maienm/pulumi-readarr
Version:
A Pulumi package for creating and managing Readarr resources. Based on terraform-provider-readarr: version v2.1.0
41 lines • 1.3 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.getAuthorsOutput = exports.getAuthors = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* <!-- subcategory:Authors -->List all available Authors.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as readarr from "@pulumi/readarr";
*
* const example = readarr.Authors.getAuthors({});
* ```
*/
function getAuthors(opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("readarr:Authors/getAuthors:getAuthors", {}, opts);
}
exports.getAuthors = getAuthors;
/**
* <!-- subcategory:Authors -->List all available Authors.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as readarr from "@pulumi/readarr";
*
* const example = readarr.Authors.getAuthors({});
* ```
*/
function getAuthorsOutput(opts) {
return pulumi.output(getAuthors(opts));
}
exports.getAuthorsOutput = getAuthorsOutput;
//# sourceMappingURL=getAuthors.js.map