github.com/cloudfoundry-attic/cli-with-i18n@v6.32.1-0.20171002233121-7401370d3b85+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 }