github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+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  )