github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/api/cloudcontroller/ccv3/constant/relationships.go (about)

     1  package constant
     2  
     3  // RelationshipType represents the Cloud Controller To-One resource targeted by
     4  // 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 Cloud Controller space.
    13  	RelationshipTypeSpace RelationshipType = "space"
    14  
    15  	// RelationshipTypeOrganization is a relationship with a Cloud Controller
    16  	// organization.
    17  	RelationshipTypeOrganization RelationshipType = "organization"
    18  
    19  	// RelationshipTypeUser is a relationship with a Cloud Controller user.
    20  	RelationshipTypeUser RelationshipType = "user"
    21  )