kas-grpc 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1bfdbdf285dbd899f4f6b4db8cf849ad8d1ff74c7b32dddbf8c9ba281336f912
4
- data.tar.gz: 95aa59c085725a0110cafb0de8e412ee67f22d90967c4ae968a24936015ea73d
3
+ metadata.gz: d3140ea1bd5980bd75b3a5e4c55e64225b58f6ef5d692aeaad818e605cfdc203
4
+ data.tar.gz: 97a97086233cfb991463b63f6029ebcb2507c163baf39a4f8fe7e8545c2f9a71
5
5
  SHA512:
6
- metadata.gz: 96cfdb3505fa1e15aea170e80f7e6e901225cdbb1833ac87ca7f40e82f3734b0b8b5acd46944b3fc17fb57cef1f443e746a544e7904716e7d2285febf4db5863
7
- data.tar.gz: 5184ad9f0d349396d3e681f11ea3a9cab3d1f7c418775cf9bc2deeb525cf78a67f033c24d3a24cd4f6c699d3afffe7486c5fd30578d5dbd3b46214206ecdff6b
6
+ metadata.gz: 52d9ce6104cd16954573a65beff1ba31dace10196fa22902b61cee617265fd0e08bcdb27160c1e479afad091f8618fcb4f4a22c33df25cef3a458f88cbf1e135
7
+ data.tar.gz: 90dfd7083072ded5c6c2c708d083eb9b186787f1dff33e67222ffd1d9b7c2d9be051db2cb00c4f853e7094ba0055c38ff81dd7a66ff9a9d98c60bb298dfdd75a
@@ -8,11 +8,11 @@ require 'internal/module/modshared/modshared_pb'
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("internal/module/agent_tracker/agent_tracker.proto", :syntax => :proto3) do
10
10
  add_message "gitlab.agent.agent_tracker.ConnectedAgentInfo" do
11
- optional :agent_meta, :message, 1, "gitlab.agent.modshared.AgentMeta"
12
- optional :connected_at, :message, 2, "google.protobuf.Timestamp"
13
- optional :connection_id, :int64, 3
14
- optional :agent_id, :int64, 4
15
- optional :project_id, :int64, 5
11
+ optional :agent_meta, :message, 1, "gitlab.agent.modshared.AgentMeta", json_name: "agent_meta"
12
+ optional :connected_at, :message, 2, "google.protobuf.Timestamp", json_name: "connected_at"
13
+ optional :connection_id, :int64, 3, json_name: "connection_id"
14
+ optional :agent_id, :int64, 4, json_name: "agent_id"
15
+ optional :project_id, :int64, 5, json_name: "project_id"
16
16
  end
17
17
  end
18
18
  end
@@ -8,12 +8,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_file("internal/module/agent_tracker/rpc/rpc.proto", :syntax => :proto3) do
9
9
  add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsRequest" do
10
10
  oneof :request do
11
- optional :project_id, :int64, 1
12
- optional :agent_id, :int64, 2
11
+ optional :project_id, :int64, 1, json_name: "projectId"
12
+ optional :agent_id, :int64, 2, json_name: "agentId"
13
13
  end
14
14
  end
15
15
  add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsResponse" do
16
- repeated :agents, :message, 1, "gitlab.agent.agent_tracker.ConnectedAgentInfo"
16
+ repeated :agents, :message, 1, "gitlab.agent.agent_tracker.ConnectedAgentInfo", json_name: "agents"
17
17
  end
18
18
  end
19
19
  end
@@ -7,15 +7,15 @@ require 'internal/module/modserver/modserver_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_file("internal/module/configuration_project/rpc/rpc.proto", :syntax => :proto3) do
9
9
  add_message "gitlab.agent.configuration_project.rpc.ListAgentConfigFilesRequest" do
10
- optional :repository, :message, 1, "gitlab.agent.modserver.Repository"
11
- optional :gitaly_address, :message, 2, "gitlab.agent.modserver.GitalyAddress"
10
+ optional :repository, :message, 1, "gitlab.agent.modserver.Repository", json_name: "repository"
11
+ optional :gitaly_address, :message, 2, "gitlab.agent.modserver.GitalyAddress", json_name: "gitalyAddress"
12
12
  end
13
13
  add_message "gitlab.agent.configuration_project.rpc.ListAgentConfigFilesResponse" do
14
- repeated :config_files, :message, 1, "gitlab.agent.configuration_project.rpc.AgentConfigFile"
14
+ repeated :config_files, :message, 1, "gitlab.agent.configuration_project.rpc.AgentConfigFile", json_name: "config_files"
15
15
  end
16
16
  add_message "gitlab.agent.configuration_project.rpc.AgentConfigFile" do
17
- optional :name, :string, 1
18
- optional :agent_name, :string, 2
17
+ optional :name, :string, 1, json_name: "name"
18
+ optional :agent_name, :string, 2, json_name: "agent_name"
19
19
  end
20
20
  end
21
21
  end
@@ -6,16 +6,16 @@ require 'google/protobuf'
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
7
  add_file("internal/module/modserver/modserver.proto", :syntax => :proto3) do
8
8
  add_message "gitlab.agent.modserver.Repository" do
9
- optional :storage_name, :string, 2
10
- optional :relative_path, :string, 3
11
- optional :git_object_directory, :string, 4
12
- repeated :git_alternate_object_directories, :string, 5
13
- optional :gl_repository, :string, 6
14
- optional :gl_project_path, :string, 8
9
+ optional :storage_name, :string, 2, json_name: "storageName"
10
+ optional :relative_path, :string, 3, json_name: "relativePath"
11
+ optional :git_object_directory, :string, 4, json_name: "gitObjectDirectory"
12
+ repeated :git_alternate_object_directories, :string, 5, json_name: "gitAlternateObjectDirectories"
13
+ optional :gl_repository, :string, 6, json_name: "glRepository"
14
+ optional :gl_project_path, :string, 8, json_name: "glProjectPath"
15
15
  end
16
16
  add_message "gitlab.agent.modserver.GitalyAddress" do
17
- optional :address, :string, 1
18
- optional :token, :string, 2
17
+ optional :address, :string, 1, json_name: "address"
18
+ optional :token, :string, 2, json_name: "token"
19
19
  end
20
20
  end
21
21
  end
@@ -6,10 +6,10 @@ require 'google/protobuf'
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
7
  add_file("internal/module/modshared/modshared.proto", :syntax => :proto3) do
8
8
  add_message "gitlab.agent.modshared.AgentMeta" do
9
- optional :version, :string, 1
10
- optional :commit_id, :string, 2
11
- optional :pod_namespace, :string, 3
12
- optional :pod_name, :string, 4
9
+ optional :version, :string, 1, json_name: "version"
10
+ optional :commit_id, :string, 2, json_name: "commit_id"
11
+ optional :pod_namespace, :string, 3, json_name: "pod_namespace"
12
+ optional :pod_name, :string, 4, json_name: "pod_name"
13
13
  end
14
14
  end
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kas-grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tiger Watson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-03 00:00:00.000000000 Z
11
+ date: 2021-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc