github.com/randomtask1155/cli@v6.41.1-0.20181227003417-a98eed78cbde+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  )