UNPKG

@maienm/pulumi-prowlarr

Version:

A Pulumi package for creating and managing Prowlarr resources. Based on terraform-provider-prowlarr: version v2.3.0

41 lines 1.42 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.getSyncProfilesOutput = exports.getSyncProfiles = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * <!-- subcategory:Applications -->List all available Sync Profiles. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as prowlarr from "@pulumi/prowlarr"; * * const example = prowlarr.Applications.getSyncProfiles({}); * ``` */ function getSyncProfiles(opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("prowlarr:Applications/getSyncProfiles:getSyncProfiles", {}, opts); } exports.getSyncProfiles = getSyncProfiles; /** * <!-- subcategory:Applications -->List all available Sync Profiles. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as prowlarr from "@pulumi/prowlarr"; * * const example = prowlarr.Applications.getSyncProfiles({}); * ``` */ function getSyncProfilesOutput(opts) { return pulumi.output(getSyncProfiles(opts)); } exports.getSyncProfilesOutput = getSyncProfilesOutput; //# sourceMappingURL=getSyncProfiles.js.map