github.com/nimakaviani/cli@v6.37.1-0.20180619223813-e734901a73fa+incompatible/actor/pushaction/event.go (about)

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