UNPKG

@pulumiverse/grafana

Version:

A Pulumi package for creating and managing grafana.

30 lines 1.06 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getAppOutput = exports.getApp = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage */ function getApp(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("grafana:frontendObservability/getApp:getApp", { "name": args.name, "stackId": args.stackId, }, opts); } exports.getApp = getApp; /** * ## Example Usage */ function getAppOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("grafana:frontendObservability/getApp:getApp", { "name": args.name, "stackId": args.stackId, }, opts); } exports.getAppOutput = getAppOutput; //# sourceMappingURL=getApp.js.map