Lines Matching full:repo
29 // The Source Repo API service.
32 // not set by ListRepos. To get the size of a repo, use GetRepo.
39 // Returns information about a repo.
40 rpc GetRepo(GetRepoRequest) returns (Repo) {
46 // Creates a repo in the given project with the given name.
50 rpc CreateRepo(CreateRepoRequest) returns (Repo) {
53 body: "repo"
57 // Deletes a repo.
96 // A repository (or repo) is a Git repository storing versioned source content.
97 message Repo { message
99 // `projects/<project>/repos/<repo>`. The repo name may contain slashes.
103 // The disk usage of the repo, in bytes. Read-only field. Size is only
137 // `projects/<project>/repos/<repo>`.
160 repeated Repo repos = 1;
170 // The project in which to create the repo. Values are of the form
174 // The repo to create. Only name should be set; setting other fields
176 Repo repo = 2; field
181 // The name of the repo to delete. Values are of the form
182 // `projects/<project>/repos/<repo>`.