tucana 0.0.65 → 0.0.66

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8143d81055bd475ff5659f6e3f8a6179d51f27b69a710d8342d20b51630c9123
4
- data.tar.gz: fb9d4eb85aa159c511d801ec96ee5ac932a240f98f4d9697190cb35aaf460cb2
3
+ metadata.gz: f6271f5ac8d505cc29ce0bca6ea12fce12c7191920f98d6260aa55737fa43123
4
+ data.tar.gz: c5f229b6cabf852a0828d45455e8cbdb68295c05e65924cb6c3e58741286d490
5
5
  SHA512:
6
- metadata.gz: e0c99b0ce15f8dbb8665f949c1dc58c045a96f7036590d8dccb90ecb2a841ab48a780434453b2e3e6a5e5707472c0c630f7e264e043c7c7caacadca114bedeff
7
- data.tar.gz: 58653623f4af302b2c28cbbede1e3b0510ff3afde669d904ea47f510595b3dda0f20b636c590cd63add3fae30fe7661ca6749e23194069863d38f05ace91d18e
6
+ metadata.gz: 9c14e50cf1048b3488616e2388e94d04c99e77258fd6dbfec6162043a47190b485212a9650f289b2346b1634fcc2c74ac9e9c11bd2a534c6c4a34f51aea77c03
7
+ data.tar.gz: 1d702656611346aa78f9dd66fc56380ba92a1aa844d55ee4671e636812654ed6c6e345b9574a544aaf1ce014bb6482bb02105983ab1f4fbea684cbefd29a355c
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: aquila.function.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative '../shared/shared.function_pb'
8
+
9
+
10
+ descriptor_data = "\n\x15\x61quila.function.proto\x12\x06\x61quila\x1a\x15shared.function.proto\"P\n\x1f\x46unctionDefinitionUpdateRequest\x12-\n\tfunctions\x18\x01 \x03(\x0b\x32\x1a.shared.FunctionDefinition\"3\n FunctionDefinitionUpdateResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32z\n\x19\x46unctionDefinitionService\x12]\n\x06Update\x12\'.aquila.FunctionDefinitionUpdateRequest\x1a(.aquila.FunctionDefinitionUpdateResponse\"\x00\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
+ FunctionDefinitionUpdateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.FunctionDefinitionUpdateRequest").msgclass
18
+ FunctionDefinitionUpdateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.FunctionDefinitionUpdateResponse").msgclass
19
+ end
20
+ end
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: aquila.function.proto for package 'Tucana.Aquila'
3
+
4
+ require 'grpc'
5
+ require_relative 'aquila.function_pb'
6
+
7
+ module Tucana
8
+ module Aquila
9
+ module FunctionDefinitionService
10
+ # This service will be implemented as a server by Aquila and as a client by Taurus.
11
+ class Service
12
+
13
+ include ::GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'aquila.FunctionDefinitionService'
18
+
19
+ rpc :Update, ::Tucana::Aquila::FunctionDefinitionUpdateRequest, ::Tucana::Aquila::FunctionDefinitionUpdateResponse
20
+ end
21
+
22
+ Stub = Service.rpc_stub_class
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: sagittarius.function.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative '../shared/shared.function_pb'
8
+
9
+
10
+ descriptor_data = "\n\x1asagittarius.function.proto\x12\x0bsagittarius\x1a\x15shared.function.proto\"P\n\x1f\x46unctionDefinitionUpdateRequest\x12-\n\tfunctions\x18\x01 \x03(\x0b\x32\x1a.shared.FunctionDefinition\"3\n FunctionDefinitionUpdateResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32\x84\x01\n\x19\x46unctionDefinitionService\x12g\n\x06Update\x12,.sagittarius.FunctionDefinitionUpdateRequest\x1a-.sagittarius.FunctionDefinitionUpdateResponse\"\x00\x42\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
+ FunctionDefinitionUpdateRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FunctionDefinitionUpdateRequest").msgclass
18
+ FunctionDefinitionUpdateResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.FunctionDefinitionUpdateResponse").msgclass
19
+ end
20
+ end
@@ -0,0 +1,25 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: sagittarius.function.proto for package 'Tucana.Sagittarius'
3
+
4
+ require 'grpc'
5
+ require_relative 'sagittarius.function_pb'
6
+
7
+ module Tucana
8
+ module Sagittarius
9
+ module FunctionDefinitionService
10
+ # This service will be implemented as a server by Sagittarius and as a client by Aquila.
11
+ class Service
12
+
13
+ include ::GRPC::GenericService
14
+
15
+ self.marshal_class_method = :encode
16
+ self.unmarshal_class_method = :decode
17
+ self.service_name = 'sagittarius.FunctionDefinitionService'
18
+
19
+ rpc :Update, ::Tucana::Sagittarius::FunctionDefinitionUpdateRequest, ::Tucana::Sagittarius::FunctionDefinitionUpdateResponse
20
+ end
21
+
22
+ Stub = Service.rpc_stub_class
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: shared.function.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative '../shared/shared.translation_pb'
8
+ require_relative '../shared/shared.struct_pb'
9
+
10
+
11
+ descriptor_data = "\n\x15shared.function.proto\x12\x06shared\x1a\x18shared.translation.proto\x1a\x13shared.struct.proto\"\xf4\x03\n\x12\x46unctionDefinition\x12\x14\n\x0cruntime_name\x18\x01 \x01(\t\x12:\n\x15parameter_definitions\x18\x02 \x03(\x0b\x32\x1b.shared.ParameterDefinition\x12\x11\n\tsignature\x18\x03 \x01(\t\x12\x14\n\x0cthrows_error\x18\x04 \x01(\x08\x12!\n\x04name\x18\x05 \x03(\x0b\x32\x13.shared.Translation\x12(\n\x0b\x64\x65scription\x18\x06 \x03(\x0b\x32\x13.shared.Translation\x12*\n\rdocumentation\x18\x07 \x03(\x0b\x32\x13.shared.Translation\x12\x30\n\x13\x64\x65precation_message\x18\x08 \x03(\x0b\x32\x13.shared.Translation\x12,\n\x0f\x64isplay_message\x18\t \x03(\x0b\x32\x13.shared.Translation\x12\"\n\x05\x61lias\x18\n \x03(\x0b\x32\x13.shared.Translation\x12$\n\x1clinked_data_type_identifiers\x18\x0b \x03(\t\x12\x0f\n\x07version\x18\x0c \x01(\t\x12\x14\n\x0c\x64isplay_icon\x18\r \x01(\t\x12\x19\n\x11\x64\x65\x66inition_source\x18\x0e \x01(\t\"\xe1\x01\n\x13ParameterDefinition\x12\x14\n\x0cruntime_name\x18\x01 \x01(\t\x12)\n\rdefault_value\x18\x02 \x01(\x0b\x32\r.shared.ValueH\x00\x88\x01\x01\x12!\n\x04name\x18\x03 \x03(\x0b\x32\x13.shared.Translation\x12(\n\x0b\x64\x65scription\x18\x04 \x03(\x0b\x32\x13.shared.Translation\x12*\n\rdocumentation\x18\x05 \x03(\x0b\x32\x13.shared.TranslationB\x10\n\x0e_default_valueB\x11\xea\x02\x0eTucana::Sharedb\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
15
+
16
+ module Tucana
17
+ module Shared
18
+ FunctionDefinition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.FunctionDefinition").msgclass
19
+ ParameterDefinition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.ParameterDefinition").msgclass
20
+ end
21
+ end
@@ -4,5 +4,5 @@
4
4
  # to update the version, run "bundle exec rake release:version[NEW_VERSION]".
5
5
 
6
6
  module Tucana
7
- VERSION = "0.0.65"
7
+ VERSION = "0.0.66"
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tucana
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.65
4
+ version: 0.0.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niklas van Schrick
@@ -78,6 +78,8 @@ files:
78
78
  - lib/tucana/generated/aquila/aquila.data_type_services_pb.rb
79
79
  - lib/tucana/generated/aquila/aquila.flow_type_pb.rb
80
80
  - lib/tucana/generated/aquila/aquila.flow_type_services_pb.rb
81
+ - lib/tucana/generated/aquila/aquila.function_pb.rb
82
+ - lib/tucana/generated/aquila/aquila.function_services_pb.rb
81
83
  - lib/tucana/generated/aquila/aquila.runtime_function_pb.rb
82
84
  - lib/tucana/generated/aquila/aquila.runtime_function_services_pb.rb
83
85
  - lib/tucana/generated/aquila/aquila.runtime_status_pb.rb
@@ -92,6 +94,8 @@ files:
92
94
  - lib/tucana/generated/sagittarius/sagittarius.flow_services_pb.rb
93
95
  - lib/tucana/generated/sagittarius/sagittarius.flow_type_pb.rb
94
96
  - lib/tucana/generated/sagittarius/sagittarius.flow_type_services_pb.rb
97
+ - lib/tucana/generated/sagittarius/sagittarius.function_pb.rb
98
+ - lib/tucana/generated/sagittarius/sagittarius.function_services_pb.rb
95
99
  - lib/tucana/generated/sagittarius/sagittarius.ping_pb.rb
96
100
  - lib/tucana/generated/sagittarius/sagittarius.ping_services_pb.rb
97
101
  - lib/tucana/generated/sagittarius/sagittarius.runtime_function_pb.rb
@@ -106,6 +110,7 @@ files:
106
110
  - lib/tucana/generated/shared/shared.data_type_pb.rb
107
111
  - lib/tucana/generated/shared/shared.flow_definition_pb.rb
108
112
  - lib/tucana/generated/shared/shared.flow_pb.rb
113
+ - lib/tucana/generated/shared/shared.function_pb.rb
109
114
  - lib/tucana/generated/shared/shared.runtime_function_pb.rb
110
115
  - lib/tucana/generated/shared/shared.runtime_status_pb.rb
111
116
  - lib/tucana/generated/shared/shared.runtime_usage_pb.rb