UNPKG

@pulumi/pagerduty

Version:

A Pulumi package for creating and managing pagerduty cloud resources.

24 lines 1.28 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.getIncidentTypeCustomFieldOutput = exports.getIncidentTypeCustomField = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); function getIncidentTypeCustomField(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("pagerduty:index/getIncidentTypeCustomField:getIncidentTypeCustomField", { "displayName": args.displayName, "incidentType": args.incidentType, }, opts); } exports.getIncidentTypeCustomField = getIncidentTypeCustomField; function getIncidentTypeCustomFieldOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("pagerduty:index/getIncidentTypeCustomField:getIncidentTypeCustomField", { "displayName": args.displayName, "incidentType": args.incidentType, }, opts); } exports.getIncidentTypeCustomFieldOutput = getIncidentTypeCustomFieldOutput; //# sourceMappingURL=getIncidentTypeCustomField.js.map