github.com/Thanhphan1147/cloudfoundry-cli@v7.1.0+incompatible/actor/pushaction/event.go (about)

     1  package pushaction
     2  
     3  type Event string
     4  
     5  const (
     6  	BoundRoutes                     Event = "bound routes"
     7  	BoundServices                   Event = "bound services"
     8  	ConfiguringServices             Event = "configuring services"
     9  	CreatedApplication              Event = "created application"
    10  	CreatedRoutes                   Event = "created routes"
    11  	CreatingAndMappingRoutes        Event = "creating and mapping routes"
    12  	CreatingArchive                 Event = "creating archive"
    13  	CreatingPackage                 Event = "creating package"
    14  	PollingBuild                    Event = "polling build"
    15  	ReadingArchive                  Event = "reading archive"
    16  	ResourceMatching                Event = "resource matching"
    17  	RetryUpload                     Event = "retry upload"
    18  	SettingDroplet                  Event = "setting droplet"
    19  	SetDropletComplete              Event = "set droplet complete"
    20  	SettingUpApplication            Event = "setting up application"
    21  	SkippingApplicationCreation     Event = "skipping creation"
    22  	StagingComplete                 Event = "staging complete"
    23  	StartingStaging                 Event = "starting staging"
    24  	UnmappingRoutes                 Event = "unmapping routes"
    25  	UpdatedApplication              Event = "updated application"
    26  	UploadDropletComplete           Event = "upload droplet complete"
    27  	UploadingApplication            Event = "uploading application"
    28  	UploadingApplicationWithArchive Event = "uploading application with archive"
    29  	UploadingDroplet                Event = "uploading droplet"
    30  	UploadWithArchiveComplete       Event = "upload complete"
    31  	Complete                        Event = "complete"
    32  )