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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3656d246004324321031cb85e30dd1dfac08dd60af035f93b0451f3a6f7e33f
|
4
|
+
data.tar.gz: c245a59a161b05394e3cb9b14b8ae37f1d3c5968e28ebfe6b2c156f375c15336
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7295cad452656540ec395e0172e84b8bd48e337a7b7ccce7c7a4c5947b4425ec1cc1f165cf1ed3777e8e620d257be59a1490ab4aa1d2596c716686fd272fd86e
|
7
|
+
data.tar.gz: 9568e960296dfcae984487b08286fe2602b640a2d53567b57cd2c95a3471c6c088dc55e704ed00417bf25085fa8152685fe4bb333649cfdf7895d0ed07fbb406
|
data/ruby/proto/gitaly.rb
CHANGED
@@ -6,84 +6,82 @@ require 'google/protobuf'
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
|
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
|
-
|
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
|
-
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
71
|
-
end
|
9
|
+
add_message "gitaly.GetBlobRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
optional :oid, :string, 2
|
12
|
+
optional :limit, :int64, 3
|
13
|
+
end
|
14
|
+
add_message "gitaly.GetBlobResponse" do
|
15
|
+
optional :size, :int64, 1
|
16
|
+
optional :data, :bytes, 2
|
17
|
+
optional :oid, :string, 3
|
18
|
+
end
|
19
|
+
add_message "gitaly.GetBlobsRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
repeated :revision_paths, :message, 2, "gitaly.GetBlobsRequest.RevisionPath"
|
22
|
+
optional :limit, :int64, 3
|
23
|
+
end
|
24
|
+
add_message "gitaly.GetBlobsRequest.RevisionPath" do
|
25
|
+
optional :revision, :string, 1
|
26
|
+
optional :path, :bytes, 2
|
27
|
+
end
|
28
|
+
add_message "gitaly.GetBlobsResponse" do
|
29
|
+
optional :size, :int64, 1
|
30
|
+
optional :data, :bytes, 2
|
31
|
+
optional :oid, :string, 3
|
32
|
+
optional :is_submodule, :bool, 4
|
33
|
+
optional :mode, :int32, 5
|
34
|
+
optional :revision, :string, 6
|
35
|
+
optional :path, :bytes, 7
|
36
|
+
optional :type, :enum, 8, "gitaly.ObjectType"
|
37
|
+
end
|
38
|
+
add_message "gitaly.LFSPointer" do
|
39
|
+
optional :size, :int64, 1
|
40
|
+
optional :data, :bytes, 2
|
41
|
+
optional :oid, :string, 3
|
42
|
+
end
|
43
|
+
add_message "gitaly.NewBlobObject" do
|
44
|
+
optional :size, :int64, 1
|
45
|
+
optional :oid, :string, 2
|
46
|
+
optional :path, :bytes, 3
|
47
|
+
end
|
48
|
+
add_message "gitaly.GetLFSPointersRequest" do
|
49
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
50
|
+
repeated :blob_ids, :string, 2
|
51
|
+
end
|
52
|
+
add_message "gitaly.GetLFSPointersResponse" do
|
53
|
+
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
54
|
+
end
|
55
|
+
add_message "gitaly.GetNewLFSPointersRequest" do
|
56
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
57
|
+
optional :revision, :bytes, 2
|
58
|
+
optional :limit, :int32, 3
|
59
|
+
optional :not_in_all, :bool, 4
|
60
|
+
repeated :not_in_refs, :bytes, 5
|
61
|
+
end
|
62
|
+
add_message "gitaly.GetNewLFSPointersResponse" do
|
63
|
+
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
64
|
+
end
|
65
|
+
add_message "gitaly.GetAllLFSPointersRequest" do
|
66
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
67
|
+
end
|
68
|
+
add_message "gitaly.GetAllLFSPointersResponse" do
|
69
|
+
repeated :lfs_pointers, :message, 1, "gitaly.LFSPointer"
|
72
70
|
end
|
73
71
|
end
|
74
72
|
|
75
73
|
module Gitaly
|
76
|
-
GetBlobRequest =
|
77
|
-
GetBlobResponse =
|
78
|
-
GetBlobsRequest =
|
79
|
-
GetBlobsRequest::RevisionPath =
|
80
|
-
GetBlobsResponse =
|
81
|
-
LFSPointer =
|
82
|
-
NewBlobObject =
|
83
|
-
GetLFSPointersRequest =
|
84
|
-
GetLFSPointersResponse =
|
85
|
-
GetNewLFSPointersRequest =
|
86
|
-
GetNewLFSPointersResponse =
|
87
|
-
GetAllLFSPointersRequest =
|
88
|
-
GetAllLFSPointersResponse =
|
74
|
+
GetBlobRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobRequest").msgclass
|
75
|
+
GetBlobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobResponse").msgclass
|
76
|
+
GetBlobsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest").msgclass
|
77
|
+
GetBlobsRequest::RevisionPath = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsRequest.RevisionPath").msgclass
|
78
|
+
GetBlobsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetBlobsResponse").msgclass
|
79
|
+
LFSPointer = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LFSPointer").msgclass
|
80
|
+
NewBlobObject = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NewBlobObject").msgclass
|
81
|
+
GetLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersRequest").msgclass
|
82
|
+
GetLFSPointersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetLFSPointersResponse").msgclass
|
83
|
+
GetNewLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetNewLFSPointersRequest").msgclass
|
84
|
+
GetNewLFSPointersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetNewLFSPointersResponse").msgclass
|
85
|
+
GetAllLFSPointersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetAllLFSPointersRequest").msgclass
|
86
|
+
GetAllLFSPointersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetAllLFSPointersResponse").msgclass
|
89
87
|
end
|
@@ -6,24 +6,22 @@ require 'google/protobuf'
|
|
6
6
|
require 'lint_pb'
|
7
7
|
require 'shared_pb'
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
optional :new_oid, :string, 3
|
21
|
-
end
|
9
|
+
add_message "gitaly.ApplyBfgObjectMapStreamRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
optional :object_map, :bytes, 2
|
12
|
+
end
|
13
|
+
add_message "gitaly.ApplyBfgObjectMapStreamResponse" do
|
14
|
+
repeated :entries, :message, 1, "gitaly.ApplyBfgObjectMapStreamResponse.Entry"
|
15
|
+
end
|
16
|
+
add_message "gitaly.ApplyBfgObjectMapStreamResponse.Entry" do
|
17
|
+
optional :type, :enum, 1, "gitaly.ObjectType"
|
18
|
+
optional :old_oid, :string, 2
|
19
|
+
optional :new_oid, :string, 3
|
22
20
|
end
|
23
21
|
end
|
24
22
|
|
25
23
|
module Gitaly
|
26
|
-
ApplyBfgObjectMapStreamRequest =
|
27
|
-
ApplyBfgObjectMapStreamResponse =
|
28
|
-
ApplyBfgObjectMapStreamResponse::Entry =
|
24
|
+
ApplyBfgObjectMapStreamRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamRequest").msgclass
|
25
|
+
ApplyBfgObjectMapStreamResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse").msgclass
|
26
|
+
ApplyBfgObjectMapStreamResponse::Entry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ApplyBfgObjectMapStreamResponse.Entry").msgclass
|
29
27
|
end
|
@@ -7,303 +7,301 @@ 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
|
-
|
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
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
optional :message, :bytes, 2
|
253
|
-
end
|
10
|
+
add_message "gitaly.CommitStatsRequest" do
|
11
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
12
|
+
optional :revision, :bytes, 2
|
13
|
+
end
|
14
|
+
add_message "gitaly.CommitStatsResponse" do
|
15
|
+
optional :oid, :string, 1
|
16
|
+
optional :additions, :int32, 2
|
17
|
+
optional :deletions, :int32, 3
|
18
|
+
end
|
19
|
+
add_message "gitaly.CommitIsAncestorRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
optional :ancestor_id, :string, 2
|
22
|
+
optional :child_id, :string, 3
|
23
|
+
end
|
24
|
+
add_message "gitaly.CommitIsAncestorResponse" do
|
25
|
+
optional :value, :bool, 1
|
26
|
+
end
|
27
|
+
add_message "gitaly.TreeEntryRequest" do
|
28
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
29
|
+
optional :revision, :bytes, 2
|
30
|
+
optional :path, :bytes, 3
|
31
|
+
optional :limit, :int64, 4
|
32
|
+
end
|
33
|
+
add_message "gitaly.TreeEntryResponse" do
|
34
|
+
optional :type, :enum, 1, "gitaly.TreeEntryResponse.ObjectType"
|
35
|
+
optional :oid, :string, 2
|
36
|
+
optional :size, :int64, 3
|
37
|
+
optional :mode, :int32, 4
|
38
|
+
optional :data, :bytes, 5
|
39
|
+
end
|
40
|
+
add_enum "gitaly.TreeEntryResponse.ObjectType" do
|
41
|
+
value :COMMIT, 0
|
42
|
+
value :BLOB, 1
|
43
|
+
value :TREE, 2
|
44
|
+
value :TAG, 3
|
45
|
+
end
|
46
|
+
add_message "gitaly.CommitsBetweenRequest" do
|
47
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
48
|
+
optional :from, :bytes, 2
|
49
|
+
optional :to, :bytes, 3
|
50
|
+
end
|
51
|
+
add_message "gitaly.CommitsBetweenResponse" do
|
52
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
53
|
+
end
|
54
|
+
add_message "gitaly.CountCommitsRequest" do
|
55
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
56
|
+
optional :revision, :bytes, 2
|
57
|
+
optional :after, :message, 3, "google.protobuf.Timestamp"
|
58
|
+
optional :before, :message, 4, "google.protobuf.Timestamp"
|
59
|
+
optional :path, :bytes, 5
|
60
|
+
optional :max_count, :int32, 6
|
61
|
+
optional :all, :bool, 7
|
62
|
+
optional :first_parent, :bool, 8
|
63
|
+
end
|
64
|
+
add_message "gitaly.CountCommitsResponse" do
|
65
|
+
optional :count, :int32, 1
|
66
|
+
end
|
67
|
+
add_message "gitaly.CountDivergingCommitsRequest" do
|
68
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
69
|
+
optional :from, :bytes, 2
|
70
|
+
optional :to, :bytes, 3
|
71
|
+
optional :max_count, :int32, 7
|
72
|
+
end
|
73
|
+
add_message "gitaly.CountDivergingCommitsResponse" do
|
74
|
+
optional :left_count, :int32, 1
|
75
|
+
optional :right_count, :int32, 2
|
76
|
+
end
|
77
|
+
add_message "gitaly.TreeEntry" do
|
78
|
+
optional :oid, :string, 1
|
79
|
+
optional :root_oid, :string, 2
|
80
|
+
optional :path, :bytes, 3
|
81
|
+
optional :type, :enum, 4, "gitaly.TreeEntry.EntryType"
|
82
|
+
optional :mode, :int32, 5
|
83
|
+
optional :commit_oid, :string, 6
|
84
|
+
optional :flat_path, :bytes, 7
|
85
|
+
end
|
86
|
+
add_enum "gitaly.TreeEntry.EntryType" do
|
87
|
+
value :BLOB, 0
|
88
|
+
value :TREE, 1
|
89
|
+
value :COMMIT, 3
|
90
|
+
end
|
91
|
+
add_message "gitaly.GetTreeEntriesRequest" do
|
92
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
93
|
+
optional :revision, :bytes, 2
|
94
|
+
optional :path, :bytes, 3
|
95
|
+
optional :recursive, :bool, 4
|
96
|
+
end
|
97
|
+
add_message "gitaly.GetTreeEntriesResponse" do
|
98
|
+
repeated :entries, :message, 1, "gitaly.TreeEntry"
|
99
|
+
end
|
100
|
+
add_message "gitaly.ListFilesRequest" do
|
101
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
102
|
+
optional :revision, :bytes, 2
|
103
|
+
end
|
104
|
+
add_message "gitaly.ListFilesResponse" do
|
105
|
+
repeated :paths, :bytes, 1
|
106
|
+
end
|
107
|
+
add_message "gitaly.FindCommitRequest" do
|
108
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
109
|
+
optional :revision, :bytes, 2
|
110
|
+
end
|
111
|
+
add_message "gitaly.FindCommitResponse" do
|
112
|
+
optional :commit, :message, 1, "gitaly.GitCommit"
|
113
|
+
end
|
114
|
+
add_message "gitaly.ListCommitsByOidRequest" do
|
115
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
116
|
+
repeated :oid, :string, 2
|
117
|
+
end
|
118
|
+
add_message "gitaly.ListCommitsByOidResponse" do
|
119
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
120
|
+
end
|
121
|
+
add_message "gitaly.ListCommitsByRefNameRequest" do
|
122
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
123
|
+
repeated :ref_names, :bytes, 2
|
124
|
+
end
|
125
|
+
add_message "gitaly.ListCommitsByRefNameResponse" do
|
126
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
127
|
+
end
|
128
|
+
add_message "gitaly.FindAllCommitsRequest" do
|
129
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
130
|
+
optional :revision, :bytes, 2
|
131
|
+
optional :max_count, :int32, 3
|
132
|
+
optional :skip, :int32, 4
|
133
|
+
optional :order, :enum, 5, "gitaly.FindAllCommitsRequest.Order"
|
134
|
+
end
|
135
|
+
add_enum "gitaly.FindAllCommitsRequest.Order" do
|
136
|
+
value :NONE, 0
|
137
|
+
value :TOPO, 1
|
138
|
+
value :DATE, 2
|
139
|
+
end
|
140
|
+
add_message "gitaly.FindAllCommitsResponse" do
|
141
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
142
|
+
end
|
143
|
+
add_message "gitaly.FindCommitsRequest" do
|
144
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
145
|
+
optional :revision, :bytes, 2
|
146
|
+
optional :limit, :int32, 3
|
147
|
+
optional :offset, :int32, 4
|
148
|
+
repeated :paths, :bytes, 5
|
149
|
+
optional :follow, :bool, 6
|
150
|
+
optional :skip_merges, :bool, 7
|
151
|
+
optional :disable_walk, :bool, 8
|
152
|
+
optional :after, :message, 9, "google.protobuf.Timestamp"
|
153
|
+
optional :before, :message, 10, "google.protobuf.Timestamp"
|
154
|
+
optional :all, :bool, 11
|
155
|
+
optional :first_parent, :bool, 12
|
156
|
+
optional :author, :bytes, 13
|
157
|
+
optional :order, :enum, 14, "gitaly.FindCommitsRequest.Order"
|
158
|
+
end
|
159
|
+
add_enum "gitaly.FindCommitsRequest.Order" do
|
160
|
+
value :NONE, 0
|
161
|
+
value :TOPO, 1
|
162
|
+
end
|
163
|
+
add_message "gitaly.FindCommitsResponse" do
|
164
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
165
|
+
end
|
166
|
+
add_message "gitaly.CommitLanguagesRequest" do
|
167
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
168
|
+
optional :revision, :bytes, 2
|
169
|
+
end
|
170
|
+
add_message "gitaly.CommitLanguagesResponse" do
|
171
|
+
repeated :languages, :message, 1, "gitaly.CommitLanguagesResponse.Language"
|
172
|
+
end
|
173
|
+
add_message "gitaly.CommitLanguagesResponse.Language" do
|
174
|
+
optional :name, :string, 1
|
175
|
+
optional :share, :float, 2
|
176
|
+
optional :color, :string, 3
|
177
|
+
optional :file_count, :uint32, 4
|
178
|
+
optional :bytes, :uint64, 5
|
179
|
+
end
|
180
|
+
add_message "gitaly.RawBlameRequest" do
|
181
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
182
|
+
optional :revision, :bytes, 2
|
183
|
+
optional :path, :bytes, 3
|
184
|
+
end
|
185
|
+
add_message "gitaly.RawBlameResponse" do
|
186
|
+
optional :data, :bytes, 1
|
187
|
+
end
|
188
|
+
add_message "gitaly.LastCommitForPathRequest" do
|
189
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
190
|
+
optional :revision, :bytes, 2
|
191
|
+
optional :path, :bytes, 3
|
192
|
+
end
|
193
|
+
add_message "gitaly.LastCommitForPathResponse" do
|
194
|
+
optional :commit, :message, 1, "gitaly.GitCommit"
|
195
|
+
end
|
196
|
+
add_message "gitaly.ListLastCommitsForTreeRequest" do
|
197
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
198
|
+
optional :revision, :string, 2
|
199
|
+
optional :path, :bytes, 3
|
200
|
+
optional :limit, :int32, 4
|
201
|
+
optional :offset, :int32, 5
|
202
|
+
end
|
203
|
+
add_message "gitaly.ListLastCommitsForTreeResponse" do
|
204
|
+
repeated :commits, :message, 1, "gitaly.ListLastCommitsForTreeResponse.CommitForTree"
|
205
|
+
end
|
206
|
+
add_message "gitaly.ListLastCommitsForTreeResponse.CommitForTree" do
|
207
|
+
optional :commit, :message, 2, "gitaly.GitCommit"
|
208
|
+
optional :path_bytes, :bytes, 4
|
209
|
+
end
|
210
|
+
add_message "gitaly.CommitsByMessageRequest" do
|
211
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
212
|
+
optional :revision, :bytes, 2
|
213
|
+
optional :offset, :int32, 3
|
214
|
+
optional :limit, :int32, 4
|
215
|
+
optional :path, :bytes, 5
|
216
|
+
optional :query, :string, 6
|
217
|
+
end
|
218
|
+
add_message "gitaly.CommitsByMessageResponse" do
|
219
|
+
repeated :commits, :message, 1, "gitaly.GitCommit"
|
220
|
+
end
|
221
|
+
add_message "gitaly.FilterShasWithSignaturesRequest" do
|
222
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
223
|
+
repeated :shas, :bytes, 2
|
224
|
+
end
|
225
|
+
add_message "gitaly.FilterShasWithSignaturesResponse" do
|
226
|
+
repeated :shas, :bytes, 1
|
227
|
+
end
|
228
|
+
add_message "gitaly.ExtractCommitSignatureRequest" do
|
229
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
230
|
+
optional :commit_id, :string, 2
|
231
|
+
end
|
232
|
+
add_message "gitaly.ExtractCommitSignatureResponse" do
|
233
|
+
optional :signature, :bytes, 1
|
234
|
+
optional :signed_text, :bytes, 2
|
235
|
+
end
|
236
|
+
add_message "gitaly.GetCommitSignaturesRequest" do
|
237
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
238
|
+
repeated :commit_ids, :string, 2
|
239
|
+
end
|
240
|
+
add_message "gitaly.GetCommitSignaturesResponse" do
|
241
|
+
optional :commit_id, :string, 1
|
242
|
+
optional :signature, :bytes, 2
|
243
|
+
optional :signed_text, :bytes, 3
|
244
|
+
end
|
245
|
+
add_message "gitaly.GetCommitMessagesRequest" do
|
246
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
247
|
+
repeated :commit_ids, :string, 2
|
248
|
+
end
|
249
|
+
add_message "gitaly.GetCommitMessagesResponse" do
|
250
|
+
optional :commit_id, :string, 1
|
251
|
+
optional :message, :bytes, 2
|
254
252
|
end
|
255
253
|
end
|
256
254
|
|
257
255
|
module Gitaly
|
258
|
-
CommitStatsRequest =
|
259
|
-
CommitStatsResponse =
|
260
|
-
CommitIsAncestorRequest =
|
261
|
-
CommitIsAncestorResponse =
|
262
|
-
TreeEntryRequest =
|
263
|
-
TreeEntryResponse =
|
264
|
-
TreeEntryResponse::ObjectType =
|
265
|
-
CommitsBetweenRequest =
|
266
|
-
CommitsBetweenResponse =
|
267
|
-
CountCommitsRequest =
|
268
|
-
CountCommitsResponse =
|
269
|
-
CountDivergingCommitsRequest =
|
270
|
-
CountDivergingCommitsResponse =
|
271
|
-
TreeEntry =
|
272
|
-
TreeEntry::EntryType =
|
273
|
-
GetTreeEntriesRequest =
|
274
|
-
GetTreeEntriesResponse =
|
275
|
-
ListFilesRequest =
|
276
|
-
ListFilesResponse =
|
277
|
-
FindCommitRequest =
|
278
|
-
FindCommitResponse =
|
279
|
-
ListCommitsByOidRequest =
|
280
|
-
ListCommitsByOidResponse =
|
281
|
-
ListCommitsByRefNameRequest =
|
282
|
-
ListCommitsByRefNameResponse =
|
283
|
-
FindAllCommitsRequest =
|
284
|
-
FindAllCommitsRequest::Order =
|
285
|
-
FindAllCommitsResponse =
|
286
|
-
FindCommitsRequest =
|
287
|
-
FindCommitsRequest::Order =
|
288
|
-
FindCommitsResponse =
|
289
|
-
CommitLanguagesRequest =
|
290
|
-
CommitLanguagesResponse =
|
291
|
-
CommitLanguagesResponse::Language =
|
292
|
-
RawBlameRequest =
|
293
|
-
RawBlameResponse =
|
294
|
-
LastCommitForPathRequest =
|
295
|
-
LastCommitForPathResponse =
|
296
|
-
ListLastCommitsForTreeRequest =
|
297
|
-
ListLastCommitsForTreeResponse =
|
298
|
-
ListLastCommitsForTreeResponse::CommitForTree =
|
299
|
-
CommitsByMessageRequest =
|
300
|
-
CommitsByMessageResponse =
|
301
|
-
FilterShasWithSignaturesRequest =
|
302
|
-
FilterShasWithSignaturesResponse =
|
303
|
-
ExtractCommitSignatureRequest =
|
304
|
-
ExtractCommitSignatureResponse =
|
305
|
-
GetCommitSignaturesRequest =
|
306
|
-
GetCommitSignaturesResponse =
|
307
|
-
GetCommitMessagesRequest =
|
308
|
-
GetCommitMessagesResponse =
|
256
|
+
CommitStatsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsRequest").msgclass
|
257
|
+
CommitStatsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitStatsResponse").msgclass
|
258
|
+
CommitIsAncestorRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorRequest").msgclass
|
259
|
+
CommitIsAncestorResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitIsAncestorResponse").msgclass
|
260
|
+
TreeEntryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryRequest").msgclass
|
261
|
+
TreeEntryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse").msgclass
|
262
|
+
TreeEntryResponse::ObjectType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntryResponse.ObjectType").enummodule
|
263
|
+
CommitsBetweenRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenRequest").msgclass
|
264
|
+
CommitsBetweenResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsBetweenResponse").msgclass
|
265
|
+
CountCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsRequest").msgclass
|
266
|
+
CountCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountCommitsResponse").msgclass
|
267
|
+
CountDivergingCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountDivergingCommitsRequest").msgclass
|
268
|
+
CountDivergingCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CountDivergingCommitsResponse").msgclass
|
269
|
+
TreeEntry = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry").msgclass
|
270
|
+
TreeEntry::EntryType = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.TreeEntry.EntryType").enummodule
|
271
|
+
GetTreeEntriesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesRequest").msgclass
|
272
|
+
GetTreeEntriesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetTreeEntriesResponse").msgclass
|
273
|
+
ListFilesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListFilesRequest").msgclass
|
274
|
+
ListFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListFilesResponse").msgclass
|
275
|
+
FindCommitRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitRequest").msgclass
|
276
|
+
FindCommitResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitResponse").msgclass
|
277
|
+
ListCommitsByOidRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidRequest").msgclass
|
278
|
+
ListCommitsByOidResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByOidResponse").msgclass
|
279
|
+
ListCommitsByRefNameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameRequest").msgclass
|
280
|
+
ListCommitsByRefNameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListCommitsByRefNameResponse").msgclass
|
281
|
+
FindAllCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest").msgclass
|
282
|
+
FindAllCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsRequest.Order").enummodule
|
283
|
+
FindAllCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindAllCommitsResponse").msgclass
|
284
|
+
FindCommitsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsRequest").msgclass
|
285
|
+
FindCommitsRequest::Order = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsRequest.Order").enummodule
|
286
|
+
FindCommitsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FindCommitsResponse").msgclass
|
287
|
+
CommitLanguagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesRequest").msgclass
|
288
|
+
CommitLanguagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse").msgclass
|
289
|
+
CommitLanguagesResponse::Language = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitLanguagesResponse.Language").msgclass
|
290
|
+
RawBlameRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameRequest").msgclass
|
291
|
+
RawBlameResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawBlameResponse").msgclass
|
292
|
+
LastCommitForPathRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathRequest").msgclass
|
293
|
+
LastCommitForPathResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.LastCommitForPathResponse").msgclass
|
294
|
+
ListLastCommitsForTreeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeRequest").msgclass
|
295
|
+
ListLastCommitsForTreeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeResponse").msgclass
|
296
|
+
ListLastCommitsForTreeResponse::CommitForTree = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListLastCommitsForTreeResponse.CommitForTree").msgclass
|
297
|
+
CommitsByMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageRequest").msgclass
|
298
|
+
CommitsByMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitsByMessageResponse").msgclass
|
299
|
+
FilterShasWithSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesRequest").msgclass
|
300
|
+
FilterShasWithSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.FilterShasWithSignaturesResponse").msgclass
|
301
|
+
ExtractCommitSignatureRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureRequest").msgclass
|
302
|
+
ExtractCommitSignatureResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExtractCommitSignatureResponse").msgclass
|
303
|
+
GetCommitSignaturesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesRequest").msgclass
|
304
|
+
GetCommitSignaturesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitSignaturesResponse").msgclass
|
305
|
+
GetCommitMessagesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesRequest").msgclass
|
306
|
+
GetCommitMessagesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.GetCommitMessagesResponse").msgclass
|
309
307
|
end
|