-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathevent_application.go
74 lines (61 loc) · 2.73 KB
/
event_application.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package sdk
// EventApplicationAdd represents the event when adding an application
type EventApplicationAdd struct {
Application
}
// EventApplicationUpdate represents the event when updating an application
type EventApplicationUpdate struct {
OldName string `json:"old_name"`
NewName string `json:"new_name"`
OldMetadata Metadata `json:"old_metadata"`
NewMetadata Metadata `json:"new_metadata"`
OldRepositoryStrategy RepositoryStrategy `json:"old_vcs_strategy"`
NewRepositoryStrategy RepositoryStrategy `json:"new_vcs_strategy"`
}
// EventApplicationDelete represents the event when deleting an application
type EventApplicationDelete struct {
}
// EventApplicationVariableAdd represents the event when adding an application variable
type EventApplicationVariableAdd struct {
Variable ApplicationVariable `json:"variable"`
}
// EventApplicationVariableUpdate represents the event when updating an application variable
type EventApplicationVariableUpdate struct {
OldVariable ApplicationVariable `json:"old_variable"`
NewVariable ApplicationVariable `json:"new_variable"`
}
// EventApplicationVariableDelete represents the event when deleting an application variable
type EventApplicationVariableDelete struct {
Variable ApplicationVariable `json:"variable"`
}
// EventApplicationPermissionAdd represents the event when adding an application permission
type EventApplicationPermissionAdd struct {
Permission GroupPermission `json:"group_permission"`
}
// EventApplicationPermissionUpdate represents the event when updating an application permission
type EventApplicationPermissionUpdate struct {
OldPermission GroupPermission `json:"old_group_permission"`
NewPermission GroupPermission `json:"new_group_permission"`
}
// EventApplicationPermissionDelete represents the event when deleting an application permission
type EventApplicationPermissionDelete struct {
Permission GroupPermission `json:"group_permission"`
}
// EventApplicationKeyAdd represents the event when adding an application key
type EventApplicationKeyAdd struct {
Key ApplicationKey `json:"key"`
}
// EventApplicationKeyDelete represents the event when deleting an application key
type EventApplicationKeyDelete struct {
Key ApplicationKey `json:"key"`
}
// EventApplicationRepositoryAdd represents the event when adding a repository to an application
type EventApplicationRepositoryAdd struct {
VCSServer string `json:"vcs_server"`
Repository string `json:"repository"`
}
// EventApplicationRepositoryDelete represents the event when deleting a repository to an application
type EventApplicationRepositoryDelete struct {
VCSServer string `json:"vcs_server"`
Repository string `json:"repository"`
}