Skip to content

Commit

Permalink
chore(integration-templates): Automated commit updating flows.yaml ba…
Browse files Browse the repository at this point in the history
…sed on changes in NangoHQ/integration-templates@3277a82 by Hassan_Wari. Commit message: feat(aws-iam): add user operations (#89)
  • Loading branch information
github-actions[bot] committed Nov 6, 2024
1 parent 746e9a5 commit 6e91ece
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions packages/shared/flows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,50 @@ integrations:
NoteObject:
value: string
type: string
aws-iam:
actions:
create-user:
description: Creates a user in AWS IAM.
output: User
endpoint: POST /users
input: AWSCreateUser
delete-user:
description: >
Delete an existing user in AWS IAM. When you delete a user, you must
delete the items attached to the user manually, or the deletion fails.
endpoint: DELETE /users
output: SuccessResponse
input: UserNamEntity
syncs:
users:
runs: every day
description: |
Fetches a list of users from AWS IAM
output: User
sync_type: full
track_deletes: true
endpoint: GET /users
models:
UserNamEntity:
userName: string
SuccessResponse:
success: boolean
ActionResponseError:
message: string
User:
id: string
firstName: string
lastName: string
email: string
CreateUser:
firstName: string
lastName: string
email: string
AWSCreateUser:
firstName: string
lastName: string
email: string
userName?: string
bamboohr-basic:
syncs:
employees:
Expand Down

0 comments on commit 6e91ece

Please sign in to comment.