forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_space.go
56 lines (48 loc) · 1.13 KB
/
get_space.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package plugin_models
type GetSpace_Model struct {
GetSpaces_Model
Organization GetSpace_Orgs
Applications []GetSpace_Apps
ServiceInstances []GetSpace_ServiceInstance
Domains []GetSpace_Domains
SecurityGroups []GetSpace_SecurityGroup
SpaceQuota GetSpace_SpaceQuota
}
type GetSpace_Orgs struct {
Guid string
Name string
}
type GetSpace_Apps struct {
Name string
Guid string
}
type GetSpace_AppsDomainFields struct {
Guid string
Name string
OwningOrganizationGuid string
Shared bool
}
type GetSpace_ServiceInstance struct {
Guid string
Name string
}
type GetSpace_Domains struct {
Guid string
Name string
OwningOrganizationGuid string
Shared bool
}
type GetSpace_SecurityGroup struct {
Name string
Guid string
Rules []map[string]interface{}
}
type GetSpace_SpaceQuota struct {
Guid string
Name string
MemoryLimit int64
InstanceMemoryLimit int64
RoutesLimit int
ServicesLimit int
NonBasicServicesAllowed bool
}