github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+incompatible/actor/v7pushaction/event.go (about)

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