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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-07-29 09:12:29 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-07-29 09:22:39 +0300
commita14e97112b0dc78266df414e98c7d307e9fdf859 (patch)
treea386e57ff1bfe0bf3a35ed159dbde725b8a80d84 /proto/go/gitalypb/ref.pb.go
parent0fa08d953e0d5497fe5366836d0ed54b9ff557d8 (diff)
proto: Document FindTag RPC
The FindTag RPC does not have any documentation right now. Add some.
Diffstat (limited to 'proto/go/gitalypb/ref.pb.go')
-rw-r--r--proto/go/gitalypb/ref.pb.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/proto/go/gitalypb/ref.pb.go b/proto/go/gitalypb/ref.pb.go
index e1af47561..6326f3485 100644
--- a/proto/go/gitalypb/ref.pb.go
+++ b/proto/go/gitalypb/ref.pb.go
@@ -937,15 +937,17 @@ func (x *FindAllBranchesResponse) GetBranches() []*FindAllBranchesResponse_Branc
return nil
}
-// This comment is left unintentionally blank.
+// FindTagRequest is a request for the FindTag RPC.
type FindTagRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // This comment is left unintentionally blank.
+ // Repository is the repository to look up the tag in.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
- // This comment is left unintentionally blank.
+ // TagName is the name of the tag that should be looked up. The caller is supposed to pass in the
+ // tag name only, so if e.g. a tag `refs/tags/v1.0.0` exists, then the caller should pass `v1.0.0`
+ // as argument.
TagName []byte `protobuf:"bytes,2,opt,name=tag_name,json=tagName,proto3" json:"tag_name,omitempty"`
}
@@ -995,13 +997,13 @@ func (x *FindTagRequest) GetTagName() []byte {
return nil
}
-// This comment is left unintentionally blank.
+// FindTagResponse is a response for the FindTag RPC.
type FindTagResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // This comment is left unintentionally blank.
+ // Tag is the tag that was found.
Tag *Tag `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
}