UNPKG

@maienm/pulumi-lidarr

Version:

A Pulumi package for creating and managing Lidarr resources. Based on terraform-provider-lidarr: version v1.11.0

47 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.getMetadataOutput = exports.getMetadata = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * <!-- subcategory:Metadata -->Single Metadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Metadata.getMetadata({ * name: "Example", * }); * ``` */ function getMetadata(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("lidarr:Metadata/getMetadata:getMetadata", { "name": args.name, }, opts); } exports.getMetadata = getMetadata; /** * <!-- subcategory:Metadata -->Single Metadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Metadata.getMetadata({ * name: "Example", * }); * ``` */ function getMetadataOutput(args, opts) { return pulumi.output(args).apply((a) => getMetadata(a, opts)); } exports.getMetadataOutput = getMetadataOutput; //# sourceMappingURL=getMetadata.js.map