library
turbot/pagerduty
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Update Incident

Acknowledge, resolve, escalate or reassign an incident.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run pagerduty.pipeline.update_incident \
--arg 'incident_id=<string>' \
--arg 'type=<string>' \
--arg 'from=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = pagerduty.pipeline.update_incident
args = {
incident_id = <string>
type = <string>
from = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.pagerduty
YesName of PagerDuty connection to use. If not provided, the default PagerDuty connection will be used.connection.pagerduty.default
incident_id
string
YesThe ID of the incident.-
type
string
YesThe incident type. Allowed values are 'incident' and 'incident_reference'-
from
string
YesThe email address of a valid user associated with the account making the request.-
conference_number
string
NoThe phone number of the conference call for the conference bridge.-
conference_url
string
NoAn URL for the conference bridge. This could be a link to a web conference or Slack channel.-
escalation_level
number
NoEscalate the incident to this level in the escalation policy.-
escalation_policy_id
string
NoThe ID of the escalation policy for the incident.-
escalation_policy_type
string
NoThe type of the escalation policy for the incident.-
priority_id
string
NoThe ID of the priority of the incident.-
priority_type
string
NoThe type of the priority of the incident.-
resolution
string
NoThe resolution for this incident if status is set to resolved.-
status
string
NoThe new status of the incident. Allowed values are 'acknowledged' and 'resolved'.-
title
string
NoThe new title of the incident.-
urgency
string
NoThe urgency of the incident. Allowed values are 'high' and 'low'.-

Outputs

NameDescription
incidentThe updated incident.