library
turbot/pagerduty
Get Involved
Version
Pipeline: Update User
Update an existing user.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run pagerduty.pipeline.update_user \ --arg 'name=<string>' \ --arg 'email=<string>' \ --arg 'user_id=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = pagerduty.pipeline.update_user args = { name = <string> email = <string> user_id = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.pagerduty | Yes | Name of PagerDuty connection to use. If not provided, the default PagerDuty connection will be used. | connection.pagerduty.default |
name | string | Yes | The name of the user. | - |
string | Yes | The user's email address. | - | |
user_id | string | Yes | The ID of the user. | - |
color | string | No | The schedule color. | - |
description | string | No | The user's bio. | - |
job_title | string | No | The user's title. | - |
role | string | No | The user role. Account must have the read_only_users ability to set a user as a read_only_user or a read_only_limited_user, and must have advanced permissions abilities to set a user as observer or restricted_access. | - |
time_zone | string | No | The preferred time zone name. If null, the account's time zone will be used. | - |
Outputs
Name | Description |
---|---|
user | The user that was updated. |