github.com/arunkumar7540/cli@v6.45.0+incompatible/actor/v7pushaction/event.go (about) 1 package v7pushaction 2 3 type Event string 4 5 const ( 6 ApplicationAlreadyExists Event = "App already exists" 7 ApplyManifest Event = "Applying manifest" 8 ApplyManifestComplete Event = "Applying manifest Complete" 9 BoundRoutes Event = "bound routes" 10 BoundServices Event = "bound services" 11 ConfiguringServices Event = "configuring services" 12 CreatedApplication Event = "created application" 13 CreatedRoutes Event = "created routes" 14 CreatingAndMappingRoutes Event = "creating and mapping routes" 15 CreatingApplication Event = "creating application" 16 CreatingArchive Event = "creating archive" 17 CreatingDroplet Event = "creating droplet" 18 CreatingPackage Event = "creating package" 19 PollingBuild Event = "polling build" 20 ReadingArchive Event = "reading archive" 21 ResourceMatching Event = "resource matching" 22 RestartingApplication Event = "restarting application" 23 RestartingApplicationComplete Event = "restarting application complete" 24 RetryUpload Event = "retry upload" 25 ScaleWebProcess Event = "scaling the web process" 26 ScaleWebProcessComplete Event = "scaling the web process complete" 27 SetDockerImage Event = "setting docker properties" 28 SetDockerImageComplete Event = "completed setting docker properties" 29 SetDropletComplete Event = "set droplet complete" 30 SetProcessConfiguration Event = "setting configuration on the process" 31 SetProcessConfigurationComplete Event = "completed setting configuration on the process" 32 SettingDroplet Event = "setting droplet" 33 SettingUpApplication Event = "setting up application" 34 SkippingApplicationCreation Event = "skipping creation" 35 StagingComplete Event = "staging complete" 36 StartingStaging Event = "starting staging" 37 StoppingApplication Event = "stopping application" 38 StoppingApplicationComplete Event = "stopping application complete" 39 UnmappingRoutes Event = "unmapping routes" 40 UpdatedApplication Event = "updated application" 41 UploadDropletComplete Event = "upload droplet complete" 42 UploadingApplication Event = "uploading application" 43 UploadingApplicationWithArchive Event = "uploading application with archive" 44 UploadingDroplet Event = "uploading droplet" 45 UploadWithArchiveComplete Event = "upload complete" 46 Complete Event = "complete" 47 )