tucana 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/tucana/aquila/transfer_pb.rb +20 -0
- data/lib/tucana/{actions → aquila}/transfer_services_pb.rb +4 -4
- data/lib/tucana/sagittarius/action_pb.rb +22 -0
- data/lib/tucana/{internal → sagittarius}/action_services_pb.rb +5 -5
- data/lib/tucana/{internal → sagittarius}/flow_definition_pb.rb +3 -3
- data/lib/tucana/sagittarius/flow_pb.rb +25 -0
- data/lib/tucana/{internal → sagittarius}/flow_services_pb.rb +5 -5
- data/lib/tucana/sagittarius/node_pb.rb +20 -0
- data/lib/tucana/sagittarius/ping_pb.rb +17 -0
- data/lib/tucana/{internal → sagittarius}/ping_services_pb.rb +4 -4
- data/lib/tucana/version.rb +1 -1
- data/lib/tucana.rb +2 -0
- metadata +12 -12
- data/lib/tucana/actions/transfer_pb.rb +0 -20
- data/lib/tucana/internal/action_pb.rb +0 -22
- data/lib/tucana/internal/flow_pb.rb +0 -25
- data/lib/tucana/internal/node_pb.rb +0 -20
- data/lib/tucana/internal/ping_pb.rb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7918b936a9612c14f34802be06618e9e925db58b830a5873aafab55a6fe14aa
|
4
|
+
data.tar.gz: 5f4175a1618537b2e1a6703fc99ab5acdd5a5964a4eaa7c850c654e15dce3f8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f518b0d53a1cc226b53c39355441c2dc5ca674eaf048774320b85ab3539ff9bc14e75d89336dd823de6035b0d3d45231a561d64a015baefdfe0c92cd85bc87da
|
7
|
+
data.tar.gz: 9c6bea347c8f8e8a269bc77a633ef66c7c0960932fdbc564adbf2a39c97de09733fe6bc455a9e319143680870f11f4ac90fbc882e2da85944f9e23fe7be2ebf0
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: transfer.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require_relative '../shared/definitions_pb'
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\x0etransfer.proto\x12\x06\x61quila\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12InformationRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"&\n\x13InformationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32^\n\x15\x41\x63tionTransferService\x12\x45\n\x08Transfer\x12\x1a.aquila.InformationRequest\x1a\x1b.aquila.InformationResponse(\x01\x42\x11\xea\x02\x0eTucana::Aquilab\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
14
|
+
|
15
|
+
module Tucana
|
16
|
+
module Aquila
|
17
|
+
InformationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.InformationRequest").msgclass
|
18
|
+
InformationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.InformationResponse").msgclass
|
19
|
+
end
|
20
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# Source: transfer.proto for package 'Tucana.
|
2
|
+
# Source: transfer.proto for package 'Tucana.Aquila'
|
3
3
|
|
4
4
|
require 'grpc'
|
5
5
|
require_relative 'transfer_pb'
|
6
6
|
|
7
7
|
module Tucana
|
8
|
-
module
|
8
|
+
module Aquila
|
9
9
|
module ActionTransferService
|
10
10
|
class Service
|
11
11
|
|
@@ -13,9 +13,9 @@ module Tucana
|
|
13
13
|
|
14
14
|
self.marshal_class_method = :encode
|
15
15
|
self.unmarshal_class_method = :decode
|
16
|
-
self.service_name = '
|
16
|
+
self.service_name = 'aquila.ActionTransferService'
|
17
17
|
|
18
|
-
rpc :Transfer, stream(::Tucana::
|
18
|
+
rpc :Transfer, stream(::Tucana::Aquila::InformationRequest), ::Tucana::Aquila::InformationResponse
|
19
19
|
end
|
20
20
|
|
21
21
|
Stub = Service.rpc_stub_class
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: action.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require_relative '../shared/definitions_pb'
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\x0c\x61\x63tion.proto\x12\x0bsagittarius\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12\x41\x63tionLogonRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"\x15\n\x13\x41\x63tionLogonResponse\")\n\x13\x41\x63tionLogoffRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\"\x16\n\x14\x41\x63tionLogoffResponse2\xaa\x01\n\rActionService\x12J\n\x05Logon\x12\x1f.sagittarius.ActionLogonRequest\x1a .sagittarius.ActionLogonResponse\x12M\n\x06Logoff\x12 .sagittarius.ActionLogoffRequest\x1a!.sagittarius.ActionLogoffResponseB\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
14
|
+
|
15
|
+
module Tucana
|
16
|
+
module Sagittarius
|
17
|
+
ActionLogonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.ActionLogonRequest").msgclass
|
18
|
+
ActionLogonResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.ActionLogonResponse").msgclass
|
19
|
+
ActionLogoffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.ActionLogoffRequest").msgclass
|
20
|
+
ActionLogoffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.ActionLogoffResponse").msgclass
|
21
|
+
end
|
22
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# Source: action.proto for package 'Tucana.
|
2
|
+
# Source: action.proto for package 'Tucana.Sagittarius'
|
3
3
|
|
4
4
|
require 'grpc'
|
5
5
|
require_relative 'action_pb'
|
6
6
|
|
7
7
|
module Tucana
|
8
|
-
module
|
8
|
+
module Sagittarius
|
9
9
|
module ActionService
|
10
10
|
class Service
|
11
11
|
|
@@ -13,10 +13,10 @@ module Tucana
|
|
13
13
|
|
14
14
|
self.marshal_class_method = :encode
|
15
15
|
self.unmarshal_class_method = :decode
|
16
|
-
self.service_name = '
|
16
|
+
self.service_name = 'sagittarius.ActionService'
|
17
17
|
|
18
|
-
rpc :Logon, ::Tucana::
|
19
|
-
rpc :Logoff, ::Tucana::
|
18
|
+
rpc :Logon, ::Tucana::Sagittarius::ActionLogonRequest, ::Tucana::Sagittarius::ActionLogonResponse
|
19
|
+
rpc :Logoff, ::Tucana::Sagittarius::ActionLogoffRequest, ::Tucana::Sagittarius::ActionLogoffResponse
|
20
20
|
end
|
21
21
|
|
22
22
|
Stub = Service.rpc_stub_class
|
@@ -5,13 +5,13 @@
|
|
5
5
|
require 'google/protobuf'
|
6
6
|
|
7
7
|
|
8
|
-
descriptor_data = "\n\x15\x66low_definition.proto\x12\
|
8
|
+
descriptor_data = "\n\x15\x66low_definition.proto\x12\x0bsagittarius\"\x10\n\x0e\x46lowDefinitionB\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
9
9
|
|
10
10
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
11
|
pool.add_serialized_file(descriptor_data)
|
12
12
|
|
13
13
|
module Tucana
|
14
|
-
module
|
15
|
-
FlowDefinition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("
|
14
|
+
module Sagittarius
|
15
|
+
FlowDefinition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowDefinition").msgclass
|
16
16
|
end
|
17
17
|
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: flow.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require_relative 'node_pb'
|
8
|
+
require_relative 'flow_definition_pb'
|
9
|
+
|
10
|
+
|
11
|
+
descriptor_data = "\n\nflow.proto\x12\x0bsagittarius\x1a\nnode.proto\x1a\x15\x66low_definition.proto\"o\n\x04\x46low\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\x03\x12%\n\nstart_node\x18\x02 \x01(\x0b\x32\x11.sagittarius.Node\x12/\n\ndefinition\x18\x03 \x01(\x0b\x32\x1b.sagittarius.FlowDefinition\"\x12\n\x10\x46lowLogonRequest\"\xab\x01\n\x0c\x46lowResponse\x12,\n\x0cupdated_flow\x18\x01 \x01(\x0b\x32\x11.sagittarius.FlowH\x00\x88\x01\x01\x12\x1c\n\x0f\x64\x65leted_flow_id\x18\x02 \x01(\x03H\x01\x88\x01\x01\x12*\n\x04type\x18\x03 \x01(\x0e\x32\x1c.sagittarius.FlowCommandTypeB\x0f\n\r_updated_flowB\x12\n\x10_deleted_flow_id\"\"\n\x0e\x46lowGetRequest\x12\x10\n\x08\x66low_ids\x18\x01 \x03(\x03\"U\n\x0f\x46lowGetResponse\x12(\n\rupdated_flows\x18\x01 \x03(\x0b\x32\x11.sagittarius.Flow\x12\x18\n\x10\x64\x65leted_flow_ids\x18\x02 \x03(\x03*)\n\x0f\x46lowCommandType\x12\n\n\x06INSERT\x10\x00\x12\n\n\x06\x44\x45LETE\x10\x01\x32\x99\x01\n\x0b\x46lowService\x12\x42\n\x03Get\x12\x1b.sagittarius.FlowGetRequest\x1a\x1c.sagittarius.FlowGetResponse\"\x00\x12\x46\n\x06Update\x12\x1d.sagittarius.FlowLogonRequest\x1a\x19.sagittarius.FlowResponse\"\x00\x30\x01\x42\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
12
|
+
|
13
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
14
|
+
pool.add_serialized_file(descriptor_data)
|
15
|
+
|
16
|
+
module Tucana
|
17
|
+
module Sagittarius
|
18
|
+
Flow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.Flow").msgclass
|
19
|
+
FlowLogonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowLogonRequest").msgclass
|
20
|
+
FlowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowResponse").msgclass
|
21
|
+
FlowGetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowGetRequest").msgclass
|
22
|
+
FlowGetResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowGetResponse").msgclass
|
23
|
+
FlowCommandType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FlowCommandType").enummodule
|
24
|
+
end
|
25
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# Source: flow.proto for package 'Tucana.
|
2
|
+
# Source: flow.proto for package 'Tucana.Sagittarius'
|
3
3
|
|
4
4
|
require 'grpc'
|
5
5
|
require_relative 'flow_pb'
|
6
6
|
|
7
7
|
module Tucana
|
8
|
-
module
|
8
|
+
module Sagittarius
|
9
9
|
module FlowService
|
10
10
|
class Service
|
11
11
|
|
@@ -13,10 +13,10 @@ module Tucana
|
|
13
13
|
|
14
14
|
self.marshal_class_method = :encode
|
15
15
|
self.unmarshal_class_method = :decode
|
16
|
-
self.service_name = '
|
16
|
+
self.service_name = 'sagittarius.FlowService'
|
17
17
|
|
18
|
-
rpc :Get, ::Tucana::
|
19
|
-
rpc :Update, ::Tucana::
|
18
|
+
rpc :Get, ::Tucana::Sagittarius::FlowGetRequest, ::Tucana::Sagittarius::FlowGetResponse
|
19
|
+
rpc :Update, ::Tucana::Sagittarius::FlowLogonRequest, stream(::Tucana::Sagittarius::FlowResponse)
|
20
20
|
end
|
21
21
|
|
22
22
|
Stub = Service.rpc_stub_class
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: node.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require_relative '../shared/definitions_pb'
|
8
|
+
|
9
|
+
|
10
|
+
descriptor_data = "\n\nnode.proto\x12\x0bsagittarius\x1a\x11\x64\x65\x66initions.proto\"\xa2\x01\n\x04Node\x12\x35\n\ndefinition\x18\x01 \x01(\x0b\x32!.shared.RuntimeFunctionDefinition\x12)\n\tnext_node\x18\x02 \x01(\x0b\x32\x11.sagittarius.NodeH\x00\x88\x01\x01\x12*\n\nparameters\x18\x03 \x03(\x0b\x32\x16.sagittarius.ParameterB\x0c\n\n_next_node\"\x98\x01\n\tParameter\x12\x36\n\ndefinition\x18\x01 \x01(\x0b\x32\".shared.RuntimeParameterDefinition\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x12(\n\x08sub_node\x18\x03 \x01(\x0b\x32\x11.sagittarius.NodeH\x01\x88\x01\x01\x42\x08\n\x06_valueB\x0b\n\t_sub_nodeB\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
14
|
+
|
15
|
+
module Tucana
|
16
|
+
module Sagittarius
|
17
|
+
Node = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.Node").msgclass
|
18
|
+
Parameter = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.Parameter").msgclass
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: ping.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
|
8
|
+
descriptor_data = "\n\nping.proto\x12\x0bsagittarius\"\x1e\n\x0bPingMessage\x12\x0f\n\x07ping_id\x18\x01 \x01(\x03\x32K\n\x0bPingService\x12<\n\x04Ping\x12\x18.sagittarius.PingMessage\x1a\x18.sagittarius.PingMessage\"\x00\x42\x16\xea\x02\x13Tucana::Sagittariusb\x06proto3"
|
9
|
+
|
10
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
+
pool.add_serialized_file(descriptor_data)
|
12
|
+
|
13
|
+
module Tucana
|
14
|
+
module Sagittarius
|
15
|
+
PingMessage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.PingMessage").msgclass
|
16
|
+
end
|
17
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# Source: ping.proto for package 'Tucana.
|
2
|
+
# Source: ping.proto for package 'Tucana.Sagittarius'
|
3
3
|
|
4
4
|
require 'grpc'
|
5
5
|
require_relative 'ping_pb'
|
6
6
|
|
7
7
|
module Tucana
|
8
|
-
module
|
8
|
+
module Sagittarius
|
9
9
|
module PingService
|
10
10
|
class Service
|
11
11
|
|
@@ -13,9 +13,9 @@ module Tucana
|
|
13
13
|
|
14
14
|
self.marshal_class_method = :encode
|
15
15
|
self.unmarshal_class_method = :decode
|
16
|
-
self.service_name = '
|
16
|
+
self.service_name = 'sagittarius.PingService'
|
17
17
|
|
18
|
-
rpc :Ping, ::Tucana::
|
18
|
+
rpc :Ping, ::Tucana::Sagittarius::PingMessage, ::Tucana::Sagittarius::PingMessage
|
19
19
|
end
|
20
20
|
|
21
21
|
Stub = Service.rpc_stub_class
|
data/lib/tucana/version.rb
CHANGED
data/lib/tucana.rb
CHANGED
@@ -5,6 +5,8 @@ require_relative "tucana/version"
|
|
5
5
|
module Tucana
|
6
6
|
class Error < StandardError; end
|
7
7
|
|
8
|
+
AVAILABLE_PROTOCOLS = %i[aquila sagittarius]
|
9
|
+
|
8
10
|
def self.load_protocol(protocol)
|
9
11
|
this_dir = File.expand_path(File.dirname(__FILE__))
|
10
12
|
protocol_dir = File.join(this_dir, "tucana/#{protocol}")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tucana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niklas van Schrick
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -74,16 +74,16 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- lib/tucana.rb
|
77
|
-
- lib/tucana/
|
78
|
-
- lib/tucana/
|
79
|
-
- lib/tucana/
|
80
|
-
- lib/tucana/
|
81
|
-
- lib/tucana/
|
82
|
-
- lib/tucana/
|
83
|
-
- lib/tucana/
|
84
|
-
- lib/tucana/
|
85
|
-
- lib/tucana/
|
86
|
-
- lib/tucana/
|
77
|
+
- lib/tucana/aquila/transfer_pb.rb
|
78
|
+
- lib/tucana/aquila/transfer_services_pb.rb
|
79
|
+
- lib/tucana/sagittarius/action_pb.rb
|
80
|
+
- lib/tucana/sagittarius/action_services_pb.rb
|
81
|
+
- lib/tucana/sagittarius/flow_definition_pb.rb
|
82
|
+
- lib/tucana/sagittarius/flow_pb.rb
|
83
|
+
- lib/tucana/sagittarius/flow_services_pb.rb
|
84
|
+
- lib/tucana/sagittarius/node_pb.rb
|
85
|
+
- lib/tucana/sagittarius/ping_pb.rb
|
86
|
+
- lib/tucana/sagittarius/ping_services_pb.rb
|
87
87
|
- lib/tucana/shared/definitions_pb.rb
|
88
88
|
- lib/tucana/version.rb
|
89
89
|
homepage: https://github.com/code0-tech/tucana
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: transfer.proto
|
4
|
-
|
5
|
-
require 'google/protobuf'
|
6
|
-
|
7
|
-
require_relative '../shared/definitions_pb'
|
8
|
-
|
9
|
-
|
10
|
-
descriptor_data = "\n\x0etransfer.proto\x12\x07\x61\x63tions\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12InformationRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"&\n\x13InformationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32`\n\x15\x41\x63tionTransferService\x12G\n\x08Transfer\x12\x1b.actions.InformationRequest\x1a\x1c.actions.InformationResponse(\x01\x42\x12\xea\x02\x0fTucana::Actionsb\x06proto3"
|
11
|
-
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
-
pool.add_serialized_file(descriptor_data)
|
14
|
-
|
15
|
-
module Tucana
|
16
|
-
module Actions
|
17
|
-
InformationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("actions.InformationRequest").msgclass
|
18
|
-
InformationResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("actions.InformationResponse").msgclass
|
19
|
-
end
|
20
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: action.proto
|
4
|
-
|
5
|
-
require 'google/protobuf'
|
6
|
-
|
7
|
-
require_relative '../shared/definitions_pb'
|
8
|
-
|
9
|
-
|
10
|
-
descriptor_data = "\n\x0c\x61\x63tion.proto\x12\x08internal\x1a\x11\x64\x65\x66initions.proto\"\xaa\x01\n\x12\x41\x63tionLogonRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\x12>\n\x13\x66unction_definition\x18\x02 \x03(\x0b\x32!.shared.RuntimeFunctionDefinition\x12@\n\x14parameter_definition\x18\x03 \x03(\x0b\x32\".shared.RuntimeParameterDefinition\"\x15\n\x13\x41\x63tionLogonResponse\")\n\x13\x41\x63tionLogoffRequest\x12\x12\n\nidentifier\x18\x01 \x01(\t\"\x16\n\x14\x41\x63tionLogoffResponse2\x9e\x01\n\rActionService\x12\x44\n\x05Logon\x12\x1c.internal.ActionLogonRequest\x1a\x1d.internal.ActionLogonResponse\x12G\n\x06Logoff\x12\x1d.internal.ActionLogoffRequest\x1a\x1e.internal.ActionLogoffResponseB\x13\xea\x02\x10Tucana::Internalb\x06proto3"
|
11
|
-
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
-
pool.add_serialized_file(descriptor_data)
|
14
|
-
|
15
|
-
module Tucana
|
16
|
-
module Internal
|
17
|
-
ActionLogonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.ActionLogonRequest").msgclass
|
18
|
-
ActionLogonResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.ActionLogonResponse").msgclass
|
19
|
-
ActionLogoffRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.ActionLogoffRequest").msgclass
|
20
|
-
ActionLogoffResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.ActionLogoffResponse").msgclass
|
21
|
-
end
|
22
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: flow.proto
|
4
|
-
|
5
|
-
require 'google/protobuf'
|
6
|
-
|
7
|
-
require_relative 'node_pb'
|
8
|
-
require_relative 'flow_definition_pb'
|
9
|
-
|
10
|
-
|
11
|
-
descriptor_data = "\n\nflow.proto\x12\x08internal\x1a\nnode.proto\x1a\x15\x66low_definition.proto\"i\n\x04\x46low\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\x03\x12\"\n\nstart_node\x18\x02 \x01(\x0b\x32\x0e.internal.Node\x12,\n\ndefinition\x18\x03 \x01(\x0b\x32\x18.internal.FlowDefinition\"\x12\n\x10\x46lowLogonRequest\"\xa5\x01\n\x0c\x46lowResponse\x12)\n\x0cupdated_flow\x18\x01 \x01(\x0b\x32\x0e.internal.FlowH\x00\x88\x01\x01\x12\x1c\n\x0f\x64\x65leted_flow_id\x18\x02 \x01(\x03H\x01\x88\x01\x01\x12\'\n\x04type\x18\x03 \x01(\x0e\x32\x19.internal.FlowCommandTypeB\x0f\n\r_updated_flowB\x12\n\x10_deleted_flow_id\"\"\n\x0e\x46lowGetRequest\x12\x10\n\x08\x66low_ids\x18\x01 \x03(\x03\"R\n\x0f\x46lowGetResponse\x12%\n\rupdated_flows\x18\x01 \x03(\x0b\x32\x0e.internal.Flow\x12\x18\n\x10\x64\x65leted_flow_ids\x18\x02 \x03(\x03*)\n\x0f\x46lowCommandType\x12\n\n\x06INSERT\x10\x00\x12\n\n\x06\x44\x45LETE\x10\x01\x32\x8d\x01\n\x0b\x46lowService\x12<\n\x03Get\x12\x18.internal.FlowGetRequest\x1a\x19.internal.FlowGetResponse\"\x00\x12@\n\x06Update\x12\x1a.internal.FlowLogonRequest\x1a\x16.internal.FlowResponse\"\x00\x30\x01\x42\x13\xea\x02\x10Tucana::Internalb\x06proto3"
|
12
|
-
|
13
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
14
|
-
pool.add_serialized_file(descriptor_data)
|
15
|
-
|
16
|
-
module Tucana
|
17
|
-
module Internal
|
18
|
-
Flow = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.Flow").msgclass
|
19
|
-
FlowLogonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.FlowLogonRequest").msgclass
|
20
|
-
FlowResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.FlowResponse").msgclass
|
21
|
-
FlowGetRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.FlowGetRequest").msgclass
|
22
|
-
FlowGetResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.FlowGetResponse").msgclass
|
23
|
-
FlowCommandType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.FlowCommandType").enummodule
|
24
|
-
end
|
25
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: node.proto
|
4
|
-
|
5
|
-
require 'google/protobuf'
|
6
|
-
|
7
|
-
require_relative '../shared/definitions_pb'
|
8
|
-
|
9
|
-
|
10
|
-
descriptor_data = "\n\nnode.proto\x12\x08internal\x1a\x11\x64\x65\x66initions.proto\"\x9c\x01\n\x04Node\x12\x35\n\ndefinition\x18\x01 \x01(\x0b\x32!.shared.RuntimeFunctionDefinition\x12&\n\tnext_node\x18\x02 \x01(\x0b\x32\x0e.internal.NodeH\x00\x88\x01\x01\x12\'\n\nparameters\x18\x03 \x03(\x0b\x32\x13.internal.ParameterB\x0c\n\n_next_node\"\x95\x01\n\tParameter\x12\x36\n\ndefinition\x18\x01 \x01(\x0b\x32\".shared.RuntimeParameterDefinition\x12\x12\n\x05value\x18\x02 \x01(\tH\x00\x88\x01\x01\x12%\n\x08sub_node\x18\x03 \x01(\x0b\x32\x0e.internal.NodeH\x01\x88\x01\x01\x42\x08\n\x06_valueB\x0b\n\t_sub_nodeB\x13\xea\x02\x10Tucana::Internalb\x06proto3"
|
11
|
-
|
12
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
-
pool.add_serialized_file(descriptor_data)
|
14
|
-
|
15
|
-
module Tucana
|
16
|
-
module Internal
|
17
|
-
Node = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.Node").msgclass
|
18
|
-
Parameter = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.Parameter").msgclass
|
19
|
-
end
|
20
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: ping.proto
|
4
|
-
|
5
|
-
require 'google/protobuf'
|
6
|
-
|
7
|
-
|
8
|
-
descriptor_data = "\n\nping.proto\x12\x08internal\"\x1e\n\x0bPingMessage\x12\x0f\n\x07ping_id\x18\x01 \x01(\x03\x32\x45\n\x0bPingService\x12\x36\n\x04Ping\x12\x15.internal.PingMessage\x1a\x15.internal.PingMessage\"\x00\x42\x13\xea\x02\x10Tucana::Internalb\x06proto3"
|
9
|
-
|
10
|
-
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
-
pool.add_serialized_file(descriptor_data)
|
12
|
-
|
13
|
-
module Tucana
|
14
|
-
module Internal
|
15
|
-
PingMessage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("internal.PingMessage").msgclass
|
16
|
-
end
|
17
|
-
end
|