github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/api/cloudcontroller/ccv3/constant/role_type.go (about)

     1  package constant
     2  
     3  // RoleType is the type of a CCV3 role resource.
     4  type RoleType string
     5  
     6  const (
     7  	OrgUserRole           RoleType = "organization_user"
     8  	OrgAuditorRole        RoleType = "organization_auditor"
     9  	OrgManagerRole        RoleType = "organization_manager"
    10  	OrgBillingManagerRole RoleType = "organization_billing_manager"
    11  	SpaceDeveloperRole    RoleType = "space_developer"
    12  	SpaceAuditorRole      RoleType = "space_auditor"
    13  	SpaceManagerRole      RoleType = "space_manager"
    14  )