github.com/jasonkeene/cli@v6.14.1-0.20160816203908-ca5715166dfb+incompatible/plugin/models/get_apps.go (about)

     1  package plugin_models
     2  
     3  type GetAppsModel struct {
     4  	Name             string
     5  	Guid             string
     6  	State            string
     7  	TotalInstances   int
     8  	RunningInstances int
     9  	Memory           int64
    10  	DiskQuota        int64
    11  	Routes           []GetAppsRouteSummary
    12  	AppPorts         []int
    13  }
    14  
    15  type GetAppsRouteSummary struct {
    16  	Guid   string
    17  	Host   string
    18  	Domain GetAppsDomainFields
    19  }
    20  
    21  type GetAppsDomainFields struct {
    22  	Guid                   string
    23  	Name                   string
    24  	OwningOrganizationGuid string
    25  	Shared                 bool
    26  }