UNPKG

@pulumiverse/grafana

Version:

A Pulumi package for creating and managing grafana.

46 lines 1.41 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.getTeamOutput = exports.getTeam = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const exampleTeam = grafana.onCall.getTeam({ * name: "example_team", * }); * ``` */ function getTeam(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("grafana:onCall/getTeam:getTeam", { "name": args.name, }, opts); } exports.getTeam = getTeam; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumi/grafana"; * * const exampleTeam = grafana.onCall.getTeam({ * name: "example_team", * }); * ``` */ function getTeamOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("grafana:onCall/getTeam:getTeam", { "name": args.name, }, opts); } exports.getTeamOutput = getTeamOutput; //# sourceMappingURL=getTeam.js.map