tucana 0.0.48 → 0.0.49

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: 672af93dc72a229bd4f46450d3d1ad77d3fac25f0db98ab39c7dce5a65fa4ec2
4
- data.tar.gz: 648a94bbe7acaba6c56144d37ecdb8f8c732319073c7c392042271fec239bba3
3
+ metadata.gz: 74d8af53fcbfe03d93906dc3f4af6c35b4f23c7a167a2e2d07a602e5b2038523
4
+ data.tar.gz: f666fdcbc5d52e186f274111e54370ce3524ec19a1233387c376e5961934c489
5
5
  SHA512:
6
- metadata.gz: f33abf28c4fd74cfa1065f01f7e9a70ea949747a22c0ad58a8ff5e79b58298673368bf3e2d6f60e49b40f1a4932304b590b2d3ae9d1da36e1a9d164aab34b965
7
- data.tar.gz: '08289442148d156027a8039f7f09454bb2c5cf1a2dfc7fb42de90a3507c8cfb98ec1fd867914de408ba4c9ea39c75c27f236abc4192b33849edffcda1acf72a7'
6
+ metadata.gz: 0ca9b0be3a9bb8ca17991eacef051ccf30a9193b058c3ab6c59f4b6cfed92d38fe8b3a2b16fb45e5dd3c637dd4c06ea7b6c4860673a5797c1d71ea2521898768
7
+ data.tar.gz: 88faa01e4e0b30444fbe07bcfca56d0f5c98789fffec99e8f935ad79849c3eed5a4336dbd7376cc3093adab38fba9360c5ed514e01360897c365d2868686e09b
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: aquila.runtime_usage.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative '../shared/shared.runtime_usage_pb'
8
+
9
+
10
+ descriptor_data = "\n\x1a\x61quila.runtime_usage.proto\x12\x06\x61quila\x1a\x1ashared.runtime_usage.proto\"B\n\x13RuntimeUsageRequest\x12+\n\rruntime_usage\x18\x01 \x03(\x0b\x32\x14.shared.RuntimeUsage\"\'\n\x14RuntimeUsageResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32\\\n\x13RuntimeUsageService\x12\x45\n\x06Update\x12\x1b.aquila.RuntimeUsageRequest\x1a\x1c.aquila.RuntimeUsageResponse\"\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
+ RuntimeUsageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.RuntimeUsageRequest").msgclass
18
+ RuntimeUsageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("aquila.RuntimeUsageResponse").msgclass
19
+ end
20
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: aquila.runtime_usage.proto for package 'Tucana.Aquila'
3
+
4
+ require 'grpc'
5
+ require_relative 'aquila.runtime_usage_pb'
6
+
7
+ module Tucana
8
+ module Aquila
9
+ module RuntimeUsageService
10
+ class Service
11
+
12
+ include ::GRPC::GenericService
13
+
14
+ self.marshal_class_method = :encode
15
+ self.unmarshal_class_method = :decode
16
+ self.service_name = 'aquila.RuntimeUsageService'
17
+
18
+ rpc :Update, ::Tucana::Aquila::RuntimeUsageRequest, ::Tucana::Aquila::RuntimeUsageResponse
19
+ end
20
+
21
+ Stub = Service.rpc_stub_class
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: sagittarius.runtime_usage.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative '../shared/shared.runtime_usage_pb'
8
+
9
+
10
+ descriptor_data = "\n\x1fsagittarius.runtime_usage.proto\x12\x0bsagittarius\x1a\x1ashared.runtime_usage.proto\"B\n\x13RuntimeUsageRequest\x12+\n\rruntime_usage\x18\x01 \x03(\x0b\x32\x14.shared.RuntimeUsage\"\'\n\x14RuntimeUsageResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x32\x66\n\x13RuntimeUsageService\x12O\n\x06Update\x12 .sagittarius.RuntimeUsageRequest\x1a!.sagittarius.RuntimeUsageResponse\"\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
+ RuntimeUsageRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.RuntimeUsageRequest").msgclass
18
+ RuntimeUsageResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("sagittarius.RuntimeUsageResponse").msgclass
19
+ end
20
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: sagittarius.runtime_usage.proto for package 'Tucana.Sagittarius'
3
+
4
+ require 'grpc'
5
+ require_relative 'sagittarius.runtime_usage_pb'
6
+
7
+ module Tucana
8
+ module Sagittarius
9
+ module RuntimeUsageService
10
+ class Service
11
+
12
+ include ::GRPC::GenericService
13
+
14
+ self.marshal_class_method = :encode
15
+ self.unmarshal_class_method = :decode
16
+ self.service_name = 'sagittarius.RuntimeUsageService'
17
+
18
+ rpc :Update, ::Tucana::Sagittarius::RuntimeUsageRequest, ::Tucana::Sagittarius::RuntimeUsageResponse
19
+ end
20
+
21
+ Stub = Service.rpc_stub_class
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: shared.runtime_usage.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n\x1ashared.runtime_usage.proto\x12\x06shared\"1\n\x0cRuntimeUsage\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\x03\x12\x10\n\x08\x64uration\x18\x02 \x01(\x03\x42\x11\xea\x02\x0eTucana::Sharedb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Tucana
14
+ module Shared
15
+ RuntimeUsage = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("shared.RuntimeUsage").msgclass
16
+ end
17
+ 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.48"
7
+ VERSION = "0.0.49"
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.48
4
+ version: 0.0.49
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niklas van Schrick
@@ -82,6 +82,8 @@ files:
82
82
  - lib/tucana/generated/aquila/aquila.flow_type_services_pb.rb
83
83
  - lib/tucana/generated/aquila/aquila.runtime_function_pb.rb
84
84
  - lib/tucana/generated/aquila/aquila.runtime_function_services_pb.rb
85
+ - lib/tucana/generated/aquila/aquila.runtime_usage_pb.rb
86
+ - lib/tucana/generated/aquila/aquila.runtime_usage_services_pb.rb
85
87
  - lib/tucana/generated/sagittarius/sagittarius.action_pb.rb
86
88
  - lib/tucana/generated/sagittarius/sagittarius.action_services_pb.rb
87
89
  - lib/tucana/generated/sagittarius/sagittarius.data_type_pb.rb
@@ -94,6 +96,8 @@ files:
94
96
  - lib/tucana/generated/sagittarius/sagittarius.ping_services_pb.rb
95
97
  - lib/tucana/generated/sagittarius/sagittarius.runtime_function_pb.rb
96
98
  - lib/tucana/generated/sagittarius/sagittarius.runtime_function_services_pb.rb
99
+ - lib/tucana/generated/sagittarius/sagittarius.runtime_usage_pb.rb
100
+ - lib/tucana/generated/sagittarius/sagittarius.runtime_usage_services_pb.rb
97
101
  - lib/tucana/generated/sagittarius/sagittarius.text_execution_pb.rb
98
102
  - lib/tucana/generated/sagittarius/sagittarius.text_execution_services_pb.rb
99
103
  - lib/tucana/generated/shared/shared.data_type_pb.rb
@@ -101,6 +105,7 @@ files:
101
105
  - lib/tucana/generated/shared/shared.flow_definition_pb.rb
102
106
  - lib/tucana/generated/shared/shared.flow_pb.rb
103
107
  - lib/tucana/generated/shared/shared.runtime_function_pb.rb
108
+ - lib/tucana/generated/shared/shared.runtime_usage_pb.rb
104
109
  - lib/tucana/generated/shared/shared.struct_pb.rb
105
110
  - lib/tucana/generated/shared/shared.translation_pb.rb
106
111
  - lib/tucana/shared/shared.data_type.rb