UNPKG

@pulumiverse/grafana

Version:

A Pulumi package for creating and managing grafana.

50 lines 1.75 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.getEscalationChainOutput = exports.getEscalationChain = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/escalation_chains/) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumiverse/grafana"; * * const _default = grafana.onCall.getEscalationChain({ * name: "default", * }); * ``` */ function getEscalationChain(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("grafana:onCall/getEscalationChain:getEscalationChain", { "name": args.name, }, opts); } exports.getEscalationChain = getEscalationChain; /** * * [HTTP API](https://grafana.com/docs/oncall/latest/oncall-api-reference/escalation_chains/) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as grafana from "@pulumiverse/grafana"; * * const _default = grafana.onCall.getEscalationChain({ * name: "default", * }); * ``` */ function getEscalationChainOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("grafana:onCall/getEscalationChain:getEscalationChain", { "name": args.name, }, opts); } exports.getEscalationChainOutput = getEscalationChainOutput; //# sourceMappingURL=getEscalationChain.js.map