@pulumiverse/sentry
Version:
A Pulumi package for creating and managing Sentry resources.
32 lines • 1.33 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.getSentryMetricAlertOutput = exports.getSentryMetricAlert = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* ## Example Usage
*/
function getSentryMetricAlert(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sentry:index/getSentryMetricAlert:getSentryMetricAlert", {
"internalId": args.internalId,
"organization": args.organization,
"project": args.project,
}, opts);
}
exports.getSentryMetricAlert = getSentryMetricAlert;
/**
* ## Example Usage
*/
function getSentryMetricAlertOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sentry:index/getSentryMetricAlert:getSentryMetricAlert", {
"internalId": args.internalId,
"organization": args.organization,
"project": args.project,
}, opts);
}
exports.getSentryMetricAlertOutput = getSentryMetricAlertOutput;
//# sourceMappingURL=getSentryMetricAlert.js.map