library
turbot/pagerduty
OverviewPipelines
0
Triggers
0
Variables
GitHub

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

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
namestringYesThe name of the user.-
emailstringYesThe user's email address.-
user_idstringYesThe ID of the user.-
colorstringNoThe schedule color.-
descriptionstringNoThe user's bio.-
job_titlestringNoThe user's title.-
rolestringNoThe 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_zonestringNoThe preferred time zone name. If null, the account's time zone will be used.-

Outputs

NameDescription
userThe user that was updated.