@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.getTagDetailsOutput = exports.getTagDetails = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* <!-- subcategory:Tag -->Single Tag with its associated resources.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const example = prowlarr.Tag.getTagDetails({
* label: "example",
* });
* ```
*/
function getTagDetails(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("prowlarr:Tag/getTagDetails:getTagDetails", {
"label": args.label,
}, opts);
}
exports.getTagDetails = getTagDetails;
/**
* <!-- subcategory:Tag -->Single Tag with its associated resources.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as prowlarr from "@pulumi/prowlarr";
*
* const example = prowlarr.Tag.getTagDetails({
* label: "example",
* });
* ```
*/
function getTagDetailsOutput(args, opts) {
return pulumi.output(args).apply((a) => getTagDetails(a, opts));
}
exports.getTagDetailsOutput = getTagDetailsOutput;
//# sourceMappingURL=getTagDetails.js.map