gitaly 0.30.0 → 1.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ruby/proto/README.md +5 -0
- data/ruby/proto/gitaly.rb +37 -0
- data/ruby/proto/gitaly/blob_pb.rb +86 -0
- data/ruby/{lib → proto}/gitaly/blob_services_pb.rb +4 -0
- data/ruby/proto/gitaly/cleanup_pb.rb +41 -0
- data/ruby/proto/gitaly/cleanup_services_pb.rb +25 -0
- data/ruby/{lib → proto}/gitaly/commit_pb.rb +92 -0
- data/ruby/{lib → proto}/gitaly/commit_services_pb.rb +11 -0
- data/ruby/proto/gitaly/conflicts_pb.rb +58 -0
- data/ruby/proto/gitaly/conflicts_services_pb.rb +23 -0
- data/ruby/{lib → proto}/gitaly/diff_pb.rb +38 -0
- data/ruby/{lib → proto}/gitaly/diff_services_pb.rb +3 -0
- data/ruby/proto/gitaly/namespace_pb.rb +45 -0
- data/ruby/proto/gitaly/namespace_services_pb.rb +25 -0
- data/ruby/proto/gitaly/objectpool_pb.rb +65 -0
- data/ruby/proto/gitaly/objectpool_services_pb.rb +29 -0
- data/ruby/proto/gitaly/operations_pb.rb +292 -0
- data/ruby/proto/gitaly/operations_services_pb.rb +37 -0
- data/ruby/proto/gitaly/ref_pb.rb +219 -0
- data/ruby/{lib → proto}/gitaly/ref_services_pb.rb +12 -0
- data/ruby/proto/gitaly/remote_pb.rb +81 -0
- data/ruby/proto/gitaly/remote_services_pb.rb +28 -0
- data/ruby/proto/gitaly/repository-service_pb.rb +401 -0
- data/ruby/proto/gitaly/repository-service_services_pb.rb +60 -0
- data/ruby/proto/gitaly/server_pb.rb +28 -0
- data/ruby/{lib/gitaly/notifications_services_pb.rb → proto/gitaly/server_services_pb.rb} +5 -5
- data/ruby/proto/gitaly/shared_pb.rb +91 -0
- data/ruby/{lib → proto}/gitaly/smarthttp_pb.rb +7 -0
- data/ruby/{lib → proto}/gitaly/smarthttp_services_pb.rb +4 -0
- data/ruby/{lib → proto}/gitaly/ssh_pb.rb +15 -0
- data/ruby/{lib → proto}/gitaly/ssh_services_pb.rb +2 -0
- data/ruby/proto/gitaly/storage_pb.rb +27 -0
- data/ruby/proto/gitaly/storage_services_pb.rb +23 -0
- data/ruby/proto/gitaly/version.rb +4 -0
- data/ruby/proto/gitaly/wiki_pb.rb +149 -0
- data/ruby/proto/gitaly/wiki_services_pb.rb +31 -0
- metadata +41 -73
- data/ruby/.gitignore +0 -10
- data/ruby/Gemfile +0 -4
- data/ruby/LICENSE.txt +0 -21
- data/ruby/README.md +0 -41
- data/ruby/lib/gitaly.rb +0 -23
- data/ruby/lib/gitaly/blob_pb.rb +0 -23
- data/ruby/lib/gitaly/deprecated-services_pb.rb +0 -16
- data/ruby/lib/gitaly/deprecated-services_services_pb.rb +0 -120
- data/ruby/lib/gitaly/notifications_pb.rb +0 -18
- data/ruby/lib/gitaly/ref_pb.rb +0 -112
- data/ruby/lib/gitaly/repository-service_pb.rb +0 -71
- data/ruby/lib/gitaly/repository-service_services_pb.rb +0 -30
- data/ruby/lib/gitaly/shared_pb.rb +0 -37
- data/ruby/lib/gitaly/version.rb +0 -4
@@ -0,0 +1,37 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: operations.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'operations_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module OperationService
|
9
|
+
class Service
|
10
|
+
|
11
|
+
include GRPC::GenericService
|
12
|
+
|
13
|
+
self.marshal_class_method = :encode
|
14
|
+
self.unmarshal_class_method = :decode
|
15
|
+
self.service_name = 'gitaly.OperationService'
|
16
|
+
|
17
|
+
rpc :UserCreateBranch, UserCreateBranchRequest, UserCreateBranchResponse
|
18
|
+
rpc :UserUpdateBranch, UserUpdateBranchRequest, UserUpdateBranchResponse
|
19
|
+
rpc :UserDeleteBranch, UserDeleteBranchRequest, UserDeleteBranchResponse
|
20
|
+
rpc :UserCreateTag, UserCreateTagRequest, UserCreateTagResponse
|
21
|
+
rpc :UserDeleteTag, UserDeleteTagRequest, UserDeleteTagResponse
|
22
|
+
rpc :UserMergeToRef, UserMergeToRefRequest, UserMergeToRefResponse
|
23
|
+
rpc :UserMergeBranch, stream(UserMergeBranchRequest), stream(UserMergeBranchResponse)
|
24
|
+
rpc :UserFFBranch, UserFFBranchRequest, UserFFBranchResponse
|
25
|
+
rpc :UserCherryPick, UserCherryPickRequest, UserCherryPickResponse
|
26
|
+
rpc :UserCommitFiles, stream(UserCommitFilesRequest), UserCommitFilesResponse
|
27
|
+
rpc :UserRebase, UserRebaseRequest, UserRebaseResponse
|
28
|
+
rpc :UserRebaseConfirmable, stream(UserRebaseConfirmableRequest), stream(UserRebaseConfirmableResponse)
|
29
|
+
rpc :UserRevert, UserRevertRequest, UserRevertResponse
|
30
|
+
rpc :UserSquash, UserSquashRequest, UserSquashResponse
|
31
|
+
rpc :UserApplyPatch, stream(UserApplyPatchRequest), UserApplyPatchResponse
|
32
|
+
rpc :UserUpdateSubmodule, UserUpdateSubmoduleRequest, UserUpdateSubmoduleResponse
|
33
|
+
end
|
34
|
+
|
35
|
+
Stub = Service.rpc_stub_class
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,219 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: ref.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'blob_pb'
|
7
|
+
require 'shared_pb'
|
8
|
+
require 'google/protobuf/timestamp_pb'
|
9
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
+
add_message "gitaly.ListNewBlobsRequest" do
|
11
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
12
|
+
optional :commit_id, :string, 2
|
13
|
+
optional :limit, :uint32, 3
|
14
|
+
end
|
15
|
+
add_message "gitaly.ListNewBlobsResponse" do
|
16
|
+
repeated :new_blob_objects, :message, 1, "gitaly.NewBlobObject"
|
17
|
+
end
|
18
|
+
add_message "gitaly.FindDefaultBranchNameRequest" do
|
19
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
20
|
+
end
|
21
|
+
add_message "gitaly.FindDefaultBranchNameResponse" do
|
22
|
+
optional :name, :bytes, 1
|
23
|
+
end
|
24
|
+
add_message "gitaly.FindAllBranchNamesRequest" do
|
25
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
26
|
+
end
|
27
|
+
add_message "gitaly.FindAllBranchNamesResponse" do
|
28
|
+
repeated :names, :bytes, 1
|
29
|
+
end
|
30
|
+
add_message "gitaly.FindAllTagNamesRequest" do
|
31
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
32
|
+
end
|
33
|
+
add_message "gitaly.FindAllTagNamesResponse" do
|
34
|
+
repeated :names, :bytes, 1
|
35
|
+
end
|
36
|
+
add_message "gitaly.FindRefNameRequest" do
|
37
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
38
|
+
optional :commit_id, :string, 2
|
39
|
+
optional :prefix, :bytes, 3
|
40
|
+
end
|
41
|
+
add_message "gitaly.FindRefNameResponse" do
|
42
|
+
optional :name, :bytes, 1
|
43
|
+
end
|
44
|
+
add_message "gitaly.FindLocalBranchesRequest" do
|
45
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
46
|
+
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
47
|
+
end
|
48
|
+
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
49
|
+
value :NAME, 0
|
50
|
+
value :UPDATED_ASC, 1
|
51
|
+
value :UPDATED_DESC, 2
|
52
|
+
end
|
53
|
+
add_message "gitaly.FindLocalBranchesResponse" do
|
54
|
+
repeated :branches, :message, 1, "gitaly.FindLocalBranchResponse"
|
55
|
+
end
|
56
|
+
add_message "gitaly.FindLocalBranchResponse" do
|
57
|
+
optional :name, :bytes, 1
|
58
|
+
optional :commit_id, :string, 2
|
59
|
+
optional :commit_subject, :bytes, 3
|
60
|
+
optional :commit_author, :message, 4, "gitaly.FindLocalBranchCommitAuthor"
|
61
|
+
optional :commit_committer, :message, 5, "gitaly.FindLocalBranchCommitAuthor"
|
62
|
+
end
|
63
|
+
add_message "gitaly.FindLocalBranchCommitAuthor" do
|
64
|
+
optional :name, :bytes, 1
|
65
|
+
optional :email, :bytes, 2
|
66
|
+
optional :date, :message, 3, "google.protobuf.Timestamp"
|
67
|
+
end
|
68
|
+
add_message "gitaly.FindAllBranchesRequest" do
|
69
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
70
|
+
optional :merged_only, :bool, 2
|
71
|
+
repeated :merged_branches, :bytes, 3
|
72
|
+
end
|
73
|
+
add_message "gitaly.FindAllBranchesResponse" do
|
74
|
+
repeated :branches, :message, 1, "gitaly.FindAllBranchesResponse.Branch"
|
75
|
+
end
|
76
|
+
add_message "gitaly.FindAllBranchesResponse.Branch" do
|
77
|
+
optional :name, :bytes, 1
|
78
|
+
optional :target, :message, 2, "gitaly.GitCommit"
|
79
|
+
end
|
80
|
+
add_message "gitaly.FindAllTagsRequest" do
|
81
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
82
|
+
end
|
83
|
+
add_message "gitaly.FindAllTagsResponse" do
|
84
|
+
repeated :tags, :message, 1, "gitaly.Tag"
|
85
|
+
end
|
86
|
+
add_message "gitaly.RefExistsRequest" do
|
87
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
88
|
+
optional :ref, :bytes, 2
|
89
|
+
end
|
90
|
+
add_message "gitaly.RefExistsResponse" do
|
91
|
+
optional :value, :bool, 1
|
92
|
+
end
|
93
|
+
add_message "gitaly.CreateBranchRequest" do
|
94
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
95
|
+
optional :name, :bytes, 2
|
96
|
+
optional :start_point, :bytes, 3
|
97
|
+
end
|
98
|
+
add_message "gitaly.CreateBranchResponse" do
|
99
|
+
optional :status, :enum, 1, "gitaly.CreateBranchResponse.Status"
|
100
|
+
optional :branch, :message, 2, "gitaly.Branch"
|
101
|
+
end
|
102
|
+
add_enum "gitaly.CreateBranchResponse.Status" do
|
103
|
+
value :OK, 0
|
104
|
+
value :ERR_EXISTS, 1
|
105
|
+
value :ERR_INVALID, 2
|
106
|
+
value :ERR_INVALID_START_POINT, 3
|
107
|
+
end
|
108
|
+
add_message "gitaly.DeleteBranchRequest" do
|
109
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
110
|
+
optional :name, :bytes, 2
|
111
|
+
end
|
112
|
+
add_message "gitaly.DeleteBranchResponse" do
|
113
|
+
end
|
114
|
+
add_message "gitaly.FindBranchRequest" do
|
115
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
116
|
+
optional :name, :bytes, 2
|
117
|
+
end
|
118
|
+
add_message "gitaly.FindBranchResponse" do
|
119
|
+
optional :branch, :message, 1, "gitaly.Branch"
|
120
|
+
end
|
121
|
+
add_message "gitaly.DeleteRefsRequest" do
|
122
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
123
|
+
repeated :except_with_prefix, :bytes, 2
|
124
|
+
repeated :refs, :bytes, 3
|
125
|
+
end
|
126
|
+
add_message "gitaly.DeleteRefsResponse" do
|
127
|
+
optional :git_error, :string, 1
|
128
|
+
end
|
129
|
+
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
130
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
131
|
+
optional :commit_id, :string, 2
|
132
|
+
optional :limit, :uint32, 3
|
133
|
+
end
|
134
|
+
add_message "gitaly.ListBranchNamesContainingCommitResponse" do
|
135
|
+
repeated :branch_names, :bytes, 2
|
136
|
+
end
|
137
|
+
add_message "gitaly.ListTagNamesContainingCommitRequest" do
|
138
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
139
|
+
optional :commit_id, :string, 2
|
140
|
+
optional :limit, :uint32, 3
|
141
|
+
end
|
142
|
+
add_message "gitaly.ListTagNamesContainingCommitResponse" do
|
143
|
+
repeated :tag_names, :bytes, 2
|
144
|
+
end
|
145
|
+
add_message "gitaly.GetTagMessagesRequest" do
|
146
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
147
|
+
repeated :tag_ids, :string, 3
|
148
|
+
end
|
149
|
+
add_message "gitaly.GetTagMessagesResponse" do
|
150
|
+
optional :message, :bytes, 2
|
151
|
+
optional :tag_id, :string, 3
|
152
|
+
end
|
153
|
+
add_message "gitaly.ListNewCommitsRequest" do
|
154
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
155
|
+
optional :commit_id, :string, 2
|
156
|
+
end
|
157
|
+
add_message "gitaly.ListNewCommitsResponse" do
|
158
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
159
|
+
end
|
160
|
+
add_message "gitaly.FindAllRemoteBranchesRequest" do
|
161
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
162
|
+
optional :remote_name, :string, 2
|
163
|
+
end
|
164
|
+
add_message "gitaly.FindAllRemoteBranchesResponse" do
|
165
|
+
repeated :branches, :message, 1, "gitaly.Branch"
|
166
|
+
end
|
167
|
+
add_message "gitaly.PackRefsRequest" do
|
168
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
169
|
+
optional :all_refs, :bool, 2
|
170
|
+
end
|
171
|
+
add_message "gitaly.PackRefsResponse" do
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
module Gitaly
|
176
|
+
ListNewBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsRequest").msgclass
|
177
|
+
ListNewBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsResponse").msgclass
|
178
|
+
FindDefaultBranchNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameRequest").msgclass
|
179
|
+
FindDefaultBranchNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameResponse").msgclass
|
180
|
+
FindAllBranchNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesRequest").msgclass
|
181
|
+
FindAllBranchNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesResponse").msgclass
|
182
|
+
FindAllTagNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesRequest").msgclass
|
183
|
+
FindAllTagNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesResponse").msgclass
|
184
|
+
FindRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameRequest").msgclass
|
185
|
+
FindRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameResponse").msgclass
|
186
|
+
FindLocalBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest").msgclass
|
187
|
+
FindLocalBranchesRequest::SortBy = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
188
|
+
FindLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
189
|
+
FindLocalBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
|
190
|
+
FindLocalBranchCommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
|
191
|
+
FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
192
|
+
FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
193
|
+
FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
194
|
+
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
195
|
+
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
196
|
+
RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
197
|
+
RefExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
198
|
+
CreateBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchRequest").msgclass
|
199
|
+
CreateBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse").msgclass
|
200
|
+
CreateBranchResponse::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse.Status").enummodule
|
201
|
+
DeleteBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchRequest").msgclass
|
202
|
+
DeleteBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchResponse").msgclass
|
203
|
+
FindBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchRequest").msgclass
|
204
|
+
FindBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
205
|
+
DeleteRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
206
|
+
DeleteRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
207
|
+
ListBranchNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
208
|
+
ListBranchNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
209
|
+
ListTagNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
210
|
+
ListTagNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
|
211
|
+
GetTagMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
|
212
|
+
GetTagMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
|
213
|
+
ListNewCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsRequest").msgclass
|
214
|
+
ListNewCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsResponse").msgclass
|
215
|
+
FindAllRemoteBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesRequest").msgclass
|
216
|
+
FindAllRemoteBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
|
217
|
+
PackRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
|
218
|
+
PackRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
|
219
|
+
end
|
@@ -23,7 +23,19 @@ module Gitaly
|
|
23
23
|
rpc :FindLocalBranches, FindLocalBranchesRequest, stream(FindLocalBranchesResponse)
|
24
24
|
rpc :FindAllBranches, FindAllBranchesRequest, stream(FindAllBranchesResponse)
|
25
25
|
rpc :FindAllTags, FindAllTagsRequest, stream(FindAllTagsResponse)
|
26
|
+
rpc :FindAllRemoteBranches, FindAllRemoteBranchesRequest, stream(FindAllRemoteBranchesResponse)
|
26
27
|
rpc :RefExists, RefExistsRequest, RefExistsResponse
|
28
|
+
rpc :CreateBranch, CreateBranchRequest, CreateBranchResponse
|
29
|
+
rpc :DeleteBranch, DeleteBranchRequest, DeleteBranchResponse
|
30
|
+
rpc :FindBranch, FindBranchRequest, FindBranchResponse
|
31
|
+
rpc :DeleteRefs, DeleteRefsRequest, DeleteRefsResponse
|
32
|
+
rpc :ListBranchNamesContainingCommit, ListBranchNamesContainingCommitRequest, stream(ListBranchNamesContainingCommitResponse)
|
33
|
+
rpc :ListTagNamesContainingCommit, ListTagNamesContainingCommitRequest, stream(ListTagNamesContainingCommitResponse)
|
34
|
+
rpc :GetTagMessages, GetTagMessagesRequest, stream(GetTagMessagesResponse)
|
35
|
+
# Returns commits that are only reachable from the ref passed
|
36
|
+
rpc :ListNewCommits, ListNewCommitsRequest, stream(ListNewCommitsResponse)
|
37
|
+
rpc :ListNewBlobs, ListNewBlobsRequest, stream(ListNewBlobsResponse)
|
38
|
+
rpc :PackRefs, PackRefsRequest, PackRefsResponse
|
27
39
|
end
|
28
40
|
|
29
41
|
Stub = Service.rpc_stub_class
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: remote.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'shared_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.AddRemoteRequest" do
|
9
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
10
|
+
optional :name, :string, 2
|
11
|
+
optional :url, :string, 3
|
12
|
+
repeated :mirror_refmaps, :string, 5
|
13
|
+
end
|
14
|
+
add_message "gitaly.AddRemoteResponse" do
|
15
|
+
end
|
16
|
+
add_message "gitaly.RemoveRemoteRequest" do
|
17
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
18
|
+
optional :name, :string, 2
|
19
|
+
end
|
20
|
+
add_message "gitaly.RemoveRemoteResponse" do
|
21
|
+
optional :result, :bool, 1
|
22
|
+
end
|
23
|
+
add_message "gitaly.FetchInternalRemoteRequest" do
|
24
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
25
|
+
optional :remote_repository, :message, 2, "gitaly.Repository"
|
26
|
+
end
|
27
|
+
add_message "gitaly.FetchInternalRemoteResponse" do
|
28
|
+
optional :result, :bool, 1
|
29
|
+
end
|
30
|
+
add_message "gitaly.UpdateRemoteMirrorRequest" do
|
31
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
32
|
+
optional :ref_name, :string, 2
|
33
|
+
repeated :only_branches_matching, :bytes, 3
|
34
|
+
optional :ssh_key, :string, 4
|
35
|
+
optional :known_hosts, :string, 5
|
36
|
+
end
|
37
|
+
add_message "gitaly.UpdateRemoteMirrorResponse" do
|
38
|
+
end
|
39
|
+
add_message "gitaly.FindRemoteRepositoryRequest" do
|
40
|
+
optional :remote, :string, 1
|
41
|
+
end
|
42
|
+
add_message "gitaly.FindRemoteRepositoryResponse" do
|
43
|
+
optional :exists, :bool, 1
|
44
|
+
end
|
45
|
+
add_message "gitaly.FindRemoteRootRefRequest" do
|
46
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
47
|
+
optional :remote, :string, 2
|
48
|
+
end
|
49
|
+
add_message "gitaly.FindRemoteRootRefResponse" do
|
50
|
+
optional :ref, :string, 1
|
51
|
+
end
|
52
|
+
add_message "gitaly.ListRemotesRequest" do
|
53
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
54
|
+
end
|
55
|
+
add_message "gitaly.ListRemotesResponse" do
|
56
|
+
repeated :remotes, :message, 1, "gitaly.ListRemotesResponse.Remote"
|
57
|
+
end
|
58
|
+
add_message "gitaly.ListRemotesResponse.Remote" do
|
59
|
+
optional :name, :string, 1
|
60
|
+
optional :fetch_url, :string, 2
|
61
|
+
optional :push_url, :string, 3
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
module Gitaly
|
66
|
+
AddRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteRequest").msgclass
|
67
|
+
AddRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddRemoteResponse").msgclass
|
68
|
+
RemoveRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteRequest").msgclass
|
69
|
+
RemoveRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRemoteResponse").msgclass
|
70
|
+
FetchInternalRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteRequest").msgclass
|
71
|
+
FetchInternalRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchInternalRemoteResponse").msgclass
|
72
|
+
UpdateRemoteMirrorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorRequest").msgclass
|
73
|
+
UpdateRemoteMirrorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateRemoteMirrorResponse").msgclass
|
74
|
+
FindRemoteRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryRequest").msgclass
|
75
|
+
FindRemoteRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRepositoryResponse").msgclass
|
76
|
+
FindRemoteRootRefRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefRequest").msgclass
|
77
|
+
FindRemoteRootRefResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRemoteRootRefResponse").msgclass
|
78
|
+
ListRemotesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesRequest").msgclass
|
79
|
+
ListRemotesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse").msgclass
|
80
|
+
ListRemotesResponse::Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListRemotesResponse.Remote").msgclass
|
81
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# Source: remote.proto for package 'gitaly'
|
3
|
+
|
4
|
+
require 'grpc'
|
5
|
+
require 'remote_pb'
|
6
|
+
|
7
|
+
module Gitaly
|
8
|
+
module RemoteService
|
9
|
+
class Service
|
10
|
+
|
11
|
+
include GRPC::GenericService
|
12
|
+
|
13
|
+
self.marshal_class_method = :encode
|
14
|
+
self.unmarshal_class_method = :decode
|
15
|
+
self.service_name = 'gitaly.RemoteService'
|
16
|
+
|
17
|
+
rpc :AddRemote, AddRemoteRequest, AddRemoteResponse
|
18
|
+
rpc :FetchInternalRemote, FetchInternalRemoteRequest, FetchInternalRemoteResponse
|
19
|
+
rpc :RemoveRemote, RemoveRemoteRequest, RemoveRemoteResponse
|
20
|
+
rpc :UpdateRemoteMirror, stream(UpdateRemoteMirrorRequest), UpdateRemoteMirrorResponse
|
21
|
+
rpc :FindRemoteRepository, FindRemoteRepositoryRequest, FindRemoteRepositoryResponse
|
22
|
+
rpc :FindRemoteRootRef, FindRemoteRootRefRequest, FindRemoteRootRefResponse
|
23
|
+
rpc :ListRemotes, ListRemotesRequest, stream(ListRemotesResponse)
|
24
|
+
end
|
25
|
+
|
26
|
+
Stub = Service.rpc_stub_class
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,401 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: repository-service.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'shared_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "gitaly.RepositoryExistsRequest" do
|
9
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
10
|
+
end
|
11
|
+
add_message "gitaly.RepositoryExistsResponse" do
|
12
|
+
optional :exists, :bool, 1
|
13
|
+
end
|
14
|
+
add_message "gitaly.RepackIncrementalRequest" do
|
15
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
16
|
+
end
|
17
|
+
add_message "gitaly.RepackIncrementalResponse" do
|
18
|
+
end
|
19
|
+
add_message "gitaly.RepackFullRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
optional :create_bitmap, :bool, 2
|
22
|
+
end
|
23
|
+
add_message "gitaly.RepackFullResponse" do
|
24
|
+
end
|
25
|
+
add_message "gitaly.GarbageCollectRequest" do
|
26
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
27
|
+
optional :create_bitmap, :bool, 2
|
28
|
+
end
|
29
|
+
add_message "gitaly.GarbageCollectResponse" do
|
30
|
+
end
|
31
|
+
add_message "gitaly.CleanupRequest" do
|
32
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
+
end
|
34
|
+
add_message "gitaly.CleanupResponse" do
|
35
|
+
end
|
36
|
+
add_message "gitaly.RepositorySizeRequest" do
|
37
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
38
|
+
end
|
39
|
+
add_message "gitaly.RepositorySizeResponse" do
|
40
|
+
optional :size, :int64, 1
|
41
|
+
end
|
42
|
+
add_message "gitaly.ApplyGitattributesRequest" do
|
43
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
44
|
+
optional :revision, :bytes, 2
|
45
|
+
end
|
46
|
+
add_message "gitaly.ApplyGitattributesResponse" do
|
47
|
+
end
|
48
|
+
add_message "gitaly.FetchRemoteRequest" do
|
49
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
50
|
+
optional :remote, :string, 2
|
51
|
+
optional :force, :bool, 3
|
52
|
+
optional :no_tags, :bool, 4
|
53
|
+
optional :timeout, :int32, 5
|
54
|
+
optional :ssh_key, :string, 6
|
55
|
+
optional :known_hosts, :string, 7
|
56
|
+
optional :no_prune, :bool, 9
|
57
|
+
optional :remote_params, :message, 10, "gitaly.Remote"
|
58
|
+
end
|
59
|
+
add_message "gitaly.FetchRemoteResponse" do
|
60
|
+
end
|
61
|
+
add_message "gitaly.CreateRepositoryRequest" do
|
62
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
63
|
+
end
|
64
|
+
add_message "gitaly.CreateRepositoryResponse" do
|
65
|
+
end
|
66
|
+
add_message "gitaly.GetArchiveRequest" do
|
67
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
68
|
+
optional :commit_id, :string, 2
|
69
|
+
optional :prefix, :string, 3
|
70
|
+
optional :format, :enum, 4, "gitaly.GetArchiveRequest.Format"
|
71
|
+
optional :path, :bytes, 5
|
72
|
+
end
|
73
|
+
add_enum "gitaly.GetArchiveRequest.Format" do
|
74
|
+
value :ZIP, 0
|
75
|
+
value :TAR, 1
|
76
|
+
value :TAR_GZ, 2
|
77
|
+
value :TAR_BZ2, 3
|
78
|
+
end
|
79
|
+
add_message "gitaly.GetArchiveResponse" do
|
80
|
+
optional :data, :bytes, 1
|
81
|
+
end
|
82
|
+
add_message "gitaly.HasLocalBranchesRequest" do
|
83
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
84
|
+
end
|
85
|
+
add_message "gitaly.HasLocalBranchesResponse" do
|
86
|
+
optional :value, :bool, 1
|
87
|
+
end
|
88
|
+
add_message "gitaly.FetchSourceBranchRequest" do
|
89
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
90
|
+
optional :source_repository, :message, 2, "gitaly.Repository"
|
91
|
+
optional :source_branch, :bytes, 3
|
92
|
+
optional :target_ref, :bytes, 4
|
93
|
+
end
|
94
|
+
add_message "gitaly.FetchSourceBranchResponse" do
|
95
|
+
optional :result, :bool, 1
|
96
|
+
end
|
97
|
+
add_message "gitaly.FsckRequest" do
|
98
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
99
|
+
end
|
100
|
+
add_message "gitaly.FsckResponse" do
|
101
|
+
optional :error, :bytes, 1
|
102
|
+
end
|
103
|
+
add_message "gitaly.WriteRefRequest" do
|
104
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
105
|
+
optional :ref, :bytes, 2
|
106
|
+
optional :revision, :bytes, 3
|
107
|
+
optional :old_revision, :bytes, 4
|
108
|
+
optional :force, :bool, 5
|
109
|
+
end
|
110
|
+
add_message "gitaly.WriteRefResponse" do
|
111
|
+
end
|
112
|
+
add_message "gitaly.FindMergeBaseRequest" do
|
113
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
114
|
+
repeated :revisions, :bytes, 2
|
115
|
+
end
|
116
|
+
add_message "gitaly.FindMergeBaseResponse" do
|
117
|
+
optional :base, :string, 1
|
118
|
+
end
|
119
|
+
add_message "gitaly.CreateForkRequest" do
|
120
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
121
|
+
optional :source_repository, :message, 2, "gitaly.Repository"
|
122
|
+
end
|
123
|
+
add_message "gitaly.CreateForkResponse" do
|
124
|
+
end
|
125
|
+
add_message "gitaly.IsRebaseInProgressRequest" do
|
126
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
127
|
+
optional :rebase_id, :string, 2
|
128
|
+
end
|
129
|
+
add_message "gitaly.IsRebaseInProgressResponse" do
|
130
|
+
optional :in_progress, :bool, 1
|
131
|
+
end
|
132
|
+
add_message "gitaly.IsSquashInProgressRequest" do
|
133
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
134
|
+
optional :squash_id, :string, 2
|
135
|
+
end
|
136
|
+
add_message "gitaly.IsSquashInProgressResponse" do
|
137
|
+
optional :in_progress, :bool, 1
|
138
|
+
end
|
139
|
+
add_message "gitaly.CreateRepositoryFromURLRequest" do
|
140
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
141
|
+
optional :url, :string, 2
|
142
|
+
end
|
143
|
+
add_message "gitaly.CreateRepositoryFromURLResponse" do
|
144
|
+
end
|
145
|
+
add_message "gitaly.CreateBundleRequest" do
|
146
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
147
|
+
end
|
148
|
+
add_message "gitaly.CreateBundleResponse" do
|
149
|
+
optional :data, :bytes, 1
|
150
|
+
end
|
151
|
+
add_message "gitaly.WriteConfigRequest" do
|
152
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
153
|
+
optional :full_path, :string, 2
|
154
|
+
end
|
155
|
+
add_message "gitaly.WriteConfigResponse" do
|
156
|
+
optional :error, :bytes, 1
|
157
|
+
end
|
158
|
+
add_message "gitaly.SetConfigRequest" do
|
159
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
160
|
+
repeated :entries, :message, 2, "gitaly.SetConfigRequest.Entry"
|
161
|
+
end
|
162
|
+
add_message "gitaly.SetConfigRequest.Entry" do
|
163
|
+
optional :key, :string, 1
|
164
|
+
oneof :value do
|
165
|
+
optional :value_str, :string, 2
|
166
|
+
optional :value_int32, :int32, 3
|
167
|
+
optional :value_bool, :bool, 4
|
168
|
+
end
|
169
|
+
end
|
170
|
+
add_message "gitaly.SetConfigResponse" do
|
171
|
+
end
|
172
|
+
add_message "gitaly.DeleteConfigRequest" do
|
173
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
174
|
+
repeated :keys, :string, 2
|
175
|
+
end
|
176
|
+
add_message "gitaly.DeleteConfigResponse" do
|
177
|
+
end
|
178
|
+
add_message "gitaly.RestoreCustomHooksRequest" do
|
179
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
180
|
+
optional :data, :bytes, 2
|
181
|
+
end
|
182
|
+
add_message "gitaly.RestoreCustomHooksResponse" do
|
183
|
+
end
|
184
|
+
add_message "gitaly.BackupCustomHooksRequest" do
|
185
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
186
|
+
end
|
187
|
+
add_message "gitaly.BackupCustomHooksResponse" do
|
188
|
+
optional :data, :bytes, 1
|
189
|
+
end
|
190
|
+
add_message "gitaly.CreateRepositoryFromBundleRequest" do
|
191
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
192
|
+
optional :data, :bytes, 2
|
193
|
+
end
|
194
|
+
add_message "gitaly.CreateRepositoryFromBundleResponse" do
|
195
|
+
end
|
196
|
+
add_message "gitaly.FindLicenseRequest" do
|
197
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
198
|
+
end
|
199
|
+
add_message "gitaly.FindLicenseResponse" do
|
200
|
+
optional :license_short_name, :string, 1
|
201
|
+
end
|
202
|
+
add_message "gitaly.GetInfoAttributesRequest" do
|
203
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
204
|
+
end
|
205
|
+
add_message "gitaly.GetInfoAttributesResponse" do
|
206
|
+
optional :attributes, :bytes, 1
|
207
|
+
end
|
208
|
+
add_message "gitaly.CalculateChecksumRequest" do
|
209
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
210
|
+
end
|
211
|
+
add_message "gitaly.CalculateChecksumResponse" do
|
212
|
+
optional :checksum, :string, 1
|
213
|
+
end
|
214
|
+
add_message "gitaly.GetSnapshotRequest" do
|
215
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
216
|
+
end
|
217
|
+
add_message "gitaly.GetSnapshotResponse" do
|
218
|
+
optional :data, :bytes, 1
|
219
|
+
end
|
220
|
+
add_message "gitaly.CreateRepositoryFromSnapshotRequest" do
|
221
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
222
|
+
optional :http_url, :string, 2
|
223
|
+
optional :http_auth, :string, 3
|
224
|
+
end
|
225
|
+
add_message "gitaly.CreateRepositoryFromSnapshotResponse" do
|
226
|
+
end
|
227
|
+
add_message "gitaly.GetRawChangesRequest" do
|
228
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
229
|
+
optional :from_revision, :string, 2
|
230
|
+
optional :to_revision, :string, 3
|
231
|
+
end
|
232
|
+
add_message "gitaly.GetRawChangesResponse" do
|
233
|
+
repeated :raw_changes, :message, 1, "gitaly.GetRawChangesResponse.RawChange"
|
234
|
+
end
|
235
|
+
add_message "gitaly.GetRawChangesResponse.RawChange" do
|
236
|
+
optional :blob_id, :string, 1
|
237
|
+
optional :size, :int64, 2
|
238
|
+
optional :new_path, :string, 3
|
239
|
+
optional :old_path, :string, 4
|
240
|
+
optional :operation, :enum, 5, "gitaly.GetRawChangesResponse.RawChange.Operation"
|
241
|
+
optional :raw_operation, :string, 6
|
242
|
+
optional :old_mode, :int32, 7
|
243
|
+
optional :new_mode, :int32, 8
|
244
|
+
optional :new_path_bytes, :bytes, 9
|
245
|
+
optional :old_path_bytes, :bytes, 10
|
246
|
+
end
|
247
|
+
add_enum "gitaly.GetRawChangesResponse.RawChange.Operation" do
|
248
|
+
value :UNKNOWN, 0
|
249
|
+
value :ADDED, 1
|
250
|
+
value :COPIED, 2
|
251
|
+
value :DELETED, 3
|
252
|
+
value :MODIFIED, 4
|
253
|
+
value :RENAMED, 5
|
254
|
+
value :TYPE_CHANGED, 6
|
255
|
+
end
|
256
|
+
add_message "gitaly.SearchFilesByNameRequest" do
|
257
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
258
|
+
optional :query, :string, 2
|
259
|
+
optional :ref, :bytes, 3
|
260
|
+
end
|
261
|
+
add_message "gitaly.SearchFilesByNameResponse" do
|
262
|
+
repeated :files, :bytes, 1
|
263
|
+
end
|
264
|
+
add_message "gitaly.SearchFilesByContentRequest" do
|
265
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
266
|
+
optional :query, :string, 2
|
267
|
+
optional :ref, :bytes, 3
|
268
|
+
optional :chunked_response, :bool, 4
|
269
|
+
end
|
270
|
+
add_message "gitaly.SearchFilesByContentResponse" do
|
271
|
+
repeated :matches, :bytes, 1
|
272
|
+
optional :match_data, :bytes, 2
|
273
|
+
optional :end_of_match, :bool, 3
|
274
|
+
end
|
275
|
+
add_message "gitaly.PreFetchRequest" do
|
276
|
+
optional :source_repository, :message, 1, "gitaly.Repository"
|
277
|
+
optional :target_repository, :message, 2, "gitaly.Repository"
|
278
|
+
optional :object_pool, :message, 3, "gitaly.ObjectPool"
|
279
|
+
end
|
280
|
+
add_message "gitaly.PreFetchResponse" do
|
281
|
+
end
|
282
|
+
add_message "gitaly.Remote" do
|
283
|
+
optional :url, :string, 1
|
284
|
+
optional :name, :string, 2
|
285
|
+
optional :http_authorization_header, :string, 3
|
286
|
+
repeated :mirror_refmaps, :string, 4
|
287
|
+
end
|
288
|
+
add_message "gitaly.FetchHTTPRemoteRequest" do
|
289
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
290
|
+
optional :remote, :message, 2, "gitaly.Remote"
|
291
|
+
optional :timeout, :int32, 3
|
292
|
+
end
|
293
|
+
add_message "gitaly.FetchHTTPRemoteResponse" do
|
294
|
+
end
|
295
|
+
add_message "gitaly.GetObjectDirectorySizeRequest" do
|
296
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
297
|
+
end
|
298
|
+
add_message "gitaly.GetObjectDirectorySizeResponse" do
|
299
|
+
optional :size, :int64, 1
|
300
|
+
end
|
301
|
+
add_message "gitaly.CloneFromPoolRequest" do
|
302
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
303
|
+
optional :pool, :message, 2, "gitaly.ObjectPool"
|
304
|
+
optional :remote, :message, 3, "gitaly.Remote"
|
305
|
+
end
|
306
|
+
add_message "gitaly.CloneFromPoolResponse" do
|
307
|
+
end
|
308
|
+
add_message "gitaly.CloneFromPoolInternalRequest" do
|
309
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
310
|
+
optional :pool, :message, 2, "gitaly.ObjectPool"
|
311
|
+
optional :source_repository, :message, 3, "gitaly.Repository"
|
312
|
+
end
|
313
|
+
add_message "gitaly.CloneFromPoolInternalResponse" do
|
314
|
+
end
|
315
|
+
end
|
316
|
+
|
317
|
+
module Gitaly
|
318
|
+
RepositoryExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsRequest").msgclass
|
319
|
+
RepositoryExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryExistsResponse").msgclass
|
320
|
+
RepackIncrementalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalRequest").msgclass
|
321
|
+
RepackIncrementalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackIncrementalResponse").msgclass
|
322
|
+
RepackFullRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullRequest").msgclass
|
323
|
+
RepackFullResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepackFullResponse").msgclass
|
324
|
+
GarbageCollectRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectRequest").msgclass
|
325
|
+
GarbageCollectResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GarbageCollectResponse").msgclass
|
326
|
+
CleanupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupRequest").msgclass
|
327
|
+
CleanupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CleanupResponse").msgclass
|
328
|
+
RepositorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeRequest").msgclass
|
329
|
+
RepositorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositorySizeResponse").msgclass
|
330
|
+
ApplyGitattributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesRequest").msgclass
|
331
|
+
ApplyGitattributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyGitattributesResponse").msgclass
|
332
|
+
FetchRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteRequest").msgclass
|
333
|
+
FetchRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchRemoteResponse").msgclass
|
334
|
+
CreateRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryRequest").msgclass
|
335
|
+
CreateRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryResponse").msgclass
|
336
|
+
GetArchiveRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveRequest").msgclass
|
337
|
+
GetArchiveRequest::Format = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveRequest.Format").enummodule
|
338
|
+
GetArchiveResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetArchiveResponse").msgclass
|
339
|
+
HasLocalBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.HasLocalBranchesRequest").msgclass
|
340
|
+
HasLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.HasLocalBranchesResponse").msgclass
|
341
|
+
FetchSourceBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchSourceBranchRequest").msgclass
|
342
|
+
FetchSourceBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchSourceBranchResponse").msgclass
|
343
|
+
FsckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FsckRequest").msgclass
|
344
|
+
FsckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FsckResponse").msgclass
|
345
|
+
WriteRefRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteRefRequest").msgclass
|
346
|
+
WriteRefResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteRefResponse").msgclass
|
347
|
+
FindMergeBaseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindMergeBaseRequest").msgclass
|
348
|
+
FindMergeBaseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindMergeBaseResponse").msgclass
|
349
|
+
CreateForkRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkRequest").msgclass
|
350
|
+
CreateForkResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateForkResponse").msgclass
|
351
|
+
IsRebaseInProgressRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressRequest").msgclass
|
352
|
+
IsRebaseInProgressResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsRebaseInProgressResponse").msgclass
|
353
|
+
IsSquashInProgressRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressRequest").msgclass
|
354
|
+
IsSquashInProgressResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.IsSquashInProgressResponse").msgclass
|
355
|
+
CreateRepositoryFromURLRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLRequest").msgclass
|
356
|
+
CreateRepositoryFromURLResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromURLResponse").msgclass
|
357
|
+
CreateBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleRequest").msgclass
|
358
|
+
CreateBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBundleResponse").msgclass
|
359
|
+
WriteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigRequest").msgclass
|
360
|
+
WriteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WriteConfigResponse").msgclass
|
361
|
+
SetConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest").msgclass
|
362
|
+
SetConfigRequest::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigRequest.Entry").msgclass
|
363
|
+
SetConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SetConfigResponse").msgclass
|
364
|
+
DeleteConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigRequest").msgclass
|
365
|
+
DeleteConfigResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteConfigResponse").msgclass
|
366
|
+
RestoreCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksRequest").msgclass
|
367
|
+
RestoreCustomHooksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RestoreCustomHooksResponse").msgclass
|
368
|
+
BackupCustomHooksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksRequest").msgclass
|
369
|
+
BackupCustomHooksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.BackupCustomHooksResponse").msgclass
|
370
|
+
CreateRepositoryFromBundleRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleRequest").msgclass
|
371
|
+
CreateRepositoryFromBundleResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromBundleResponse").msgclass
|
372
|
+
FindLicenseRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseRequest").msgclass
|
373
|
+
FindLicenseResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLicenseResponse").msgclass
|
374
|
+
GetInfoAttributesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesRequest").msgclass
|
375
|
+
GetInfoAttributesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetInfoAttributesResponse").msgclass
|
376
|
+
CalculateChecksumRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumRequest").msgclass
|
377
|
+
CalculateChecksumResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CalculateChecksumResponse").msgclass
|
378
|
+
GetSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotRequest").msgclass
|
379
|
+
GetSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetSnapshotResponse").msgclass
|
380
|
+
CreateRepositoryFromSnapshotRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotRequest").msgclass
|
381
|
+
CreateRepositoryFromSnapshotResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateRepositoryFromSnapshotResponse").msgclass
|
382
|
+
GetRawChangesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesRequest").msgclass
|
383
|
+
GetRawChangesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse").msgclass
|
384
|
+
GetRawChangesResponse::RawChange = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange").msgclass
|
385
|
+
GetRawChangesResponse::RawChange::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetRawChangesResponse.RawChange.Operation").enummodule
|
386
|
+
SearchFilesByNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameRequest").msgclass
|
387
|
+
SearchFilesByNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByNameResponse").msgclass
|
388
|
+
SearchFilesByContentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentRequest").msgclass
|
389
|
+
SearchFilesByContentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.SearchFilesByContentResponse").msgclass
|
390
|
+
PreFetchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchRequest").msgclass
|
391
|
+
PreFetchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreFetchResponse").msgclass
|
392
|
+
Remote = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Remote").msgclass
|
393
|
+
FetchHTTPRemoteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteRequest").msgclass
|
394
|
+
FetchHTTPRemoteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FetchHTTPRemoteResponse").msgclass
|
395
|
+
GetObjectDirectorySizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeRequest").msgclass
|
396
|
+
GetObjectDirectorySizeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetObjectDirectorySizeResponse").msgclass
|
397
|
+
CloneFromPoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolRequest").msgclass
|
398
|
+
CloneFromPoolResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolResponse").msgclass
|
399
|
+
CloneFromPoolInternalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalRequest").msgclass
|
400
|
+
CloneFromPoolInternalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalResponse").msgclass
|
401
|
+
end
|