github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+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 CreatingPackage Event = "creating package" 18 PollingBuild Event = "polling build" 19 ReadingArchive Event = "reading archive" 20 ResourceMatching Event = "resource matching" 21 RetryUpload Event = "retry upload" 22 ScaleWebProcess Event = "scaling the web process" 23 ScaleWebProcessComplete Event = "scaling the web process complete" 24 SetDockerImage Event = "setting docker properties" 25 SetDockerImageComplete Event = "completed setting docker properties" 26 SetDropletComplete Event = "set droplet complete" 27 SetProcessConfiguration Event = "setting configuration on the process" 28 SetProcessConfigurationComplete Event = "completed setting configuration on the process" 29 SettingDroplet Event = "setting droplet" 30 SettingUpApplication Event = "setting up application" 31 SkippingApplicationCreation Event = "skipping creation" 32 StagingComplete Event = "staging complete" 33 StartingStaging Event = "starting staging" 34 StoppingApplication Event = "stopping application" 35 StoppingApplicationComplete Event = "stopping application complete" 36 UnmappingRoutes Event = "unmapping routes" 37 UpdatedApplication Event = "updated application" 38 UploadDropletComplete Event = "upload droplet complete" 39 UploadingApplication Event = "uploading application" 40 UploadingApplicationWithArchive Event = "uploading application with archive" 41 UploadingDroplet Event = "uploading droplet" 42 UploadWithArchiveComplete Event = "upload complete" 43 Complete Event = "complete" 44 )