-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathevent_workflow.go
45 lines (38 loc) · 1.63 KB
/
event_workflow.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package sdk
// EventWorkflowAdd represents the event when adding a workflow
type EventWorkflowAdd struct {
Workflow Workflow `json:"workflow"`
}
// EventWorkflowUpdate represents the event when updating a workflow
type EventWorkflowUpdate struct {
NewWorkflow Workflow `json:"new_workflow"`
OldWorkflow Workflow `json:"old_workflow"`
}
// EventWorkflowDelete represents the event when deleting a workflow
type EventWorkflowDelete struct {
Workflow Workflow `json:"workflow"`
}
// EventWorkflowPermissionAdd represents the event when adding a workflow permission
type EventWorkflowPermissionAdd struct {
WorkflowID int64 `json:"workflow_id"`
Permission GroupPermission `json:"group_permission"`
}
// EventWorkflowPermissionUpdate represents the event when updating a workflow permission
type EventWorkflowPermissionUpdate struct {
WorkflowID int64 `json:"workflow_id"`
OldPermission GroupPermission `json:"old_group_permission"`
NewPermission GroupPermission `json:"new_group_permission"`
}
// EventWorkflowPermissionDelete represents the event when deleting a workflow permission
type EventWorkflowPermissionDelete struct {
WorkflowID int64 `json:"workflow_id"`
Permission GroupPermission `json:"group_permission"`
}
// EventRetentionWorkflowDryRun represents the vent when execution dry run on workflow retention
type EventRetentionWorkflowDryRun struct {
Runs []WorkflowRunToKeep `json:"runs"`
Status string `json:"status"`
Error string `json:"error"`
Warnings []string `json:"warnings"`
RunsAnalyzed int64 `json:"nb_runs_analyzed"`
}