github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/plugin/models/get_space.go (about)

     1  package plugin_models
     2  
     3  type GetSpace_Model struct {
     4  	GetSpaces_Model
     5  	Organization     GetSpace_Orgs
     6  	Applications     []GetSpace_Apps
     7  	ServiceInstances []GetSpace_ServiceInstance
     8  	Domains          []GetSpace_Domains
     9  	SecurityGroups   []GetSpace_SecurityGroup
    10  	SpaceQuota       GetSpace_SpaceQuota
    11  }
    12  
    13  type GetSpace_Orgs struct {
    14  	Guid string
    15  	Name string
    16  }
    17  
    18  type GetSpace_Apps struct {
    19  	Name string
    20  	Guid string
    21  }
    22  
    23  type GetSpace_AppsDomainFields struct {
    24  	Guid                   string
    25  	Name                   string
    26  	OwningOrganizationGuid string
    27  	Shared                 bool
    28  }
    29  
    30  type GetSpace_ServiceInstance struct {
    31  	Guid string
    32  	Name string
    33  }
    34  
    35  type GetSpace_Domains struct {
    36  	Guid                   string
    37  	Name                   string
    38  	OwningOrganizationGuid string
    39  	Shared                 bool
    40  }
    41  
    42  type GetSpace_SecurityGroup struct {
    43  	Name  string
    44  	Guid  string
    45  	Rules []map[string]interface{}
    46  }
    47  
    48  type GetSpace_SpaceQuota struct {
    49  	Guid                    string
    50  	Name                    string
    51  	MemoryLimit             int64
    52  	InstanceMemoryLimit     int64
    53  	RoutesLimit             int
    54  	ServicesLimit           int
    55  	NonBasicServicesAllowed bool
    56  }