code.cloudfoundry.org/cli@v7.1.0+incompatible/actor/v7pushaction/event.go (about)

     1  package v7pushaction
     2  
     3  type PushEvent struct {
     4  	Event    Event
     5  	Plan     PushPlan
     6  	Err      error
     7  	Warnings Warnings
     8  }
     9  
    10  type Event string
    11  
    12  const (
    13  	ApplyManifest                   Event = "Applying manifest"
    14  	ApplyManifestComplete           Event = "Applying manifest Complete"
    15  	CreatingArchive                 Event = "creating archive"
    16  	CreatingDroplet                 Event = "creating droplet"
    17  	CreatingPackage                 Event = "creating package"
    18  	InstanceDetails                 Event = "instance details"
    19  	PollingBuild                    Event = "polling build"
    20  	ReadingArchive                  Event = "reading archive"
    21  	ResourceMatching                Event = "resource matching"
    22  	RestartingApplication           Event = "restarting application"
    23  	RestartingApplicationComplete   Event = "restarting application complete"
    24  	RetryUpload                     Event = "retry upload"
    25  	SetDockerImage                  Event = "setting docker properties"
    26  	SetDockerImageComplete          Event = "completed setting docker properties"
    27  	SetDropletComplete              Event = "set droplet complete"
    28  	SettingDroplet                  Event = "setting droplet"
    29  	StagingComplete                 Event = "staging complete"
    30  	StartingDeployment              Event = "starting deployment"
    31  	StartingStaging                 Event = "starting staging"
    32  	StoppingApplication             Event = "stopping application"
    33  	StoppingApplicationComplete     Event = "stopping application complete"
    34  	UploadDropletComplete           Event = "upload droplet complete"
    35  	UploadingApplication            Event = "uploading application"
    36  	UploadingApplicationWithArchive Event = "uploading application with archive"
    37  	UploadingDroplet                Event = "uploading droplet"
    38  	UploadWithArchiveComplete       Event = "upload complete"
    39  	WaitingForDeployment            Event = "waiting for deployment"
    40  )