Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authorJames Liu <jliu@gitlab.com>2023-11-30 04:24:56 +0300
committerJames Liu <jliu@gitlab.com>2023-12-01 06:41:30 +0300
commitf3830800733e7970591ea8034e2bbca9d3e615a2 (patch)
treea094badcd7e76f849040003abc7186dd24604555 /proto
parent976af15ab77d652ef262411181ed99839d4e46df (diff)
proto: Add missing docs for RemoveRepository RPC
Diffstat (limited to 'proto')
-rw-r--r--proto/go/gitalypb/repository.pb.go7
-rw-r--r--proto/repository.proto7
2 files changed, 8 insertions, 6 deletions
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index 7a884e06a..57aec1c70 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -4133,13 +4133,14 @@ func (x *GetObjectDirectorySizeResponse) GetSize() int64 {
return 0
}
-// RemoveRepositoryRequest ...
+// RemoveRepositoryRequest is a request for the RemoveRepository RPC.
type RemoveRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // repository ...
+ // repository is the repo to remove. The storage_name and relative_path attributes
+ // must be provided.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
}
@@ -4182,7 +4183,7 @@ func (x *RemoveRepositoryRequest) GetRepository() *Repository {
return nil
}
-// RemoveRepositoryResponse ...
+// RemoveRepositoryResponse is a response for the RemoveRepository RPC.
type RemoveRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/repository.proto b/proto/repository.proto
index a66abe493..493bc955b 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -1187,13 +1187,14 @@ message GetObjectDirectorySizeResponse {
int64 size = 1;
}
-// RemoveRepositoryRequest ...
+// RemoveRepositoryRequest is a request for the RemoveRepository RPC.
message RemoveRepositoryRequest {
- // repository ...
+ // repository is the repo to remove. The storage_name and relative_path attributes
+ // must be provided.
Repository repository = 1 [(target_repository)=true];
}
-// RemoveRepositoryResponse ...
+// RemoveRepositoryResponse is a response for the RemoveRepository RPC.
message RemoveRepositoryResponse {
}