projects

Next section »

UCloud Developer Guide / Accounting and Project Management / Projects

Projects

The projects feature allow for collaboration between different users across the entire UCloud platform.

Rationale

This project establishes the core abstractions for projects and establishes an event stream for receiving updates about changes. Other services extend the projects feature and subscribe to these changes to create the full project feature.

Definition

A project in UCloud is a collection of members which is uniquely identified by an id. All members are users identified by their username and have exactly one role. A user always has exactly one role. Each project has exactly one principal investigator (PI). The PI is responsible for managing the project, including adding and removing users.

RoleNotes

PI

The primary point of contact for projects. All projects have exactly one PI.

ADMIN

Administrators are allowed to perform some project management. A project can have multiple admins.

USER

Has no special privileges.

Table: The possible roles of a project, and their privileges within project management.

A project can be updated by adding/removing/changing any of its members.

A project is sub-divided into groups:

Each project may have 0 or more groups. The groups can have 0 or more members. A group belongs to exactly one project, and the members of a group can only be from the project it belongs to.

Special Groups

All projects have some special groups. The most common, and as of 05/01/23 the only, special group is the "All Users" group. This group automatically contains all members of the project. These are synchronized every single time a user is added or removed from a project. This special group is used by providers when registering resources with UCloud.

Creating Projects and Sub-Projects

All projects create by end-users have exactly one parent project. Only UCloud administrators can create root-level projects, that is a project without a parent. This allows users of UCloud to create a hierarchy of projects. The project hierarchy plays a significant role in accounting.

Normal users can create a project through the grant application feature.

A project can be uniquely identified by the path from the root project to the leaf-project. As a result, the title of a project must be unique within a single project. titles are case-insensitive.

Permissions and memberships are not hierarchical. This means that a user must be explicitly added to every project they need permissions in. UCloud administrators can always create a sub-project in any given project. A setting exists for every project which allows normal users to create sub-projects.


Example: A project hierarchy

Figure 1: A project hierarchy

Figure 1 shows a hierarchy of projects. Note that users deep in the hierarchy are not necessarily members of the projects further up in the hierarchy. For example, being a member of "IMADA" does not imply membership of "NAT". A member of "IMADA" can be a member of "NAT" but they must be explicitly added to both projects.

None of the projects share any resources. Each individual project will have their own home directory. The administrators, or any other user, of "NAT" will not be able to read/write any files of "IMADA" unless they have explicitly been added to the "IMADA" project.

The Project Context (also known as workspace)

All requests in UCloud are executed in a particular context. The header of every request defines the context. For the HTTP backend this is done in the Project header. The absence of a project implies that the request is executed in the personal project context.

Figure 2: The UCloud user interface allows you to select context through a dropdown in the navigation header.


Example: Accessing the project context from a microservice

implement(Descriptions.call) {
    val project: String? = ctx.project // null implies the personal project
    ok(service.doSomething(project))
}

Table of Contents

1. Remote Procedure Calls

2. Data Models

Remote Procedure Calls

browse

browseInvites

retrieve

retrieveGroup

retrieveInviteLinkProject

retrieveProviderProject

RequestResponseError

acceptInvite

archive

changeRole

create

createGroup

createGroupMember

createInvite

deleteGroup

deleteGroupMember

deleteInvite

deleteMember

projectVerificationStatus

renameGroup

renameProject

retrieveAllUsersGroup

toggleFavorite

unarchive

updateSettings

verifyMembership

Data Models

FindByProjectId

data class FindByProjectId(
    val project: String,
)
Properties


Group

data class Group(
    val id: String,
    val createdAt: Long,
    val specification: Group.Specification,
    val status: Group.Status,
)
Properties


Group.Specification

data class Specification(
    val project: String,
    val title: String,
)
Properties


Group.Status

data class Status(
    val members: List<String>?,
)
Properties


GroupMember

data class GroupMember(
    val username: String,
    val group: String,
)
Properties


Project

data class Project(
    val id: String,
    val createdAt: Long,
    val specification: Project.Specification,
    val status: Project.Status,
)
Properties


Project.Settings

data class Settings(
    val subprojects: Project.Settings.SubProjects?,
)
Properties


Project.Settings.SubProjects

data class SubProjects(
    val allowRenaming: Boolean?,
)
Properties


Project.Specification

data class Specification(
    val parent: String?,
    val title: String,
    val canConsumeResources: Boolean?,
)
Properties


Project.Status

data class Status(
    val archived: Boolean,
    val isFavorite: Boolean?,
    val members: List<ProjectMember>?,
    val groups: List<Group>?,
    val settings: Project.Settings?,
    val myRole: ProjectRole?,
    val path: String?,
)
Properties


ProjectInvite

data class ProjectInvite(
    val createdAt: Long,
    val invitedBy: String,
    val invitedTo: String,
    val recipient: String,
    val projectTitle: String,
)
Properties


data class ProjectInviteLink(
    val token: String,
    val expires: Long,
    val groupAssignment: List<String>?,
    val roleAssignment: ProjectRole?,
)
Properties


ProjectInviteType

enum class ProjectInviteType {
    INGOING,
    OUTGOING,
}
Properties


ProjectMember

data class ProjectMember(
    val username: String,
    val role: ProjectRole,
    val email: String?,
)
Properties


ProjectsSortBy

enum class ProjectsSortBy {
    favorite,
    title,
    parent,
}
Properties


ProjectsAcceptInviteLinkRequest

data class ProjectsAcceptInviteLinkRequest(
    val token: String,
)
Properties


ProjectsBrowseInviteLinksRequest

The base type for requesting paginated content.

data class ProjectsBrowseInviteLinksRequest(
    val itemsPerPage: Int?,
    val next: String?,
    val consistency: PaginationRequestV2Consistency?,
    val itemsToSkip: Long?,
)

Paginated content can be requested with one of the following consistency guarantees, this greatly changes the semantics of the call:

ConsistencyDescription

PREFER

Consistency is preferred but not required. An inconsistent snapshot might be returned.

REQUIRE

Consistency is required. A request will fail if consistency is no longer guaranteed.

The consistency refers to if collecting all the results via the pagination API are consistent. We consider the results to be consistent if it contains a complete view at some point in time. In practice this means that the results must contain all the items, in the correct order and without duplicates.

If you use the PREFER consistency then you may receive in-complete results that might appear out-of-order and can contain duplicate items. UCloud will still attempt to serve a snapshot which appears mostly consistent. This is helpful for user-interfaces which do not strictly depend on consistency but would still prefer something which is mostly consistent.

The results might become inconsistent if the client either takes too long, or a service instance goes down while fetching the results. UCloud attempts to keep each next token alive for at least one minute before invalidating it. This does not mean that a client must collect all results within a minute but rather that they must fetch the next page within a minute of the last page. If this is not feasible and consistency is not required then PREFER should be used.


📝 NOTE: Services are allowed to ignore extra criteria of the request if the next token is supplied. This is needed in order to provide a consistent view of the results. Clients should provide the same criterion as they paginate through the results.


Properties


ProjectsBrowseInvitesRequest

The base type for requesting paginated content.

data class ProjectsBrowseInvitesRequest(
    val itemsPerPage: Int?,
    val next: String?,
    val consistency: PaginationRequestV2Consistency?,
    val itemsToSkip: Long?,
    val filterType: ProjectInviteType?,
)

Paginated content can be requested with one of the following consistency guarantees, this greatly changes the semantics of the call:

ConsistencyDescription

PREFER

Consistency is preferred but not required. An inconsistent snapshot might be returned.

REQUIRE

Consistency is required. A request will fail if consistency is no longer guaranteed.

The consistency refers to if collecting all the results via the pagination API are consistent. We consider the results to be consistent if it contains a complete view at some point in time. In practice this means that the results must contain all the items, in the correct order and without duplicates.

If you use the PREFER consistency then you may receive in-complete results that might appear out-of-order and can contain duplicate items. UCloud will still attempt to serve a snapshot which appears mostly consistent. This is helpful for user-interfaces which do not strictly depend on consistency but would still prefer something which is mostly consistent.

The results might become inconsistent if the client either takes too long, or a service instance goes down while fetching the results. UCloud attempts to keep each next token alive for at least one minute before invalidating it. This does not mean that a client must collect all results within a minute but rather that they must fetch the next page within a minute of the last page. If this is not feasible and consistency is not required then PREFER should be used.


📝 NOTE: Services are allowed to ignore extra criteria of the request if the next token is supplied. This is needed in order to provide a consistent view of the results. Clients should provide the same criterion as they paginate through the results.


Properties


ProjectsBrowseRequest

The base type for requesting paginated content.

data class ProjectsBrowseRequest(
    val itemsPerPage: Int?,
    val next: String?,
    val consistency: PaginationRequestV2Consistency?,
    val itemsToSkip: Long?,
    val includeMembers: Boolean?,
    val includeGroups: Boolean?,
    val includeFavorite: Boolean?,
    val includeArchived: Boolean?,
    val includeSettings: Boolean?,
    val includePath: Boolean?,
    val sortBy: ProjectsSortBy?,
    val sortDirection: SortDirection?,
)

Paginated content can be requested with one of the following consistency guarantees, this greatly changes the semantics of the call:

ConsistencyDescription

PREFER

Consistency is preferred but not required. An inconsistent snapshot might be returned.

REQUIRE

Consistency is required. A request will fail if consistency is no longer guaranteed.

The consistency refers to if collecting all the results via the pagination API are consistent. We consider the results to be consistent if it contains a complete view at some point in time. In practice this means that the results must contain all the items, in the correct order and without duplicates.

If you use the PREFER consistency then you may receive in-complete results that might appear out-of-order and can contain duplicate items. UCloud will still attempt to serve a snapshot which appears mostly consistent. This is helpful for user-interfaces which do not strictly depend on consistency but would still prefer something which is mostly consistent.

The results might become inconsistent if the client either takes too long, or a service instance goes down while fetching the results. UCloud attempts to keep each next token alive for at least one minute before invalidating it. This does not mean that a client must collect all results within a minute but rather that they must fetch the next page within a minute of the last page. If this is not feasible and consistency is not required then PREFER should be used.


📝 NOTE: Services are allowed to ignore extra criteria of the request if the next token is supplied. This is needed in order to provide a consistent view of the results. Clients should provide the same criterion as they paginate through the results.


Properties


ProjectsChangeRoleRequestItem

data class ProjectsChangeRoleRequestItem(
    val username: String,
    val role: ProjectRole,
)
Properties


ProjectsCreateInviteRequestItem

data class ProjectsCreateInviteRequestItem(
    val recipient: String,
)
Properties


ProjectsDeleteInviteLinkRequest

data class ProjectsDeleteInviteLinkRequest(
    val token: String,
)
Properties


ProjectsDeleteInviteRequestItem

data class ProjectsDeleteInviteRequestItem(
    val project: String,
    val username: String,
)
Properties


ProjectsDeleteMemberRequestItem

data class ProjectsDeleteMemberRequestItem(
    val username: String,
)
Properties


ProjectsRenameGroupRequestItem

data class ProjectsRenameGroupRequestItem(
    val group: String,
    val newTitle: String,
)
Properties


ProjectsRetrieveGroupRequest

data class ProjectsRetrieveGroupRequest(
    val id: String,
    val includeMembers: Boolean?,
)
Properties


ProjectsRetrieveInviteLinkInfoRequest

data class ProjectsRetrieveInviteLinkInfoRequest(
    val token: String,
)
Properties


ProjectsRetrieveRequest

data class ProjectsRetrieveRequest(
    val id: String,
    val includeMembers: Boolean?,
    val includeGroups: Boolean?,
    val includeFavorite: Boolean?,
    val includeArchived: Boolean?,
    val includeSettings: Boolean?,
    val includePath: Boolean?,
)
Properties


ProjectsUpdateInviteLinkRequest

data class ProjectsUpdateInviteLinkRequest(
    val token: String,
    val role: ProjectRole,
    val groups: List<String>,
)
Properties


RenameProjectRequest

data class RenameProjectRequest(
    val id: String,
    val newTitle: String,
)
Properties


SetProjectVerificationStatusRequest

data class SetProjectVerificationStatusRequest(
    val projectId: String,
)
Properties


ProjectsAcceptInviteLinkResponse

data class ProjectsAcceptInviteLinkResponse(
    val project: String,
)
Properties


ProjectsRetrieveInviteLinkInfoResponse

data class ProjectsRetrieveInviteLinkInfoResponse(
    val token: String,
    val project: Project,
    val isMember: Boolean,
)
Properties


Last updated