1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: internal/module/modshared/modshared.proto
require 'google/protobuf'
Google::Protobuf::DescriptorPool.generated_pool.build do
add_file("internal/module/modshared/modshared.proto", :syntax => :proto3) do
add_message "gitlab.agent.modshared.AgentMeta" do
optional :version, :string, 1, json_name: "version"
optional :commit_id, :string, 2, json_name: "commit_id"
optional :pod_namespace, :string, 3, json_name: "pod_namespace"
optional :pod_name, :string, 4, json_name: "pod_name"
end
end
end
module Gitlab
module Agent
module Modshared
AgentMeta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.modshared.AgentMeta").msgclass
end
end
end
|