kas-grpc 0.2.0 → 0.4.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2b8d8ae5bc0cf47a761f08ed69507eaafff383b6b9650127dd7ad84f6fffb8a
|
4
|
+
data.tar.gz: 854447ca655979a7dda5f8de68b2d5080ccd0d9cdaacb9547d6d4330d10bad82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bcb3eb993d543f40f69fbfe6575d401753846f27fc452781be5001466f0a5d785355a5068851837505a480258235f50e87c5392ae786f1e4f150c5aa055a6b3
|
7
|
+
data.tar.gz: 5244e70e1c3d8bf78546b7d38a845ade2c3653de5d640aea9332bfc5b66b532b45cf77a630934095c853b53d63dadf4a3cab46cf8a0ff3ddd9562e560e5b91fc
|
@@ -14,9 +14,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
14
14
|
optional :agent_id, :int64, 2, json_name: "agentId"
|
15
15
|
end
|
16
16
|
end
|
17
|
+
add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByProjectIDsRequest" do
|
18
|
+
repeated :project_ids, :int64, 1, json_name: "projectIds"
|
19
|
+
end
|
20
|
+
add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByAgentIDsRequest" do
|
21
|
+
repeated :agent_ids, :int64, 1, json_name: "agentIds"
|
22
|
+
end
|
17
23
|
add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsResponse" do
|
18
24
|
repeated :agents, :message, 1, "gitlab.agent.agent_tracker.ConnectedAgentInfo", json_name: "agents"
|
19
25
|
end
|
26
|
+
add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByProjectIDsResponse" do
|
27
|
+
repeated :agents, :message, 1, "gitlab.agent.agent_tracker.ConnectedAgentInfo", json_name: "agents"
|
28
|
+
end
|
29
|
+
add_message "gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByAgentIDsResponse" do
|
30
|
+
repeated :agents, :message, 1, "gitlab.agent.agent_tracker.ConnectedAgentInfo", json_name: "agents"
|
31
|
+
end
|
20
32
|
end
|
21
33
|
end
|
22
34
|
|
@@ -25,7 +37,11 @@ module Gitlab
|
|
25
37
|
module AgentTracker
|
26
38
|
module Rpc
|
27
39
|
GetConnectedAgentsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsRequest").msgclass
|
40
|
+
GetConnectedAgentsByProjectIDsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByProjectIDsRequest").msgclass
|
41
|
+
GetConnectedAgentsByAgentIDsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByAgentIDsRequest").msgclass
|
28
42
|
GetConnectedAgentsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsResponse").msgclass
|
43
|
+
GetConnectedAgentsByProjectIDsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByProjectIDsResponse").msgclass
|
44
|
+
GetConnectedAgentsByAgentIDsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.agent_tracker.rpc.GetConnectedAgentsByAgentIDsResponse").msgclass
|
29
45
|
end
|
30
46
|
end
|
31
47
|
end
|
@@ -18,6 +18,10 @@ module Gitlab
|
|
18
18
|
self.service_name = 'gitlab.agent.agent_tracker.rpc.AgentTracker'
|
19
19
|
|
20
20
|
rpc :GetConnectedAgents, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsRequest, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsResponse
|
21
|
+
rpc :GetConnectedAgentsByProjectIds, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByProjectIDsRequest, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByProjectIDsResponse
|
22
|
+
rpc :GetConnectedAgentsByProjectIDs, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByProjectIDsRequest, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByProjectIDsResponse
|
23
|
+
rpc :GetConnectedAgentsByAgentIds, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByAgentIDsRequest, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByAgentIDsResponse
|
24
|
+
rpc :GetConnectedAgentsByAgentIDs, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByAgentIDsRequest, ::Gitlab::Agent::AgentTracker::Rpc::GetConnectedAgentsByAgentIDsResponse
|
21
25
|
end
|
22
26
|
|
23
27
|
Stub = Service.rpc_stub_class
|
data/lib/pkg/entity/entity_pb.rb
CHANGED
@@ -12,6 +12,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
12
12
|
optional :commit_id, :string, 2, json_name: "commit_id"
|
13
13
|
optional :pod_namespace, :string, 3, json_name: "pod_namespace"
|
14
14
|
optional :pod_name, :string, 4, json_name: "pod_name"
|
15
|
+
optional :kubernetes_version, :message, 5, "gitlab.agent.entity.KubernetesVersion", json_name: "kubernetes_version"
|
16
|
+
end
|
17
|
+
add_message "gitlab.agent.entity.KubernetesVersion" do
|
18
|
+
optional :major, :string, 1, json_name: "major"
|
19
|
+
optional :minor, :string, 2, json_name: "minor"
|
20
|
+
optional :git_version, :string, 3, json_name: "git_version"
|
21
|
+
optional :platform, :string, 4, json_name: "platform"
|
15
22
|
end
|
16
23
|
add_message "gitlab.agent.entity.GitalyInfo" do
|
17
24
|
optional :address, :string, 1, json_name: "address"
|
@@ -33,6 +40,7 @@ module Gitlab
|
|
33
40
|
module Agent
|
34
41
|
module Entity
|
35
42
|
AgentMeta = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.entity.AgentMeta").msgclass
|
43
|
+
KubernetesVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.entity.KubernetesVersion").msgclass
|
36
44
|
GitalyInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.entity.GitalyInfo").msgclass
|
37
45
|
GitalyRepository = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab.agent.entity.GitalyRepository").msgclass
|
38
46
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kas-grpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tiger Watson
|
8
|
-
- Hordur Freyr Yngvason
|
9
8
|
- Timo Furrer
|
9
|
+
- Taka Nishida
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: grpc
|
@@ -29,8 +29,8 @@ dependencies:
|
|
29
29
|
description:
|
30
30
|
email:
|
31
31
|
- twatson@gitlab.com
|
32
|
-
- hfyngvason@gitlab.com
|
33
32
|
- tfurrer@gitlab.com
|
33
|
+
- tnishida@gitlab.com
|
34
34
|
executables: []
|
35
35
|
extensions: []
|
36
36
|
extra_rdoc_files: []
|
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: '0'
|
67
67
|
requirements: []
|
68
|
-
rubygems_version: 3.2.
|
68
|
+
rubygems_version: 3.2.33
|
69
69
|
signing_key:
|
70
70
|
specification_version: 4
|
71
71
|
summary: Auto-generated gRPC client for KAS
|