grpc-orin3-provider 0.1.0 → 1.0.0

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.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +28 -1
  3. data/README.md +18 -21
  4. data/Rakefile +42 -0
  5. data/gen/Design.ORiN3.Common/V1/orin3_common_pb.rb +23 -0
  6. data/gen/Design.ORiN3.Common/V1/orin3_common_remote_engine_pb.rb +25 -0
  7. data/gen/Design.ORiN3.Provider/V1/orin3_object_type_pb.rb +23 -0
  8. data/gen/Design.ORiN3.Provider/V1/orin3_value_type_pb.rb +23 -0
  9. data/gen/Message.ORiN3.Provider/V1/orin3_base_object_pb.rb +39 -0
  10. data/gen/Message.ORiN3.Provider/V1/{orin3baseobject_services_pb.rb → orin3_base_object_services_pb.rb} +3 -3
  11. data/gen/Message.ORiN3.Provider/V1/orin3_child_creator_pb.rb +39 -0
  12. data/gen/Message.ORiN3.Provider/V1/{orin3childcreator_services_pb.rb → orin3_child_creator_services_pb.rb} +3 -3
  13. data/gen/Message.ORiN3.Provider/V1/orin3_child_pb.rb +28 -0
  14. data/gen/Message.ORiN3.Provider/V1/{orin3child_services_pb.rb → orin3_child_services_pb.rb} +3 -3
  15. data/gen/Message.ORiN3.Provider/V1/orin3_common_type_pb.rb +79 -0
  16. data/gen/Message.ORiN3.Provider/V1/orin3_controller_creator_pb.rb +28 -0
  17. data/gen/Message.ORiN3.Provider/V1/{orin3controllercreator_services_pb.rb → orin3_controller_creator_services_pb.rb} +3 -3
  18. data/gen/Message.ORiN3.Provider/V1/orin3_executable_pb.rb +28 -0
  19. data/gen/Message.ORiN3.Provider/V1/{orin3executable_services_pb.rb → orin3_executable_services_pb.rb} +3 -3
  20. data/gen/Message.ORiN3.Provider/V1/orin3_file_pb.rb +41 -0
  21. data/gen/Message.ORiN3.Provider/V1/{orin3file_services_pb.rb → orin3_file_services_pb.rb} +3 -3
  22. data/gen/Message.ORiN3.Provider/V1/orin3_job_pb.rb +32 -0
  23. data/gen/Message.ORiN3.Provider/V1/{orin3job_services_pb.rb → orin3_job_services_pb.rb} +3 -3
  24. data/gen/Message.ORiN3.Provider/V1/orin3_parent_pb.rb +31 -0
  25. data/gen/Message.ORiN3.Provider/V1/{orin3parent_services_pb.rb → orin3_parent_services_pb.rb} +3 -3
  26. data/gen/Message.ORiN3.Provider/V1/orin3_resource_opener_pb.rb +30 -0
  27. data/gen/Message.ORiN3.Provider/V1/{orin3resourceopener_services_pb.rb → orin3_resource_opener_services_pb.rb} +3 -3
  28. data/gen/Message.ORiN3.Provider/V1/orin3_root_object_pb.rb +44 -0
  29. data/gen/Message.ORiN3.Provider/V1/{orin3rootobject_services_pb.rb → orin3_root_object_services_pb.rb} +3 -3
  30. data/gen/Message.ORiN3.Provider/V1/orin3_stream_pb.rb +28 -0
  31. data/gen/Message.ORiN3.Provider/V1/{orin3stream_services_pb.rb → orin3_stream_services_pb.rb} +3 -3
  32. data/gen/Message.ORiN3.Provider/V1/orin3_variable_pb.rb +31 -0
  33. data/gen/Message.ORiN3.Provider/V1/{orin3variable_services_pb.rb → orin3_variable_services_pb.rb} +3 -3
  34. data/gen/Message.ORiN3.RemoteEngine/V1/orin3_remote_engine_pb.rb +40 -0
  35. data/gen/Message.ORiN3.RemoteEngine/V1/orin3_remote_engine_services_pb.rb +32 -0
  36. data/lib/grpc/client/orin3/message_client_error.rb +23 -0
  37. data/lib/grpc/client/orin3/provider/orin3_base_object.rb +145 -0
  38. data/lib/grpc/client/orin3/provider/orin3_child_creator.rb +104 -0
  39. data/lib/grpc/client/orin3/provider/orin3_controller.rb +68 -0
  40. data/lib/grpc/client/orin3/provider/orin3_file.rb +146 -0
  41. data/lib/grpc/client/orin3/provider/orin3_job.rb +86 -0
  42. data/lib/grpc/client/orin3/provider/orin3_module.rb +30 -0
  43. data/lib/grpc/client/orin3/provider/orin3_resource_opener.rb +50 -0
  44. data/lib/grpc/client/orin3/provider/orin3_root_object.rb +108 -0
  45. data/lib/grpc/client/orin3/provider/orin3_stream.rb +48 -0
  46. data/lib/grpc/client/orin3/provider/orin3_variable.rb +500 -0
  47. data/lib/grpc/client/orin3/remoteengine/orin3_remote_engine.rb +158 -0
  48. data/lib/grpc/orin3/provider/date_time_converter.rb +25 -0
  49. data/lib/grpc/orin3/provider/orin3_binary_converter.rb +686 -0
  50. data/lib/grpc/orin3/provider/version.rb +1 -1
  51. data/lib/grpc/orin3/provider.rb +160 -99
  52. data/testsemiauto/test_with_mock_provider.rb +908 -0
  53. data/testsemiauto/test_with_test_provider.rb +200 -0
  54. data/testsemiauto/testdata/file.txt +1 -0
  55. metadata +51 -28
  56. data/gen/Message.ORiN3.Common/V1/orin3common_pb.rb +0 -77
  57. data/gen/Message.ORiN3.Provider/V1/orin3baseobject_pb.rb +0 -38
  58. data/gen/Message.ORiN3.Provider/V1/orin3child_pb.rb +0 -28
  59. data/gen/Message.ORiN3.Provider/V1/orin3childcreator_pb.rb +0 -38
  60. data/gen/Message.ORiN3.Provider/V1/orin3controllercreator_pb.rb +0 -28
  61. data/gen/Message.ORiN3.Provider/V1/orin3executable_pb.rb +0 -28
  62. data/gen/Message.ORiN3.Provider/V1/orin3file_pb.rb +0 -41
  63. data/gen/Message.ORiN3.Provider/V1/orin3job_pb.rb +0 -32
  64. data/gen/Message.ORiN3.Provider/V1/orin3parent_pb.rb +0 -31
  65. data/gen/Message.ORiN3.Provider/V1/orin3resourceopener_pb.rb +0 -30
  66. data/gen/Message.ORiN3.Provider/V1/orin3rootobject_pb.rb +0 -44
  67. data/gen/Message.ORiN3.Provider/V1/orin3stream_pb.rb +0 -28
  68. data/gen/Message.ORiN3.Provider/V1/orin3variable_pb.rb +0 -30
@@ -0,0 +1,200 @@
1
+ require 'logger'
2
+ require 'minitest/autorun'
3
+ require 'minitest/hooks/default'
4
+ require 'minitest/autorun'
5
+ require 'uri'
6
+ require_relative '../lib/grpc/orin3/provider'
7
+ require 'json'
8
+
9
+ $logger = Logger.new(STDOUT)
10
+ $logger.formatter = proc do |severity, datetime, progname, msg|
11
+ "[#{datetime}] #{severity}: #{msg}\n"
12
+ end
13
+
14
+ module ORiN3
15
+ include Grpc::Client::ORiN3
16
+ include Grpc::Client::ORiN3::Provider
17
+ end
18
+
19
+ class ORiN3ProviderTest2 < Minitest::Test
20
+ include Minitest::Hooks
21
+
22
+ def before_all
23
+ puts "......................."
24
+ $logger.info "* before_all called."
25
+ @controllers = {}
26
+ @variables = {}
27
+
28
+ $logger.info "* wakeup test provider."
29
+ id = "B0EFA63C-6610-4167-9DA6-9DDC11D145B2"
30
+ @version = "[1.0.0,2.0.0)"
31
+ channel = GRPC::Core::Channel.new("localhost:7103", nil, :this_channel_is_insecure)
32
+ remote_engine = ORiN3::RemoteEngine.new(channel)
33
+ result = remote_engine.wakeup_provider(id, @version, "0.0.0.0", 0)
34
+ $logger.info "* wakeup test provider done. [uri=#{result.provider_information.endpoints[0].uri}]"
35
+
36
+ uri = URI.parse(result.provider_information.endpoints[0].uri)
37
+ provider_channerl = GRPC::Core::Channel.new("#{uri.host}:#{uri.port}", nil, :this_channel_is_insecure)
38
+ @root = ORiN3::ORiN3RootObject.attach(provider_channerl)
39
+ $logger.info "* attached to test provider."
40
+
41
+ $logger.info "Root.name: #{@root.name}"
42
+ $logger.info "Root.type_name: #{@root.type_name}"
43
+ $logger.info "Root.option: #{@root.option}"
44
+ $logger.info "Root.created_datetime: #{@root.created_datetime.getlocal}"
45
+ $logger.info "Root.orin3_object_type: #{@root.orin3_object_type}"
46
+ $logger.info "Root.id: #{@root.id}"
47
+ $logger.info "* before_all finished."
48
+ end
49
+
50
+ def after_all
51
+ puts "......................."
52
+ $logger.info "* after_all called."
53
+ after_all_core
54
+ $logger.info "* after_all finished."
55
+ end
56
+
57
+ def setup
58
+ puts "......................."
59
+ $logger.info "* setup called."
60
+ end
61
+
62
+ def teardown
63
+ $logger.info "* teardown called."
64
+ end
65
+
66
+ def self.get_constant_name(value, namespace)
67
+ namespace.constants.each do |const_name|
68
+ return const_name if namespace.const_get(const_name) == value
69
+ end
70
+ nil # 見つからなければ nil を返す
71
+ end
72
+
73
+ def after_all_core
74
+ @root.shutdown
75
+ end
76
+
77
+ def create_or_get_controller(name)
78
+ if @controllers.key?(name)
79
+ return @controllers[name]
80
+ end
81
+ controller = @root.create_controller(name,
82
+ "ORiN3.Provider.Core.ForTestProvider.ORiN3Object.ForTestController, ORiN3.Provider.Core.ForTestProvider",
83
+ "{ \"@Version\":\"1.0.0\" }")
84
+ $logger.info "Controller created. [name=#{controller.name}]"
85
+ @controllers[name] = controller
86
+ return controller
87
+ end
88
+
89
+ def test_file
90
+ $logger.info "* test_file called."
91
+ controller = create_or_get_controller("test_file")
92
+ current_dir = File.dirname(File.expand_path(__FILE__))
93
+ full_path = File.join(current_dir, "testdata", "file.txt")
94
+ file = controller.create_file("file",
95
+ "ORiN3.Provider.Core.ForTestProvider.ORiN3Object.ForTestFile, ORiN3.Provider.Core.ForTestProvider",
96
+ "{ \"@Version\":\"1.0.0\", \"Path\":\"#{full_path}\" }")
97
+
98
+ $logger.info "aaa=#{file.orin3_object_type}"
99
+
100
+ # get_length
101
+ length = file.get_length
102
+ $logger.info "File length: #{length}"
103
+ assert_equal 10, length
104
+
105
+ # read
106
+ total_read = 0
107
+ file.read do |buffer|
108
+ $logger.info "buffer: #{buffer}"
109
+ assert_equal "1234567890", buffer
110
+ total_read += buffer.size
111
+ end
112
+ $logger.info "Total bytes read: #{total_read}"
113
+ assert_equal length, total_read
114
+
115
+ # seek
116
+ total_read = 0
117
+ file.seek(4)
118
+ file.read do |buffer|
119
+ $logger.info "buffer: #{buffer}"
120
+ assert_equal "567890", buffer
121
+ total_read += buffer.size
122
+ end
123
+ $logger.info "Total bytes read after seek: #{total_read}"
124
+ assert_equal 6, total_read
125
+
126
+ total_read = 0
127
+ file.seek(-4, :END)
128
+ file.read do |buffer|
129
+ $logger.info "buffer: #{buffer}"
130
+ assert_equal "7890", buffer
131
+ total_read += buffer.size
132
+ end
133
+ $logger.info "Total bytes read after seek: #{total_read}"
134
+ assert_equal 4, total_read
135
+
136
+ total_read = 0
137
+ file.seek(-2, :CURRENT)
138
+ file.read do |buffer|
139
+ $logger.info "buffer: #{buffer}"
140
+ assert_equal "90", buffer
141
+ total_read += buffer.size
142
+ end
143
+ $logger.info "Total bytes read after seek: #{total_read}"
144
+ assert_equal 2, total_read
145
+
146
+ # set_length
147
+ file.set_length(20)
148
+ assert_equal 20, file.get_length
149
+
150
+ # write
151
+ file.seek(10)
152
+ file.write("987654")
153
+ file.write("3210")
154
+ total_read = 0
155
+ file.seek(0)
156
+ file.read do |buffer|
157
+ $logger.info "buffer: #{buffer}"
158
+ assert_equal "12345678909876543210", buffer
159
+ total_read += buffer.size
160
+ end
161
+ $logger.info "Total bytes read after seek: #{total_read}"
162
+ assert_equal 20, total_read
163
+
164
+ file.set_length(10)
165
+
166
+ # can_read, can_write
167
+ assert_equal true, file.can_read
168
+ assert_equal true, file.can_write
169
+ end
170
+
171
+ def test_stream
172
+ $logger.info "* test_stream called."
173
+ controller = create_or_get_controller("test_stream")
174
+ stream = controller.create_stream("stream",
175
+ "ORiN3.Provider.Core.ForTestProvider.ORiN3Object.ForTestStream, ORiN3.Provider.Core.ForTestProvider",
176
+ "{ \"@Version\":\"1.0.0\" }")
177
+
178
+ stream.read do |value|
179
+ $logger.info "Received value: #{value}"
180
+ end
181
+ end
182
+
183
+ def test_module
184
+ $logger.info "* test_module called."
185
+ controller = create_or_get_controller("test_module")
186
+ orin3_module = controller.create_module("module",
187
+ "ORiN3.Provider.Core.ForTestProvider.ORiN3Object.ForTestModule, ORiN3.Provider.Core.ForTestProvider",
188
+ "{ \"@Version\":\"1.0.0\" }")
189
+
190
+ $logger.info "Module.name: #{orin3_module.name}"
191
+ $logger.info "Module.type_name: #{orin3_module.type_name}"
192
+ $logger.info "Module.option: #{orin3_module.option}"
193
+ $logger.info "Module.created_datetime: #{orin3_module.created_datetime.getlocal}"
194
+ $logger.info "Module.orin3_object_type: #{orin3_module.orin3_object_type}"
195
+ $logger.info "Module.id: #{orin3_module.id}"
196
+ assert_equal "module", orin3_module.name
197
+ assert_equal "ORiN3.Provider.Core.ForTestProvider.ORiN3Object.ForTestModule, ORiN3.Provider.Core.ForTestProvider", orin3_module.type_name
198
+ assert_equal "{ \"@Version\":\"1.0.0\" }", orin3_module.option
199
+ end
200
+ end
@@ -0,0 +1 @@
1
+ 1234567890
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc-orin3-provider
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - KAKEI Kazuki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-26 00:00:00.000000000 Z
11
+ date: 2024-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -38,34 +38,57 @@ files:
38
38
  - README.md
39
39
  - Rakefile
40
40
  - gen/.DS_Store
41
- - gen/Message.ORiN3.Common/V1/orin3common_pb.rb
42
- - gen/Message.ORiN3.Provider/V1/orin3baseobject_pb.rb
43
- - gen/Message.ORiN3.Provider/V1/orin3baseobject_services_pb.rb
44
- - gen/Message.ORiN3.Provider/V1/orin3child_pb.rb
45
- - gen/Message.ORiN3.Provider/V1/orin3child_services_pb.rb
46
- - gen/Message.ORiN3.Provider/V1/orin3childcreator_pb.rb
47
- - gen/Message.ORiN3.Provider/V1/orin3childcreator_services_pb.rb
48
- - gen/Message.ORiN3.Provider/V1/orin3controllercreator_pb.rb
49
- - gen/Message.ORiN3.Provider/V1/orin3controllercreator_services_pb.rb
50
- - gen/Message.ORiN3.Provider/V1/orin3executable_pb.rb
51
- - gen/Message.ORiN3.Provider/V1/orin3executable_services_pb.rb
52
- - gen/Message.ORiN3.Provider/V1/orin3file_pb.rb
53
- - gen/Message.ORiN3.Provider/V1/orin3file_services_pb.rb
54
- - gen/Message.ORiN3.Provider/V1/orin3job_pb.rb
55
- - gen/Message.ORiN3.Provider/V1/orin3job_services_pb.rb
56
- - gen/Message.ORiN3.Provider/V1/orin3parent_pb.rb
57
- - gen/Message.ORiN3.Provider/V1/orin3parent_services_pb.rb
58
- - gen/Message.ORiN3.Provider/V1/orin3resourceopener_pb.rb
59
- - gen/Message.ORiN3.Provider/V1/orin3resourceopener_services_pb.rb
60
- - gen/Message.ORiN3.Provider/V1/orin3rootobject_pb.rb
61
- - gen/Message.ORiN3.Provider/V1/orin3rootobject_services_pb.rb
62
- - gen/Message.ORiN3.Provider/V1/orin3stream_pb.rb
63
- - gen/Message.ORiN3.Provider/V1/orin3stream_services_pb.rb
64
- - gen/Message.ORiN3.Provider/V1/orin3variable_pb.rb
65
- - gen/Message.ORiN3.Provider/V1/orin3variable_services_pb.rb
41
+ - gen/Design.ORiN3.Common/V1/orin3_common_pb.rb
42
+ - gen/Design.ORiN3.Common/V1/orin3_common_remote_engine_pb.rb
43
+ - gen/Design.ORiN3.Provider/V1/orin3_object_type_pb.rb
44
+ - gen/Design.ORiN3.Provider/V1/orin3_value_type_pb.rb
45
+ - gen/Message.ORiN3.Provider/V1/orin3_base_object_pb.rb
46
+ - gen/Message.ORiN3.Provider/V1/orin3_base_object_services_pb.rb
47
+ - gen/Message.ORiN3.Provider/V1/orin3_child_creator_pb.rb
48
+ - gen/Message.ORiN3.Provider/V1/orin3_child_creator_services_pb.rb
49
+ - gen/Message.ORiN3.Provider/V1/orin3_child_pb.rb
50
+ - gen/Message.ORiN3.Provider/V1/orin3_child_services_pb.rb
51
+ - gen/Message.ORiN3.Provider/V1/orin3_common_type_pb.rb
52
+ - gen/Message.ORiN3.Provider/V1/orin3_controller_creator_pb.rb
53
+ - gen/Message.ORiN3.Provider/V1/orin3_controller_creator_services_pb.rb
54
+ - gen/Message.ORiN3.Provider/V1/orin3_executable_pb.rb
55
+ - gen/Message.ORiN3.Provider/V1/orin3_executable_services_pb.rb
56
+ - gen/Message.ORiN3.Provider/V1/orin3_file_pb.rb
57
+ - gen/Message.ORiN3.Provider/V1/orin3_file_services_pb.rb
58
+ - gen/Message.ORiN3.Provider/V1/orin3_job_pb.rb
59
+ - gen/Message.ORiN3.Provider/V1/orin3_job_services_pb.rb
60
+ - gen/Message.ORiN3.Provider/V1/orin3_parent_pb.rb
61
+ - gen/Message.ORiN3.Provider/V1/orin3_parent_services_pb.rb
62
+ - gen/Message.ORiN3.Provider/V1/orin3_resource_opener_pb.rb
63
+ - gen/Message.ORiN3.Provider/V1/orin3_resource_opener_services_pb.rb
64
+ - gen/Message.ORiN3.Provider/V1/orin3_root_object_pb.rb
65
+ - gen/Message.ORiN3.Provider/V1/orin3_root_object_services_pb.rb
66
+ - gen/Message.ORiN3.Provider/V1/orin3_stream_pb.rb
67
+ - gen/Message.ORiN3.Provider/V1/orin3_stream_services_pb.rb
68
+ - gen/Message.ORiN3.Provider/V1/orin3_variable_pb.rb
69
+ - gen/Message.ORiN3.Provider/V1/orin3_variable_services_pb.rb
70
+ - gen/Message.ORiN3.RemoteEngine/V1/orin3_remote_engine_pb.rb
71
+ - gen/Message.ORiN3.RemoteEngine/V1/orin3_remote_engine_services_pb.rb
72
+ - lib/grpc/client/orin3/message_client_error.rb
73
+ - lib/grpc/client/orin3/provider/orin3_base_object.rb
74
+ - lib/grpc/client/orin3/provider/orin3_child_creator.rb
75
+ - lib/grpc/client/orin3/provider/orin3_controller.rb
76
+ - lib/grpc/client/orin3/provider/orin3_file.rb
77
+ - lib/grpc/client/orin3/provider/orin3_job.rb
78
+ - lib/grpc/client/orin3/provider/orin3_module.rb
79
+ - lib/grpc/client/orin3/provider/orin3_resource_opener.rb
80
+ - lib/grpc/client/orin3/provider/orin3_root_object.rb
81
+ - lib/grpc/client/orin3/provider/orin3_stream.rb
82
+ - lib/grpc/client/orin3/provider/orin3_variable.rb
83
+ - lib/grpc/client/orin3/remoteengine/orin3_remote_engine.rb
66
84
  - lib/grpc/orin3/provider.rb
85
+ - lib/grpc/orin3/provider/date_time_converter.rb
86
+ - lib/grpc/orin3/provider/orin3_binary_converter.rb
67
87
  - lib/grpc/orin3/provider/version.rb
68
88
  - sig/grpc/orin3/provider.rbs
89
+ - testsemiauto/test_with_mock_provider.rb
90
+ - testsemiauto/test_with_test_provider.rb
91
+ - testsemiauto/testdata/file.txt
69
92
  homepage: https://github.com/kkikzk/grpc-orin3-provider
70
93
  licenses:
71
94
  - MIT
@@ -90,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
113
  - !ruby/object:Gem::Version
91
114
  version: '0'
92
115
  requirements: []
93
- rubygems_version: 3.5.22
116
+ rubygems_version: 3.4.19
94
117
  signing_key:
95
118
  specification_version: 4
96
119
  summary: A gRPC client for ORiN3 devices.
@@ -1,77 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Common/V1/orin3common.proto
4
-
5
- require 'google/protobuf'
6
-
7
-
8
- descriptor_data = "\n)Message.ORiN3.Common/V1/orin3common.proto\x12\x0cORiN3.Common\"!\n\rCommonRequest\x12\x10\n\x08reserved\x18\x01 \x01(\x05\"N\n\x0e\x43ommonResponse\x12,\n\nresultCode\x18\x01 \x01(\x0e\x32\x18.ORiN3.Common.ResultCode\x12\x0e\n\x06\x64\x65tail\x18\x02 \x01(\t\"\xe6\x16\n\nORiN3Value\x12\x0c\n\x04type\x18\x01 \x01(\x05\x12\'\n\x04\x62ool\x18\n \x01(\x0b\x32\x17.ORiN3.Common.ORiN3BoolH\x00\x12\x31\n\tboolArray\x18\x0b \x01(\x0b\x32\x1c.ORiN3.Common.ORiN3BoolArrayH\x00\x12\x37\n\x0cnullableBool\x18\x0c \x01(\x0b\x32\x1f.ORiN3.Common.ORiN3NullableBoolH\x00\x12\x41\n\x11nullableBoolArray\x18\r \x01(\x0b\x32$.ORiN3.Common.ORiN3NullableBoolArrayH\x00\x12\'\n\x04int8\x18\x14 \x01(\x0b\x32\x17.ORiN3.Common.ORiN3Int8H\x00\x12\x31\n\tint8Array\x18\x15 \x01(\x0b\x32\x1c.ORiN3.Common.ORiN3Int8ArrayH\x00\x12\x37\n\x0cnullableInt8\x18\x16 \x01(\x0b\x32\x1f.ORiN3.Common.ORiN3NullableInt8H\x00\x12\x41\n\x11nullableInt8Array\x18\x17 \x01(\x0b\x32$.ORiN3.Common.ORiN3NullableInt8ArrayH\x00\x12)\n\x05int16\x18\x1e \x01(\x0b\x32\x18.ORiN3.Common.ORiN3Int16H\x00\x12\x33\n\nint16Array\x18\x1f \x01(\x0b\x32\x1d.ORiN3.Common.ORiN3Int16ArrayH\x00\x12\x39\n\rnullableInt16\x18 \x01(\x0b\x32 .ORiN3.Common.ORiN3NullableInt16H\x00\x12\x43\n\x12nullableInt16Array\x18! \x01(\x0b\x32%.ORiN3.Common.ORiN3NullableInt16ArrayH\x00\x12)\n\x05int32\x18( \x01(\x0b\x32\x18.ORiN3.Common.ORiN3Int32H\x00\x12\x33\n\nint32Array\x18) \x01(\x0b\x32\x1d.ORiN3.Common.ORiN3Int32ArrayH\x00\x12\x39\n\rnullableInt32\x18* \x01(\x0b\x32 .ORiN3.Common.ORiN3NullableInt32H\x00\x12\x43\n\x12nullableInt32Array\x18+ \x01(\x0b\x32%.ORiN3.Common.ORiN3NullableInt32ArrayH\x00\x12)\n\x05int64\x18\x32 \x01(\x0b\x32\x18.ORiN3.Common.ORiN3Int64H\x00\x12\x33\n\nint64Array\x18\x33 \x01(\x0b\x32\x1d.ORiN3.Common.ORiN3Int64ArrayH\x00\x12\x39\n\rnullableInt64\x18\x34 \x01(\x0b\x32 .ORiN3.Common.ORiN3NullableInt64H\x00\x12\x43\n\x12nullableInt64Array\x18\x35 \x01(\x0b\x32%.ORiN3.Common.ORiN3NullableInt64ArrayH\x00\x12)\n\x05uInt8\x18< \x01(\x0b\x32\x18.ORiN3.Common.ORiN3UInt8H\x00\x12\x33\n\nuInt8Array\x18= \x01(\x0b\x32\x1d.ORiN3.Common.ORiN3UInt8ArrayH\x00\x12\x39\n\rnullableUInt8\x18> \x01(\x0b\x32 .ORiN3.Common.ORiN3NullableUInt8H\x00\x12\x43\n\x12nullableUInt8Array\x18? \x01(\x0b\x32%.ORiN3.Common.ORiN3NullableUInt8ArrayH\x00\x12+\n\x06uInt16\x18\x46 \x01(\x0b\x32\x19.ORiN3.Common.ORiN3UInt16H\x00\x12\x35\n\x0buInt16Array\x18G \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3UInt16ArrayH\x00\x12;\n\x0enullableUInt16\x18H \x01(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt16H\x00\x12\x45\n\x13nullableUInt16Array\x18I \x01(\x0b\x32&.ORiN3.Common.ORiN3NullableUInt16ArrayH\x00\x12+\n\x06uInt32\x18P \x01(\x0b\x32\x19.ORiN3.Common.ORiN3UInt32H\x00\x12\x35\n\x0buInt32Array\x18Q \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3UInt32ArrayH\x00\x12;\n\x0enullableUInt32\x18R \x01(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt32H\x00\x12\x45\n\x13nullableUInt32Array\x18S \x01(\x0b\x32&.ORiN3.Common.ORiN3NullableUInt32ArrayH\x00\x12+\n\x06uInt64\x18Z \x01(\x0b\x32\x19.ORiN3.Common.ORiN3UInt64H\x00\x12\x35\n\x0buInt64Array\x18[ \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3UInt64ArrayH\x00\x12;\n\x0enullableUInt64\x18\\ \x01(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt64H\x00\x12\x45\n\x13nullableUInt64Array\x18] \x01(\x0b\x32&.ORiN3.Common.ORiN3NullableUInt64ArrayH\x00\x12)\n\x05\x66loat\x18\x64 \x01(\x0b\x32\x18.ORiN3.Common.ORiN3FloatH\x00\x12\x33\n\nfloatArray\x18\x65 \x01(\x0b\x32\x1d.ORiN3.Common.ORiN3FloatArrayH\x00\x12\x39\n\rnullableFloat\x18\x66 \x01(\x0b\x32 .ORiN3.Common.ORiN3NullableFloatH\x00\x12\x43\n\x12nullableFloatArray\x18g \x01(\x0b\x32%.ORiN3.Common.ORiN3NullableFloatArrayH\x00\x12+\n\x06\x64ouble\x18n \x01(\x0b\x32\x19.ORiN3.Common.ORiN3DoubleH\x00\x12\x35\n\x0b\x64oubleArray\x18o \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3DoubleArrayH\x00\x12;\n\x0enullableDouble\x18p \x01(\x0b\x32!.ORiN3.Common.ORiN3NullableDoubleH\x00\x12\x45\n\x13nullableDoubleArray\x18q \x01(\x0b\x32&.ORiN3.Common.ORiN3NullableDoubleArrayH\x00\x12+\n\x06string\x18x \x01(\x0b\x32\x19.ORiN3.Common.ORiN3StringH\x00\x12\x35\n\x0bstringArray\x18y \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3StringArrayH\x00\x12\x30\n\x08\x64\x61teTime\x18\x82\x01 \x01(\x0b\x32\x1b.ORiN3.Common.ORiN3DateTimeH\x00\x12:\n\rdateTimeArray\x18\x83\x01 \x01(\x0b\x32 .ORiN3.Common.ORiN3DateTimeArrayH\x00\x12@\n\x10nullableDateTime\x18\x84\x01 \x01(\x0b\x32#.ORiN3.Common.ORiN3NullableDateTimeH\x00\x12J\n\x15nullableDateTimeArray\x18\x85\x01 \x01(\x0b\x32(.ORiN3.Common.ORiN3NullableDateTimeArrayH\x00\x12\x31\n\x06object\x18\x8c\x01 \x01(\x0b\x32\x1e.ORiN3.Common.ORiN3ValueObjectH\x00\x42\x07\n\x05value\"\x1d\n\tORiN3Bool\x12\x10\n\x08rawValue\x18\x01 \x01(\x08\"\"\n\x0eORiN3BoolArray\x12\x10\n\x08rawValue\x18\x01 \x03(\x08\"5\n\x11ORiN3NullableBool\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x08\"K\n\x16ORiN3NullableBoolArray\x12\x31\n\x08rawValue\x18\x01 \x03(\x0b\x32\x1f.ORiN3.Common.ORiN3NullableBool\"\x1d\n\tORiN3Int8\x12\x10\n\x08rawValue\x18\x01 \x01(\x05\"\"\n\x0eORiN3Int8Array\x12\x10\n\x08rawValue\x18\x01 \x03(\x05\"5\n\x11ORiN3NullableInt8\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x05\"K\n\x16ORiN3NullableInt8Array\x12\x31\n\x08rawValue\x18\x01 \x03(\x0b\x32\x1f.ORiN3.Common.ORiN3NullableInt8\"\x1e\n\nORiN3Int16\x12\x10\n\x08rawValue\x18\x01 \x01(\x05\"#\n\x0fORiN3Int16Array\x12\x10\n\x08rawValue\x18\x01 \x03(\x05\"6\n\x12ORiN3NullableInt16\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x05\"M\n\x17ORiN3NullableInt16Array\x12\x32\n\x08rawValue\x18\x01 \x03(\x0b\x32 .ORiN3.Common.ORiN3NullableInt16\"\x1e\n\nORiN3Int32\x12\x10\n\x08rawValue\x18\x01 \x01(\x05\"#\n\x0fORiN3Int32Array\x12\x10\n\x08rawValue\x18\x01 \x03(\x05\"6\n\x12ORiN3NullableInt32\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x05\"M\n\x17ORiN3NullableInt32Array\x12\x32\n\x08rawValue\x18\x01 \x03(\x0b\x32 .ORiN3.Common.ORiN3NullableInt32\"\x1e\n\nORiN3Int64\x12\x10\n\x08rawValue\x18\x01 \x01(\x03\"#\n\x0fORiN3Int64Array\x12\x10\n\x08rawValue\x18\x01 \x03(\x03\"6\n\x12ORiN3NullableInt64\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x03\"M\n\x17ORiN3NullableInt64Array\x12\x32\n\x08rawValue\x18\x01 \x03(\x0b\x32 .ORiN3.Common.ORiN3NullableInt64\"\x1e\n\nORiN3UInt8\x12\x10\n\x08rawValue\x18\x01 \x01(\r\"#\n\x0fORiN3UInt8Array\x12\x10\n\x08rawValue\x18\x01 \x03(\r\"6\n\x12ORiN3NullableUInt8\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\r\"M\n\x17ORiN3NullableUInt8Array\x12\x32\n\x08rawValue\x18\x01 \x03(\x0b\x32 .ORiN3.Common.ORiN3NullableUInt8\"\x1f\n\x0bORiN3UInt16\x12\x10\n\x08rawValue\x18\x01 \x01(\r\"$\n\x10ORiN3UInt16Array\x12\x10\n\x08rawValue\x18\x01 \x03(\r\"7\n\x13ORiN3NullableUInt16\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\r\"O\n\x18ORiN3NullableUInt16Array\x12\x33\n\x08rawValue\x18\x01 \x03(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt16\"\x1f\n\x0bORiN3UInt32\x12\x10\n\x08rawValue\x18\x01 \x01(\r\"$\n\x10ORiN3UInt32Array\x12\x10\n\x08rawValue\x18\x01 \x03(\r\"7\n\x13ORiN3NullableUInt32\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\r\"O\n\x18ORiN3NullableUInt32Array\x12\x33\n\x08rawValue\x18\x01 \x03(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt32\"\x1f\n\x0bORiN3UInt64\x12\x10\n\x08rawValue\x18\x01 \x01(\x04\"$\n\x10ORiN3UInt64Array\x12\x10\n\x08rawValue\x18\x01 \x03(\x04\"7\n\x13ORiN3NullableUInt64\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x04\"O\n\x18ORiN3NullableUInt64Array\x12\x33\n\x08rawValue\x18\x01 \x03(\x0b\x32!.ORiN3.Common.ORiN3NullableUInt64\"\x1e\n\nORiN3Float\x12\x10\n\x08rawValue\x18\x01 \x01(\x02\"#\n\x0fORiN3FloatArray\x12\x10\n\x08rawValue\x18\x01 \x03(\x02\"6\n\x12ORiN3NullableFloat\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x02\"M\n\x17ORiN3NullableFloatArray\x12\x32\n\x08rawValue\x18\x01 \x03(\x0b\x32 .ORiN3.Common.ORiN3NullableFloat\"\x1f\n\x0bORiN3Double\x12\x10\n\x08rawValue\x18\x01 \x01(\x01\"$\n\x10ORiN3DoubleArray\x12\x10\n\x08rawValue\x18\x01 \x03(\x01\"7\n\x13ORiN3NullableDouble\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x01\"O\n\x18ORiN3NullableDoubleArray\x12\x33\n\x08rawValue\x18\x01 \x03(\x0b\x32!.ORiN3.Common.ORiN3NullableDouble\"/\n\x0bORiN3String\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\t\"?\n\x10ORiN3StringArray\x12+\n\x08rawValue\x18\x01 \x03(\x0b\x32\x19.ORiN3.Common.ORiN3String\"!\n\rORiN3DateTime\x12\x10\n\x08rawValue\x18\x01 \x01(\x03\"&\n\x12ORiN3DateTimeArray\x12\x10\n\x08rawValue\x18\x01 \x03(\x03\"9\n\x15ORiN3NullableDateTime\x12\x0e\n\x06isNull\x18\x01 \x01(\x08\x12\x10\n\x08rawValue\x18\x02 \x01(\x03\"S\n\x1aORiN3NullableDateTimeArray\x12\x35\n\x08rawValue\x18\x01 \x03(\x0b\x32#.ORiN3.Common.ORiN3NullableDateTime\"$\n\x10ORiN3ValueObject\x12\x10\n\x08rawValue\x18\x01 \x01(\x0c*\xec\x16\n\nResultCode\x12\r\n\tSUCCEEDED\x10\x00\x12\x10\n\x08\x43\x41NCELED\x10\xfe\xff\xff\xff\x01\x12\x15\n\rDEFAULT_ERROR\x10\xff\xff\xff\xff\x01\x12*\n\"INCONSISTENCIES_IN_OBJECT_DATABASE\x10\x81\x80\x80\x80\x01\x12 \n\x18O_RI_N3_OBJECT_NOT_FOUND\x10\x80\x82\x80\x80\x01\x12\x1e\n\x16O_RI_N3_OBJECT_DELETED\x10\x81\x82\x80\x80\x01\x12\x18\n\x10NOT_A_CONTROLLER\x10\x82\x82\x80\x80\x01\x12\x16\n\x0eNOT_A_VARIABLE\x10\x83\x82\x80\x80\x01\x12\x13\n\x0bNOT_A_EVENT\x10\x84\x82\x80\x80\x01\x12\x12\n\nNOT_A_FILE\x10\x85\x82\x80\x80\x01\x12\x11\n\tNOT_A_JOB\x10\x86\x82\x80\x80\x01\x12\x14\n\x0cNOT_A_MODULE\x10\x87\x82\x80\x80\x01\x12\x14\n\x0cNOT_A_STREAM\x10\x88\x82\x80\x80\x01\x12 \n\x18NOT_A_CONTROLLER_CREATOR\x10\x80\x84\x80\x80\x01\x12\x18\n\x10NOT_A_EXECUTABLE\x10\x81\x84\x80\x80\x01\x12\x14\n\x0cNOT_A_PARENT\x10\x82\x84\x80\x80\x01\x12\x1d\n\x15NOT_A_RESOURCE_OPENER\x10\x83\x84\x80\x80\x01\x12\x13\n\x0bNOT_A_CHILD\x10\x84\x84\x80\x80\x01\x12\x1b\n\x13NOT_A_CHILD_CREATOR\x10\x85\x84\x80\x80\x01\x12\x1f\n\x17NOT_A_SETTABLE_VARIABLE\x10\x86\x84\x80\x80\x01\x12\x1e\n\x16NOT_A_SUPPORTED_DEVICE\x10\x87\x84\x80\x80\x01\x12\x1d\n\x15NOT_A_SETTABLE_DEVICE\x10\x88\x84\x80\x80\x01\x12\x1b\n\x13\x46\x41ILED_TO_GET_VALUE\x10\x80\x86\x80\x80\x01\x12\x1b\n\x13\x46\x41ILED_TO_SET_VALUE\x10\x81\x86\x80\x80\x01\x12\x1b\n\x13MISMATCH_VALUE_TYPE\x10\x82\x86\x80\x80\x01\x12\x1e\n\x16METHOD_NOT_IMPLEMENTED\x10\x83\x86\x80\x80\x01\x12+\n#CAN_NOT_CREATE_VARIABLE_FROM_MODULE\x10\x80\x88\x80\x80\x01\x12(\n CAN_NOT_CREATE_EVENT_FROM_MODULE\x10\x81\x88\x80\x80\x01\x12)\n!CAN_NOT_CREATE_STREAM_FROM_MODULE\x10\x82\x88\x80\x80\x01\x12\'\n\x1f\x43\x41N_NOT_CREATE_FILE_FROM_MODULE\x10\x83\x88\x80\x80\x01\x12&\n\x1e\x43\x41N_NOT_CREATE_JOB_FROM_MODULE\x10\x84\x88\x80\x80\x01\x12)\n!CAN_NOT_CREATE_MODULE_FROM_MODULE\x10\x85\x88\x80\x80\x01\x12\"\n\x1a\x43\x41N_NOT_CREATE_MORE_MODULE\x10\x86\x88\x80\x80\x01\x12\x1f\n\x17\x43\x41N_NOT_CREATE_VARIABLE\x10\x87\x88\x80\x80\x01\x12\x1c\n\x14\x43\x41N_NOT_CREATE_EVENT\x10\x88\x88\x80\x80\x01\x12\x1d\n\x15\x43\x41N_NOT_CREATE_STREAM\x10\x89\x88\x80\x80\x01\x12\x1b\n\x13\x43\x41N_NOT_CREATE_FILE\x10\x8a\x88\x80\x80\x01\x12\x1a\n\x12\x43\x41N_NOT_CREATE_JOB\x10\x8b\x88\x80\x80\x01\x12\x1d\n\x15\x43\x41N_NOT_CREATE_MODULE\x10\x8c\x88\x80\x80\x01\x12\x19\n\x11\x43OMMAND_NOT_FOUND\x10\x80\x8a\x80\x80\x01\x12 \n\x18\x43OMMAND_EXECUTION_FAILED\x10\x81\x8a\x80\x80\x01\x12\x1e\n\x16JSON_ELEMENT_NOT_FOUND\x10\x80\x8c\x80\x80\x01\x12\x1a\n\x12JSON_INVALID_VALUE\x10\x81\x8c\x80\x80\x01\x12 \n\x18JSON_INVALID_VALUE_RANGE\x10\x82\x8c\x80\x80\x01\x12\x1b\n\x13JSON_INVALID_FORMAT\x10\x83\x8c\x80\x80\x01\x12\x1a\n\x12JSON_UNKNOWN_VALUE\x10\x84\x8c\x80\x80\x01\x12\x1c\n\x14JSON_KEY_DUPLICATION\x10\x85\x8c\x80\x80\x01\x12\"\n\x1aJSON_INVALID_OPTION_FORMAT\x10\x86\x8c\x80\x80\x01\x12\x17\n\x0fINVALID_VERSION\x10\x80\x8e\x80\x80\x01\x12\x17\n\x0fUNMATCH_VERSION\x10\x81\x8e\x80\x80\x01\x12$\n\x1cPROVIDER_VERSION_NOT_DEFINED\x10\x82\x8e\x80\x80\x01\x12\x11\n\tRPC_ERROR\x10\x80\x90\x80\x80\x01\x12\x1d\n\x15\x41RGUMENT_INVALID_NAME\x10\x80\x92\x80\x80\x01\x12\"\n\x1a\x41RGUMENT_INVALID_TYPE_NAME\x10\x81\x92\x80\x80\x01\x12\x1f\n\x17\x41RGUMENT_INVALID_OPTION\x10\x82\x92\x80\x80\x01\x12\x1b\n\x13\x41RGUMENT_NULL_VALUE\x10\x83\x92\x80\x80\x01\x12\x1e\n\x16\x41RGUMENT_INVALID_VALUE\x10\x84\x92\x80\x80\x01\x12\x1d\n\x15\x41RGUMENT_INVALID_TYPE\x10\x85\x92\x80\x80\x01\x12+\n#ARGUMENT_INVALID_NUMBER_OF_ELEMENTS\x10\x86\x92\x80\x80\x01\x12)\n!ARGUMENT_INVALID_TYPE_OF_ELEMENTS\x10\x87\x92\x80\x80\x01\x12\x1a\n\x12\x41RGUMENT_NOT_FOUND\x10\x88\x92\x80\x80\x01\x12\x1c\n\x14\x41RGUMENT_MISSING_KEY\x10\x89\x92\x80\x80\x01\x12 \n\x18\x41RGUMENT_UNNECESSARY_KEY\x10\x8a\x92\x80\x80\x01\x12\'\n\x1f\x41RGUMENT_INVALID_SETVALUE_ARRAY\x10\x8b\x92\x80\x80\x01\x12#\n\x1b\x43OMMUNICATION_FAILED_SERIAL\x10\x80\x94\x80\x80\x01\x12 \n\x18\x43OMMUNICATION_FAILED_TCP\x10\x81\x94\x80\x80\x01\x12 \n\x18\x43OMMUNICATION_FAILED_UDP\x10\x82\x94\x80\x80\x01\x12!\n\x19\x43OMMUNICATION_FAILED_HTTP\x10\x8b\x94\x80\x80\x01\x12#\n\x1b\x43OMMUNICATION_NOT_CONNECTED\x10\x83\x94\x80\x80\x01\x12\x31\n)COMMUNICATION_FAILED_CREATE_CLIENT_SERIAL\x10\x84\x94\x80\x80\x01\x12.\n&COMMUNICATION_FAILED_CREATE_CLIENT_TCP\x10\x85\x94\x80\x80\x01\x12:\n2COMMUNICATION_FAILED_CREATE_CLIENT_TCP_WITH_SRC_IP\x10\x86\x94\x80\x80\x01\x12.\n&COMMUNICATION_FAILED_CREATE_CLIENT_UDP\x10\x87\x94\x80\x80\x01\x12.\n&COMMUNICATION_FAILED_CRETE_CLIENT_HTTP\x10\x8c\x94\x80\x80\x01\x12\'\n\x1f\x43OMMUNICATION_ALREADY_CONNECTED\x10\x88\x94\x80\x80\x01\x12\x1b\n\x13\x43OMMUNICATION_ERROR\x10\x89\x94\x80\x80\x01\x12\x18\n\x10\x46ILE_FAILED_OPEN\x10\x80\x96\x80\x80\x01\x12\x17\n\x0f\x46ILE_NOT_OPENED\x10\x81\x96\x80\x80\x01\x12\x19\n\x11\x46ILE_FAILED_WRITE\x10\x82\x96\x80\x80\x01\x12\x18\n\x10\x46ILE_FAILED_READ\x10\x83\x96\x80\x80\x01\x12\x1b\n\x13\x46ILE_ALREADY_OPENED\x10\x84\x96\x80\x80\x01\x12\x1a\n\x12TAGS_METHOD_FAILED\x10\x80\x98\x80\x80\x01\x12\x18\n\x10TAGS_INVALID_KEY\x10\x81\x98\x80\x80\x01\x12\x1a\n\x12TAGS_KEY_NOT_FOUND\x10\x82\x98\x80\x80\x01\x12\x33\n+TAGS_KEY_DATA_LENGTH_EXCEED_THE_UPPER_LIMIT\x10\x83\x98\x80\x80\x01\x12\"\n\x1aTAGS_UNSUPPORTED_DATA_TYPE\x10\x84\x98\x80\x80\x01\x12/\n\'TAGS_DATA_LENGTH_EXCEED_THE_UPPER_LIMIT\x10\x85\x98\x80\x80\x01\x12\x30\n(TAGS_REGISTRATION_EXCEED_THE_UPPER_LIMIT\x10\x86\x98\x80\x80\x01\x12%\n\x1dPROVIDER_SPECIFIC_RESULT_CODE\x10\x80\x80\xc0\x80\x01\x42T\xaa\x02%Message.ORiN3.Common.V1.AutoGenerated\xea\x02)Message::ORiN3::Common::V1::AutoGeneratedb\x06proto3"
9
-
10
- pool = Google::Protobuf::DescriptorPool.generated_pool
11
- pool.add_serialized_file(descriptor_data)
12
-
13
- module Message
14
- module ORiN3
15
- module Common
16
- module V1
17
- module AutoGenerated
18
- CommonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.CommonRequest").msgclass
19
- CommonResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.CommonResponse").msgclass
20
- ORiN3Value = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Value").msgclass
21
- ORiN3Bool = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Bool").msgclass
22
- ORiN3BoolArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3BoolArray").msgclass
23
- ORiN3NullableBool = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableBool").msgclass
24
- ORiN3NullableBoolArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableBoolArray").msgclass
25
- ORiN3Int8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int8").msgclass
26
- ORiN3Int8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int8Array").msgclass
27
- ORiN3NullableInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt8").msgclass
28
- ORiN3NullableInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt8Array").msgclass
29
- ORiN3Int16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int16").msgclass
30
- ORiN3Int16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int16Array").msgclass
31
- ORiN3NullableInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt16").msgclass
32
- ORiN3NullableInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt16Array").msgclass
33
- ORiN3Int32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int32").msgclass
34
- ORiN3Int32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int32Array").msgclass
35
- ORiN3NullableInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt32").msgclass
36
- ORiN3NullableInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt32Array").msgclass
37
- ORiN3Int64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int64").msgclass
38
- ORiN3Int64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Int64Array").msgclass
39
- ORiN3NullableInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt64").msgclass
40
- ORiN3NullableInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableInt64Array").msgclass
41
- ORiN3UInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt8").msgclass
42
- ORiN3UInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt8Array").msgclass
43
- ORiN3NullableUInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt8").msgclass
44
- ORiN3NullableUInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt8Array").msgclass
45
- ORiN3UInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt16").msgclass
46
- ORiN3UInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt16Array").msgclass
47
- ORiN3NullableUInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt16").msgclass
48
- ORiN3NullableUInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt16Array").msgclass
49
- ORiN3UInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt32").msgclass
50
- ORiN3UInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt32Array").msgclass
51
- ORiN3NullableUInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt32").msgclass
52
- ORiN3NullableUInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt32Array").msgclass
53
- ORiN3UInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt64").msgclass
54
- ORiN3UInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3UInt64Array").msgclass
55
- ORiN3NullableUInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt64").msgclass
56
- ORiN3NullableUInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableUInt64Array").msgclass
57
- ORiN3Float = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Float").msgclass
58
- ORiN3FloatArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3FloatArray").msgclass
59
- ORiN3NullableFloat = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableFloat").msgclass
60
- ORiN3NullableFloatArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableFloatArray").msgclass
61
- ORiN3Double = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3Double").msgclass
62
- ORiN3DoubleArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3DoubleArray").msgclass
63
- ORiN3NullableDouble = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableDouble").msgclass
64
- ORiN3NullableDoubleArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableDoubleArray").msgclass
65
- ORiN3String = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3String").msgclass
66
- ORiN3StringArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3StringArray").msgclass
67
- ORiN3DateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3DateTime").msgclass
68
- ORiN3DateTimeArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3DateTimeArray").msgclass
69
- ORiN3NullableDateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableDateTime").msgclass
70
- ORiN3NullableDateTimeArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3NullableDateTimeArray").msgclass
71
- ORiN3ValueObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ORiN3ValueObject").msgclass
72
- ResultCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ORiN3.Common.ResultCode").enummodule
73
- end
74
- end
75
- end
76
- end
77
- end
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Provider/V1/orin3baseobject.proto
4
-
5
- require 'google/protobuf'
6
-
7
- require_relative '../../Message.ORiN3.Common/V1/orin3common_pb'
8
-
9
-
10
- descriptor_data = "\n/Message.ORiN3.Provider/V1/orin3baseobject.proto\x1a)Message.ORiN3.Common/V1/orin3common.proto\"O\n\x14GetObjectInfoRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"\xb1\x01\n\x15GetObjectInfoResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08typeName\x18\x03 \x01(\t\x12\x0e\n\x06option\x18\x04 \x01(\t\x12\x17\n\x0f\x63reatedDateTime\x18\x05 \x01(\x03\x12\x12\n\nobjectType\x18\x06 \x01(\x05\x12\r\n\x05\x65xtra\x18\x07 \x01(\x05\"K\n\x10GetStatusRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"Q\n\x11GetStatusResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0e\n\x06status\x18\x02 \x01(\x05\"b\n\rSetTagRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x0b\n\x03key\x18\x03 \x01(\t\x12\x0b\n\x03tag\x18\x04 \x01(\x0c\">\n\x0eSetTagResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\"U\n\rGetTagRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x0b\n\x03key\x18\x03 \x01(\t\"K\n\x0eGetTagResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0b\n\x03tag\x18\x02 \x01(\x0c\"L\n\x11GetTagKeysRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"P\n\x12GetTagKeysResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0c\n\x04keys\x18\x02 \x03(\t\"X\n\x10RemoveTagRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x0b\n\x03key\x18\x03 \x01(\t\"A\n\x11RemoveTagResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse2\xc8\x02\n\x11\x42\x61seObjectService\x12>\n\rGetObjectInfo\x12\x15.GetObjectInfoRequest\x1a\x16.GetObjectInfoResponse\x12\x32\n\tGetStatus\x12\x11.GetStatusRequest\x1a\x12.GetStatusResponse\x12)\n\x06SetTag\x12\x0e.SetTagRequest\x1a\x0f.SetTagResponse\x12)\n\x06GetTag\x12\x0e.GetTagRequest\x1a\x0f.GetTagResponse\x12\x35\n\nGetTagKeys\x12\x12.GetTagKeysRequest\x1a\x13.GetTagKeysResponse\x12\x32\n\tRemoveTag\x12\x11.RemoveTagRequest\x1a\x12.RemoveTagResponseBo\xaa\x02\x32Message.ORiN3.Provider.V1.AutoGenerated.BaseObject\xea\x02\x37Message::ORiN3::Provider::V1::AutoGenerated::BaseObjectb\x06proto3"
11
-
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
- pool.add_serialized_file(descriptor_data)
14
-
15
- module Message
16
- module ORiN3
17
- module Provider
18
- module V1
19
- module AutoGenerated
20
- module BaseObject
21
- GetObjectInfoRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetObjectInfoRequest").msgclass
22
- GetObjectInfoResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetObjectInfoResponse").msgclass
23
- GetStatusRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetStatusRequest").msgclass
24
- GetStatusResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetStatusResponse").msgclass
25
- SetTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SetTagRequest").msgclass
26
- SetTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("SetTagResponse").msgclass
27
- GetTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetTagRequest").msgclass
28
- GetTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetTagResponse").msgclass
29
- GetTagKeysRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetTagKeysRequest").msgclass
30
- GetTagKeysResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("GetTagKeysResponse").msgclass
31
- RemoveTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RemoveTagRequest").msgclass
32
- RemoveTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("RemoveTagResponse").msgclass
33
- end
34
- end
35
- end
36
- end
37
- end
38
- end
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Provider/V1/orin3child.proto
4
-
5
- require 'google/protobuf'
6
-
7
- require_relative '../../Message.ORiN3.Common/V1/orin3common_pb'
8
-
9
-
10
- descriptor_data = "\n*Message.ORiN3.Provider/V1/orin3child.proto\x1a)Message.ORiN3.Common/V1/orin3common.proto\"H\n\rDeleteRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\">\n\x0e\x44\x65leteResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse29\n\x0c\x43hildService\x12)\n\x06\x44\x65lete\x12\x0e.DeleteRequest\x1a\x0f.DeleteResponseBe\xaa\x02-Message.ORiN3.Provider.V1.AutoGenerated.Child\xea\x02\x32Message::ORiN3::Provider::V1::AutoGenerated::Childb\x06proto3"
11
-
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
- pool.add_serialized_file(descriptor_data)
14
-
15
- module Message
16
- module ORiN3
17
- module Provider
18
- module V1
19
- module AutoGenerated
20
- module Child
21
- DeleteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DeleteRequest").msgclass
22
- DeleteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("DeleteResponse").msgclass
23
- end
24
- end
25
- end
26
- end
27
- end
28
- end
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Provider/V1/orin3childcreator.proto
4
-
5
- require 'google/protobuf'
6
-
7
- require_relative '../../Message.ORiN3.Common/V1/orin3common_pb'
8
-
9
-
10
- descriptor_data = "\n1Message.ORiN3.Provider/V1/orin3childcreator.proto\x1a)Message.ORiN3.Common/V1/orin3common.proto\"\x99\x01\n\x15\x43reateVariableRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\x12\x11\n\tvalueType\x18\x06 \x01(\x05\"s\n\x16\x43reateVariableResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x12\n\nvariableId\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\"\x83\x01\n\x12\x43reateEventRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"m\n\x13\x43reateEventResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0f\n\x07\x65ventId\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\"\x82\x01\n\x11\x43reateFileRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"\xb0\x01\n\x12\x43reateFileResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0e\n\x06\x66ileId\x18\x02 \x01(\x0c\x12\x0e\n\x06length\x18\x03 \x01(\x03\x12\x10\n\x08position\x18\x04 \x01(\x03\x12\x10\n\x08\x63\x61nWrite\x18\x05 \x01(\x08\x12\x0f\n\x07\x63\x61nRead\x18\x06 \x01(\x08\x12\x17\n\x0f\x63reatedDateTime\x18\x07 \x01(\x03\"\x97\x01\n\x13\x43reateStreamRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\x12\x11\n\tvalueType\x18\x06 \x01(\x05\"o\n\x14\x43reateStreamResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x10\n\x08streamId\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\"\x81\x01\n\x10\x43reateJobRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"i\n\x11\x43reateJobResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\r\n\x05jobId\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\"\x84\x01\n\x13\x43reateModuleRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"o\n\x14\x43reateModuleResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x10\n\x08moduleId\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\x32\xf7\x02\n\x13\x43hildCreatorService\x12\x41\n\x0e\x43reateVariable\x12\x16.CreateVariableRequest\x1a\x17.CreateVariableResponse\x12\x38\n\x0b\x43reateEvent\x12\x13.CreateEventRequest\x1a\x14.CreateEventResponse\x12\x35\n\nCreateFile\x12\x12.CreateFileRequest\x1a\x13.CreateFileResponse\x12;\n\x0c\x43reateStream\x12\x14.CreateStreamRequest\x1a\x15.CreateStreamResponse\x12\x32\n\tCreateJob\x12\x11.CreateJobRequest\x1a\x12.CreateJobResponse\x12;\n\x0c\x43reateModule\x12\x14.CreateModuleRequest\x1a\x15.CreateModuleResponseBs\xaa\x02\x34Message.ORiN3.Provider.V1.AutoGenerated.ChildCreator\xea\x02\x39Message::ORiN3::Provider::V1::AutoGenerated::ChildCreatorb\x06proto3"
11
-
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
- pool.add_serialized_file(descriptor_data)
14
-
15
- module Message
16
- module ORiN3
17
- module Provider
18
- module V1
19
- module AutoGenerated
20
- module ChildCreator
21
- CreateVariableRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateVariableRequest").msgclass
22
- CreateVariableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateVariableResponse").msgclass
23
- CreateEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateEventRequest").msgclass
24
- CreateEventResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateEventResponse").msgclass
25
- CreateFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateFileRequest").msgclass
26
- CreateFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateFileResponse").msgclass
27
- CreateStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateStreamRequest").msgclass
28
- CreateStreamResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateStreamResponse").msgclass
29
- CreateJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateJobRequest").msgclass
30
- CreateJobResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateJobResponse").msgclass
31
- CreateModuleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateModuleRequest").msgclass
32
- CreateModuleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateModuleResponse").msgclass
33
- end
34
- end
35
- end
36
- end
37
- end
38
- end
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Provider/V1/orin3controllercreator.proto
4
-
5
- require 'google/protobuf'
6
-
7
- require_relative '../../Message.ORiN3.Common/V1/orin3common_pb'
8
-
9
-
10
- descriptor_data = "\n6Message.ORiN3.Provider/V1/orin3controllercreator.proto\x1a)Message.ORiN3.Common/V1/orin3common.proto\"\x88\x01\n\x17\x43reateControllerRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\x10\n\x08parentId\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x10\n\x08typeName\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"m\n\x18\x43reateControllerResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x17\n\x0f\x63reatedDateTime\x18\x03 \x01(\x03\x32\x63\n\x18\x43ontrollerCreatorService\x12G\n\x10\x43reateController\x12\x18.CreateControllerRequest\x1a\x19.CreateControllerResponseB}\xaa\x02\x39Message.ORiN3.Provider.V1.AutoGenerated.ControllerCreator\xea\x02>Message::ORiN3::Provider::V1::AutoGenerated::ControllerCreatorb\x06proto3"
11
-
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
- pool.add_serialized_file(descriptor_data)
14
-
15
- module Message
16
- module ORiN3
17
- module Provider
18
- module V1
19
- module AutoGenerated
20
- module ControllerCreator
21
- CreateControllerRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateControllerRequest").msgclass
22
- CreateControllerResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("CreateControllerResponse").msgclass
23
- end
24
- end
25
- end
26
- end
27
- end
28
- end
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: Message.ORiN3.Provider/V1/orin3executable.proto
4
-
5
- require 'google/protobuf'
6
-
7
- require_relative '../../Message.ORiN3.Common/V1/orin3common_pb'
8
-
9
-
10
- descriptor_data = "\n/Message.ORiN3.Provider/V1/orin3executable.proto\x1a)Message.ORiN3.Common/V1/orin3common.proto\"p\n\x0e\x45xecuteRequest\x12+\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1b.ORiN3.Common.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x13\n\x0b\x63ommandName\x18\x03 \x01(\t\x12\x10\n\x08\x61rgument\x18\x04 \x01(\x0c\"O\n\x0f\x45xecuteResponse\x12,\n\x06\x63ommon\x18\x01 \x01(\x0b\x32\x1c.ORiN3.Common.CommonResponse\x12\x0e\n\x06result\x18\x02 \x01(\x0c\x32\x41\n\x11\x45xecutableService\x12,\n\x07\x45xecute\x12\x0f.ExecuteRequest\x1a\x10.ExecuteResponseBo\xaa\x02\x32Message.ORiN3.Provider.V1.AutoGenerated.Executable\xea\x02\x37Message::ORiN3::Provider::V1::AutoGenerated::Executableb\x06proto3"
11
-
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
- pool.add_serialized_file(descriptor_data)
14
-
15
- module Message
16
- module ORiN3
17
- module Provider
18
- module V1
19
- module AutoGenerated
20
- module Executable
21
- ExecuteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ExecuteRequest").msgclass
22
- ExecuteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("ExecuteResponse").msgclass
23
- end
24
- end
25
- end
26
- end
27
- end
28
- end