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
diff options
context:
space:
mode:
authorJames Liu <jliu@gitlab.com>2023-11-30 03:53:42 +0300
committerJames Liu <jliu@gitlab.com>2023-12-01 06:41:30 +0300
commitb84e3ee6f3d9093445ca44f5d73b9c5a03f2342c (patch)
tree9ff4832a6049ad18245590c41158064920437057
parentacacbc5b5ccaf44a57f138c040a9c76d6bd8ffb1 (diff)
proto: Add missing docs for CreateBundleFromRefList
-rw-r--r--proto/go/gitalypb/repository.pb.go6
-rw-r--r--proto/repository.proto6
2 files changed, 6 insertions, 6 deletions
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index 83feedc48..b2291ca88 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -2291,7 +2291,7 @@ func (x *CreateBundleResponse) GetData() []byte {
return nil
}
-// CreateBundleFromRefListRequest ...
+// CreateBundleFromRefListRequest is a request for the CreateBundleFromRefList RPC.
type CreateBundleFromRefListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2351,13 +2351,13 @@ func (x *CreateBundleFromRefListRequest) GetPatterns() [][]byte {
return nil
}
-// CreateBundleFromRefListResponse ...
+// CreateBundleFromRefListResponse is a response for the CreateBundleFromRefList RPC.
type CreateBundleFromRefListResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // data ...
+ // data contains the content of the created bundle.
Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
}
diff --git a/proto/repository.proto b/proto/repository.proto
index d772e009d..7ad1132e0 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -827,7 +827,7 @@ message CreateBundleResponse {
bytes data = 1;
}
-// CreateBundleFromRefListRequest ...
+// CreateBundleFromRefListRequest is a request for the CreateBundleFromRefList RPC.
message CreateBundleFromRefListRequest {
// repository is the repository that the bundle is created from.
Repository repository = 1 [(target_repository)=true];
@@ -838,9 +838,9 @@ message CreateBundleFromRefListRequest {
repeated bytes patterns = 2;
}
-// CreateBundleFromRefListResponse ...
+// CreateBundleFromRefListResponse is a response for the CreateBundleFromRefList RPC.
message CreateBundleFromRefListResponse {
- // data ...
+ // data contains the content of the created bundle.
bytes data = 1;
}