Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hook_pb.rb « gitaly « proto « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f356b7abb0dc954926b8fa8c469db31476196cd4 (plain)
1
2
3
4
5
6
7
8
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
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: hook.proto

require 'google/protobuf'

require 'lint_pb'
require 'shared_pb'
Google::Protobuf::DescriptorPool.generated_pool.build do
  add_message "gitaly.PreReceiveHookRequest" do
    optional :repository, :message, 1, "gitaly.Repository"
    optional :key_id, :string, 2
    optional :protocol, :string, 3
    optional :stdin, :bytes, 4
  end
  add_message "gitaly.PreReceiveHookResponse" do
    optional :stdout, :bytes, 1
    optional :stderr, :bytes, 2
    optional :exit_status, :message, 3, "gitaly.ExitStatus"
  end
  add_message "gitaly.PostReceiveHookRequest" do
    optional :repository, :message, 1, "gitaly.Repository"
    optional :key_id, :string, 2
    optional :stdin, :bytes, 3
    repeated :git_push_options, :string, 4
  end
  add_message "gitaly.PostReceiveHookResponse" do
    optional :stdout, :bytes, 1
    optional :stderr, :bytes, 2
    optional :exit_status, :message, 3, "gitaly.ExitStatus"
  end
  add_message "gitaly.UpdateHookRequest" do
    optional :repository, :message, 1, "gitaly.Repository"
    optional :key_id, :string, 2
    optional :ref, :bytes, 3
    optional :old_value, :string, 4
    optional :new_value, :string, 5
  end
  add_message "gitaly.UpdateHookResponse" do
    optional :stdout, :bytes, 1
    optional :stderr, :bytes, 2
    optional :exit_status, :message, 3, "gitaly.ExitStatus"
  end
end

module Gitaly
  PreReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookRequest").msgclass
  PreReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PreReceiveHookResponse").msgclass
  PostReceiveHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookRequest").msgclass
  PostReceiveHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.PostReceiveHookResponse").msgclass
  UpdateHookRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookRequest").msgclass
  UpdateHookResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UpdateHookResponse").msgclass
end