github.com/jenspinney/cli@v6.42.1-0.20190207184520-7450c600020e+incompatible/api/cloudcontroller/ccv3/constant/relationships.go (about) 1 package constant 2 3 // RelationshipType represetns the Cloud Controller To-One resource targetted 4 // by a relationship. 5 type RelationshipType string 6 7 const ( 8 // RelationshipTypeApplication is a relationship with a Cloud Controller 9 // application. 10 RelationshipTypeApplication RelationshipType = "app" 11 12 // RelationshipTypeSpace is a relationship with a CloudController space. 13 RelationshipTypeSpace RelationshipType = "space" 14 15 // RelationshipTypeOrganization is a relationship with a CloudController organization. 16 RelationshipTypeOrganization RelationshipType = "organization" 17 )