github.com/loggregator/cli@v6.33.1-0.20180224010324-82334f081791+incompatible/actor/pushaction/event.go (about)

     1  package pushaction
     2  
     3  type Event string
     4  
     5  const (
     6  	SettingUpApplication            Event = "setting up application"
     7  	CreatedApplication              Event = "created application"
     8  	UpdatedApplication              Event = "updated application"
     9  	CreatingAndMappingRoutes        Event = "creating and mapping routes"
    10  	CreatedRoutes                   Event = "created routes"
    11  	BoundRoutes                     Event = "bound routes"
    12  	UnmappingRoutes                 Event = "unmapping routes"
    13  	ConfiguringServices             Event = "configuring services"
    14  	BoundServices                   Event = "bound services"
    15  	CreatingArchive                 Event = "creating archive"
    16  	ResourceMatching                Event = "resource matching"
    17  	UploadingApplication            Event = "uploading application"
    18  	UploadingApplicationWithArchive Event = "uploading application with archive"
    19  	UploadWithArchiveComplete       Event = "upload complete"
    20  	RetryUpload                     Event = "retry upload"
    21  	Complete                        Event = "complete"
    22  )