-
Notifications
You must be signed in to change notification settings - Fork 928
/
event.go
32 lines (30 loc) · 1.61 KB
/
event.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
package pushaction
type Event string
const (
BoundRoutes Event = "bound routes"
BoundServices Event = "bound services"
ConfiguringServices Event = "configuring services"
CreatedApplication Event = "created application"
CreatedRoutes Event = "created routes"
CreatingAndMappingRoutes Event = "creating and mapping routes"
CreatingArchive Event = "creating archive"
CreatingPackage Event = "creating package"
PollingBuild Event = "polling build"
ReadingArchive Event = "reading archive"
ResourceMatching Event = "resource matching"
RetryUpload Event = "retry upload"
SettingDroplet Event = "setting droplet"
SetDropletComplete Event = "set droplet complete"
SettingUpApplication Event = "setting up application"
SkippingApplicationCreation Event = "skipping creation"
StagingComplete Event = "staging complete"
StartingStaging Event = "starting staging"
UnmappingRoutes Event = "unmapping routes"
UpdatedApplication Event = "updated application"
UploadDropletComplete Event = "upload droplet complete"
UploadingApplication Event = "uploading application"
UploadingApplicationWithArchive Event = "uploading application with archive"
UploadingDroplet Event = "uploading droplet"
UploadWithArchiveComplete Event = "upload complete"
Complete Event = "complete"
)