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
@@ -6,55 +6,53 @@ 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
|
-
optional :content, :bytes, 2
|
25
|
-
end
|
26
|
-
end
|
27
|
-
add_message "gitaly.ListConflictFilesResponse" do
|
28
|
-
repeated :files, :message, 1, "gitaly.ConflictFile"
|
29
|
-
end
|
30
|
-
add_message "gitaly.ResolveConflictsRequestHeader" do
|
31
|
-
optional :repository, :message, 1, "gitaly.Repository"
|
32
|
-
optional :our_commit_oid, :string, 2
|
33
|
-
optional :target_repository, :message, 3, "gitaly.Repository"
|
34
|
-
optional :their_commit_oid, :string, 4
|
35
|
-
optional :source_branch, :bytes, 5
|
36
|
-
optional :target_branch, :bytes, 6
|
37
|
-
optional :commit_message, :bytes, 7
|
38
|
-
optional :user, :message, 8, "gitaly.User"
|
39
|
-
end
|
40
|
-
add_message "gitaly.ResolveConflictsRequest" do
|
41
|
-
oneof :resolve_conflicts_request_payload do
|
42
|
-
optional :header, :message, 1, "gitaly.ResolveConflictsRequestHeader"
|
43
|
-
optional :files_json, :bytes, 2
|
44
|
-
end
|
9
|
+
add_message "gitaly.ListConflictFilesRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
optional :our_commit_oid, :string, 2
|
12
|
+
optional :their_commit_oid, :string, 3
|
13
|
+
end
|
14
|
+
add_message "gitaly.ConflictFileHeader" do
|
15
|
+
optional :commit_oid, :string, 2
|
16
|
+
optional :their_path, :bytes, 3
|
17
|
+
optional :our_path, :bytes, 4
|
18
|
+
optional :our_mode, :int32, 5
|
19
|
+
end
|
20
|
+
add_message "gitaly.ConflictFile" do
|
21
|
+
oneof :conflict_file_payload do
|
22
|
+
optional :header, :message, 1, "gitaly.ConflictFileHeader"
|
23
|
+
optional :content, :bytes, 2
|
45
24
|
end
|
46
|
-
|
47
|
-
|
25
|
+
end
|
26
|
+
add_message "gitaly.ListConflictFilesResponse" do
|
27
|
+
repeated :files, :message, 1, "gitaly.ConflictFile"
|
28
|
+
end
|
29
|
+
add_message "gitaly.ResolveConflictsRequestHeader" do
|
30
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
31
|
+
optional :our_commit_oid, :string, 2
|
32
|
+
optional :target_repository, :message, 3, "gitaly.Repository"
|
33
|
+
optional :their_commit_oid, :string, 4
|
34
|
+
optional :source_branch, :bytes, 5
|
35
|
+
optional :target_branch, :bytes, 6
|
36
|
+
optional :commit_message, :bytes, 7
|
37
|
+
optional :user, :message, 8, "gitaly.User"
|
38
|
+
end
|
39
|
+
add_message "gitaly.ResolveConflictsRequest" do
|
40
|
+
oneof :resolve_conflicts_request_payload do
|
41
|
+
optional :header, :message, 1, "gitaly.ResolveConflictsRequestHeader"
|
42
|
+
optional :files_json, :bytes, 2
|
48
43
|
end
|
49
44
|
end
|
45
|
+
add_message "gitaly.ResolveConflictsResponse" do
|
46
|
+
optional :resolution_error, :string, 1
|
47
|
+
end
|
50
48
|
end
|
51
49
|
|
52
50
|
module Gitaly
|
53
|
-
ListConflictFilesRequest =
|
54
|
-
ConflictFileHeader =
|
55
|
-
ConflictFile =
|
56
|
-
ListConflictFilesResponse =
|
57
|
-
ResolveConflictsRequestHeader =
|
58
|
-
ResolveConflictsRequest =
|
59
|
-
ResolveConflictsResponse =
|
51
|
+
ListConflictFilesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListConflictFilesRequest").msgclass
|
52
|
+
ConflictFileHeader = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConflictFileHeader").msgclass
|
53
|
+
ConflictFile = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ConflictFile").msgclass
|
54
|
+
ListConflictFilesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ListConflictFilesResponse").msgclass
|
55
|
+
ResolveConflictsRequestHeader = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveConflictsRequestHeader").msgclass
|
56
|
+
ResolveConflictsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveConflictsRequest").msgclass
|
57
|
+
ResolveConflictsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ResolveConflictsResponse").msgclass
|
60
58
|
end
|
@@ -6,97 +6,95 @@ 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
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
repeated :stats, :message, 1, "gitaly.DiffStats"
|
85
|
-
end
|
9
|
+
add_message "gitaly.CommitDiffRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
optional :left_commit_id, :string, 2
|
12
|
+
optional :right_commit_id, :string, 3
|
13
|
+
optional :ignore_whitespace_change, :bool, 4
|
14
|
+
repeated :paths, :bytes, 5
|
15
|
+
optional :collapse_diffs, :bool, 6
|
16
|
+
optional :enforce_limits, :bool, 7
|
17
|
+
optional :max_files, :int32, 8
|
18
|
+
optional :max_lines, :int32, 9
|
19
|
+
optional :max_bytes, :int32, 10
|
20
|
+
optional :max_patch_bytes, :int32, 14
|
21
|
+
optional :safe_max_files, :int32, 11
|
22
|
+
optional :safe_max_lines, :int32, 12
|
23
|
+
optional :safe_max_bytes, :int32, 13
|
24
|
+
end
|
25
|
+
add_message "gitaly.CommitDiffResponse" do
|
26
|
+
optional :from_path, :bytes, 1
|
27
|
+
optional :to_path, :bytes, 2
|
28
|
+
optional :from_id, :string, 3
|
29
|
+
optional :to_id, :string, 4
|
30
|
+
optional :old_mode, :int32, 5
|
31
|
+
optional :new_mode, :int32, 6
|
32
|
+
optional :binary, :bool, 7
|
33
|
+
optional :raw_patch_data, :bytes, 9
|
34
|
+
optional :end_of_patch, :bool, 10
|
35
|
+
optional :overflow_marker, :bool, 11
|
36
|
+
optional :collapsed, :bool, 12
|
37
|
+
optional :too_large, :bool, 13
|
38
|
+
end
|
39
|
+
add_message "gitaly.CommitDeltaRequest" do
|
40
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
41
|
+
optional :left_commit_id, :string, 2
|
42
|
+
optional :right_commit_id, :string, 3
|
43
|
+
repeated :paths, :bytes, 4
|
44
|
+
end
|
45
|
+
add_message "gitaly.CommitDelta" do
|
46
|
+
optional :from_path, :bytes, 1
|
47
|
+
optional :to_path, :bytes, 2
|
48
|
+
optional :from_id, :string, 3
|
49
|
+
optional :to_id, :string, 4
|
50
|
+
optional :old_mode, :int32, 5
|
51
|
+
optional :new_mode, :int32, 6
|
52
|
+
end
|
53
|
+
add_message "gitaly.CommitDeltaResponse" do
|
54
|
+
repeated :deltas, :message, 1, "gitaly.CommitDelta"
|
55
|
+
end
|
56
|
+
add_message "gitaly.RawDiffRequest" do
|
57
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
58
|
+
optional :left_commit_id, :string, 2
|
59
|
+
optional :right_commit_id, :string, 3
|
60
|
+
end
|
61
|
+
add_message "gitaly.RawDiffResponse" do
|
62
|
+
optional :data, :bytes, 1
|
63
|
+
end
|
64
|
+
add_message "gitaly.RawPatchRequest" do
|
65
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
66
|
+
optional :left_commit_id, :string, 2
|
67
|
+
optional :right_commit_id, :string, 3
|
68
|
+
end
|
69
|
+
add_message "gitaly.RawPatchResponse" do
|
70
|
+
optional :data, :bytes, 1
|
71
|
+
end
|
72
|
+
add_message "gitaly.DiffStatsRequest" do
|
73
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
74
|
+
optional :left_commit_id, :string, 2
|
75
|
+
optional :right_commit_id, :string, 3
|
76
|
+
end
|
77
|
+
add_message "gitaly.DiffStats" do
|
78
|
+
optional :path, :bytes, 1
|
79
|
+
optional :additions, :int32, 2
|
80
|
+
optional :deletions, :int32, 3
|
81
|
+
end
|
82
|
+
add_message "gitaly.DiffStatsResponse" do
|
83
|
+
repeated :stats, :message, 1, "gitaly.DiffStats"
|
86
84
|
end
|
87
85
|
end
|
88
86
|
|
89
87
|
module Gitaly
|
90
|
-
CommitDiffRequest =
|
91
|
-
CommitDiffResponse =
|
92
|
-
CommitDeltaRequest =
|
93
|
-
CommitDelta =
|
94
|
-
CommitDeltaResponse =
|
95
|
-
RawDiffRequest =
|
96
|
-
RawDiffResponse =
|
97
|
-
RawPatchRequest =
|
98
|
-
RawPatchResponse =
|
99
|
-
DiffStatsRequest =
|
100
|
-
DiffStats =
|
101
|
-
DiffStatsResponse =
|
88
|
+
CommitDiffRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffRequest").msgclass
|
89
|
+
CommitDiffResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDiffResponse").msgclass
|
90
|
+
CommitDeltaRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaRequest").msgclass
|
91
|
+
CommitDelta = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDelta").msgclass
|
92
|
+
CommitDeltaResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitDeltaResponse").msgclass
|
93
|
+
RawDiffRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawDiffRequest").msgclass
|
94
|
+
RawDiffResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawDiffResponse").msgclass
|
95
|
+
RawPatchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchRequest").msgclass
|
96
|
+
RawPatchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RawPatchResponse").msgclass
|
97
|
+
DiffStatsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsRequest").msgclass
|
98
|
+
DiffStats = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStats").msgclass
|
99
|
+
DiffStatsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.DiffStatsResponse").msgclass
|
102
100
|
end
|
@@ -6,48 +6,46 @@ 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
|
-
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
42
|
-
end
|
9
|
+
add_message "gitaly.PreReceiveHookRequest" do
|
10
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
11
|
+
repeated :environment_variables, :string, 2
|
12
|
+
optional :stdin, :bytes, 4
|
13
|
+
end
|
14
|
+
add_message "gitaly.PreReceiveHookResponse" do
|
15
|
+
optional :stdout, :bytes, 1
|
16
|
+
optional :stderr, :bytes, 2
|
17
|
+
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
18
|
+
end
|
19
|
+
add_message "gitaly.PostReceiveHookRequest" do
|
20
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
21
|
+
repeated :environment_variables, :string, 2
|
22
|
+
optional :stdin, :bytes, 3
|
23
|
+
repeated :git_push_options, :string, 4
|
24
|
+
end
|
25
|
+
add_message "gitaly.PostReceiveHookResponse" do
|
26
|
+
optional :stdout, :bytes, 1
|
27
|
+
optional :stderr, :bytes, 2
|
28
|
+
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
29
|
+
end
|
30
|
+
add_message "gitaly.UpdateHookRequest" do
|
31
|
+
optional :repository, :message, 1, "gitaly.Repository"
|
32
|
+
repeated :environment_variables, :string, 2
|
33
|
+
optional :ref, :bytes, 3
|
34
|
+
optional :old_value, :string, 4
|
35
|
+
optional :new_value, :string, 5
|
36
|
+
end
|
37
|
+
add_message "gitaly.UpdateHookResponse" do
|
38
|
+
optional :stdout, :bytes, 1
|
39
|
+
optional :stderr, :bytes, 2
|
40
|
+
optional :exit_status, :message, 3, "gitaly.ExitStatus"
|
43
41
|
end
|
44
42
|
end
|
45
43
|
|
46
44
|
module Gitaly
|
47
|
-
PreReceiveHookRequest =
|
48
|
-
PreReceiveHookResponse =
|
49
|
-
PostReceiveHookRequest =
|
50
|
-
PostReceiveHookResponse =
|
51
|
-
UpdateHookRequest =
|
52
|
-
UpdateHookResponse =
|
45
|
+
PreReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookRequest").msgclass
|
46
|
+
PreReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookResponse").msgclass
|
47
|
+
PostReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookRequest").msgclass
|
48
|
+
PostReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookResponse").msgclass
|
49
|
+
UpdateHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
|
50
|
+
UpdateHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
|
53
51
|
end
|
@@ -6,17 +6,15 @@ 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
|
-
optional :relative_path, :string, 1
|
15
|
-
end
|
9
|
+
add_message "gitaly.WalkReposRequest" do
|
10
|
+
optional :storage_name, :string, 1
|
11
|
+
end
|
12
|
+
add_message "gitaly.WalkReposResponse" do
|
13
|
+
optional :relative_path, :string, 1
|
16
14
|
end
|
17
15
|
end
|
18
16
|
|
19
17
|
module Gitaly
|
20
|
-
WalkReposRequest =
|
21
|
-
WalkReposResponse =
|
18
|
+
WalkReposRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WalkReposRequest").msgclass
|
19
|
+
WalkReposResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.WalkReposResponse").msgclass
|
22
20
|
end
|
@@ -4,26 +4,24 @@
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
6
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
value :STORAGE, 2
|
21
|
-
end
|
7
|
+
add_message "gitaly.OperationMsg" do
|
8
|
+
optional :op, :enum, 1, "gitaly.OperationMsg.Operation"
|
9
|
+
optional :scope_level, :enum, 2, "gitaly.OperationMsg.Scope"
|
10
|
+
end
|
11
|
+
add_enum "gitaly.OperationMsg.Operation" do
|
12
|
+
value :UNKNOWN, 0
|
13
|
+
value :MUTATOR, 1
|
14
|
+
value :ACCESSOR, 2
|
15
|
+
end
|
16
|
+
add_enum "gitaly.OperationMsg.Scope" do
|
17
|
+
value :REPOSITORY, 0
|
18
|
+
value :SERVER, 1
|
19
|
+
value :STORAGE, 2
|
22
20
|
end
|
23
21
|
end
|
24
22
|
|
25
23
|
module Gitaly
|
26
|
-
OperationMsg =
|
27
|
-
OperationMsg::Operation =
|
28
|
-
OperationMsg::Scope =
|
24
|
+
OperationMsg = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg").msgclass
|
25
|
+
OperationMsg::Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Operation").enummodule
|
26
|
+
OperationMsg::Scope = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.OperationMsg.Scope").enummodule
|
29
27
|
end
|
@@ -6,43 +6,41 @@ 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
|
-
add_message "gitaly.RenameNamespaceResponse" do
|
35
|
-
end
|
9
|
+
add_message "gitaly.AddNamespaceRequest" do
|
10
|
+
optional :storage_name, :string, 1
|
11
|
+
optional :name, :string, 2
|
12
|
+
end
|
13
|
+
add_message "gitaly.RemoveNamespaceRequest" do
|
14
|
+
optional :storage_name, :string, 1
|
15
|
+
optional :name, :string, 2
|
16
|
+
end
|
17
|
+
add_message "gitaly.RenameNamespaceRequest" do
|
18
|
+
optional :storage_name, :string, 1
|
19
|
+
optional :from, :string, 2
|
20
|
+
optional :to, :string, 3
|
21
|
+
end
|
22
|
+
add_message "gitaly.NamespaceExistsRequest" do
|
23
|
+
optional :storage_name, :string, 1
|
24
|
+
optional :name, :string, 2
|
25
|
+
end
|
26
|
+
add_message "gitaly.NamespaceExistsResponse" do
|
27
|
+
optional :exists, :bool, 1
|
28
|
+
end
|
29
|
+
add_message "gitaly.AddNamespaceResponse" do
|
30
|
+
end
|
31
|
+
add_message "gitaly.RemoveNamespaceResponse" do
|
32
|
+
end
|
33
|
+
add_message "gitaly.RenameNamespaceResponse" do
|
36
34
|
end
|
37
35
|
end
|
38
36
|
|
39
37
|
module Gitaly
|
40
|
-
AddNamespaceRequest =
|
41
|
-
RemoveNamespaceRequest =
|
42
|
-
RenameNamespaceRequest =
|
43
|
-
NamespaceExistsRequest =
|
44
|
-
NamespaceExistsResponse =
|
45
|
-
AddNamespaceResponse =
|
46
|
-
RemoveNamespaceResponse =
|
47
|
-
RenameNamespaceResponse =
|
38
|
+
AddNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddNamespaceRequest").msgclass
|
39
|
+
RemoveNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveNamespaceRequest").msgclass
|
40
|
+
RenameNamespaceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameNamespaceRequest").msgclass
|
41
|
+
NamespaceExistsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NamespaceExistsRequest").msgclass
|
42
|
+
NamespaceExistsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.NamespaceExistsResponse").msgclass
|
43
|
+
AddNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.AddNamespaceResponse").msgclass
|
44
|
+
RemoveNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveNamespaceResponse").msgclass
|
45
|
+
RenameNamespaceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RenameNamespaceResponse").msgclass
|
48
46
|
end
|