gitaly 12.10.0 → 13.0.0.pre.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gitaly might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ruby/proto/gitaly.rb +2 -0
- data/ruby/proto/gitaly/blob_pb.rb +74 -76
- data/ruby/proto/gitaly/cleanup_pb.rb +14 -16
- data/ruby/proto/gitaly/commit_pb.rb +293 -295
- data/ruby/proto/gitaly/conflicts_pb.rb +43 -45
- data/ruby/proto/gitaly/diff_pb.rb +87 -89
- data/ruby/proto/gitaly/hook_pb.rb +38 -40
- data/ruby/proto/gitaly/internal_pb.rb +7 -9
- data/ruby/proto/gitaly/lint_pb.rb +16 -18
- data/ruby/proto/gitaly/namespace_pb.rb +33 -35
- data/ruby/proto/gitaly/objectpool_pb.rb +61 -63
- data/ruby/proto/gitaly/operations_pb.rb +273 -275
- data/ruby/proto/gitaly/praefect_pb.rb +35 -37
- data/ruby/proto/gitaly/ref_pb.rb +216 -218
- data/ruby/proto/gitaly/remote_pb.rb +71 -72
- data/ruby/proto/gitaly/repository-service_pb.rb +393 -395
- data/ruby/proto/gitaly/server_pb.rb +29 -31
- data/ruby/proto/gitaly/shared_pb.rb +70 -72
- data/ruby/proto/gitaly/smarthttp_pb.rb +34 -36
- data/ruby/proto/gitaly/ssh_pb.rb +39 -41
- data/ruby/proto/gitaly/transaction_pb.rb +45 -0
- data/ruby/proto/gitaly/transaction_services_pb.rb +24 -0
- data/ruby/proto/gitaly/version.rb +1 -1
- data/ruby/proto/gitaly/wiki_pb.rb +126 -128
- metadata +7 -5
@@ -7,45 +7,43 @@ require 'lint_pb'
|
|
7
7
|
require 'shared_pb'
|
8
8
|
require 'google/protobuf/timestamp_pb'
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
optional :repl_job_id, :uint64, 4
|
39
|
-
end
|
10
|
+
add_message "gitaly.DatalossCheckRequest" do
|
11
|
+
optional :from, :message, 1, "google.protobuf.Timestamp"
|
12
|
+
optional :to, :message, 2, "google.protobuf.Timestamp"
|
13
|
+
end
|
14
|
+
add_message "gitaly.DatalossCheckResponse" do
|
15
|
+
map :by_relative_path, :string, :int64, 1
|
16
|
+
end
|
17
|
+
add_message "gitaly.RepositoryReplicasRequest" do
|
18
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
19
|
+
end
|
20
|
+
add_message "gitaly.RepositoryReplicasResponse" do
|
21
|
+
optional :primary, :message, 1, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
|
22
|
+
repeated :replicas, :message, 2, "gitaly.RepositoryReplicasResponse.RepositoryDetails"
|
23
|
+
end
|
24
|
+
add_message "gitaly.RepositoryReplicasResponse.RepositoryDetails" do
|
25
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
26
|
+
optional :checksum, :string, 2
|
27
|
+
end
|
28
|
+
add_message "gitaly.ConsistencyCheckRequest" do
|
29
|
+
optional :virtual_storage, :string, 1
|
30
|
+
optional :target_storage, :string, 2
|
31
|
+
optional :reference_storage, :string, 3
|
32
|
+
end
|
33
|
+
add_message "gitaly.ConsistencyCheckResponse" do
|
34
|
+
optional :repo_relative_path, :string, 1
|
35
|
+
optional :target_checksum, :string, 2
|
36
|
+
optional :reference_checksum, :string, 3
|
37
|
+
optional :repl_job_id, :uint64, 4
|
40
38
|
end
|
41
39
|
end
|
42
40
|
|
43
41
|
module Gitaly
|
44
|
-
DatalossCheckRequest =
|
45
|
-
DatalossCheckResponse =
|
46
|
-
RepositoryReplicasRequest =
|
47
|
-
RepositoryReplicasResponse =
|
48
|
-
RepositoryReplicasResponse::RepositoryDetails =
|
49
|
-
ConsistencyCheckRequest =
|
50
|
-
ConsistencyCheckResponse =
|
42
|
+
DatalossCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckRequest").msgclass
|
43
|
+
DatalossCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DatalossCheckResponse").msgclass
|
44
|
+
RepositoryReplicasRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasRequest").msgclass
|
45
|
+
RepositoryReplicasResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse").msgclass
|
46
|
+
RepositoryReplicasResponse::RepositoryDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RepositoryReplicasResponse.RepositoryDetails").msgclass
|
47
|
+
ConsistencyCheckRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConsistencyCheckRequest").msgclass
|
48
|
+
ConsistencyCheckResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConsistencyCheckResponse").msgclass
|
51
49
|
end
|
data/ruby/proto/gitaly/ref_pb.rb
CHANGED
@@ -8,226 +8,224 @@ require 'shared_pb'
|
|
8
8
|
require 'blob_pb'
|
9
9
|
require 'google/protobuf/timestamp_pb'
|
10
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
add_message "gitaly.PackRefsResponse" do
|
183
|
-
end
|
11
|
+
add_message "gitaly.ListNewBlobsRequest" do
|
12
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
13
|
+
optional :commit_id, :string, 2
|
14
|
+
optional :limit, :uint32, 3
|
15
|
+
end
|
16
|
+
add_message "gitaly.ListNewBlobsResponse" do
|
17
|
+
repeated :new_blob_objects, :message, 1, "gitaly.NewBlobObject"
|
18
|
+
end
|
19
|
+
add_message "gitaly.FindDefaultBranchNameRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
end
|
22
|
+
add_message "gitaly.FindDefaultBranchNameResponse" do
|
23
|
+
optional :name, :bytes, 1
|
24
|
+
end
|
25
|
+
add_message "gitaly.FindAllBranchNamesRequest" do
|
26
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
27
|
+
end
|
28
|
+
add_message "gitaly.FindAllBranchNamesResponse" do
|
29
|
+
repeated :names, :bytes, 1
|
30
|
+
end
|
31
|
+
add_message "gitaly.FindAllTagNamesRequest" do
|
32
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
33
|
+
end
|
34
|
+
add_message "gitaly.FindAllTagNamesResponse" do
|
35
|
+
repeated :names, :bytes, 1
|
36
|
+
end
|
37
|
+
add_message "gitaly.FindRefNameRequest" do
|
38
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
39
|
+
optional :commit_id, :string, 2
|
40
|
+
optional :prefix, :bytes, 3
|
41
|
+
end
|
42
|
+
add_message "gitaly.FindRefNameResponse" do
|
43
|
+
optional :name, :bytes, 1
|
44
|
+
end
|
45
|
+
add_message "gitaly.FindLocalBranchesRequest" do
|
46
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
47
|
+
optional :sort_by, :enum, 2, "gitaly.FindLocalBranchesRequest.SortBy"
|
48
|
+
end
|
49
|
+
add_enum "gitaly.FindLocalBranchesRequest.SortBy" do
|
50
|
+
value :NAME, 0
|
51
|
+
value :UPDATED_ASC, 1
|
52
|
+
value :UPDATED_DESC, 2
|
53
|
+
end
|
54
|
+
add_message "gitaly.FindLocalBranchesResponse" do
|
55
|
+
repeated :branches, :message, 1, "gitaly.FindLocalBranchResponse"
|
56
|
+
end
|
57
|
+
add_message "gitaly.FindLocalBranchResponse" do
|
58
|
+
optional :name, :bytes, 1
|
59
|
+
optional :commit_id, :string, 2
|
60
|
+
optional :commit_subject, :bytes, 3
|
61
|
+
optional :commit_author, :message, 4, "gitaly.FindLocalBranchCommitAuthor"
|
62
|
+
optional :commit_committer, :message, 5, "gitaly.FindLocalBranchCommitAuthor"
|
63
|
+
optional :commit, :message, 6, "gitaly.GitCommit"
|
64
|
+
end
|
65
|
+
add_message "gitaly.FindLocalBranchCommitAuthor" do
|
66
|
+
optional :name, :bytes, 1
|
67
|
+
optional :email, :bytes, 2
|
68
|
+
optional :date, :message, 3, "google.protobuf.Timestamp"
|
69
|
+
optional :timezone, :bytes, 4
|
70
|
+
end
|
71
|
+
add_message "gitaly.FindAllBranchesRequest" do
|
72
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
73
|
+
optional :merged_only, :bool, 2
|
74
|
+
repeated :merged_branches, :bytes, 3
|
75
|
+
end
|
76
|
+
add_message "gitaly.FindAllBranchesResponse" do
|
77
|
+
repeated :branches, :message, 1, "gitaly.FindAllBranchesResponse.Branch"
|
78
|
+
end
|
79
|
+
add_message "gitaly.FindAllBranchesResponse.Branch" do
|
80
|
+
optional :name, :bytes, 1
|
81
|
+
optional :target, :message, 2, "gitaly.GitCommit"
|
82
|
+
end
|
83
|
+
add_message "gitaly.FindTagRequest" do
|
84
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
85
|
+
optional :tag_name, :bytes, 2
|
86
|
+
end
|
87
|
+
add_message "gitaly.FindTagResponse" do
|
88
|
+
optional :tag, :message, 1, "gitaly.Tag"
|
89
|
+
end
|
90
|
+
add_message "gitaly.FindAllTagsRequest" do
|
91
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
92
|
+
end
|
93
|
+
add_message "gitaly.FindAllTagsResponse" do
|
94
|
+
repeated :tags, :message, 1, "gitaly.Tag"
|
95
|
+
end
|
96
|
+
add_message "gitaly.RefExistsRequest" do
|
97
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
98
|
+
optional :ref, :bytes, 2
|
99
|
+
end
|
100
|
+
add_message "gitaly.RefExistsResponse" do
|
101
|
+
optional :value, :bool, 1
|
102
|
+
end
|
103
|
+
add_message "gitaly.CreateBranchRequest" do
|
104
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
105
|
+
optional :name, :bytes, 2
|
106
|
+
optional :start_point, :bytes, 3
|
107
|
+
end
|
108
|
+
add_message "gitaly.CreateBranchResponse" do
|
109
|
+
optional :status, :enum, 1, "gitaly.CreateBranchResponse.Status"
|
110
|
+
optional :branch, :message, 2, "gitaly.Branch"
|
111
|
+
end
|
112
|
+
add_enum "gitaly.CreateBranchResponse.Status" do
|
113
|
+
value :OK, 0
|
114
|
+
value :ERR_EXISTS, 1
|
115
|
+
value :ERR_INVALID, 2
|
116
|
+
value :ERR_INVALID_START_POINT, 3
|
117
|
+
end
|
118
|
+
add_message "gitaly.DeleteBranchRequest" do
|
119
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
120
|
+
optional :name, :bytes, 2
|
121
|
+
end
|
122
|
+
add_message "gitaly.DeleteBranchResponse" do
|
123
|
+
end
|
124
|
+
add_message "gitaly.FindBranchRequest" do
|
125
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
126
|
+
optional :name, :bytes, 2
|
127
|
+
end
|
128
|
+
add_message "gitaly.FindBranchResponse" do
|
129
|
+
optional :branch, :message, 1, "gitaly.Branch"
|
130
|
+
end
|
131
|
+
add_message "gitaly.DeleteRefsRequest" do
|
132
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
133
|
+
repeated :except_with_prefix, :bytes, 2
|
134
|
+
repeated :refs, :bytes, 3
|
135
|
+
end
|
136
|
+
add_message "gitaly.DeleteRefsResponse" do
|
137
|
+
optional :git_error, :string, 1
|
138
|
+
end
|
139
|
+
add_message "gitaly.ListBranchNamesContainingCommitRequest" do
|
140
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
141
|
+
optional :commit_id, :string, 2
|
142
|
+
optional :limit, :uint32, 3
|
143
|
+
end
|
144
|
+
add_message "gitaly.ListBranchNamesContainingCommitResponse" do
|
145
|
+
repeated :branch_names, :bytes, 2
|
146
|
+
end
|
147
|
+
add_message "gitaly.ListTagNamesContainingCommitRequest" do
|
148
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
149
|
+
optional :commit_id, :string, 2
|
150
|
+
optional :limit, :uint32, 3
|
151
|
+
end
|
152
|
+
add_message "gitaly.ListTagNamesContainingCommitResponse" do
|
153
|
+
repeated :tag_names, :bytes, 2
|
154
|
+
end
|
155
|
+
add_message "gitaly.GetTagMessagesRequest" do
|
156
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
157
|
+
repeated :tag_ids, :string, 3
|
158
|
+
end
|
159
|
+
add_message "gitaly.GetTagMessagesResponse" do
|
160
|
+
optional :message, :bytes, 2
|
161
|
+
optional :tag_id, :string, 3
|
162
|
+
end
|
163
|
+
add_message "gitaly.ListNewCommitsRequest" do
|
164
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
165
|
+
optional :commit_id, :string, 2
|
166
|
+
end
|
167
|
+
add_message "gitaly.ListNewCommitsResponse" do
|
168
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
169
|
+
end
|
170
|
+
add_message "gitaly.FindAllRemoteBranchesRequest" do
|
171
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
172
|
+
optional :remote_name, :string, 2
|
173
|
+
end
|
174
|
+
add_message "gitaly.FindAllRemoteBranchesResponse" do
|
175
|
+
repeated :branches, :message, 1, "gitaly.Branch"
|
176
|
+
end
|
177
|
+
add_message "gitaly.PackRefsRequest" do
|
178
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
179
|
+
optional :all_refs, :bool, 2
|
180
|
+
end
|
181
|
+
add_message "gitaly.PackRefsResponse" do
|
184
182
|
end
|
185
183
|
end
|
186
184
|
|
187
185
|
module Gitaly
|
188
|
-
ListNewBlobsRequest =
|
189
|
-
ListNewBlobsResponse =
|
190
|
-
FindDefaultBranchNameRequest =
|
191
|
-
FindDefaultBranchNameResponse =
|
192
|
-
FindAllBranchNamesRequest =
|
193
|
-
FindAllBranchNamesResponse =
|
194
|
-
FindAllTagNamesRequest =
|
195
|
-
FindAllTagNamesResponse =
|
196
|
-
FindRefNameRequest =
|
197
|
-
FindRefNameResponse =
|
198
|
-
FindLocalBranchesRequest =
|
199
|
-
FindLocalBranchesRequest::SortBy =
|
200
|
-
FindLocalBranchesResponse =
|
201
|
-
FindLocalBranchResponse =
|
202
|
-
FindLocalBranchCommitAuthor =
|
203
|
-
FindAllBranchesRequest =
|
204
|
-
FindAllBranchesResponse =
|
205
|
-
FindAllBranchesResponse::Branch =
|
206
|
-
FindTagRequest =
|
207
|
-
FindTagResponse =
|
208
|
-
FindAllTagsRequest =
|
209
|
-
FindAllTagsResponse =
|
210
|
-
RefExistsRequest =
|
211
|
-
RefExistsResponse =
|
212
|
-
CreateBranchRequest =
|
213
|
-
CreateBranchResponse =
|
214
|
-
CreateBranchResponse::Status =
|
215
|
-
DeleteBranchRequest =
|
216
|
-
DeleteBranchResponse =
|
217
|
-
FindBranchRequest =
|
218
|
-
FindBranchResponse =
|
219
|
-
DeleteRefsRequest =
|
220
|
-
DeleteRefsResponse =
|
221
|
-
ListBranchNamesContainingCommitRequest =
|
222
|
-
ListBranchNamesContainingCommitResponse =
|
223
|
-
ListTagNamesContainingCommitRequest =
|
224
|
-
ListTagNamesContainingCommitResponse =
|
225
|
-
GetTagMessagesRequest =
|
226
|
-
GetTagMessagesResponse =
|
227
|
-
ListNewCommitsRequest =
|
228
|
-
ListNewCommitsResponse =
|
229
|
-
FindAllRemoteBranchesRequest =
|
230
|
-
FindAllRemoteBranchesResponse =
|
231
|
-
PackRefsRequest =
|
232
|
-
PackRefsResponse =
|
186
|
+
ListNewBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsRequest").msgclass
|
187
|
+
ListNewBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewBlobsResponse").msgclass
|
188
|
+
FindDefaultBranchNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameRequest").msgclass
|
189
|
+
FindDefaultBranchNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindDefaultBranchNameResponse").msgclass
|
190
|
+
FindAllBranchNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesRequest").msgclass
|
191
|
+
FindAllBranchNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchNamesResponse").msgclass
|
192
|
+
FindAllTagNamesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesRequest").msgclass
|
193
|
+
FindAllTagNamesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagNamesResponse").msgclass
|
194
|
+
FindRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameRequest").msgclass
|
195
|
+
FindRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindRefNameResponse").msgclass
|
196
|
+
FindLocalBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest").msgclass
|
197
|
+
FindLocalBranchesRequest::SortBy = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesRequest.SortBy").enummodule
|
198
|
+
FindLocalBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchesResponse").msgclass
|
199
|
+
FindLocalBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchResponse").msgclass
|
200
|
+
FindLocalBranchCommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindLocalBranchCommitAuthor").msgclass
|
201
|
+
FindAllBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesRequest").msgclass
|
202
|
+
FindAllBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse").msgclass
|
203
|
+
FindAllBranchesResponse::Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllBranchesResponse.Branch").msgclass
|
204
|
+
FindTagRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagRequest").msgclass
|
205
|
+
FindTagResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindTagResponse").msgclass
|
206
|
+
FindAllTagsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsRequest").msgclass
|
207
|
+
FindAllTagsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllTagsResponse").msgclass
|
208
|
+
RefExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsRequest").msgclass
|
209
|
+
RefExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RefExistsResponse").msgclass
|
210
|
+
CreateBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchRequest").msgclass
|
211
|
+
CreateBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse").msgclass
|
212
|
+
CreateBranchResponse::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CreateBranchResponse.Status").enummodule
|
213
|
+
DeleteBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchRequest").msgclass
|
214
|
+
DeleteBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteBranchResponse").msgclass
|
215
|
+
FindBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchRequest").msgclass
|
216
|
+
FindBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindBranchResponse").msgclass
|
217
|
+
DeleteRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsRequest").msgclass
|
218
|
+
DeleteRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DeleteRefsResponse").msgclass
|
219
|
+
ListBranchNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitRequest").msgclass
|
220
|
+
ListBranchNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListBranchNamesContainingCommitResponse").msgclass
|
221
|
+
ListTagNamesContainingCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitRequest").msgclass
|
222
|
+
ListTagNamesContainingCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListTagNamesContainingCommitResponse").msgclass
|
223
|
+
GetTagMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesRequest").msgclass
|
224
|
+
GetTagMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTagMessagesResponse").msgclass
|
225
|
+
ListNewCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsRequest").msgclass
|
226
|
+
ListNewCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListNewCommitsResponse").msgclass
|
227
|
+
FindAllRemoteBranchesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesRequest").msgclass
|
228
|
+
FindAllRemoteBranchesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllRemoteBranchesResponse").msgclass
|
229
|
+
PackRefsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsRequest").msgclass
|
230
|
+
PackRefsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PackRefsResponse").msgclass
|
233
231
|
end
|