@maienm/pulumi-prowlarr
Version:
A Pulumi package for creating and managing Prowlarr resources. Based on terraform-provider-prowlarr: version v2.3.0
47 lines • 1.49 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.getSyncProfileOutput = exports.getSyncProfile = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* <!-- subcategory:Applications -->Single Sync Profile.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const test = prowlarr.Applications.getSyncProfile({
* name: "Example",
* });
* ```
*/
function getSyncProfile(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("prowlarr:Applications/getSyncProfile:getSyncProfile", {
"name": args.name,
}, opts);
}
exports.getSyncProfile = getSyncProfile;
/**
* <!-- subcategory:Applications -->Single Sync Profile.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const test = prowlarr.Applications.getSyncProfile({
* name: "Example",
* });
* ```
*/
function getSyncProfileOutput(args, opts) {
return pulumi.output(args).apply((a) => getSyncProfile(a, opts));
}
exports.getSyncProfileOutput = getSyncProfileOutput;
//# sourceMappingURL=getSyncProfile.js.map