library
turbot/pagerduty
OverviewPipelines
0
Triggers
0
Variables
GitHub

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
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
incident_idstringYesThe ID of the incident.-
typestringYesThe incident type. Allowed values are 'incident' and 'incident_reference'-
fromstringYesThe email address of a valid user associated with the account making the request.-
conference_numberstringNoThe phone number of the conference call for the conference bridge.-
conference_urlstringNoAn URL for the conference bridge. This could be a link to a web conference or Slack channel.-
escalation_levelnumberNoEscalate the incident to this level in the escalation policy.-
escalation_policy_idstringNoThe ID of the escalation policy for the incident.-
escalation_policy_typestringNoThe type of the escalation policy for the incident.-
priority_idstringNoThe ID of the priority of the incident.-
priority_typestringNoThe type of the priority of the incident.-
resolutionstringNoThe resolution for this incident if status is set to resolved.-
statusstringNoThe new status of the incident. Allowed values are 'acknowledged' and 'resolved'.-
titlestringNoThe new title of the incident.-
urgencystringNoThe urgency of the incident. Allowed values are 'high' and 'low'.-

Outputs

NameDescription
incidentThe updated incident.