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-05-02 12:42:47 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-05-09 13:16:44 +0300
commite4b7df2292b4eeeefa4f70e77e2ad34a60de0c76 (patch)
tree260f42064d3e51093fdf1332827a13184661433b
parent4c7a9be67a16746bf6f44a68caf75a7cffd5e969 (diff)
proto: Enforce comment-linting for message definitions
Enforce that message definitions must have a comment and add a placeholder for all instances where such a comment is missing.
-rw-r--r--proto/.protolint.yaml1
-rw-r--r--proto/blob.proto8
-rw-r--r--proto/cleanup.proto2
-rw-r--r--proto/commit.proto43
-rw-r--r--proto/conflicts.proto4
-rw-r--r--proto/diff.proto11
-rw-r--r--proto/go/gitalypb/blob.pb.go6
-rw-r--r--proto/go/gitalypb/cleanup.pb.go2
-rw-r--r--proto/go/gitalypb/commit.pb.go43
-rw-r--r--proto/go/gitalypb/conflicts.pb.go4
-rw-r--r--proto/go/gitalypb/diff.pb.go11
-rw-r--r--proto/go/gitalypb/hook.pb.go10
-rw-r--r--proto/go/gitalypb/internal.pb.go2
-rw-r--r--proto/go/gitalypb/lint.pb.go1
-rw-r--r--proto/go/gitalypb/namespace.pb.go8
-rw-r--r--proto/go/gitalypb/objectpool.pb.go12
-rw-r--r--proto/go/gitalypb/operations.pb.go28
-rw-r--r--proto/go/gitalypb/praefect.pb.go11
-rw-r--r--proto/go/gitalypb/ref.pb.go39
-rw-r--r--proto/go/gitalypb/remote.pb.go4
-rw-r--r--proto/go/gitalypb/repository.pb.go77
-rw-r--r--proto/go/gitalypb/server.pb.go8
-rw-r--r--proto/go/gitalypb/shared.pb.go8
-rw-r--r--proto/go/gitalypb/smarthttp.pb.go8
-rw-r--r--proto/go/gitalypb/ssh.pb.go8
-rw-r--r--proto/go/gitalypb/transaction.pb.go4
-rw-r--r--proto/go/gitalypb/wiki.pb.go9
-rw-r--r--proto/hook.proto10
-rw-r--r--proto/internal.proto2
-rw-r--r--proto/lint.proto1
-rw-r--r--proto/namespace.proto10
-rw-r--r--proto/objectpool.proto17
-rw-r--r--proto/operations.proto28
-rw-r--r--proto/praefect.proto11
-rw-r--r--proto/ref.proto39
-rw-r--r--proto/remote.proto4
-rw-r--r--proto/repository.proto78
-rw-r--r--proto/server.proto8
-rw-r--r--proto/shared.proto8
-rw-r--r--proto/smarthttp.proto8
-rw-r--r--proto/ssh.proto8
-rw-r--r--proto/transaction.proto4
-rw-r--r--proto/wiki.proto9
43 files changed, 614 insertions, 3 deletions
diff --git a/proto/.protolint.yaml b/proto/.protolint.yaml
index ef55edfec..a4fac009f 100644
--- a/proto/.protolint.yaml
+++ b/proto/.protolint.yaml
@@ -15,7 +15,6 @@ lint:
# get protolint included in our workflow with minimal required changes.
- FILE_HAS_COMMENT
- FIELDS_HAVE_COMMENT
- - MESSAGES_HAVE_COMMENT
- ENUMS_HAVE_COMMENT
- ENUM_FIELDS_HAVE_COMMENT
# Many of our fields and messages have prepositions in them, and
diff --git a/proto/blob.proto b/proto/blob.proto
index f176fa967..e600770ed 100644
--- a/proto/blob.proto
+++ b/proto/blob.proto
@@ -75,8 +75,8 @@ service BlobService {
}
+// This comment is left unintentionally blank.
message GetBlobRequest {
-
Repository repository = 1[(target_repository)=true];
// Object ID (SHA1) of the blob we want to get
string oid = 2;
@@ -84,6 +84,7 @@ message GetBlobRequest {
int64 limit = 3;
}
+// This comment is left unintentionally blank.
message GetBlobResponse {
// Blob size; present only in first response message
int64 size = 1;
@@ -93,8 +94,9 @@ message GetBlobResponse {
string oid = 3;
}
+// This comment is left unintentionally blank.
message GetBlobsRequest {
-
+ // This comment is left unintentionally blank.
message RevisionPath {
string revision = 1;
bytes path = 2;
@@ -107,6 +109,7 @@ message GetBlobsRequest {
int64 limit = 3;
}
+// This comment is left unintentionally blank.
message GetBlobsResponse {
// Blob size; present only on the first message per blob
int64 size = 1;
@@ -217,6 +220,7 @@ message LFSPointer {
string oid = 3;
}
+// This comment is left unintentionally blank.
message NewBlobObject {
int64 size = 1;
string oid = 2;
diff --git a/proto/cleanup.proto b/proto/cleanup.proto
index 0aac850ab..947ef4fb0 100644
--- a/proto/cleanup.proto
+++ b/proto/cleanup.proto
@@ -19,6 +19,7 @@ service CleanupService {
}
+// This comment is left unintentionally blank.
message ApplyBfgObjectMapStreamRequest {
// Only available on the first message
Repository repository = 1 [(target_repository)=true];
@@ -29,6 +30,7 @@ message ApplyBfgObjectMapStreamRequest {
bytes object_map = 2;
}
+// This comment is left unintentionally blank.
message ApplyBfgObjectMapStreamResponse {
// We send back each parsed entry in the request's object map so the client
// can take action
diff --git a/proto/commit.proto b/proto/commit.proto
index 938e6d9bc..df90e0fb6 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -266,11 +266,13 @@ message ListAllCommitsResponse {
repeated GitCommit commits = 1;
}
+// This comment is left unintentionally blank.
message CommitStatsRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
}
+// This comment is left unintentionally blank.
message CommitStatsResponse {
// OID is the commit. Empty means not found
string oid = 1;
@@ -278,16 +280,19 @@ message CommitStatsResponse {
int32 deletions = 3;
}
+// This comment is left unintentionally blank.
message CommitIsAncestorRequest {
Repository repository = 1 [(target_repository)=true];
string ancestor_id = 2;
string child_id = 3;
}
+// This comment is left unintentionally blank.
message CommitIsAncestorResponse {
bool value = 1;
}
+// This comment is left unintentionally blank.
message TreeEntryRequest {
Repository repository = 1 [(target_repository)=true];
// commit ID or refname
@@ -302,6 +307,7 @@ message TreeEntryRequest {
int64 max_size = 5;
}
+// This comment is left unintentionally blank.
message TreeEntryResponse {
// TODO: Replace this enum with ObjectType in shared.proto
enum ObjectType {
@@ -320,6 +326,7 @@ message TreeEntryResponse {
bytes data = 5;
}
+// This comment is left unintentionally blank.
message CountCommitsRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -333,10 +340,12 @@ message CountCommitsRequest {
GlobalOptions global_options = 9;
}
+// This comment is left unintentionally blank.
message CountCommitsResponse {
int32 count = 1;
}
+// This comment is left unintentionally blank.
message CountDivergingCommitsRequest {
Repository repository = 1 [(target_repository)=true];
bytes from = 2;
@@ -347,11 +356,13 @@ message CountDivergingCommitsRequest {
int32 max_count = 7;
}
+// This comment is left unintentionally blank.
message CountDivergingCommitsResponse {
int32 left_count = 1;
int32 right_count = 2;
}
+// This comment is left unintentionally blank.
message TreeEntry {
// TODO: Replace this enum with ObjectType in shared.proto
enum EntryType {
@@ -374,6 +385,7 @@ message TreeEntry {
bytes flat_path = 7;
}
+// This comment is left unintentionally blank.
message GetTreeEntriesRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -391,12 +403,14 @@ message GetTreeEntriesRequest {
PaginationParameter pagination_params = 6;
}
+// This comment is left unintentionally blank.
message GetTreeEntriesResponse {
repeated TreeEntry entries = 1;
PaginationCursor pagination_cursor = 2;
}
+// This comment is left unintentionally blank.
message ListFilesRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -408,34 +422,41 @@ message ListFilesResponse {
repeated bytes paths = 1;
}
+// This comment is left unintentionally blank.
message FindCommitRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
bool trailers = 3;
}
+// This comment is left unintentionally blank.
message FindCommitResponse {
// commit is nil when the commit was not found
GitCommit commit = 1;
}
+// This comment is left unintentionally blank.
message ListCommitsByOidRequest {
Repository repository = 1 [(target_repository)=true];
repeated string oid = 2; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED
}
+// This comment is left unintentionally blank.
message ListCommitsByOidResponse {
repeated GitCommit commits = 1;
}
+// This comment is left unintentionally blank.
message ListCommitsByRefNameRequest {
Repository repository = 1 [(target_repository)=true];
repeated bytes ref_names = 2;
}
+// This comment is left unintentionally blank.
message ListCommitsByRefNameResponse {
reserved 1;
+ // This comment is left unintentionally blank.
message CommitForRef {
GitCommit commit = 1;
bytes ref_name = 2;
@@ -444,6 +465,7 @@ message ListCommitsByRefNameResponse {
repeated CommitForRef commit_refs = 2;
}
+// This comment is left unintentionally blank.
message FindAllCommitsRequest {
Repository repository = 1 [(target_repository)=true];
// When nil, return all commits reachable by any branch in the repo
@@ -463,6 +485,7 @@ message FindAllCommitsResponse {
repeated GitCommit commits = 1;
}
+// This comment is left unintentionally blank.
message FindCommitsRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -492,12 +515,15 @@ message FindCommitsResponse {
repeated GitCommit commits = 1;
}
+// This comment is left unintentionally blank.
message CommitLanguagesRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
}
+// This comment is left unintentionally blank.
message CommitLanguagesResponse {
+ // This comment is left unintentionally blank.
message Language {
string name = 1;
float share = 2;
@@ -508,6 +534,7 @@ message CommitLanguagesResponse {
repeated Language languages = 1;
}
+// This comment is left unintentionally blank.
message RawBlameRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -517,10 +544,12 @@ message RawBlameRequest {
bytes range = 4;
}
+// This comment is left unintentionally blank.
message RawBlameResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message LastCommitForPathRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -529,11 +558,13 @@ message LastCommitForPathRequest {
GlobalOptions global_options = 5;
}
+// This comment is left unintentionally blank.
message LastCommitForPathResponse {
// commit is nil when the commit was not found
GitCommit commit = 1;
}
+// This comment is left unintentionally blank.
message ListLastCommitsForTreeRequest {
Repository repository = 1 [(target_repository)=true];
string revision = 2;
@@ -544,7 +575,9 @@ message ListLastCommitsForTreeRequest {
GlobalOptions global_options = 7;
}
+// This comment is left unintentionally blank.
message ListLastCommitsForTreeResponse {
+ // This comment is left unintentionally blank.
message CommitForTree {
reserved 1;
@@ -555,6 +588,7 @@ message ListLastCommitsForTreeResponse {
repeated CommitForTree commits = 1;
}
+// This comment is left unintentionally blank.
message CommitsByMessageRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
@@ -570,15 +604,18 @@ message CommitsByMessageResponse {
repeated GitCommit commits = 1;
}
+// This comment is left unintentionally blank.
message FilterShasWithSignaturesRequest {
Repository repository = 1 [(target_repository)=true];
repeated bytes shas = 2;
}
+// This comment is left unintentionally blank.
message FilterShasWithSignaturesResponse {
repeated bytes shas = 1;
}
+// This comment is left unintentionally blank.
message ExtractCommitSignatureRequest {
Repository repository = 1 [(target_repository)=true];
string commit_id = 2;
@@ -591,11 +628,13 @@ message ExtractCommitSignatureResponse {
bytes signed_text = 2;
}
+// This comment is left unintentionally blank.
message GetCommitSignaturesRequest {
Repository repository = 1 [(target_repository)=true];
repeated string commit_ids = 2;
}
+// This comment is left unintentionally blank.
message GetCommitSignaturesResponse {
// Only present for a new commit signature data.
string commit_id = 1;
@@ -604,11 +643,13 @@ message GetCommitSignaturesResponse {
bytes signed_text = 3;
}
+// This comment is left unintentionally blank.
message GetCommitMessagesRequest {
Repository repository = 1 [(target_repository)=true];
repeated string commit_ids = 2;
}
+// This comment is left unintentionally blank.
message GetCommitMessagesResponse {
// Only present for a new commit message
string commit_id = 1;
@@ -627,7 +668,9 @@ message CheckObjectsExistRequest {
repeated bytes revisions = 2;
}
+// This comment is left unintentionally blank.
message CheckObjectsExistResponse {
+ // This comment is left unintentionally blank.
message RevisionExistence {
bytes name = 1;
bool exists = 2;
diff --git a/proto/conflicts.proto b/proto/conflicts.proto
index 14c8f3c76..5be41fea5 100644
--- a/proto/conflicts.proto
+++ b/proto/conflicts.proto
@@ -31,6 +31,7 @@ service ConflictsService {
}
+// This comment is left unintentionally blank.
message ListConflictFilesRequest {
Repository repository = 1 [(target_repository)=true];
string our_commit_oid = 2;
@@ -41,6 +42,7 @@ message ListConflictFilesRequest {
bool allow_tree_conflicts = 4;
}
+// This comment is left unintentionally blank.
message ConflictFileHeader {
reserved 1;
string commit_oid = 2;
@@ -50,6 +52,7 @@ message ConflictFileHeader {
bytes ancestor_path = 6;
}
+// This comment is left unintentionally blank.
message ConflictFile {
oneof conflict_file_payload {
ConflictFileHeader header = 1;
@@ -57,6 +60,7 @@ message ConflictFile {
}
}
+// This comment is left unintentionally blank.
message ListConflictFilesResponse {
repeated ConflictFile files = 1;
}
diff --git a/proto/diff.proto b/proto/diff.proto
index f2e269167..c06f655d4 100644
--- a/proto/diff.proto
+++ b/proto/diff.proto
@@ -55,6 +55,7 @@ service DiffService {
}
+// This comment is left unintentionally blank.
message CommitDiffRequest {
enum DiffMode {
// DEFAULT is the standard diff mode and results in a linewise diff for textfiles.
@@ -114,6 +115,7 @@ message CommitDiffResponse {
bool too_large = 13;
}
+// This comment is left unintentionally blank.
message CommitDeltaRequest {
Repository repository = 1 [(target_repository)=true];
string left_commit_id = 2;
@@ -121,6 +123,7 @@ message CommitDeltaRequest {
repeated bytes paths = 4;
}
+// This comment is left unintentionally blank.
message CommitDelta {
bytes from_path = 1;
bytes to_path = 2;
@@ -131,36 +134,43 @@ message CommitDelta {
int32 new_mode = 6;
}
+// This comment is left unintentionally blank.
message CommitDeltaResponse {
repeated CommitDelta deltas = 1;
}
+// This comment is left unintentionally blank.
message RawDiffRequest {
Repository repository = 1 [(target_repository)=true];
string left_commit_id = 2;
string right_commit_id = 3;
}
+// This comment is left unintentionally blank.
message RawDiffResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message RawPatchRequest {
Repository repository = 1 [(target_repository)=true];
string left_commit_id = 2;
string right_commit_id = 3;
}
+// This comment is left unintentionally blank.
message RawPatchResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message DiffStatsRequest {
Repository repository = 1 [(target_repository)=true];
string left_commit_id = 2;
string right_commit_id = 3;
}
+// This comment is left unintentionally blank.
message DiffStats {
bytes path = 1;
int32 additions = 2;
@@ -168,6 +178,7 @@ message DiffStats {
bytes old_path = 4;
}
+// This comment is left unintentionally blank.
message DiffStatsResponse {
repeated DiffStats stats = 1;
}
diff --git a/proto/go/gitalypb/blob.pb.go b/proto/go/gitalypb/blob.pb.go
index 5e1e0b406..03a3ba7c7 100644
--- a/proto/go/gitalypb/blob.pb.go
+++ b/proto/go/gitalypb/blob.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type GetBlobRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -85,6 +86,7 @@ func (x *GetBlobRequest) GetLimit() int64 {
return 0
}
+// This comment is left unintentionally blank.
type GetBlobResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -151,6 +153,7 @@ func (x *GetBlobResponse) GetOid() string {
return ""
}
+// This comment is left unintentionally blank.
type GetBlobsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -216,6 +219,7 @@ func (x *GetBlobsRequest) GetLimit() int64 {
return 0
}
+// This comment is left unintentionally blank.
type GetBlobsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -660,6 +664,7 @@ func (x *LFSPointer) GetOid() string {
return ""
}
+// This comment is left unintentionally blank.
type NewBlobObject struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1058,6 +1063,7 @@ func (x *ListAllLFSPointersResponse) GetLfsPointers() []*LFSPointer {
return nil
}
+// This comment is left unintentionally blank.
type GetBlobsRequest_RevisionPath struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/cleanup.pb.go b/proto/go/gitalypb/cleanup.pb.go
index 84c75b06b..0bd30e36f 100644
--- a/proto/go/gitalypb/cleanup.pb.go
+++ b/proto/go/gitalypb/cleanup.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type ApplyBfgObjectMapStreamRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -79,6 +80,7 @@ func (x *ApplyBfgObjectMapStreamRequest) GetObjectMap() []byte {
return nil
}
+// This comment is left unintentionally blank.
type ApplyBfgObjectMapStreamResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index d5b5689a4..c53f468a5 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -631,6 +631,7 @@ func (x *ListAllCommitsResponse) GetCommits() []*GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type CommitStatsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -686,6 +687,7 @@ func (x *CommitStatsRequest) GetRevision() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CommitStatsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -750,6 +752,7 @@ func (x *CommitStatsResponse) GetDeletions() int32 {
return 0
}
+// This comment is left unintentionally blank.
type CommitIsAncestorRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -813,6 +816,7 @@ func (x *CommitIsAncestorRequest) GetChildId() string {
return ""
}
+// This comment is left unintentionally blank.
type CommitIsAncestorResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -860,6 +864,7 @@ func (x *CommitIsAncestorResponse) GetValue() bool {
return false
}
+// This comment is left unintentionally blank.
type TreeEntryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -945,6 +950,7 @@ func (x *TreeEntryRequest) GetMaxSize() int64 {
return 0
}
+// This comment is left unintentionally blank.
type TreeEntryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1027,6 +1033,7 @@ func (x *TreeEntryResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CountCommitsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1139,6 +1146,7 @@ func (x *CountCommitsRequest) GetGlobalOptions() *GlobalOptions {
return nil
}
+// This comment is left unintentionally blank.
type CountCommitsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1186,6 +1194,7 @@ func (x *CountCommitsResponse) GetCount() int32 {
return 0
}
+// This comment is left unintentionally blank.
type CountDivergingCommitsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1257,6 +1266,7 @@ func (x *CountDivergingCommitsRequest) GetMaxCount() int32 {
return 0
}
+// This comment is left unintentionally blank.
type CountDivergingCommitsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1312,6 +1322,7 @@ func (x *CountDivergingCommitsResponse) GetRightCount() int32 {
return 0
}
+// This comment is left unintentionally blank.
type TreeEntry struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1413,6 +1424,7 @@ func (x *TreeEntry) GetFlatPath() []byte {
return nil
}
+// This comment is left unintentionally blank.
type GetTreeEntriesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1502,6 +1514,7 @@ func (x *GetTreeEntriesRequest) GetPaginationParams() *PaginationParameter {
return nil
}
+// This comment is left unintentionally blank.
type GetTreeEntriesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1557,6 +1570,7 @@ func (x *GetTreeEntriesResponse) GetPaginationCursor() *PaginationCursor {
return nil
}
+// This comment is left unintentionally blank.
type ListFilesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1661,6 +1675,7 @@ func (x *ListFilesResponse) GetPaths() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindCommitRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1724,6 +1739,7 @@ func (x *FindCommitRequest) GetTrailers() bool {
return false
}
+// This comment is left unintentionally blank.
type FindCommitResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1772,6 +1788,7 @@ func (x *FindCommitResponse) GetCommit() *GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type ListCommitsByOidRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1827,6 +1844,7 @@ func (x *ListCommitsByOidRequest) GetOid() []string {
return nil
}
+// This comment is left unintentionally blank.
type ListCommitsByOidResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1874,6 +1892,7 @@ func (x *ListCommitsByOidResponse) GetCommits() []*GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type ListCommitsByRefNameRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1929,6 +1948,7 @@ func (x *ListCommitsByRefNameRequest) GetRefNames() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type ListCommitsByRefNameResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1976,6 +1996,7 @@ func (x *ListCommitsByRefNameResponse) GetCommitRefs() []*ListCommitsByRefNameRe
return nil
}
+// This comment is left unintentionally blank.
type FindAllCommitsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2104,6 +2125,7 @@ func (x *FindAllCommitsResponse) GetCommits() []*GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type FindCommitsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2320,6 +2342,7 @@ func (x *FindCommitsResponse) GetCommits() []*GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type CommitLanguagesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2375,6 +2398,7 @@ func (x *CommitLanguagesRequest) GetRevision() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CommitLanguagesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2422,6 +2446,7 @@ func (x *CommitLanguagesResponse) GetLanguages() []*CommitLanguagesResponse_Lang
return nil
}
+// This comment is left unintentionally blank.
type RawBlameRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2495,6 +2520,7 @@ func (x *RawBlameRequest) GetRange() []byte {
return nil
}
+// This comment is left unintentionally blank.
type RawBlameResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2542,6 +2568,7 @@ func (x *RawBlameResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type LastCommitForPathRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2621,6 +2648,7 @@ func (x *LastCommitForPathRequest) GetGlobalOptions() *GlobalOptions {
return nil
}
+// This comment is left unintentionally blank.
type LastCommitForPathResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2669,6 +2697,7 @@ func (x *LastCommitForPathResponse) GetCommit() *GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type ListLastCommitsForTreeRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2766,6 +2795,7 @@ func (x *ListLastCommitsForTreeRequest) GetGlobalOptions() *GlobalOptions {
return nil
}
+// This comment is left unintentionally blank.
type ListLastCommitsForTreeResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2813,6 +2843,7 @@ func (x *ListLastCommitsForTreeResponse) GetCommits() []*ListLastCommitsForTreeR
return nil
}
+// This comment is left unintentionally blank.
type CommitsByMessageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2956,6 +2987,7 @@ func (x *CommitsByMessageResponse) GetCommits() []*GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type FilterShasWithSignaturesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3011,6 +3043,7 @@ func (x *FilterShasWithSignaturesRequest) GetShas() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FilterShasWithSignaturesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3058,6 +3091,7 @@ func (x *FilterShasWithSignaturesResponse) GetShas() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type ExtractCommitSignatureRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3170,6 +3204,7 @@ func (x *ExtractCommitSignatureResponse) GetSignedText() []byte {
return nil
}
+// This comment is left unintentionally blank.
type GetCommitSignaturesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3225,6 +3260,7 @@ func (x *GetCommitSignaturesRequest) GetCommitIds() []string {
return nil
}
+// This comment is left unintentionally blank.
type GetCommitSignaturesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3290,6 +3326,7 @@ func (x *GetCommitSignaturesResponse) GetSignedText() []byte {
return nil
}
+// This comment is left unintentionally blank.
type GetCommitMessagesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3345,6 +3382,7 @@ func (x *GetCommitMessagesRequest) GetCommitIds() []string {
return nil
}
+// This comment is left unintentionally blank.
type GetCommitMessagesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3463,6 +3501,7 @@ func (x *CheckObjectsExistRequest) GetRevisions() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type CheckObjectsExistResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3510,6 +3549,7 @@ func (x *CheckObjectsExistResponse) GetRevisions() []*CheckObjectsExistResponse_
return nil
}
+// This comment is left unintentionally blank.
type ListCommitsByRefNameResponse_CommitForRef struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3565,6 +3605,7 @@ func (x *ListCommitsByRefNameResponse_CommitForRef) GetRefName() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CommitLanguagesResponse_Language struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3644,6 +3685,7 @@ func (x *CommitLanguagesResponse_Language) GetBytes() uint64 {
return 0
}
+// This comment is left unintentionally blank.
type ListLastCommitsForTreeResponse_CommitForTree struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3699,6 +3741,7 @@ func (x *ListLastCommitsForTreeResponse_CommitForTree) GetPathBytes() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CheckObjectsExistResponse_RevisionExistence struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/conflicts.pb.go b/proto/go/gitalypb/conflicts.pb.go
index 67fa740cf..adc230829 100644
--- a/proto/go/gitalypb/conflicts.pb.go
+++ b/proto/go/gitalypb/conflicts.pb.go
@@ -21,6 +21,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type ListConflictFilesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -95,6 +96,7 @@ func (x *ListConflictFilesRequest) GetAllowTreeConflicts() bool {
return false
}
+// This comment is left unintentionally blank.
type ConflictFileHeader struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -174,6 +176,7 @@ func (x *ConflictFileHeader) GetAncestorPath() []byte {
return nil
}
+// This comment is left unintentionally blank.
type ConflictFile struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -254,6 +257,7 @@ func (*ConflictFile_Header) isConflictFile_ConflictFilePayload() {}
func (*ConflictFile_Content) isConflictFile_ConflictFilePayload() {}
+// This comment is left unintentionally blank.
type ListConflictFilesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/diff.pb.go b/proto/go/gitalypb/diff.pb.go
index 2fa9602ad..1ab7243fc 100644
--- a/proto/go/gitalypb/diff.pb.go
+++ b/proto/go/gitalypb/diff.pb.go
@@ -123,6 +123,7 @@ func (ChangedPaths_Status) EnumDescriptor() ([]byte, []int) {
return file_diff_proto_rawDescGZIP(), []int{14, 0}
}
+// This comment is left unintentionally blank.
type CommitDiffRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -431,6 +432,7 @@ func (x *CommitDiffResponse) GetTooLarge() bool {
return false
}
+// This comment is left unintentionally blank.
type CommitDeltaRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -502,6 +504,7 @@ func (x *CommitDeltaRequest) GetPaths() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type CommitDelta struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -590,6 +593,7 @@ func (x *CommitDelta) GetNewMode() int32 {
return 0
}
+// This comment is left unintentionally blank.
type CommitDeltaResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -637,6 +641,7 @@ func (x *CommitDeltaResponse) GetDeltas() []*CommitDelta {
return nil
}
+// This comment is left unintentionally blank.
type RawDiffRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -700,6 +705,7 @@ func (x *RawDiffRequest) GetRightCommitId() string {
return ""
}
+// This comment is left unintentionally blank.
type RawDiffResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -747,6 +753,7 @@ func (x *RawDiffResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type RawPatchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -810,6 +817,7 @@ func (x *RawPatchRequest) GetRightCommitId() string {
return ""
}
+// This comment is left unintentionally blank.
type RawPatchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -857,6 +865,7 @@ func (x *RawPatchResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type DiffStatsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -920,6 +929,7 @@ func (x *DiffStatsRequest) GetRightCommitId() string {
return ""
}
+// This comment is left unintentionally blank.
type DiffStats struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -991,6 +1001,7 @@ func (x *DiffStats) GetOldPath() []byte {
return nil
}
+// This comment is left unintentionally blank.
type DiffStatsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/hook.pb.go b/proto/go/gitalypb/hook.pb.go
index 9a19748ea..3c36fc08b 100644
--- a/proto/go/gitalypb/hook.pb.go
+++ b/proto/go/gitalypb/hook.pb.go
@@ -69,6 +69,7 @@ func (ReferenceTransactionHookRequest_State) EnumDescriptor() ([]byte, []int) {
return file_hook_proto_rawDescGZIP(), []int{6, 0}
}
+// This comment is left unintentionally blank.
type PreReceiveHookRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -140,6 +141,7 @@ func (x *PreReceiveHookRequest) GetGitPushOptions() []string {
return nil
}
+// This comment is left unintentionally blank.
type PreReceiveHookResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -203,6 +205,7 @@ func (x *PreReceiveHookResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type PostReceiveHookRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -274,6 +277,7 @@ func (x *PostReceiveHookRequest) GetGitPushOptions() []string {
return nil
}
+// This comment is left unintentionally blank.
type PostReceiveHookResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -337,6 +341,7 @@ func (x *PostReceiveHookResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type UpdateHookRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -416,6 +421,7 @@ func (x *UpdateHookRequest) GetNewValue() string {
return ""
}
+// This comment is left unintentionally blank.
type UpdateHookResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -479,6 +485,7 @@ func (x *UpdateHookResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type ReferenceTransactionHookRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -550,6 +557,7 @@ func (x *ReferenceTransactionHookRequest) GetState() ReferenceTransactionHookReq
return ReferenceTransactionHookRequest_PREPARED
}
+// This comment is left unintentionally blank.
type ReferenceTransactionHookResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -613,6 +621,7 @@ func (x *ReferenceTransactionHookResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type PackObjectsHookWithSidechannelRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -669,6 +678,7 @@ func (x *PackObjectsHookWithSidechannelRequest) GetArgs() []string {
return nil
}
+// This comment is left unintentionally blank.
type PackObjectsHookWithSidechannelResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/internal.pb.go b/proto/go/gitalypb/internal.pb.go
index 041fb48f1..2f1ec0335 100644
--- a/proto/go/gitalypb/internal.pb.go
+++ b/proto/go/gitalypb/internal.pb.go
@@ -21,6 +21,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type WalkReposRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -68,6 +69,7 @@ func (x *WalkReposRequest) GetStorageName() string {
return ""
}
+// This comment is left unintentionally blank.
type WalkReposResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/lint.pb.go b/proto/go/gitalypb/lint.pb.go
index 13c98757d..b204d5dea 100644
--- a/proto/go/gitalypb/lint.pb.go
+++ b/proto/go/gitalypb/lint.pb.go
@@ -119,6 +119,7 @@ func (OperationMsg_Scope) EnumDescriptor() ([]byte, []int) {
return file_lint_proto_rawDescGZIP(), []int{0, 1}
}
+// This comment is left unintentionally blank.
type OperationMsg struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/namespace.pb.go b/proto/go/gitalypb/namespace.pb.go
index 1fb49c9c1..33065c682 100644
--- a/proto/go/gitalypb/namespace.pb.go
+++ b/proto/go/gitalypb/namespace.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type AddNamespaceRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -75,6 +76,7 @@ func (x *AddNamespaceRequest) GetName() string {
return ""
}
+// This comment is left unintentionally blank.
type RemoveNamespaceRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -130,6 +132,7 @@ func (x *RemoveNamespaceRequest) GetName() string {
return ""
}
+// This comment is left unintentionally blank.
type RenameNamespaceRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -193,6 +196,7 @@ func (x *RenameNamespaceRequest) GetTo() string {
return ""
}
+// This comment is left unintentionally blank.
type NamespaceExistsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -248,6 +252,7 @@ func (x *NamespaceExistsRequest) GetName() string {
return ""
}
+// This comment is left unintentionally blank.
type NamespaceExistsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -295,6 +300,7 @@ func (x *NamespaceExistsResponse) GetExists() bool {
return false
}
+// This comment is left unintentionally blank.
type AddNamespaceResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -333,6 +339,7 @@ func (*AddNamespaceResponse) Descriptor() ([]byte, []int) {
return file_namespace_proto_rawDescGZIP(), []int{5}
}
+// This comment is left unintentionally blank.
type RemoveNamespaceResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -371,6 +378,7 @@ func (*RemoveNamespaceResponse) Descriptor() ([]byte, []int) {
return file_namespace_proto_rawDescGZIP(), []int{6}
}
+// This comment is left unintentionally blank.
type RenameNamespaceResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/objectpool.pb.go b/proto/go/gitalypb/objectpool.pb.go
index 460cb87e8..51d28a04d 100644
--- a/proto/go/gitalypb/objectpool.pb.go
+++ b/proto/go/gitalypb/objectpool.pb.go
@@ -77,6 +77,7 @@ func (x *CreateObjectPoolRequest) GetOrigin() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type CreateObjectPoolResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -164,6 +165,7 @@ func (x *DeleteObjectPoolRequest) GetObjectPool() *ObjectPool {
return nil
}
+// This comment is left unintentionally blank.
type DeleteObjectPoolResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -202,6 +204,7 @@ func (*DeleteObjectPoolResponse) Descriptor() ([]byte, []int) {
return file_objectpool_proto_rawDescGZIP(), []int{3}
}
+// This comment is left unintentionally blank.
type LinkRepositoryToObjectPoolRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -257,6 +260,7 @@ func (x *LinkRepositoryToObjectPoolRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type LinkRepositoryToObjectPoolResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -295,6 +299,7 @@ func (*LinkRepositoryToObjectPoolResponse) Descriptor() ([]byte, []int) {
return file_objectpool_proto_rawDescGZIP(), []int{5}
}
+// This comment is left unintentionally blank.
type ReduplicateRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -342,6 +347,7 @@ func (x *ReduplicateRepositoryRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type ReduplicateRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -380,6 +386,7 @@ func (*ReduplicateRepositoryResponse) Descriptor() ([]byte, []int) {
return file_objectpool_proto_rawDescGZIP(), []int{7}
}
+// This comment is left unintentionally blank.
type DisconnectGitAlternatesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -427,6 +434,7 @@ func (x *DisconnectGitAlternatesRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type DisconnectGitAlternatesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -465,6 +473,7 @@ func (*DisconnectGitAlternatesResponse) Descriptor() ([]byte, []int) {
return file_objectpool_proto_rawDescGZIP(), []int{9}
}
+// This comment is left unintentionally blank.
type FetchIntoObjectPoolRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -528,6 +537,7 @@ func (x *FetchIntoObjectPoolRequest) GetRepack() bool {
return false
}
+// This comment is left unintentionally blank.
type FetchIntoObjectPoolResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -566,6 +576,7 @@ func (*FetchIntoObjectPoolResponse) Descriptor() ([]byte, []int) {
return file_objectpool_proto_rawDescGZIP(), []int{11}
}
+// This comment is left unintentionally blank.
type GetObjectPoolRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -613,6 +624,7 @@ func (x *GetObjectPoolRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type GetObjectPoolResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/operations.pb.go b/proto/go/gitalypb/operations.pb.go
index 0ec200180..bac60b307 100644
--- a/proto/go/gitalypb/operations.pb.go
+++ b/proto/go/gitalypb/operations.pb.go
@@ -195,6 +195,7 @@ func (UserCommitFilesActionHeader_ActionType) EnumDescriptor() ([]byte, []int) {
return file_operations_proto_rawDescGZIP(), []int{23, 0}
}
+// This comment is left unintentionally blank.
type UserCreateBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -266,6 +267,7 @@ func (x *UserCreateBranchRequest) GetStartPoint() []byte {
return nil
}
+// This comment is left unintentionally blank.
type UserCreateBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -323,6 +325,7 @@ func (x *UserCreateBranchResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserUpdateBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -402,6 +405,7 @@ func (x *UserUpdateBranchRequest) GetOldrev() []byte {
return nil
}
+// This comment is left unintentionally blank.
type UserUpdateBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -449,6 +453,7 @@ func (x *UserUpdateBranchResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserDeleteBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -512,6 +517,7 @@ func (x *UserDeleteBranchRequest) GetUser() *User {
return nil
}
+// This comment is left unintentionally blank.
type UserDeleteBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -559,6 +565,7 @@ func (x *UserDeleteBranchResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserDeleteTagRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -622,6 +629,7 @@ func (x *UserDeleteTagRequest) GetUser() *User {
return nil
}
+// This comment is left unintentionally blank.
type UserDeleteTagResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -669,6 +677,7 @@ func (x *UserDeleteTagResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserCreateTagRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -765,6 +774,7 @@ func (x *UserCreateTagRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserCreateTagResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -832,6 +842,7 @@ func (x *UserCreateTagResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserMergeBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -940,6 +951,7 @@ func (x *UserMergeBranchRequest) GetApply() bool {
return false
}
+// This comment is left unintentionally blank.
type UserMergeBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1097,6 +1109,7 @@ func (*UserMergeBranchError_AccessCheck) isUserMergeBranchError_Error() {}
func (*UserMergeBranchError_ReferenceUpdate) isUserMergeBranchError_Error() {}
+// This comment is left unintentionally blank.
type UserMergeToRefRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1225,6 +1238,7 @@ func (x *UserMergeToRefRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserMergeToRefResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1434,6 +1448,7 @@ func (x *UserFFBranchRequest) GetBranch() []byte {
return nil
}
+// This comment is left unintentionally blank.
type UserFFBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1489,6 +1504,7 @@ func (x *UserFFBranchResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserCherryPickRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1616,6 +1632,7 @@ func (x *UserCherryPickRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserCherryPickResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1823,6 +1840,7 @@ func (*UserCherryPickError_ChangesAlreadyApplied) isUserCherryPickError_Error()
func (*UserCherryPickError_AccessCheck) isUserCherryPickError_Error() {}
+// This comment is left unintentionally blank.
type UserRevertRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1949,6 +1967,7 @@ func (x *UserRevertRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserRevertResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2528,6 +2547,7 @@ func (x *UserCommitFilesResponse) GetPreReceiveError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserRebaseConfirmableRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2614,6 +2634,7 @@ func (*UserRebaseConfirmableRequest_Header_) isUserRebaseConfirmableRequest_User
func (*UserRebaseConfirmableRequest_Apply) isUserRebaseConfirmableRequest_UserRebaseConfirmableRequestPayload() {
}
+// This comment is left unintentionally blank.
type UserRebaseConfirmableResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2719,6 +2740,7 @@ func (*UserRebaseConfirmableResponse_RebaseSha) isUserRebaseConfirmableResponse_
func (*UserRebaseConfirmableResponse_RebaseApplied) isUserRebaseConfirmableResponse_UserRebaseConfirmableResponsePayload() {
}
+// This comment is left unintentionally blank.
type UserSquashRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2825,6 +2847,7 @@ func (x *UserSquashRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserSquashResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2887,6 +2910,7 @@ func (x *UserSquashResponse) GetGitError() string {
return ""
}
+// This comment is left unintentionally blank.
type UserRebaseConfirmableError struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3057,6 +3081,7 @@ func (*UserSquashError_ResolveRevision) isUserSquashError_Error() {}
func (*UserSquashError_RebaseConflict) isUserSquashError_Error() {}
+// This comment is left unintentionally blank.
type UserApplyPatchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3140,6 +3165,7 @@ func (*UserApplyPatchRequest_Header_) isUserApplyPatchRequest_UserApplyPatchRequ
func (*UserApplyPatchRequest_Patches) isUserApplyPatchRequest_UserApplyPatchRequestPayload() {}
+// This comment is left unintentionally blank.
type UserApplyPatchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3188,6 +3214,7 @@ func (x *UserApplyPatchResponse) GetBranchUpdate() *OperationBranchUpdate {
return nil
}
+// This comment is left unintentionally blank.
type UserUpdateSubmoduleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3294,6 +3321,7 @@ func (x *UserUpdateSubmoduleRequest) GetTimestamp() *timestamppb.Timestamp {
return nil
}
+// This comment is left unintentionally blank.
type UserUpdateSubmoduleResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/praefect.pb.go b/proto/go/gitalypb/praefect.pb.go
index dc5cab186..f140fc176 100644
--- a/proto/go/gitalypb/praefect.pb.go
+++ b/proto/go/gitalypb/praefect.pb.go
@@ -473,6 +473,7 @@ func (x *SetReplicationFactorResponse) GetStorages() []string {
return nil
}
+// This comment is left unintentionally blank.
type SetAuthoritativeStorageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -536,6 +537,7 @@ func (x *SetAuthoritativeStorageRequest) GetAuthoritativeStorage() string {
return ""
}
+// This comment is left unintentionally blank.
type SetAuthoritativeStorageResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -574,6 +576,7 @@ func (*SetAuthoritativeStorageResponse) Descriptor() ([]byte, []int) {
return file_praefect_proto_rawDescGZIP(), []int{7}
}
+// This comment is left unintentionally blank.
type DatalossCheckRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -631,6 +634,7 @@ func (x *DatalossCheckRequest) GetIncludePartiallyReplicated() bool {
return false
}
+// This comment is left unintentionally blank.
type DatalossCheckResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -679,6 +683,7 @@ func (x *DatalossCheckResponse) GetRepositories() []*DatalossCheckResponse_Repos
return nil
}
+// This comment is left unintentionally blank.
type RepositoryReplicasRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -726,6 +731,7 @@ func (x *RepositoryReplicasRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type RepositoryReplicasResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -839,6 +845,7 @@ func (x *MarkUnverifiedRequest_Storage) GetStorage() string {
return ""
}
+// This comment is left unintentionally blank.
type GetRepositoryMetadataRequest_Path struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -896,6 +903,7 @@ func (x *GetRepositoryMetadataRequest_Path) GetRelativePath() string {
return ""
}
+// This comment is left unintentionally blank.
type GetRepositoryMetadataResponse_Replica struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -990,6 +998,7 @@ func (x *GetRepositoryMetadataResponse_Replica) GetVerifiedAt() *timestamppb.Tim
return nil
}
+// This comment is left unintentionally blank.
type DatalossCheckResponse_Repository struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1065,6 +1074,7 @@ func (x *DatalossCheckResponse_Repository) GetPrimary() string {
return ""
}
+// This comment is left unintentionally blank.
type DatalossCheckResponse_Repository_Storage struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1149,6 +1159,7 @@ func (x *DatalossCheckResponse_Repository_Storage) GetValidPrimary() bool {
return false
}
+// This comment is left unintentionally blank.
type RepositoryReplicasResponse_RepositoryDetails struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/ref.pb.go b/proto/go/gitalypb/ref.pb.go
index 8b2ad1fe1..b5aeb9561 100644
--- a/proto/go/gitalypb/ref.pb.go
+++ b/proto/go/gitalypb/ref.pb.go
@@ -221,6 +221,7 @@ func (ListRefsRequest_SortBy_Key) EnumDescriptor() ([]byte, []int) {
return file_ref_proto_rawDescGZIP(), []int{38, 0, 0}
}
+// This comment is left unintentionally blank.
type FindDefaultBranchNameRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -268,6 +269,7 @@ func (x *FindDefaultBranchNameRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type FindDefaultBranchNameResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -315,6 +317,7 @@ func (x *FindDefaultBranchNameResponse) GetName() []byte {
return nil
}
+// This comment is left unintentionally blank.
type FindAllBranchNamesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -362,6 +365,7 @@ func (x *FindAllBranchNamesRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type FindAllBranchNamesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -409,6 +413,7 @@ func (x *FindAllBranchNamesResponse) GetNames() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindAllTagNamesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -456,6 +461,7 @@ func (x *FindAllTagNamesRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type FindAllTagNamesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -503,6 +509,7 @@ func (x *FindAllTagNamesResponse) GetNames() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindLocalBranchesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -570,6 +577,7 @@ func (x *FindLocalBranchesRequest) GetPaginationParams() *PaginationParameter {
return nil
}
+// This comment is left unintentionally blank.
type FindLocalBranchesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -617,6 +625,7 @@ func (x *FindLocalBranchesResponse) GetBranches() []*FindLocalBranchResponse {
return nil
}
+// This comment is left unintentionally blank.
type FindLocalBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -704,6 +713,7 @@ func (x *FindLocalBranchResponse) GetCommit() *GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type FindLocalBranchCommitAuthor struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -775,6 +785,7 @@ func (x *FindLocalBranchCommitAuthor) GetTimezone() []byte {
return nil
}
+// This comment is left unintentionally blank.
type FindAllBranchesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -841,6 +852,7 @@ func (x *FindAllBranchesRequest) GetMergedBranches() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindAllBranchesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -888,6 +900,7 @@ func (x *FindAllBranchesResponse) GetBranches() []*FindAllBranchesResponse_Branc
return nil
}
+// This comment is left unintentionally blank.
type FindTagRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -943,6 +956,7 @@ func (x *FindTagRequest) GetTagName() []byte {
return nil
}
+// This comment is left unintentionally blank.
type FindTagResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -990,6 +1004,7 @@ func (x *FindTagResponse) GetTag() *Tag {
return nil
}
+// This comment is left unintentionally blank.
type FindAllTagsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1057,6 +1072,7 @@ func (x *FindAllTagsRequest) GetPaginationParams() *PaginationParameter {
return nil
}
+// This comment is left unintentionally blank.
type FindAllTagsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1104,6 +1120,7 @@ func (x *FindAllTagsResponse) GetTags() []*Tag {
return nil
}
+// This comment is left unintentionally blank.
type RefExistsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1160,6 +1177,7 @@ func (x *RefExistsRequest) GetRef() []byte {
return nil
}
+// This comment is left unintentionally blank.
type RefExistsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1207,6 +1225,7 @@ func (x *RefExistsResponse) GetValue() bool {
return false
}
+// This comment is left unintentionally blank.
type CreateBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1270,6 +1289,7 @@ func (x *CreateBranchRequest) GetStartPoint() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1325,6 +1345,7 @@ func (x *CreateBranchResponse) GetBranch() *Branch {
return nil
}
+// This comment is left unintentionally blank.
type DeleteBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1419,6 +1440,7 @@ func (*DeleteBranchResponse) Descriptor() ([]byte, []int) {
return file_ref_proto_rawDescGZIP(), []int{21}
}
+// This comment is left unintentionally blank.
type FindBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1477,6 +1499,7 @@ func (x *FindBranchRequest) GetName() []byte {
return nil
}
+// This comment is left unintentionally blank.
type FindBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1524,6 +1547,7 @@ func (x *FindBranchResponse) GetBranch() *Branch {
return nil
}
+// This comment is left unintentionally blank.
type DeleteRefsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1588,6 +1612,7 @@ func (x *DeleteRefsRequest) GetRefs() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type DeleteRefsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1635,6 +1660,7 @@ func (x *DeleteRefsResponse) GetGitError() string {
return ""
}
+// This comment is left unintentionally blank.
type ListBranchNamesContainingCommitRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1700,6 +1726,7 @@ func (x *ListBranchNamesContainingCommitRequest) GetLimit() uint32 {
return 0
}
+// This comment is left unintentionally blank.
type ListBranchNamesContainingCommitResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1747,6 +1774,7 @@ func (x *ListBranchNamesContainingCommitResponse) GetBranchNames() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type ListTagNamesContainingCommitRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1812,6 +1840,7 @@ func (x *ListTagNamesContainingCommitRequest) GetLimit() uint32 {
return 0
}
+// This comment is left unintentionally blank.
type ListTagNamesContainingCommitResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1970,6 +1999,7 @@ func (x *GetTagSignaturesResponse) GetSignatures() []*GetTagSignaturesResponse_T
return nil
}
+// This comment is left unintentionally blank.
type GetTagMessagesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2025,6 +2055,7 @@ func (x *GetTagMessagesRequest) GetTagIds() []string {
return nil
}
+// This comment is left unintentionally blank.
type GetTagMessagesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2081,6 +2112,7 @@ func (x *GetTagMessagesResponse) GetTagId() string {
return ""
}
+// This comment is left unintentionally blank.
type FindAllRemoteBranchesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2136,6 +2168,7 @@ func (x *FindAllRemoteBranchesRequest) GetRemoteName() string {
return ""
}
+// This comment is left unintentionally blank.
type FindAllRemoteBranchesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2183,6 +2216,7 @@ func (x *FindAllRemoteBranchesResponse) GetBranches() []*Branch {
return nil
}
+// This comment is left unintentionally blank.
type PackRefsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2230,6 +2264,7 @@ func (x *PackRefsRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type PackRefsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2397,6 +2432,7 @@ func (x *ListRefsResponse) GetReferences() []*ListRefsResponse_Reference {
return nil
}
+// This comment is left unintentionally blank.
type FindRefsByOIDRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2484,6 +2520,7 @@ func (x *FindRefsByOIDRequest) GetLimit() uint32 {
return 0
}
+// This comment is left unintentionally blank.
type FindRefsByOIDResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2532,6 +2569,7 @@ func (x *FindRefsByOIDResponse) GetRefs() []string {
return nil
}
+// This comment is left unintentionally blank.
type FindAllBranchesResponse_Branch struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2713,6 +2751,7 @@ func (x *GetTagSignaturesResponse_TagSignature) GetContent() []byte {
return nil
}
+// This comment is left unintentionally blank.
type ListRefsRequest_SortBy struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/remote.pb.go b/proto/go/gitalypb/remote.pb.go
index 0ddfda907..5445a7447 100644
--- a/proto/go/gitalypb/remote.pb.go
+++ b/proto/go/gitalypb/remote.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type UpdateRemoteMirrorRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -123,6 +124,7 @@ func (x *UpdateRemoteMirrorRequest) GetKeepDivergentRefs() bool {
return false
}
+// This comment is left unintentionally blank.
type UpdateRemoteMirrorResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -172,6 +174,7 @@ func (x *UpdateRemoteMirrorResponse) GetDivergentRefs() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindRemoteRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -410,6 +413,7 @@ func (x *FindRemoteRootRefResponse) GetRef() string {
return ""
}
+// This comment is left unintentionally blank.
type UpdateRemoteMirrorRequest_Remote struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/repository.pb.go b/proto/go/gitalypb/repository.pb.go
index 74baaf946..a55198563 100644
--- a/proto/go/gitalypb/repository.pb.go
+++ b/proto/go/gitalypb/repository.pb.go
@@ -179,6 +179,7 @@ func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int
return file_repository_proto_rawDescGZIP(), []int{63, 0, 0}
}
+// This comment is left unintentionally blank.
type RepositoryExistsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -226,6 +227,7 @@ func (x *RepositoryExistsRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type RepositoryExistsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -273,6 +275,7 @@ func (x *RepositoryExistsResponse) GetExists() bool {
return false
}
+// This comment is left unintentionally blank.
type RepackIncrementalRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -320,6 +323,7 @@ func (x *RepackIncrementalRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type RepackIncrementalResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -358,6 +362,7 @@ func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{3}
}
+// This comment is left unintentionally blank.
type RepackFullRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -413,6 +418,7 @@ func (x *RepackFullRequest) GetCreateBitmap() bool {
return false
}
+// This comment is left unintentionally blank.
type RepackFullResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -451,6 +457,7 @@ func (*RepackFullResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{5}
}
+// This comment is left unintentionally blank.
type MidxRepackRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -498,6 +505,7 @@ func (x *MidxRepackRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type MidxRepackResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -536,6 +544,7 @@ func (*MidxRepackResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{7}
}
+// This comment is left unintentionally blank.
type GarbageCollectRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -604,6 +613,7 @@ func (x *GarbageCollectRequest) GetPrune() bool {
return false
}
+// This comment is left unintentionally blank.
type GarbageCollectResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -642,6 +652,7 @@ func (*GarbageCollectResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{9}
}
+// This comment is left unintentionally blank.
type WriteCommitGraphRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -698,6 +709,7 @@ func (x *WriteCommitGraphRequest) GetSplitStrategy() WriteCommitGraphRequest_Spl
return WriteCommitGraphRequest_SizeMultiple
}
+// This comment is left unintentionally blank.
type WriteCommitGraphResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -736,6 +748,7 @@ func (*WriteCommitGraphResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{11}
}
+// This comment is left unintentionally blank.
type CleanupRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -783,6 +796,7 @@ func (x *CleanupRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type CleanupResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -821,6 +835,7 @@ func (*CleanupResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{13}
}
+// This comment is left unintentionally blank.
type RepositorySizeRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -868,6 +883,7 @@ func (x *RepositorySizeRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type RepositorySizeResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -916,6 +932,7 @@ func (x *RepositorySizeResponse) GetSize() int64 {
return 0
}
+// This comment is left unintentionally blank.
type ApplyGitattributesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -971,6 +988,7 @@ func (x *ApplyGitattributesRequest) GetRevision() []byte {
return nil
}
+// This comment is left unintentionally blank.
type ApplyGitattributesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1009,6 +1027,7 @@ func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{17}
}
+// This comment is left unintentionally blank.
type FetchBundleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1075,6 +1094,7 @@ func (x *FetchBundleRequest) GetUpdateHead() bool {
return false
}
+// This comment is left unintentionally blank.
type FetchBundleResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1113,6 +1133,7 @@ func (*FetchBundleResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{19}
}
+// This comment is left unintentionally blank.
type FetchRemoteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1235,6 +1256,7 @@ func (x *FetchRemoteRequest) GetCheckTagsChanged() bool {
return false
}
+// This comment is left unintentionally blank.
type FetchRemoteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1285,6 +1307,7 @@ func (x *FetchRemoteResponse) GetTagsChanged() bool {
return false
}
+// This comment is left unintentionally blank.
type CreateRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1343,6 +1366,7 @@ func (x *CreateRepositoryRequest) GetDefaultBranch() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1381,6 +1405,7 @@ func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{23}
}
+// This comment is left unintentionally blank.
type GetArchiveRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1490,6 +1515,7 @@ func (x *GetArchiveRequest) GetIncludeLfsBlobs() bool {
return false
}
+// This comment is left unintentionally blank.
type GetArchiveResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1537,6 +1563,7 @@ func (x *GetArchiveResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type HasLocalBranchesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1584,6 +1611,7 @@ func (x *HasLocalBranchesRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type HasLocalBranchesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1631,6 +1659,7 @@ func (x *HasLocalBranchesResponse) GetValue() bool {
return false
}
+// This comment is left unintentionally blank.
type FetchSourceBranchRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1709,6 +1738,7 @@ func (x *FetchSourceBranchRequest) GetTargetRef() []byte {
return nil
}
+// This comment is left unintentionally blank.
type FetchSourceBranchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1758,6 +1788,7 @@ func (x *FetchSourceBranchResponse) GetResult() bool {
return false
}
+// This comment is left unintentionally blank.
type FsckRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1805,6 +1836,7 @@ func (x *FsckRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type FsckResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1852,6 +1884,7 @@ func (x *FsckResponse) GetError() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WriteRefRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1931,6 +1964,7 @@ func (x *WriteRefRequest) GetForce() bool {
return false
}
+// This comment is left unintentionally blank.
type WriteRefResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -1969,6 +2003,7 @@ func (*WriteRefResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{33}
}
+// This comment is left unintentionally blank.
type FindMergeBaseRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2027,6 +2062,7 @@ func (x *FindMergeBaseRequest) GetRevisions() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type FindMergeBaseResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2074,6 +2110,7 @@ func (x *FindMergeBaseResponse) GetBase() string {
return ""
}
+// This comment is left unintentionally blank.
type CreateForkRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2129,6 +2166,7 @@ func (x *CreateForkRequest) GetSourceRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type CreateForkResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2167,6 +2205,7 @@ func (*CreateForkResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{37}
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromURLRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2256,6 +2295,7 @@ func (x *CreateRepositoryFromURLRequest) GetMirror() bool {
return false
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromURLResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2294,6 +2334,7 @@ func (*CreateRepositoryFromURLResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{39}
}
+// This comment is left unintentionally blank.
type CreateBundleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2341,6 +2382,7 @@ func (x *CreateBundleRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type CreateBundleResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2388,6 +2430,7 @@ func (x *CreateBundleResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateBundleFromRefListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2447,6 +2490,7 @@ func (x *CreateBundleFromRefListRequest) GetPatterns() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateBundleFromRefListResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2593,6 +2637,7 @@ func (x *GetConfigResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type RestoreCustomHooksRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2648,6 +2693,7 @@ func (x *RestoreCustomHooksRequest) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type RestoreCustomHooksResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2686,6 +2732,7 @@ func (*RestoreCustomHooksResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{47}
}
+// This comment is left unintentionally blank.
type BackupCustomHooksRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2733,6 +2780,7 @@ func (x *BackupCustomHooksRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type BackupCustomHooksResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2780,6 +2828,7 @@ func (x *BackupCustomHooksResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromBundleRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2836,6 +2885,7 @@ func (x *CreateRepositoryFromBundleRequest) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromBundleResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2874,6 +2924,7 @@ func (*CreateRepositoryFromBundleResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{51}
}
+// This comment is left unintentionally blank.
type FindLicenseRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2921,6 +2972,7 @@ func (x *FindLicenseRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type FindLicenseResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -2968,6 +3020,7 @@ func (x *FindLicenseResponse) GetLicenseShortName() string {
return ""
}
+// This comment is left unintentionally blank.
type GetInfoAttributesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3015,6 +3068,7 @@ func (x *GetInfoAttributesRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type GetInfoAttributesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3062,6 +3116,7 @@ func (x *GetInfoAttributesResponse) GetAttributes() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CalculateChecksumRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3109,6 +3164,7 @@ func (x *CalculateChecksumRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type CalculateChecksumResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3156,6 +3212,7 @@ func (x *CalculateChecksumResponse) GetChecksum() string {
return ""
}
+// This comment is left unintentionally blank.
type GetSnapshotRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3203,6 +3260,7 @@ func (x *GetSnapshotRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type GetSnapshotResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3250,6 +3308,7 @@ func (x *GetSnapshotResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromSnapshotRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3324,6 +3383,7 @@ func (x *CreateRepositoryFromSnapshotRequest) GetHttpHost() string {
return ""
}
+// This comment is left unintentionally blank.
type CreateRepositoryFromSnapshotResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3362,6 +3422,7 @@ func (*CreateRepositoryFromSnapshotResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{61}
}
+// This comment is left unintentionally blank.
type GetRawChangesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3425,6 +3486,7 @@ func (x *GetRawChangesRequest) GetToRevision() string {
return ""
}
+// This comment is left unintentionally blank.
type GetRawChangesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3472,6 +3534,7 @@ func (x *GetRawChangesResponse) GetRawChanges() []*GetRawChangesResponse_RawChan
return nil
}
+// This comment is left unintentionally blank.
type SearchFilesByNameRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3548,6 +3611,7 @@ func (x *SearchFilesByNameRequest) GetFilter() string {
return ""
}
+// This comment is left unintentionally blank.
type SearchFilesByNameResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3595,6 +3659,7 @@ func (x *SearchFilesByNameResponse) GetFiles() [][]byte {
return nil
}
+// This comment is left unintentionally blank.
type SearchFilesByContentRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3666,6 +3731,7 @@ func (x *SearchFilesByContentRequest) GetChunkedResponse() bool {
return false
}
+// This comment is left unintentionally blank.
type SearchFilesByContentResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3818,6 +3884,7 @@ func (x *Remote) GetHttpHost() string {
return ""
}
+// This comment is left unintentionally blank.
type GetObjectDirectorySizeRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3865,6 +3932,7 @@ func (x *GetObjectDirectorySizeRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type GetObjectDirectorySizeResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3913,6 +3981,7 @@ func (x *GetObjectDirectorySizeResponse) GetSize() int64 {
return 0
}
+// This comment is left unintentionally blank.
type RemoveRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3960,6 +4029,7 @@ func (x *RemoveRepositoryRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type RemoveRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -3998,6 +4068,7 @@ func (*RemoveRepositoryResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{72}
}
+// This comment is left unintentionally blank.
type RenameRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4053,6 +4124,7 @@ func (x *RenameRepositoryRequest) GetRelativePath() string {
return ""
}
+// This comment is left unintentionally blank.
type RenameRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4091,6 +4163,7 @@ func (*RenameRepositoryResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{74}
}
+// This comment is left unintentionally blank.
type ReplicateRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4146,6 +4219,7 @@ func (x *ReplicateRepositoryRequest) GetSource() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type ReplicateRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4184,6 +4258,7 @@ func (*ReplicateRepositoryResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{76}
}
+// This comment is left unintentionally blank.
type OptimizeRepositoryRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4231,6 +4306,7 @@ func (x *OptimizeRepositoryRequest) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type OptimizeRepositoryResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -4455,6 +4531,7 @@ func (*SetFullPathResponse) Descriptor() ([]byte, []int) {
return file_repository_proto_rawDescGZIP(), []int{82}
}
+// This comment is left unintentionally blank.
type GetRawChangesResponse_RawChange struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/server.pb.go b/proto/go/gitalypb/server.pb.go
index fde95b7b3..7e0f96fdd 100644
--- a/proto/go/gitalypb/server.pb.go
+++ b/proto/go/gitalypb/server.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type ServerInfoRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -58,6 +59,7 @@ func (*ServerInfoRequest) Descriptor() ([]byte, []int) {
return file_server_proto_rawDescGZIP(), []int{0}
}
+// This comment is left unintentionally blank.
type ServerInfoResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -121,6 +123,7 @@ func (x *ServerInfoResponse) GetStorageStatuses() []*ServerInfoResponse_StorageS
return nil
}
+// This comment is left unintentionally blank.
type DiskStatisticsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -159,6 +162,7 @@ func (*DiskStatisticsRequest) Descriptor() ([]byte, []int) {
return file_server_proto_rawDescGZIP(), []int{2}
}
+// This comment is left unintentionally blank.
type DiskStatisticsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -206,6 +210,7 @@ func (x *DiskStatisticsResponse) GetStorageStatuses() []*DiskStatisticsResponse_
return nil
}
+// This comment is left unintentionally blank.
type ClockSyncedRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -264,6 +269,7 @@ func (x *ClockSyncedRequest) GetDriftThresholdMillis() int64 {
return 0
}
+// This comment is left unintentionally blank.
type ClockSyncedResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -312,6 +318,7 @@ func (x *ClockSyncedResponse) GetSynced() bool {
return false
}
+// This comment is left unintentionally blank.
type ServerInfoResponse_StorageStatus struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -399,6 +406,7 @@ func (x *ServerInfoResponse_StorageStatus) GetReplicationFactor() uint32 {
return 0
}
+// This comment is left unintentionally blank.
type DiskStatisticsResponse_StorageStatus struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/shared.pb.go b/proto/go/gitalypb/shared.pb.go
index 47098ee0b..30255aa4c 100644
--- a/proto/go/gitalypb/shared.pb.go
+++ b/proto/go/gitalypb/shared.pb.go
@@ -177,6 +177,7 @@ func (SortDirection) EnumDescriptor() ([]byte, []int) {
return file_shared_proto_rawDescGZIP(), []int{2}
}
+// This comment is left unintentionally blank.
type Repository struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -465,6 +466,7 @@ func (x *GitCommit) GetTrailers() []*CommitTrailer {
return nil
}
+// This comment is left unintentionally blank.
type CommitAuthor struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -536,6 +538,7 @@ func (x *CommitAuthor) GetTimezone() []byte {
return nil
}
+// This comment is left unintentionally blank.
type ExitStatus struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -639,6 +642,7 @@ func (x *Branch) GetTargetCommit() *GitCommit {
return nil
}
+// This comment is left unintentionally blank.
type Tag struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -737,6 +741,7 @@ func (x *Tag) GetSignatureType() SignatureType {
return SignatureType_NONE
}
+// This comment is left unintentionally blank.
type User struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -818,6 +823,7 @@ func (x *User) GetTimezone() string {
return ""
}
+// This comment is left unintentionally blank.
type ObjectPool struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -865,6 +871,7 @@ func (x *ObjectPool) GetRepository() *Repository {
return nil
}
+// This comment is left unintentionally blank.
type PaginationParameter struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -931,6 +938,7 @@ func (x *PaginationParameter) GetLimit() int32 {
return 0
}
+// This comment is left unintentionally blank.
type PaginationCursor struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/smarthttp.pb.go b/proto/go/gitalypb/smarthttp.pb.go
index e7ec4a48a..87922e351 100644
--- a/proto/go/gitalypb/smarthttp.pb.go
+++ b/proto/go/gitalypb/smarthttp.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type InfoRefsRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -85,6 +86,7 @@ func (x *InfoRefsRequest) GetGitProtocol() string {
return ""
}
+// This comment is left unintentionally blank.
type InfoRefsResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -132,6 +134,7 @@ func (x *InfoRefsResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type PostUploadPackRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -207,6 +210,7 @@ func (x *PostUploadPackRequest) GetGitProtocol() string {
return ""
}
+// This comment is left unintentionally blank.
type PostUploadPackResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -255,6 +259,7 @@ func (x *PostUploadPackResponse) GetData() []byte {
return nil
}
+// This comment is left unintentionally blank.
type PostUploadPackWithSidechannelRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -321,6 +326,7 @@ func (x *PostUploadPackWithSidechannelRequest) GetGitProtocol() string {
return ""
}
+// This comment is left unintentionally blank.
type PostUploadPackWithSidechannelResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -359,6 +365,7 @@ func (*PostUploadPackWithSidechannelResponse) Descriptor() ([]byte, []int) {
return file_smarthttp_proto_rawDescGZIP(), []int{5}
}
+// This comment is left unintentionally blank.
type PostReceivePackRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -460,6 +467,7 @@ func (x *PostReceivePackRequest) GetGitConfigOptions() []string {
return nil
}
+// This comment is left unintentionally blank.
type PostReceivePackResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/ssh.pb.go b/proto/go/gitalypb/ssh.pb.go
index 32a62d738..898891a8b 100644
--- a/proto/go/gitalypb/ssh.pb.go
+++ b/proto/go/gitalypb/ssh.pb.go
@@ -20,6 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
+// This comment is left unintentionally blank.
type SSHUploadPackRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -95,6 +96,7 @@ func (x *SSHUploadPackRequest) GetGitProtocol() string {
return ""
}
+// This comment is left unintentionally blank.
type SSHUploadPackResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -162,6 +164,7 @@ func (x *SSHUploadPackResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type SSHUploadPackWithSidechannelRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -228,6 +231,7 @@ func (x *SSHUploadPackWithSidechannelRequest) GetGitProtocol() string {
return ""
}
+// This comment is left unintentionally blank.
type SSHUploadPackWithSidechannelResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -266,6 +270,7 @@ func (*SSHUploadPackWithSidechannelResponse) Descriptor() ([]byte, []int) {
return file_ssh_proto_rawDescGZIP(), []int{3}
}
+// This comment is left unintentionally blank.
type SSHReceivePackRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -367,6 +372,7 @@ func (x *SSHReceivePackRequest) GetGitConfigOptions() []string {
return nil
}
+// This comment is left unintentionally blank.
type SSHReceivePackResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -434,6 +440,7 @@ func (x *SSHReceivePackResponse) GetExitStatus() *ExitStatus {
return nil
}
+// This comment is left unintentionally blank.
type SSHUploadArchiveRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -491,6 +498,7 @@ func (x *SSHUploadArchiveRequest) GetStdin() []byte {
return nil
}
+// This comment is left unintentionally blank.
type SSHUploadArchiveResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/transaction.pb.go b/proto/go/gitalypb/transaction.pb.go
index 66956d527..e9cbc2ea0 100644
--- a/proto/go/gitalypb/transaction.pb.go
+++ b/proto/go/gitalypb/transaction.pb.go
@@ -128,6 +128,7 @@ func (VoteTransactionResponse_TransactionState) EnumDescriptor() ([]byte, []int)
return file_transaction_proto_rawDescGZIP(), []int{1, 0}
}
+// This comment is left unintentionally blank.
type VoteTransactionRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -211,6 +212,7 @@ func (x *VoteTransactionRequest) GetPhase() VoteTransactionRequest_Phase {
return VoteTransactionRequest_UNKNOWN_PHASE
}
+// This comment is left unintentionally blank.
type VoteTransactionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -258,6 +260,7 @@ func (x *VoteTransactionResponse) GetState() VoteTransactionResponse_Transaction
return VoteTransactionResponse_COMMIT
}
+// This comment is left unintentionally blank.
type StopTransactionRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -314,6 +317,7 @@ func (x *StopTransactionRequest) GetTransactionId() uint64 {
return 0
}
+// This comment is left unintentionally blank.
type StopTransactionResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/wiki.pb.go b/proto/go/gitalypb/wiki.pb.go
index 647a412b6..6e3318ed2 100644
--- a/proto/go/gitalypb/wiki.pb.go
+++ b/proto/go/gitalypb/wiki.pb.go
@@ -112,6 +112,7 @@ func (WikiListPagesRequest_SortBy) EnumDescriptor() ([]byte, []int) {
return file_wiki_proto_rawDescGZIP(), []int{11, 0}
}
+// This comment is left unintentionally blank.
type WikiCommitDetails struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -191,6 +192,7 @@ func (x *WikiCommitDetails) GetUserName() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WikiPageVersion struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -246,6 +248,7 @@ func (x *WikiPageVersion) GetFormat() string {
return ""
}
+// This comment is left unintentionally blank.
type WikiPage struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -433,6 +436,7 @@ func (x *WikiWritePageRequest) GetContent() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WikiWritePageResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -480,6 +484,7 @@ func (x *WikiWritePageResponse) GetDuplicateError() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WikiUpdatePageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -569,6 +574,7 @@ func (x *WikiUpdatePageRequest) GetContent() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WikiUpdatePageResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -616,6 +622,7 @@ func (x *WikiUpdatePageResponse) GetError() []byte {
return nil
}
+// This comment is left unintentionally blank.
type WikiFindPageRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -745,6 +752,7 @@ func (x *WikiFindPageResponse) GetPage() *WikiPage {
return nil
}
+// This comment is left unintentionally blank.
type WikiGetAllPagesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -874,6 +882,7 @@ func (x *WikiGetAllPagesResponse) GetEndOfPage() bool {
return false
}
+// This comment is left unintentionally blank.
type WikiListPagesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/hook.proto b/proto/hook.proto
index 8b699ef41..b132ebcfb 100644
--- a/proto/hook.proto
+++ b/proto/hook.proto
@@ -50,6 +50,7 @@ service HookService {
}
+// This comment is left unintentionally blank.
message PreReceiveHookRequest {
Repository repository = 1 [(target_repository)=true];
repeated string environment_variables = 2;
@@ -57,12 +58,14 @@ message PreReceiveHookRequest {
repeated string git_push_options = 5;
}
+// This comment is left unintentionally blank.
message PreReceiveHookResponse{
bytes stdout = 1;
bytes stderr = 2;
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message PostReceiveHookRequest {
Repository repository = 1 [(target_repository)=true];
repeated string environment_variables = 2;
@@ -70,12 +73,14 @@ message PostReceiveHookRequest {
repeated string git_push_options = 4;
}
+// This comment is left unintentionally blank.
message PostReceiveHookResponse{
bytes stdout = 1;
bytes stderr = 2;
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message UpdateHookRequest {
Repository repository = 1 [(target_repository)=true];
repeated string environment_variables = 2;
@@ -84,12 +89,14 @@ message UpdateHookRequest {
string new_value = 5;
}
+// This comment is left unintentionally blank.
message UpdateHookResponse{
bytes stdout = 1;
bytes stderr = 2;
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message ReferenceTransactionHookRequest {
Repository repository = 1 [(target_repository)=true];
repeated string environment_variables = 2;
@@ -102,17 +109,20 @@ message ReferenceTransactionHookRequest {
State state = 4;
}
+// This comment is left unintentionally blank.
message ReferenceTransactionHookResponse {
bytes stdout = 1;
bytes stderr = 2;
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message PackObjectsHookWithSidechannelRequest {
Repository repository = 1 [(target_repository)=true];
// args contains the arguments passed to the pack-objects hook, without the leading "git"
repeated string args = 2;
}
+// This comment is left unintentionally blank.
message PackObjectsHookWithSidechannelResponse {
}
diff --git a/proto/internal.proto b/proto/internal.proto
index ce45f9476..baa3c0039 100644
--- a/proto/internal.proto
+++ b/proto/internal.proto
@@ -20,10 +20,12 @@ service InternalGitaly {
}
}
+// This comment is left unintentionally blank.
message WalkReposRequest {
string storage_name = 1 [(storage)=true];
}
+// This comment is left unintentionally blank.
message WalkReposResponse {
string relative_path = 1;
// modification_time is the modification time of the repository directory.
diff --git a/proto/lint.proto b/proto/lint.proto
index 7ba28288a..41240243b 100644
--- a/proto/lint.proto
+++ b/proto/lint.proto
@@ -6,6 +6,7 @@ import "google/protobuf/descriptor.proto";
option go_package = "gitlab.com/gitlab-org/gitaly/v14/proto/go/gitalypb";
+// This comment is left unintentionally blank.
message OperationMsg {
enum Operation {
UNKNOWN = 0;
diff --git a/proto/namespace.proto b/proto/namespace.proto
index e4acbd16d..48937b27a 100644
--- a/proto/namespace.proto
+++ b/proto/namespace.proto
@@ -45,34 +45,44 @@ service NamespaceService {
}
+// This comment is left unintentionally blank.
message AddNamespaceRequest {
string storage_name = 1 [(storage)=true];
string name = 2;
}
+// This comment is left unintentionally blank.
message RemoveNamespaceRequest {
string storage_name = 1 [(storage)=true];
string name = 2;
}
+// This comment is left unintentionally blank.
message RenameNamespaceRequest {
string storage_name = 1 [(storage)=true];
string from = 2;
string to = 3;
}
+// This comment is left unintentionally blank.
message NamespaceExistsRequest {
string storage_name = 1 [(storage)=true];
string name = 2;
}
+// This comment is left unintentionally blank.
message NamespaceExistsResponse {
bool exists = 1;
}
+// This comment is left unintentionally blank.
message AddNamespaceResponse {
}
+
+// This comment is left unintentionally blank.
message RemoveNamespaceResponse {
}
+
+// This comment is left unintentionally blank.
message RenameNamespaceResponse {
}
diff --git a/proto/objectpool.proto b/proto/objectpool.proto
index a88117e0e..26e1e8d1d 100644
--- a/proto/objectpool.proto
+++ b/proto/objectpool.proto
@@ -70,6 +70,8 @@ message CreateObjectPoolRequest {
ObjectPool object_pool = 1 [(target_repository)=true];
Repository origin = 2 [(additional_repository)=true];
}
+
+// This comment is left unintentionally blank.
message CreateObjectPoolResponse {
}
@@ -78,41 +80,56 @@ message CreateObjectPoolResponse {
message DeleteObjectPoolRequest {
ObjectPool object_pool = 1 [(target_repository)=true];
}
+
+// This comment is left unintentionally blank.
message DeleteObjectPoolResponse {
}
+// This comment is left unintentionally blank.
message LinkRepositoryToObjectPoolRequest {
ObjectPool object_pool = 1 [(additional_repository)=true];
Repository repository = 2 [(target_repository)=true];
}
+
+// This comment is left unintentionally blank.
message LinkRepositoryToObjectPoolResponse {
}
+// This comment is left unintentionally blank.
message ReduplicateRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
}
+
+// This comment is left unintentionally blank.
message ReduplicateRepositoryResponse {
}
+// This comment is left unintentionally blank.
message DisconnectGitAlternatesRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message DisconnectGitAlternatesResponse {
}
+// This comment is left unintentionally blank.
message FetchIntoObjectPoolRequest {
Repository origin = 1 [(additional_repository)=true];
ObjectPool object_pool = 2 [(target_repository)=true];
bool repack = 3;
}
+
+// This comment is left unintentionally blank.
message FetchIntoObjectPoolResponse {
}
+// This comment is left unintentionally blank.
message GetObjectPoolRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message GetObjectPoolResponse {
ObjectPool object_pool = 1;
}
diff --git a/proto/operations.proto b/proto/operations.proto
index 54f98745c..91e3f59ac 100644
--- a/proto/operations.proto
+++ b/proto/operations.proto
@@ -151,6 +151,7 @@ service OperationService {
}
+// This comment is left unintentionally blank.
message UserCreateBranchRequest {
Repository repository = 1 [(target_repository)=true];
bytes branch_name = 2;
@@ -158,6 +159,7 @@ message UserCreateBranchRequest {
bytes start_point = 4;
}
+// This comment is left unintentionally blank.
message UserCreateBranchResponse {
Branch branch = 1;
// Error returned by the pre-receive hook. If no error was thrown,
@@ -165,6 +167,7 @@ message UserCreateBranchResponse {
string pre_receive_error = 2;
}
+// This comment is left unintentionally blank.
message UserUpdateBranchRequest {
Repository repository = 1 [(target_repository)=true];
bytes branch_name = 2;
@@ -173,30 +176,36 @@ message UserUpdateBranchRequest {
bytes oldrev = 5;
}
+// This comment is left unintentionally blank.
message UserUpdateBranchResponse {
string pre_receive_error = 1;
}
+// This comment is left unintentionally blank.
message UserDeleteBranchRequest {
Repository repository = 1 [(target_repository)=true];
bytes branch_name = 2;
User user = 3;
}
+// This comment is left unintentionally blank.
message UserDeleteBranchResponse {
string pre_receive_error = 1;
}
+// This comment is left unintentionally blank.
message UserDeleteTagRequest {
Repository repository = 1 [(target_repository)=true];
bytes tag_name = 2;
User user = 3;
}
+// This comment is left unintentionally blank.
message UserDeleteTagResponse {
string pre_receive_error = 1;
}
+// This comment is left unintentionally blank.
message UserCreateTagRequest {
// repository is the repository in which the tag shall be created.
Repository repository = 1 [(target_repository)=true];
@@ -215,6 +224,7 @@ message UserCreateTagRequest {
google.protobuf.Timestamp timestamp = 7;
}
+// This comment is left unintentionally blank.
message UserCreateTagResponse {
// tag is the newly created tag.
Tag tag = 1;
@@ -225,6 +235,7 @@ message UserCreateTagResponse {
string pre_receive_error = 3;
}
+// This comment is left unintentionally blank.
message UserMergeBranchRequest {
// The following parameters must only be set in the first message to declare
// parameters for the merge.
@@ -252,6 +263,7 @@ message UserMergeBranchRequest {
bool apply = 6;
}
+// This comment is left unintentionally blank.
message UserMergeBranchResponse {
// First message
// The merge commit the branch will be updated to. The caller can still abort the merge.
@@ -278,6 +290,7 @@ message UserMergeBranchError {
}
}
+// This comment is left unintentionally blank.
message UserMergeToRefRequest {
// repository is the repository in which the merge shall be computed.
Repository repository = 1 [(target_repository)=true];
@@ -307,6 +320,7 @@ message UserMergeToRefRequest {
google.protobuf.Timestamp timestamp = 9;
}
+// This comment is left unintentionally blank.
message UserMergeToRefResponse {
// commit_id is the object ID of the computed merge commit.
string commit_id = 1;
@@ -342,11 +356,13 @@ message UserFFBranchRequest {
bytes branch = 4;
}
+// This comment is left unintentionally blank.
message UserFFBranchResponse {
OperationBranchUpdate branch_update = 1;
string pre_receive_error = 2;
}
+// This comment is left unintentionally blank.
message UserCherryPickRequest {
// repository is the repository into which the cherry-pick shall be
// performed.
@@ -375,6 +391,7 @@ message UserCherryPickRequest {
google.protobuf.Timestamp timestamp = 9;
}
+// This comment is left unintentionally blank.
message UserCherryPickResponse {
// CreateTreeError represents an error which happened when computing the
// cherry-pick.
@@ -424,6 +441,7 @@ message UserCherryPickError {
}
}
+// This comment is left unintentionally blank.
message UserRevertRequest {
// repository is the repository in which the revert shall be applied.
Repository repository = 1 [(target_repository)=true];
@@ -451,6 +469,7 @@ message UserRevertRequest {
google.protobuf.Timestamp timestamp = 9;
}
+// This comment is left unintentionally blank.
message UserRevertResponse {
// CreateTreeError represents an error which happened when computing the
// revert.
@@ -591,6 +610,7 @@ message UserCommitFilesResponse {
string pre_receive_error = 3;
}
+// This comment is left unintentionally blank.
message UserRebaseConfirmableRequest {
// Header contains information to compute the rebase and must be sent as
// first message.
@@ -633,6 +653,7 @@ message UserRebaseConfirmableRequest {
}
}
+// This comment is left unintentionally blank.
message UserRebaseConfirmableResponse {
oneof user_rebase_confirmable_response_payload {
// The first response will contain the rebase commit the branch will
@@ -649,6 +670,7 @@ message UserRebaseConfirmableResponse {
string git_error = 4;
}
+// This comment is left unintentionally blank.
message UserSquashRequest {
// repository is the repository into which the squashed commit shall be
// written.
@@ -673,6 +695,7 @@ message UserSquashRequest {
reserved "squash_id";
}
+// This comment is left unintentionally blank.
message UserSquashResponse {
// squash_sha is the object ID of the squashed commit.
string squash_sha = 1;
@@ -686,6 +709,7 @@ message UserSquashResponse {
string git_error = 3 [deprecated=true];
}
+// This comment is left unintentionally blank.
message UserRebaseConfirmableError {
oneof error {
// RebaseConflict is returned in case rebasing commits on top of the start
@@ -710,6 +734,7 @@ message UserSquashError {
}
}
+// This comment is left unintentionally blank.
message UserApplyPatchRequest {
// Header contains information about how to apply the patches.
message Header {
@@ -733,11 +758,13 @@ message UserApplyPatchRequest {
}
}
+// This comment is left unintentionally blank.
message UserApplyPatchResponse {
// branch_update contains information about the updated branch.
OperationBranchUpdate branch_update = 1;
}
+// This comment is left unintentionally blank.
message UserUpdateSubmoduleRequest {
// repository is the repository in which the submodule shall be updated.
Repository repository = 1 [(target_repository)=true];
@@ -759,6 +786,7 @@ message UserUpdateSubmoduleRequest {
google.protobuf.Timestamp timestamp = 7;
}
+// This comment is left unintentionally blank.
message UserUpdateSubmoduleResponse {
// branch_update contains information about the updated branch.
OperationBranchUpdate branch_update = 1;
diff --git a/proto/praefect.proto b/proto/praefect.proto
index bd46daf48..c4f807e07 100644
--- a/proto/praefect.proto
+++ b/proto/praefect.proto
@@ -73,6 +73,7 @@ message MarkUnverifiedResponse {
// GetRepositoryMetadataRequest specifies the repository to retrieve metadata for.
message GetRepositoryMetadataRequest {
+ // This comment is left unintentionally blank.
message Path {
// virtual_storage is the virtual storage where the repository is.
string virtual_storage = 1;
@@ -90,6 +91,7 @@ message GetRepositoryMetadataRequest {
// GeRepositoryMetadataResponse contains the repository's cluster metadata.
message GetRepositoryMetadataResponse {
+ // This comment is left unintentionally blank.
message Replica {
// storage is the name of the replica's storage.
string storage = 1;
@@ -138,15 +140,18 @@ message SetReplicationFactorResponse {
repeated string storages = 1;
}
+// This comment is left unintentionally blank.
message SetAuthoritativeStorageRequest {
string virtual_storage = 1;
string relative_path = 2;
string authoritative_storage = 3;
}
+// This comment is left unintentionally blank.
message SetAuthoritativeStorageResponse {
}
+// This comment is left unintentionally blank.
message DatalossCheckRequest {
string virtual_storage = 1;
// include_partially_unavailable indicates whether to include repositories which are available but
@@ -154,8 +159,11 @@ message DatalossCheckRequest {
bool include_partially_replicated = 2;
}
+// This comment is left unintentionally blank.
message DatalossCheckResponse {
+ // This comment is left unintentionally blank.
message Repository {
+ // This comment is left unintentionally blank.
message Storage {
// name of the storage
string name = 1;
@@ -184,11 +192,14 @@ message DatalossCheckResponse {
repeated Repository repositories = 2;
}
+// This comment is left unintentionally blank.
message RepositoryReplicasRequest{
Repository repository = 1;
}
+// This comment is left unintentionally blank.
message RepositoryReplicasResponse{
+ // This comment is left unintentionally blank.
message RepositoryDetails {
Repository repository = 1;
string checksum = 2;
diff --git a/proto/ref.proto b/proto/ref.proto
index 24721563b..21a3e15a3 100644
--- a/proto/ref.proto
+++ b/proto/ref.proto
@@ -149,30 +149,37 @@ service RefService {
}
+// This comment is left unintentionally blank.
message FindDefaultBranchNameRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message FindDefaultBranchNameResponse {
bytes name = 1;
}
+// This comment is left unintentionally blank.
message FindAllBranchNamesRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message FindAllBranchNamesResponse {
repeated bytes names = 1;
}
+// This comment is left unintentionally blank.
message FindAllTagNamesRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message FindAllTagNamesResponse {
repeated bytes names = 1;
}
+// This comment is left unintentionally blank.
message FindLocalBranchesRequest {
Repository repository = 1 [(target_repository)=true];
enum SortBy {
@@ -188,10 +195,12 @@ message FindLocalBranchesRequest {
PaginationParameter pagination_params = 3;
}
+// This comment is left unintentionally blank.
message FindLocalBranchesResponse {
repeated FindLocalBranchResponse branches = 1;
}
+// This comment is left unintentionally blank.
message FindLocalBranchResponse {
bytes name = 1;
string commit_id = 2;
@@ -201,6 +210,7 @@ message FindLocalBranchResponse {
GitCommit commit = 6;
}
+// This comment is left unintentionally blank.
message FindLocalBranchCommitAuthor {
bytes name = 1;
bytes email = 2;
@@ -208,6 +218,7 @@ message FindLocalBranchCommitAuthor {
bytes timezone = 4;
}
+// This comment is left unintentionally blank.
message FindAllBranchesRequest {
Repository repository = 1 [(target_repository)=true];
// Only return branches that are merged into root ref
@@ -217,7 +228,9 @@ message FindAllBranchesRequest {
repeated bytes merged_branches = 3;
}
+// This comment is left unintentionally blank.
message FindAllBranchesResponse {
+ // This comment is left unintentionally blank.
message Branch {
bytes name = 1;
GitCommit target = 2;
@@ -225,15 +238,18 @@ message FindAllBranchesResponse {
repeated Branch branches = 1;
}
+// This comment is left unintentionally blank.
message FindTagRequest {
Repository repository = 1 [(target_repository)=true];
bytes tag_name = 2;
}
+// This comment is left unintentionally blank.
message FindTagResponse {
Tag tag = 1;
}
+// This comment is left unintentionally blank.
message FindAllTagsRequest {
Repository repository = 1 [(target_repository)=true];
// SortBy allows to specify desired order of the elements.
@@ -257,26 +273,31 @@ message FindAllTagsRequest {
PaginationParameter pagination_params = 3;
}
+// This comment is left unintentionally blank.
message FindAllTagsResponse {
repeated Tag tags = 1;
}
+// This comment is left unintentionally blank.
message RefExistsRequest {
Repository repository = 1 [(target_repository)=true];
// Any ref, e.g. 'refs/heads/master' or 'refs/tags/v1.0.1'. Must start with 'refs/'.
bytes ref = 2;
}
+// This comment is left unintentionally blank.
message RefExistsResponse {
bool value = 1;
}
+// This comment is left unintentionally blank.
message CreateBranchRequest {
Repository repository = 1 [(target_repository)=true];
bytes name = 2;
bytes start_point = 3;
}
+// This comment is left unintentionally blank.
message CreateBranchResponse {
enum Status {
OK = 0;
@@ -288,6 +309,7 @@ message CreateBranchResponse {
Branch branch = 2;
}
+// This comment is left unintentionally blank.
message DeleteBranchRequest {
Repository repository = 1 [(target_repository)=true];
bytes name = 2;
@@ -297,6 +319,7 @@ message DeleteBranchRequest {
message DeleteBranchResponse {
}
+// This comment is left unintentionally blank.
message FindBranchRequest {
// repository is the repository in which the branch should be looked up.
Repository repository = 1 [(target_repository)=true];
@@ -305,10 +328,12 @@ message FindBranchRequest {
bytes name = 2;
}
+// This comment is left unintentionally blank.
message FindBranchResponse {
Branch branch = 1;
}
+// This comment is left unintentionally blank.
message DeleteRefsRequest{
Repository repository = 1 [(target_repository)=true];
// The following two fields are mutually exclusive
@@ -316,10 +341,12 @@ message DeleteRefsRequest{
repeated bytes refs = 3;
}
+// This comment is left unintentionally blank.
message DeleteRefsResponse {
string git_error = 1;
}
+// This comment is left unintentionally blank.
message ListBranchNamesContainingCommitRequest {
Repository repository = 1 [(target_repository)=true];
string commit_id = 2;
@@ -329,11 +356,13 @@ message ListBranchNamesContainingCommitRequest {
uint32 limit = 3;
}
+// This comment is left unintentionally blank.
message ListBranchNamesContainingCommitResponse {
reserved 1;
repeated bytes branch_names = 2;
}
+// This comment is left unintentionally blank.
message ListTagNamesContainingCommitRequest {
Repository repository = 1 [(target_repository)=true];
string commit_id = 2;
@@ -343,6 +372,7 @@ message ListTagNamesContainingCommitRequest {
uint32 limit = 3;
}
+// This comment is left unintentionally blank.
message ListTagNamesContainingCommitResponse {
reserved 1;
repeated bytes tag_names = 2;
@@ -379,6 +409,7 @@ message GetTagSignaturesResponse {
repeated TagSignature signatures = 1;
}
+// This comment is left unintentionally blank.
message GetTagMessagesRequest {
reserved 2;
reserved "tag_names";
@@ -387,6 +418,7 @@ message GetTagMessagesRequest {
repeated string tag_ids = 3;
}
+// This comment is left unintentionally blank.
message GetTagMessagesResponse {
reserved 1;
reserved "tag_name";
@@ -396,15 +428,18 @@ message GetTagMessagesResponse {
string tag_id = 3;
}
+// This comment is left unintentionally blank.
message FindAllRemoteBranchesRequest {
Repository repository = 1 [(target_repository)=true];
string remote_name = 2;
}
+// This comment is left unintentionally blank.
message FindAllRemoteBranchesResponse {
repeated Branch branches = 1;
}
+// This comment is left unintentionally blank.
message PackRefsRequest {
Repository repository = 1 [(target_repository)=true];
@@ -413,6 +448,7 @@ message PackRefsRequest {
reserved "all_refs";
}
+// This comment is left unintentionally blank.
message PackRefsResponse{
}
@@ -428,6 +464,7 @@ message ListRefsRequest {
// pseudo-refs are not included in the response.
bool head = 3;
+ // This comment is left unintentionally blank.
message SortBy {
enum Key {
REFNAME = 0;
@@ -460,6 +497,7 @@ message ListRefsResponse{
repeated Reference references = 1;
}
+// This comment is left unintentionally blank.
message FindRefsByOIDRequest {
// repository is the repository in which references will be looked for.
Repository repository = 1 [(target_repository)=true];
@@ -476,6 +514,7 @@ message FindRefsByOIDRequest {
uint32 limit = 5;
}
+// This comment is left unintentionally blank.
message FindRefsByOIDResponse {
// refs is the set of fully-qualified references which have been found.
repeated string refs = 1;
diff --git a/proto/remote.proto b/proto/remote.proto
index 8a5fa0f07..aece6cd0c 100644
--- a/proto/remote.proto
+++ b/proto/remote.proto
@@ -42,7 +42,9 @@ service RemoteService {
}
}
+// This comment is left unintentionally blank.
message UpdateRemoteMirrorRequest {
+ // This comment is left unintentionally blank.
message Remote {
// URL is the URL of the remote repository.
string url = 1;
@@ -82,12 +84,14 @@ message UpdateRemoteMirrorRequest {
reserved "ref_name";
}
+// This comment is left unintentionally blank.
message UpdateRemoteMirrorResponse {
// DivergentRefs contains a list of references that had diverged in the
// mirror from the source repository.
repeated bytes divergent_refs = 1;
}
+// This comment is left unintentionally blank.
message FindRemoteRepositoryRequest {
string remote = 1;
// This field is used to redirect request to proper storage where it can be handled.
diff --git a/proto/repository.proto b/proto/repository.proto
index 5d830088e..2f2a6820c 100644
--- a/proto/repository.proto
+++ b/proto/repository.proto
@@ -330,36 +330,45 @@ service RepositoryService {
}
}
+// This comment is left unintentionally blank.
message RepositoryExistsRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message RepositoryExistsResponse {
bool exists = 1;
}
+// This comment is left unintentionally blank.
message RepackIncrementalRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message RepackIncrementalResponse {
}
+// This comment is left unintentionally blank.
message RepackFullRequest {
Repository repository = 1 [(target_repository)=true];
bool create_bitmap = 2;
}
+// This comment is left unintentionally blank.
message RepackFullResponse {
}
+// This comment is left unintentionally blank.
message MidxRepackRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message MidxRepackResponse {
}
+// This comment is left unintentionally blank.
message GarbageCollectRequest {
Repository repository = 1 [(target_repository)=true];
bool create_bitmap = 2;
@@ -371,9 +380,11 @@ message GarbageCollectRequest {
bool prune = 3;
}
+// This comment is left unintentionally blank.
message GarbageCollectResponse {
}
+// This comment is left unintentionally blank.
message WriteCommitGraphRequest {
enum SplitStrategy {
// SizeMultiple requires to use '--split --size-multiple=4' strategy to create/update commit graph.
@@ -386,33 +397,41 @@ message WriteCommitGraphRequest {
SplitStrategy splitStrategy = 2; // protolint:disable:this FIELD_NAMES_LOWER_SNAKE_CASE
}
+// This comment is left unintentionally blank.
message WriteCommitGraphResponse {
}
+// This comment is left unintentionally blank.
message CleanupRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message CleanupResponse {
}
+// This comment is left unintentionally blank.
message RepositorySizeRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message RepositorySizeResponse {
// Repository size in kilobytes
int64 size = 1;
}
+// This comment is left unintentionally blank.
message ApplyGitattributesRequest {
Repository repository = 1 [(target_repository)=true];
bytes revision = 2;
}
+// This comment is left unintentionally blank.
message ApplyGitattributesResponse {
}
+// This comment is left unintentionally blank.
message FetchBundleRequest {
// Repository into which the reference shall be fetched.
Repository repository = 1 [(target_repository)=true];
@@ -424,9 +443,11 @@ message FetchBundleRequest {
bool update_head = 3;
}
+// This comment is left unintentionally blank.
message FetchBundleResponse {
}
+// This comment is left unintentionally blank.
message FetchRemoteRequest {
Repository repository = 1 [(target_repository)=true];
// force determines if references should be force-updated in case they have
@@ -454,6 +475,7 @@ message FetchRemoteRequest {
reserved "remote";
}
+// This comment is left unintentionally blank.
message FetchRemoteResponse {
// If check_tags_changed was set in the FetchRemoteRequest, the FetchRemote
// RPC will return false when no tags were changed, and true if tags were
@@ -461,6 +483,7 @@ message FetchRemoteResponse {
bool tags_changed = 1;
}
+// This comment is left unintentionally blank.
message CreateRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
// Provide a branch name to set as the default branch of a newly created
@@ -469,9 +492,11 @@ message CreateRepositoryRequest {
bytes default_branch = 2;
}
+// This comment is left unintentionally blank.
message CreateRepositoryResponse {
}
+// This comment is left unintentionally blank.
message GetArchiveRequest {
enum Format {
ZIP = 0;
@@ -496,18 +521,22 @@ message GetArchiveRequest {
bool include_lfs_blobs = 8;
}
+// This comment is left unintentionally blank.
message GetArchiveResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message HasLocalBranchesRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message HasLocalBranchesResponse {
bool value = 1;
}
+// This comment is left unintentionally blank.
message FetchSourceBranchRequest {
// Repository into which the reference shall be fetched. After a successful
// call, it should contain the target reference which points to the same
@@ -522,20 +551,24 @@ message FetchSourceBranchRequest {
bytes target_ref = 4;
}
+// This comment is left unintentionally blank.
message FetchSourceBranchResponse {
// True if the source branch was successfully fetched into the target
// repository, false if resolving the remote reference or fetching it failed.
bool result = 1;
}
+// This comment is left unintentionally blank.
message FsckRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message FsckResponse {
bytes error = 1;
}
+// This comment is left unintentionally blank.
message WriteRefRequest {
Repository repository = 1 [(target_repository)=true];
bytes ref = 2;
@@ -547,12 +580,14 @@ message WriteRefRequest {
reserved 6;
}
+// This comment is left unintentionally blank.
message WriteRefResponse {
// This used to contain an error message. Since we're shelling out
// all exceptions are wrapped in GRPC errors.
reserved 1;
}
+// This comment is left unintentionally blank.
message FindMergeBaseRequest {
Repository repository = 1 [(target_repository)=true];
// We use a repeated field because rugged supports finding a base
@@ -561,18 +596,22 @@ message FindMergeBaseRequest {
repeated bytes revisions = 2;
}
+// This comment is left unintentionally blank.
message FindMergeBaseResponse {
string base = 1;
}
+// This comment is left unintentionally blank.
message CreateForkRequest {
Repository repository = 1 [(target_repository)=true];
Repository source_repository = 2;
}
+// This comment is left unintentionally blank.
message CreateForkResponse {
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromURLRequest {
Repository repository = 1 [(target_repository)=true];
string url = 2;
@@ -591,17 +630,21 @@ message CreateRepositoryFromURLRequest {
bool mirror = 5;
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromURLResponse {
}
+// This comment is left unintentionally blank.
message CreateBundleRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message CreateBundleResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message CreateBundleFromRefListRequest {
// Repository is the repository that the bundle is created from.
Repository repository = 1 [(target_repository)=true];
@@ -612,6 +655,7 @@ message CreateBundleFromRefListRequest {
repeated bytes patterns = 2;
}
+// This comment is left unintentionally blank.
message CreateBundleFromRefListResponse {
bytes data = 1;
}
@@ -629,63 +673,78 @@ message GetConfigResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message RestoreCustomHooksRequest {
Repository repository = 1 [(target_repository)=true];
bytes data = 2;
}
+// This comment is left unintentionally blank.
message RestoreCustomHooksResponse {
}
+// This comment is left unintentionally blank.
message BackupCustomHooksRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message BackupCustomHooksResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromBundleRequest {
// Only available on the first message
Repository repository = 1 [(target_repository)=true];
bytes data = 2;
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromBundleResponse {
}
+// This comment is left unintentionally blank.
message FindLicenseRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message FindLicenseResponse {
string license_short_name = 1;
}
+// This comment is left unintentionally blank.
message GetInfoAttributesRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message GetInfoAttributesResponse {
bytes attributes = 1;
}
+// This comment is left unintentionally blank.
message CalculateChecksumRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message CalculateChecksumResponse {
string checksum = 1;
}
+// This comment is left unintentionally blank.
message GetSnapshotRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message GetSnapshotResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromSnapshotRequest {
Repository repository = 1 [(target_repository)=true];
string http_url = 2;
@@ -696,16 +755,20 @@ message CreateRepositoryFromSnapshotRequest {
string http_host = 4;
}
+// This comment is left unintentionally blank.
message CreateRepositoryFromSnapshotResponse {
}
+// This comment is left unintentionally blank.
message GetRawChangesRequest {
Repository repository = 1 [(target_repository)=true];
string from_revision = 2;
string to_revision = 3;
}
+// This comment is left unintentionally blank.
message GetRawChangesResponse {
+ // This comment is left unintentionally blank.
message RawChange {
enum Operation {
UNKNOWN = 0;
@@ -740,6 +803,7 @@ message GetRawChangesResponse {
repeated RawChange raw_changes = 1;
}
+// This comment is left unintentionally blank.
message SearchFilesByNameRequest {
Repository repository = 1 [(target_repository)=true];
string query = 2;
@@ -752,10 +816,12 @@ message SearchFilesByNameRequest {
string filter = 4;
}
+// This comment is left unintentionally blank.
message SearchFilesByNameResponse {
repeated bytes files = 1;
}
+// This comment is left unintentionally blank.
message SearchFilesByContentRequest {
Repository repository = 1 [(target_repository)=true];
string query = 2;
@@ -763,6 +829,7 @@ message SearchFilesByContentRequest {
bool chunked_response = 4;
}
+// This comment is left unintentionally blank.
message SearchFilesByContentResponse {
repeated bytes matches = 1;
bytes match_data = 2;
@@ -803,41 +870,52 @@ message Remote {
reserved "name";
}
+// This comment is left unintentionally blank.
message GetObjectDirectorySizeRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message GetObjectDirectorySizeResponse {
// Object directory size in kilobytes
int64 size = 1;
}
+// This comment is left unintentionally blank.
message RemoveRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message RemoveRepositoryResponse {
}
+
+// This comment is left unintentionally blank.
message RenameRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
string relative_path = 2;
}
+// This comment is left unintentionally blank.
message RenameRepositoryResponse{
}
+// This comment is left unintentionally blank.
message ReplicateRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
Repository source = 2;
}
+// This comment is left unintentionally blank.
message ReplicateRepositoryResponse{
}
+// This comment is left unintentionally blank.
message OptimizeRepositoryRequest {
Repository repository = 1 [(target_repository)=true];
}
+// This comment is left unintentionally blank.
message OptimizeRepositoryResponse{
}
diff --git a/proto/server.proto b/proto/server.proto
index 3fac8b6f9..4025f2a15 100644
--- a/proto/server.proto
+++ b/proto/server.proto
@@ -22,10 +22,13 @@ service ServerService {
}
+// This comment is left unintentionally blank.
message ServerInfoRequest {
}
+// This comment is left unintentionally blank.
message ServerInfoResponse {
+ // This comment is left unintentionally blank.
message StorageStatus {
string storage_name = 1;
bool readable = 2;
@@ -40,10 +43,13 @@ message ServerInfoResponse {
repeated StorageStatus storage_statuses = 3;
}
+// This comment is left unintentionally blank.
message DiskStatisticsRequest {
}
+// This comment is left unintentionally blank.
message DiskStatisticsResponse {
+ // This comment is left unintentionally blank.
message StorageStatus {
// When both available and used fields are equal 0 that means that
// Gitaly was unable to determine storage stats.
@@ -55,6 +61,7 @@ message DiskStatisticsResponse {
repeated StorageStatus storage_statuses = 1;
}
+// This comment is left unintentionally blank.
message ClockSyncedRequest {
// ntp_host is a URL to the external NTP service that should be used for clock sync check.
// Default is ntp.pool.org
@@ -63,6 +70,7 @@ message ClockSyncedRequest {
int64 drift_threshold_millis = 2;
}
+// This comment is left unintentionally blank.
message ClockSyncedResponse {
// synced is set to true if system clock has an affordable drift compared to NTP service.
bool synced = 1;
diff --git a/proto/shared.proto b/proto/shared.proto
index e5bb6a9f7..733bce621 100644
--- a/proto/shared.proto
+++ b/proto/shared.proto
@@ -23,6 +23,7 @@ enum SignatureType {
// maybe add X509+TSA or other combinations at a later step
}
+// This comment is left unintentionally blank.
message Repository {
// DEPRECATED: https://gitlab.com/gitlab-org/gitaly/issues/151
reserved 1;
@@ -83,6 +84,7 @@ message GitCommit {
repeated CommitTrailer trailers = 10;
}
+// This comment is left unintentionally blank.
message CommitAuthor {
bytes name = 1;
bytes email = 2;
@@ -90,6 +92,7 @@ message CommitAuthor {
bytes timezone = 4;
}
+// This comment is left unintentionally blank.
message ExitStatus {
int32 value = 1;
}
@@ -100,6 +103,7 @@ message Branch {
GitCommit target_commit = 2;
}
+// This comment is left unintentionally blank.
message Tag {
bytes name = 1;
string id = 2;
@@ -113,6 +117,7 @@ message Tag {
SignatureType signature_type = 7;
}
+// This comment is left unintentionally blank.
message User {
string gl_id = 1;
bytes name = 2;
@@ -123,10 +128,12 @@ message User {
string timezone = 5;
}
+// This comment is left unintentionally blank.
message ObjectPool {
Repository repository = 1 [(gitaly.repository)=true];
}
+// This comment is left unintentionally blank.
message PaginationParameter {
// Instructs pagination to start sending results after the provided page
// token appears. A page token allows for a generic pattern to uniquely
@@ -143,6 +150,7 @@ message PaginationParameter {
int32 limit = 2;
}
+// This comment is left unintentionally blank.
message PaginationCursor {
// To the caller, this is an opaque token to indicate what the caller
// should present as a page_token to get subsequent results.
diff --git a/proto/smarthttp.proto b/proto/smarthttp.proto
index c1d4fd83f..6695582e8 100644
--- a/proto/smarthttp.proto
+++ b/proto/smarthttp.proto
@@ -50,6 +50,7 @@ service SmartHTTPService {
}
}
+// This comment is left unintentionally blank.
message InfoRefsRequest {
Repository repository = 1 [(target_repository)=true];
// Parameters to use with git -c (key=value pairs)
@@ -59,10 +60,12 @@ message InfoRefsRequest {
string git_protocol = 3;
}
+// This comment is left unintentionally blank.
message InfoRefsResponse {
bytes data = 1;
}
+// This comment is left unintentionally blank.
message PostUploadPackRequest {
// repository should only be present in the first message of the stream
Repository repository = 1 [(target_repository)=true];
@@ -75,11 +78,13 @@ message PostUploadPackRequest {
string git_protocol = 4;
}
+// This comment is left unintentionally blank.
message PostUploadPackResponse {
// Raw data from stdout of 'git upload-pack'
bytes data = 1;
}
+// This comment is left unintentionally blank.
message PostUploadPackWithSidechannelRequest {
// repository should only be present in the first message of the stream
Repository repository = 1 [(target_repository)=true];
@@ -89,9 +94,11 @@ message PostUploadPackWithSidechannelRequest {
string git_protocol = 3;
}
+// This comment is left unintentionally blank.
message PostUploadPackWithSidechannelResponse {
}
+// This comment is left unintentionally blank.
message PostReceivePackRequest {
// repository should only be present in the first message of the stream
Repository repository = 1 [(target_repository)=true];
@@ -109,6 +116,7 @@ message PostReceivePackRequest {
repeated string git_config_options = 7;
}
+// This comment is left unintentionally blank.
message PostReceivePackResponse {
// Raw data from stdout of 'git receive-pack'
bytes data = 1;
diff --git a/proto/ssh.proto b/proto/ssh.proto
index 45b64c004..1621cff2b 100644
--- a/proto/ssh.proto
+++ b/proto/ssh.proto
@@ -38,6 +38,7 @@ service SSHService {
}
}
+// This comment is left unintentionally blank.
message SSHUploadPackRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -53,6 +54,7 @@ message SSHUploadPackRequest {
string git_protocol = 5;
}
+// This comment is left unintentionally blank.
message SSHUploadPackResponse {
// A chunk of raw data from 'git upload-pack' standard output
bytes stdout = 1;
@@ -63,6 +65,7 @@ message SSHUploadPackResponse {
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadPackWithSidechannelRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -73,9 +76,11 @@ message SSHUploadPackWithSidechannelRequest {
string git_protocol = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadPackWithSidechannelResponse {
}
+// This comment is left unintentionally blank.
message SSHReceivePackRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -94,6 +99,7 @@ message SSHReceivePackRequest {
repeated string git_config_options = 7;
}
+// This comment is left unintentionally blank.
message SSHReceivePackResponse {
// A chunk of raw data from 'git receive-pack' standard output
bytes stdout = 1;
@@ -104,6 +110,7 @@ message SSHReceivePackResponse {
ExitStatus exit_status = 3;
}
+// This comment is left unintentionally blank.
message SSHUploadArchiveRequest {
// 'repository' must be present in the first message.
Repository repository = 1 [(target_repository)=true];
@@ -111,6 +118,7 @@ message SSHUploadArchiveRequest {
bytes stdin = 2;
}
+// This comment is left unintentionally blank.
message SSHUploadArchiveResponse {
// A chunk of raw data from 'git upload-archive' standard output
bytes stdout = 1;
diff --git a/proto/transaction.proto b/proto/transaction.proto
index aeca018ca..cbd94a985 100644
--- a/proto/transaction.proto
+++ b/proto/transaction.proto
@@ -42,6 +42,7 @@ service RefTransaction {
}
+// This comment is left unintentionally blank.
message VoteTransactionRequest {
enum Phase {
// UNKNOWN_PHASE is the unknown voting phase. This value has been the
@@ -68,6 +69,7 @@ message VoteTransactionRequest {
Phase phase = 5;
}
+// This comment is left unintentionally blank.
message VoteTransactionResponse {
// The outcome of the given transaction telling the client whether the
// transaction should be committed or rolled back.
@@ -80,11 +82,13 @@ message VoteTransactionResponse {
TransactionState state = 1;
}
+// This comment is left unintentionally blank.
message StopTransactionRequest {
Repository repository = 1[(target_repository)=true];
// ID of the transaction we're processing
uint64 transaction_id = 2;
}
+// This comment is left unintentionally blank.
message StopTransactionResponse {
}
diff --git a/proto/wiki.proto b/proto/wiki.proto
index 7bc9afe21..0837b6470 100644
--- a/proto/wiki.proto
+++ b/proto/wiki.proto
@@ -49,6 +49,7 @@ service WikiService {
}
+// This comment is left unintentionally blank.
message WikiCommitDetails {
bytes name = 1;
bytes email = 2;
@@ -57,11 +58,13 @@ message WikiCommitDetails {
bytes user_name = 5;
}
+// This comment is left unintentionally blank.
message WikiPageVersion {
GitCommit commit = 1;
string format = 2;
}
+// This comment is left unintentionally blank.
message WikiPage {
// These fields are only present in the first message of a WikiPage stream
WikiPageVersion version = 1;
@@ -87,10 +90,12 @@ message WikiWritePageRequest {
bytes content = 5;
}
+// This comment is left unintentionally blank.
message WikiWritePageResponse {
bytes duplicate_error = 1;
}
+// This comment is left unintentionally blank.
message WikiUpdatePageRequest {
// There fields are only present in the first message of the stream
Repository repository = 1 [(target_repository)=true];
@@ -103,10 +108,12 @@ message WikiUpdatePageRequest {
bytes content = 6;
}
+// This comment is left unintentionally blank.
message WikiUpdatePageResponse {
bytes error = 1;
}
+// This comment is left unintentionally blank.
message WikiFindPageRequest {
Repository repository = 1 [(target_repository)=true];
bytes title = 2;
@@ -122,6 +129,7 @@ message WikiFindPageResponse {
WikiPage page = 1;
}
+// This comment is left unintentionally blank.
message WikiGetAllPagesRequest {
Repository repository = 1 [(target_repository)=true];
// Passing 0 means no limit is applied
@@ -142,6 +150,7 @@ message WikiGetAllPagesResponse {
bool end_of_page = 2;
}
+// This comment is left unintentionally blank.
message WikiListPagesRequest {
Repository repository = 1 [(target_repository)=true];
// Passing 0 means no limit is applied