github.com/cloudfoundry-attic/cli-with-i18n@v6.32.1-0.20171002233121-7401370d3b85+incompatible/api/cloudcontroller/ccv3/relationships.go (about)

     1  package ccv3
     2  
     3  type RelationshipType string
     4  
     5  const (
     6  	ApplicationRelationship RelationshipType = "app"
     7  	SpaceRelationship       RelationshipType = "space"
     8  )
     9  
    10  // Relationships is a map of RelationshipTypes to Relationship.
    11  type Relationships map[RelationshipType]Relationship