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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bdd6e108013d55f9261092cd7958c95ceda4afdc6dceb309ecb4e94c908b45c
4
- data.tar.gz: eb30812e7830049b9c4b14fa03a2c8ab3602d4793fab7e34a2a8cca30c510fc4
3
+ metadata.gz: adc2b29a5fa9143dd9be84dfea7b0963f0980d971da491cf9ec17a4d1ab24616
4
+ data.tar.gz: fcb1afe4cd66381ccd22989804ada9f0f3172dd9078809ca1515030c551d3923
5
5
  SHA512:
6
- metadata.gz: 470ebf2f8b87545ce0caaa300b84a12de823122e94a60c82f1bbefd5cda3c5d4df8d576aae845c82440aa6b9a9309ba43e5e0430ddd58b52c8edab6b18003b43
7
- data.tar.gz: ad77db2fcc3c7731a63be20eedf30a4cd307aa9cf592380db7c189d3be572d5c2b28b98b8a4318506a3a05f5c4b106fd1ef893c5287a696a84bb9e7c750adfad
6
+ metadata.gz: ae378fceb76b03e21877680e527e737a66c153377ed3bb8572df418d9390c3594f1c3f47bc4e15dcd5ef53d59e08e04df5f692d692142579efa209b397e80d45
7
+ data.tar.gz: a4f71c2a175fda198bcf9f1dedc7e7e88fbd17a9e45de634a6986c2e699fe5d4a93fb0dabcbfd8426eed1f980ca86d1657406a5da30c99eba44cfa477e4c132f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.0] - 2024-12-07
4
+
5
+ ### Added
6
+ - Implemented core gRPC client functionality for ORiN3 provider services
7
+ - Support for multiple services:
8
+ - Controller service
9
+ - File service
10
+ - Stream service
11
+ - Job service
12
+ - Event service
13
+ - Comprehensive error handling and logging mechanisms
14
+ - Robust client-side streaming support
15
+
16
+ ### Changed
17
+ - Optimized client interfaces based on protocol buffer definitions
18
+ - Improved configuration and initialization processes
19
+ - Enhanced type conversion and serialization methods
20
+
21
+ ### Fixed
22
+ - Resolved initial connection and communication stability issues
23
+ - Improved error detection and reporting
24
+ - Standardized exception handling across services
25
+
26
+ ### Removed
27
+ - Deprecated legacy connection methods
28
+ - Removed experimental code from initial development phase
29
+
3
30
  ## [0.1.0] - 2024-10-26
4
31
 
5
- - Initial release
32
+ - Initial release
data/README.md CHANGED
@@ -35,36 +35,33 @@ gem 'grpc-orin3-provider'
35
35
  ```ruby
36
36
  # Shorten namespaces for readability
37
37
  module ORiN3
38
- include Message::ORiN3::Common::V1::AutoGenerated
39
- include Message::ORiN3::Provider::V1::AutoGenerated::RootObject
38
+ include Grpc::Client::ORiN3
39
+ include Grpc::Client::ORiN3::Provider
40
40
  end
41
41
 
42
42
  def main
43
- # Create a gRPC client stub
44
- stub = ORiN3::RootObjectService::Stub.new('localhost:50051', :this_channel_is_insecure)
43
+ channel = GRPC::Core::Channel.new("localhost:7103", nil, :this_channel_is_insecure)
44
+ remote_engine = ORiN3::RemoteEngine.new(channel)
45
+ id = "B0EFA63C-6610-4167-9DA6-9DDC11D145B2"
46
+ version = "[1.0.0,2.0.0)"
47
+ result = remote_engine.wakeup_provider(id, version, "0.0.0.0", 0)
48
+ puts "* wakeup test provider done. [uri=#{result.provider_information.endpoints[0].uri}]"
45
49
 
46
- # Prepare the request
47
- request = ORiN3::GetRootObjectIdRequest.new(common: ORiN3::CommonRequest.new)
50
+ uri = URI.parse(result.provider_information.endpoints[0].uri)
51
+ provider_channerl = GRPC::Core::Channel.new("#{uri.host}:#{uri.port}", nil, :this_channel_is_insecure)
52
+ root = ORiN3::ORiN3RootObject.attach(provider_channerl)
48
53
 
49
- # Call the RPC method
50
- response = stub.get_root_object_id(request)
51
- puts "Response: #{response.rootObjectId}"
52
- rescue GRPC::BadStatus => e
54
+ puts "Root.name: #{root.name}"
55
+ puts "Root.type_name: #{root.type_name}"
56
+ puts "Root.option: #{root.option}"
57
+ puts "Root.created_datetime: #{root.created_datetime.getlocal}"
58
+ puts "Root.orin3_object_type: #{root.orin3_object_type}"
59
+ puts "Root.id: #{root.id}"
60
+ rescue ORiN3::MessageClientError => e
53
61
  abort "ERROR: #{e.message}"
54
62
  end
55
63
  ```
56
64
 
57
- 2. **Error Handling**
58
- Proper error handling is included to manage any gRPC request failures.
59
-
60
- ```ruby
61
- begin
62
- response = stub.get_root_object_id(request)
63
- rescue GRPC::BadStatus => e
64
- puts "ERROR: #{e.common.detail}"
65
- end
66
- ```
67
-
68
65
  ## About ORiN3
69
66
 
70
67
  ORiN3 (Open Robot/Resource interface for the Network) is an open standard communication interface designed to facilitate seamless communication with robots and resources on a network. Built with gRPC, ORiN3 provides cross-platform capabilities, making it suitable for various industries and applications. For more details, see the [ORiN3 GitHub repository](https://github.com/ORiNConsortium/ORiN3).
data/Rakefile CHANGED
@@ -1,4 +1,46 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "bundler/gem_tasks"
4
+ require 'bundler/setup'
5
+ require 'rake'
6
+ require 'fileutils'
7
+
8
+ ROOT_DIR = File.expand_path(__dir__)
9
+ CURRENT_DIR = Dir.pwd
10
+
4
11
  task default: %i[]
12
+
13
+ # protoのビルド方法
14
+ # ORiN協議会のORiN3レポジトリをクローンして、以下のrakeコマンドを実行する
15
+ # bundle exec rake "grpc:build[~/Repos/ORiN3/src/Design.ORiN3.Common/]"
16
+ # bundle exec rake "grpc:build[~/Repos/ORiN3/src/Design.ORiN3.Provider/]"
17
+ # bundle exec rake "grpc:build[~/Repos/ORiN3/src/Message.ORiN3.Provider/]"
18
+ # bundle exec rake "grpc:build[~/Repos/ORiN3/src/Message.ORiN3.RemoteEngine/]"
19
+ namespace :grpc do
20
+ desc "Build gRPC Ruby files"
21
+ task :build, [:target_folder] do |t, args|
22
+ # 引数が指定されていなければエラーを出力して終了
23
+ unless args[:target_folder]
24
+ abort "Error: target_folder argument is required. Usage: rake grpc:guild[<target_folder>]"
25
+ end
26
+
27
+ # ユーザが指定したフォルダを取得し、末端のフォルダ名のみ取得
28
+ target_folder = File.expand_path(args[:target_folder])
29
+ target_folder_name = File.basename(target_folder) # 末端のフォルダ名を取得
30
+ puts "ターゲット: " + target_folder
31
+
32
+ # 出力ディレクトリのパスを構成
33
+ output_dir = File.join(ROOT_DIR, 'gen', target_folder_name)
34
+ puts "出力先: " + output_dir
35
+
36
+ # 出力ディレクトリが存在しない場合は作成
37
+ FileUtils.mkdir_p(output_dir) unless Dir.exist?(output_dir)
38
+
39
+ # grpc_tools_ruby_protocコマンドを実行
40
+ Dir.chdir(target_folder) do
41
+ system(
42
+ "grpc_tools_ruby_protoc -I./ -I../ --ruby_out=#{output_dir} --grpc_out=#{output_dir} */*.proto"
43
+ )
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Design.ORiN3.Common/V1/orin3_common.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n)Design.ORiN3.Common/V1/orin3_common.proto\x12\x13\x44\x65sign.ORiN3.Common*\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\x42R\xaa\x02$Design.ORiN3.Common.V1.AutoGenerated\xea\x02(Design::ORiN3::Common::V1::AutoGeneratedb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Design
14
+ module ORiN3
15
+ module Common
16
+ module V1
17
+ module AutoGenerated
18
+ ResultCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Design.ORiN3.Common.ResultCode").enummodule
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Design.ORiN3.Common/V1/orin3_common_remote_engine.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n7Design.ORiN3.Common/V1/orin3_common_remote_engine.proto\x12 Design.ORiN3.Common.RemoteEngine*\xaf \n\x16RemoteEngineResultCode\x12\r\n\tSUCCEEDED\x10\x00\x12\x19\n\x11\x46ILE_READ_FAILURE\x10\x80\x82\x80\x80\x02\x12\x1a\n\x12\x46ILE_WRITE_FAILURE\x10\x81\x82\x80\x80\x02\x12#\n\x1b\x44IRECTORY_REFERENCE_FAILURE\x10\x90\x82\x80\x80\x02\x12\x16\n\x0eINVALID_OPTION\x10\x80\x84\x80\x80\x02\x12\x16\n\x0eINVALID_FORMAT\x10\x80\x86\x80\x80\x02\x12\x1a\n\x12PROVIDER_NOT_FOUND\x10\x80\x88\x80\x80\x02\x12\"\n\x1aPROVIDER_VERSION_NOT_FOUND\x10\x81\x88\x80\x80\x02\x12!\n\x19MULTIPLE_TARGET_PROVIDERS\x10\x82\x88\x80\x80\x02\x12\x19\n\x11LICENSE_NOT_FOUND\x10\x80\x80\x84\x80\x02\x12\x19\n\x11PERMISSION_DENIED\x10\x81\x80\x84\x80\x02\x12+\n#FAILED_TO_CONNECT_TO_REMOTE_ENGINED\x10\x80\x80\x88\x80\x02\x12\x10\n\x08\x43\x41NCELED\x10\xfe\xff\xbf\x80\x02\x12\x0f\n\x07UNKNOWN\x10\xff\xff\xbf\x80\x02\x12\x17\n\x0fUNKNOWN_COMMAND\x10\x80\x80\xc0\x80\x02\x12\x10\n\x08NO_VALUE\x10\x81\x80\xc0\x80\x02\x12\x11\n\tNO_OPTION\x10\x82\x80\xc0\x80\x02\x12\x17\n\x0fNO_OPTION_VALUE\x10\x83\x80\xc0\x80\x02\x12\x1c\n\x14HELP_OPTION_COMBINED\x10\x90\x80\xc0\x80\x02\x12-\n%ONLY_ONE_PASSWORD_OPTION_IS_SPECIFIED\x10\x80\x8a\xc0\x80\x02\x12$\n\x1c\x43URRENT_OPTION_IS_NOT_NEEDED\x10\x81\x8a\xc0\x80\x02\x12\"\n\x1aNEW_PASSWORDS_DO_NOT_MATCH\x10\x82\x8a\xc0\x80\x02\x12\x30\n(MULTIPLE_PROXY_RELATED_OPTIONS_SPECIFIED\x10\x80\x94\xc0\x80\x02\x12\x19\n\x11PACKAGE_NOT_FOUND\x10\x80\xa0\xc0\x80\x02\x12\x1b\n\x13\x43\x41NT_ACCESS_PACKAGE\x10\x81\xa0\xc0\x80\x02\x12%\n\x1d\x43\x41NT_ACCESS_INSTALL_DIRECTORY\x10\x82\xa0\xc0\x80\x02\x12\x1e\n\x16MULTIPLE_IDS_SPECIFIED\x10\x80\xa2\xc0\x80\x02\x12\x1e\n\x16PROVIDER_NOT_SPECIFIED\x10\x81\xa2\xc0\x80\x02\x12%\n\x1dNEED_TO_USE_UNSECURE_ENDPOINT\x10\x80\x82\x80\x81\x02\x12#\n\x1bNEED_TO_USE_SECURE_ENDPOINT\x10\x81\x82\x80\x81\x02\x12!\n\x19\x46\x41ILED_TO_LAUNCH_PROVIDER\x10\x82\x82\x80\x81\x02\x12#\n\x1b\x46\x41ILED_TO_REGISTER_PROVIDER\x10\x83\x82\x80\x81\x02\x12)\n!BOTH_TELEMETRY_SETTINGS_SPECIFIED\x10\x84\x82\x80\x81\x02\x12%\n\x1dPROVIDER_ENDPOINTS_DUPLICATED\x10\x85\x82\x80\x81\x02\x12+\n#OPEN_TELEMETRY_ENDPOINTS_DUPLICATED\x10\x86\x82\x80\x81\x02\x12\x19\n\x11PASSWORD_MISMATCH\x10\x80\x80\xc0\x81\x02\x12\x1d\n\x15PFX_PASSWORD_MISMATCH\x10\x81\x80\xc0\x81\x02\x12\x1f\n\x17\x41\x44\x44ING_SETTINGS_FAILURE\x10\x82\x80\xc0\x81\x02\x12$\n\x1cSTART_TARGET_ALREADY_STARTED\x10\x80\x82\xc0\x81\x02\x12\x14\n\x0cSTART_FAILED\x10\x81\x82\xc0\x81\x02\x12\x1f\n\x17STOP_TARGET_NOT_STARTED\x10\x80\x84\xc0\x81\x02\x12!\n\x19STATUS_TARGET_NOT_STARTED\x10\x80\x86\xc0\x81\x02\x12-\n%CHANGE_PASSWORD_SPECIFIED_CURRENT_KEY\x10\x80\x8a\xc0\x81\x02\x12\x1e\n\x16\x43HANGE_PASSWORD_FAILED\x10\x81\x8a\xc0\x81\x02\x12!\n\x19\x43HANGE_PASSWORD_TOO_SHORT\x10\x83\x8a\xc0\x81\x02\x12 \n\x18\x43HANGE_PASSWORD_TOO_LONG\x10\x84\x8a\xc0\x81\x02\x12(\n CHANGE_PASSWORD_HAS_INVALID_CHAR\x10\x85\x8a\xc0\x81\x02\x12\"\n\x1a\x43HANGE_PASSWORD_NOT_STRONG\x10\x86\x8a\xc0\x81\x02\x12\x18\n\x10PASSWORD_NOT_SET\x10\x80\x8c\xc0\x81\x02\x12\x1a\n\x12PASSWORD_INCORRECT\x10\x81\x8c\xc0\x81\x02\x12 \n\x18\x46\x41ILED_TO_READ_ENDPOINTS\x10\x80\x8e\xc0\x81\x02\x12#\n\x1b\x45NDPOINT_ALREADY_REGISTERED\x10\x80\x90\xc0\x81\x02\x12\'\n\x1f\x45NDPOINT_ADD_INVALID_IP_ADDRESS\x10\x81\x90\xc0\x81\x02\x12!\n\x19\x45NDPOINT_ADD_INVALID_PORT\x10\x82\x90\xc0\x81\x02\x12\x31\n)ENDPOINT_ADD_UNNECESSARY_OPTION_SPECIFIED\x10\x83\x90\xc0\x81\x02\x12\x1a\n\x12\x45NDPOINT_NOT_FOUND\x10\x80\x92\xc0\x81\x02\x12 \n\x18\x43\x41NNOT_IDENTIFY_ENDPOINT\x10\x81\x92\xc0\x81\x02\x12&\n\x1e\x43\x41NNOT_DELETE_DEFAULT_ENDPOINT\x10\x82\x92\xc0\x81\x02\x12*\n\"ENDPOINT_DELETE_INVALID_IP_ADDRESS\x10\x83\x92\xc0\x81\x02\x12$\n\x1c\x45NDPOINT_DELETE_INVALID_PORT\x10\x84\x92\xc0\x81\x02\x12\"\n\x1aOPEN_TELEMETRY_READ_FAILED\x10\x80\x94\xc0\x81\x02\x12(\n OPEN_TELEMETRY_ADD_DUPLICATE_URL\x10\x80\x96\xc0\x81\x02\x12&\n\x1eOPEN_TELEMETRY_ADD_INVALID_URL\x10\x81\x96\xc0\x81\x02\x12\x30\n(OPEN_TELEMETRY_ADD_INVALID_PROXY_SETTING\x10\x82\x96\xc0\x81\x02\x12,\n$OPEN_TELEMETRY_ADD_INVALID_PROXY_URL\x10\x83\x96\xc0\x81\x02\x12+\n#OPEN_TELEMETRY_ADD_INVALID_PROTOCOL\x10\x84\x96\xc0\x81\x02\x12+\n#OPEN_TELEMETRY_DELETE_INVALID_INDEX\x10\x80\x98\xc0\x81\x02\x12\x1d\n\x15PROV_TERMINATE_FAILED\x10\x80\xa0\xc0\x81\x02\x12*\n\"PROV_TERMINATE_TARGET_NOT_PROVIDER\x10\x81\xa0\xc0\x81\x02\x12!\n\x19PACKAGE_ALREADY_INSTALLED\x10\x80\xa6\xc0\x81\x02\x12-\n%FAILED_TO_EXECUTE_POST_INSTALL_SCRIPT\x10\x81\xa6\xc0\x81\x02\x12\x15\n\rEMPTY_PACKAGE\x10\x82\xa6\xc0\x81\x02\x12!\n\x19\x46\x41ILED_TO_EXTRACT_PACKAGE\x10\x83\xa6\xc0\x81\x02\x12\x1e\n\x16NO_METADATA_IN_PACKAGE\x10\x84\xa6\xc0\x81\x02\x12\x1e\n\x16NO_PROVIDER_IN_PACKAGE\x10\x85\xa6\xc0\x81\x02\x12%\n\x1dMULTIPLE_PROVIDERS_IN_PACKAGE\x10\x86\xa6\xc0\x81\x02\x12\"\n\x1aPROVIDER_ALREADY_INSTALLED\x10\x87\xa6\xc0\x81\x02\x12\x1b\n\x13PROVIDER_IS_RUNNING\x10\x80\xa8\xc0\x81\x02\x12\x1b\n\x13\x46\x41ILED_TO_UNINSTALL\x10\x81\xa8\xc0\x81\x02\x12$\n\x1cPROV_ATTACH_TARGET_NOT_FOUND\x10\x80\xaa\xc0\x81\x02\x12 \n\x18PROV_ATTACH_INVALID_FILE\x10\x81\xaa\xc0\x81\x02\x12+\n#PROV_ATTACH_TARGET_ALREADY_ATTACHED\x10\x82\xaa\xc0\x81\x02\x12\"\n\x1aPROV_ATTACH_NO_PERMISSIONS\x10\x83\xaa\xc0\x81\x02\x12\'\n\x1fPROV_DETACH_TARGET_NOT_ATTACHED\x10\x80\xac\xc0\x81\x02\x12\x1c\n\x14PROV_LIST_PFX_FAILED\x10\x80\xae\xc0\x81\x02\x12\'\n\x1fPROV_ADD_PFX_ALREADY_IP_ADDRESS\x10\x80\xb0\xc0\x81\x02\x12\'\n\x1fPROV_ADD_PFX_INVALID_IP_ADDRESS\x10\x81\xb0\xc0\x81\x02\x12$\n\x1cPROV_DELETE_TARGET_NOT_FOUND\x10\x80\xb2\xc0\x81\x02\x12&\n\x1ePROV_DELETE_INVALID_IP_ADDRESS\x10\x81\xb2\xc0\x81\x02\x12\'\n\x1f\x46\x41ILED_TO_READ_MANUAL_ENDPOINTS\x10\x80\xb4\xc0\x81\x02\x12*\n\"MANUAL_ENDPOINT_ALREADY_REGISTERED\x10\x80\xb6\xc0\x81\x02\x12.\n&MANUAL_ENDPOINT_ADD_INVALID_IP_ADDRESS\x10\x81\xb6\xc0\x81\x02\x12(\n MANUAL_ENDPOINT_ADD_INVALID_PORT\x10\x82\xb6\xc0\x81\x02\x12\x38\n0MANUAL_ENDPOINT_ADD_UNNECESSARY_OPTION_SPECIFIED\x10\x83\xb6\xc0\x81\x02\x12!\n\x19MANUAL_ENDPOINT_NOT_FOUND\x10\x80\xb8\xc0\x81\x02\x12\'\n\x1f\x43\x41NNOT_IDENTIFY_MANUAL_ENDPOINT\x10\x81\xb8\xc0\x81\x02\x12-\n%CANNOT_DELETE_DEFAULT_MANUAL_ENDPOINT\x10\x82\xb8\xc0\x81\x02\x12\x31\n)MANUAL_ENDPOINT_DELETE_INVALID_IP_ADDRESS\x10\x83\xb8\xc0\x81\x02\x12+\n#MANUAL_ENDPOINT_DELETE_INVALID_PORT\x10\x84\xb8\xc0\x81\x02\x12\x1e\n\x16INVALID_AUTHORITY_NAME\x10\x80\xbe\xc0\x81\x02\x12#\n\x1bINVALID_AUTH_CONDITION_NAME\x10\x81\xbe\xc0\x81\x02\x12#\n\x1bINVALID_AUTH_CONDITION_TYPE\x10\x82\xbe\xc0\x81\x02\x12\x1f\n\x17\x43\x41NNOT_SET_AUTH_TARGETS\x10\x83\xbe\xc0\x81\x02\x12 \n\x18INVALID_AUTH_TARGET_TYPE\x10\x84\xbe\xc0\x81\x02\x12$\n\x1cINVALID_AUTH_CONDITION_VALUE\x10\x85\xbe\xc0\x81\x02\x12\x14\n\x0cNO_AUTHORITY\x10\x80\xc0\xc0\x81\x02\x12\x1e\n\x16INVALID_ACTIVATION_KEY\x10\x80\xc8\xc0\x81\x02\x12!\n\x19LICENSE_ALREADY_INSTALLED\x10\x81\xc8\xc0\x81\x02\x12\x1a\n\x12INVALID_LICENSE_ID\x10\x80\xca\xc0\x81\x02\x12)\n!CANNOT_DEACTIVATE_BUILTIN_LICENSE\x10\x81\xca\xc0\x81\x02\x12-\n%CANNOT_DELETE_NOT_DEACTIVATED_LICENSE\x10\x80\xcc\xc0\x81\x02\x12%\n\x1d\x43\x41NNOT_DELETE_BUILTIN_LICENSE\x10\x81\xcc\xc0\x81\x02\x12*\n\"GET_DATA_REMOTE_ENGINE_NOT_STARTED\x10\x80\x80\xc4\x81\x02\x12\x1c\n\x14GET_DATA_INVALID_KEY\x10\x81\x80\xc4\x81\x02\x12+\n#RESTART_REMOTE_ENGINE_IS_RESTARTING\x10\x80\x82\xc4\x81\x02\x42m\xaa\x02\x31\x44\x65sign.ORiN3.Common.RemoteEngine.V1.AutoGenerated\xea\x02\x36\x44\x65sign::ORiN3::Common::RemoteEngine::V1::AutoGeneratedb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Design
14
+ module ORiN3
15
+ module Common
16
+ module RemoteEngine
17
+ module V1
18
+ module AutoGenerated
19
+ RemoteEngineResultCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Design.ORiN3.Common.RemoteEngine.RemoteEngineResultCode").enummodule
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Design.ORiN3.Provider/V1/orin3_object_type.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n0Design.ORiN3.Provider/V1/orin3_object_type.proto\x12\x15\x44\x65sign.ORiN3.Provider*x\n\x0fORiN3ObjectType\x12\x11\n\rPROVIDER_ROOT\x10\x00\x12\x0e\n\nCONTROLLER\x10\x01\x12\n\n\x06MODULE\x10\x02\x12\x0c\n\x08VARIABLE\x10\x03\x12\x08\n\x04\x46ILE\x10\x04\x12\n\n\x06STREAM\x10\x05\x12\t\n\x05\x45VENT\x10\x06\x12\x07\n\x03JOB\x10\x07\x42V\xaa\x02&Design.ORiN3.Provider.V1.AutoGenerated\xea\x02*Design::ORiN3::Provider::V1::AutoGeneratedb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Design
14
+ module ORiN3
15
+ module Provider
16
+ module V1
17
+ module AutoGenerated
18
+ ORiN3ObjectType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Design.ORiN3.Provider.ORiN3ObjectType").enummodule
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Design.ORiN3.Provider/V1/orin3_value_type.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+
8
+ descriptor_data = "\n/Design.ORiN3.Provider/V1/orin3_value_type.proto\x12\x15\x44\x65sign.ORiN3.Provider*\x95\n\n\x0eORiN3ValueType\x12\x16\n\x12ORIN3_INVALID_TYPE\x10\x00\x12\x0e\n\nORIN3_BOOL\x10\n\x12\x14\n\x10ORIN3_BOOL_ARRAY\x10\x0b\x12\x17\n\x13ORIN3_NULLABLE_BOOL\x10\x0c\x12\x1d\n\x19ORIN3_NULLABLE_BOOL_ARRAY\x10\r\x12\x0e\n\nORIN3_INT8\x10\x14\x12\x14\n\x10ORIN3_INT8_ARRAY\x10\x15\x12\x17\n\x13ORIN3_NULLABLE_INT8\x10\x16\x12\x1d\n\x19ORIN3_NULLABLE_INT8_ARRAY\x10\x17\x12\x0f\n\x0bORIN3_INT16\x10\x1e\x12\x15\n\x11ORIN3_INT16_ARRAY\x10\x1f\x12\x18\n\x14ORIN3_NULLABLE_INT16\x10 \x12\x1e\n\x1aORIN3_NULLABLE_INT16_ARRAY\x10!\x12\x0f\n\x0bORIN3_INT32\x10(\x12\x15\n\x11ORIN3_INT32_ARRAY\x10)\x12\x18\n\x14ORIN3_NULLABLE_INT32\x10*\x12\x1e\n\x1aORIN3_NULLABLE_INT32_ARRAY\x10+\x12\x0f\n\x0bORIN3_INT64\x10\x32\x12\x15\n\x11ORIN3_INT64_ARRAY\x10\x33\x12\x18\n\x14ORIN3_NULLABLE_INT64\x10\x34\x12\x1e\n\x1aORIN3_NULLABLE_INT64_ARRAY\x10\x35\x12\x0f\n\x0bORIN3_UINT8\x10<\x12\x15\n\x11ORIN3_UINT8_ARRAY\x10=\x12\x18\n\x14ORIN3_NULLABLE_UINT8\x10>\x12\x1e\n\x1aORIN3_NULLABLE_UINT8_ARRAY\x10?\x12\x10\n\x0cORIN3_UINT16\x10\x46\x12\x16\n\x12ORIN3_UINT16_ARRAY\x10G\x12\x19\n\x15ORIN3_NULLABLE_UINT16\x10H\x12\x1f\n\x1bORIN3_NULLABLE_UINT16_ARRAY\x10I\x12\x10\n\x0cORIN3_UINT32\x10P\x12\x16\n\x12ORIN3_UINT32_ARRAY\x10Q\x12\x19\n\x15ORIN3_NULLABLE_UINT32\x10R\x12\x1f\n\x1bORIN3_NULLABLE_UINT32_ARRAY\x10S\x12\x10\n\x0cORIN3_UINT64\x10Z\x12\x16\n\x12ORIN3_UINT64_ARRAY\x10[\x12\x19\n\x15ORIN3_NULLABLE_UINT64\x10\\\x12\x1f\n\x1bORIN3_NULLABLE_UINT64_ARRAY\x10]\x12\x0f\n\x0bORIN3_FLOAT\x10\x64\x12\x15\n\x11ORIN3_FLOAT_ARRAY\x10\x65\x12\x18\n\x14ORIN3_NULLABLE_FLOAT\x10\x66\x12\x1e\n\x1aORIN3_NULLABLE_FLOAT_ARRAY\x10g\x12\x10\n\x0cORIN3_DOUBLE\x10n\x12\x16\n\x12ORIN3_DOUBLE_ARRAY\x10o\x12\x19\n\x15ORIN3_NULLABLE_DOUBLE\x10p\x12\x1f\n\x1bORIN3_NULLABLE_DOUBLE_ARRAY\x10q\x12\x10\n\x0cORIN3_STRING\x10x\x12\x16\n\x12ORIN3_STRING_ARRAY\x10y\x12\x13\n\x0eORIN3_DATETIME\x10\x82\x01\x12\x19\n\x14ORIN3_DATETIME_ARRAY\x10\x83\x01\x12\x1c\n\x17ORIN3_NULLABLE_DATETIME\x10\x84\x01\x12\"\n\x1dORIN3_NULLABLE_DATETIME_ARRAY\x10\x85\x01\x12\x11\n\x0cORIN3_OBJECT\x10\x8c\x01\x42V\xaa\x02&Design.ORiN3.Provider.V1.AutoGenerated\xea\x02*Design::ORiN3::Provider::V1::AutoGeneratedb\x06proto3"
9
+
10
+ pool = Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
12
+
13
+ module Design
14
+ module ORiN3
15
+ module Provider
16
+ module V1
17
+ module AutoGenerated
18
+ ORiN3ValueType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Design.ORiN3.Provider.ORiN3ValueType").enummodule
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Message.ORiN3.Provider/V1/orin3_base_object.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative './../../Design.ORiN3.Provider/V1/orin3_object_type_pb'
8
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_common_type_pb'
9
+
10
+
11
+ descriptor_data = "\n1Message.ORiN3.Provider/V1/orin3_base_object.proto\x12\x16Message.ORiN3.Provider\x1a\x30\x44\x65sign.ORiN3.Provider/V1/orin3_object_type.proto\x1a\x31Message.ORiN3.Provider/V1/orin3_common_type.proto\"Y\n\x14GetObjectInfoRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"\xe6\x01\n\x15GetObjectInfoResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\ttype_name\x18\x03 \x01(\t\x12\x0e\n\x06option\x18\x04 \x01(\t\x12\x18\n\x10\x63reated_datetime\x18\x05 \x01(\x03\x12;\n\x0bobject_type\x18\x06 \x01(\x0e\x32&.Design.ORiN3.Provider.ORiN3ObjectType\x12\r\n\x05\x65xtra\x18\x07 \x01(\x05\"U\n\x10GetStatusRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"[\n\x11GetStatusResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0e\n\x06status\x18\x02 \x01(\x05\"l\n\rSetTagRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.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\"H\n\x0eSetTagResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\"_\n\rGetTagRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x0b\n\x03key\x18\x03 \x01(\t\"U\n\x0eGetTagResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0b\n\x03tag\x18\x02 \x01(\x0c\"V\n\x11GetTagKeysRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"Z\n\x12GetTagKeysResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0c\n\x04keys\x18\x02 \x03(\t\"b\n\x10RemoveTagRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x0b\n\x03key\x18\x03 \x01(\t\"K\n\x11RemoveTagResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse2\xdc\x04\n\x11\x42\x61seObjectService\x12l\n\rGetObjectInfo\x12,.Message.ORiN3.Provider.GetObjectInfoRequest\x1a-.Message.ORiN3.Provider.GetObjectInfoResponse\x12`\n\tGetStatus\x12(.Message.ORiN3.Provider.GetStatusRequest\x1a).Message.ORiN3.Provider.GetStatusResponse\x12W\n\x06SetTag\x12%.Message.ORiN3.Provider.SetTagRequest\x1a&.Message.ORiN3.Provider.SetTagResponse\x12W\n\x06GetTag\x12%.Message.ORiN3.Provider.GetTagRequest\x1a&.Message.ORiN3.Provider.GetTagResponse\x12\x63\n\nGetTagKeys\x12).Message.ORiN3.Provider.GetTagKeysRequest\x1a*.Message.ORiN3.Provider.GetTagKeysResponse\x12`\n\tRemoveTag\x12(.Message.ORiN3.Provider.RemoveTagRequest\x1a).Message.ORiN3.Provider.RemoveTagResponseBo\xaa\x02\x32Message.ORiN3.Provider.V1.AutoGenerated.BaseObject\xea\x02\x37Message::ORiN3::Provider::V1::AutoGenerated::BaseObjectb\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
15
+
16
+ module Message
17
+ module ORiN3
18
+ module Provider
19
+ module V1
20
+ module AutoGenerated
21
+ module BaseObject
22
+ GetObjectInfoRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetObjectInfoRequest").msgclass
23
+ GetObjectInfoResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetObjectInfoResponse").msgclass
24
+ GetStatusRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetStatusRequest").msgclass
25
+ GetStatusResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetStatusResponse").msgclass
26
+ SetTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.SetTagRequest").msgclass
27
+ SetTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.SetTagResponse").msgclass
28
+ GetTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetTagRequest").msgclass
29
+ GetTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetTagResponse").msgclass
30
+ GetTagKeysRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetTagKeysRequest").msgclass
31
+ GetTagKeysResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.GetTagKeysResponse").msgclass
32
+ RemoveTagRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.RemoveTagRequest").msgclass
33
+ RemoveTagResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.RemoveTagResponse").msgclass
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -1,8 +1,8 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: Message.ORiN3.Provider/V1/orin3baseobject.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.BaseObject'
2
+ # Source: Message.ORiN3.Provider/V1/orin3_base_object.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.BaseObject'
3
3
 
4
4
  require 'grpc'
5
- require_relative 'orin3baseobject_pb'
5
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_base_object_pb'
6
6
 
7
7
  module Message
8
8
  module ORiN3
@@ -17,7 +17,7 @@ module Message
17
17
 
18
18
  self.marshal_class_method = :encode
19
19
  self.unmarshal_class_method = :decode
20
- self.service_name = 'BaseObjectService'
20
+ self.service_name = 'Message.ORiN3.Provider.BaseObjectService'
21
21
 
22
22
  rpc :GetObjectInfo, ::Message::ORiN3::Provider::V1::AutoGenerated::BaseObject::GetObjectInfoRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::BaseObject::GetObjectInfoResponse
23
23
  rpc :GetStatus, ::Message::ORiN3::Provider::V1::AutoGenerated::BaseObject::GetStatusRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::BaseObject::GetStatusResponse
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Message.ORiN3.Provider/V1/orin3_child_creator.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative './../../Design.ORiN3.Provider/V1/orin3_value_type_pb'
8
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_common_type_pb'
9
+
10
+
11
+ descriptor_data = "\n3Message.ORiN3.Provider/V1/orin3_child_creator.proto\x12\x16Message.ORiN3.Provider\x1a/Design.ORiN3.Provider/V1/orin3_value_type.proto\x1a\x31Message.ORiN3.Provider/V1/orin3_common_type.proto\"\xcd\x01\n\x15\x43reateVariableRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\x12\x39\n\nvalue_type\x18\x06 \x01(\x0e\x32%.Design.ORiN3.Provider.ORiN3ValueType\"\x7f\n\x16\x43reateVariableResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x13\n\x0bvariable_id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\"\x8f\x01\n\x12\x43reateEventRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"y\n\x13\x43reateEventResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x10\n\x08\x65vent_id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\"\x8e\x01\n\x11\x43reateFileRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"\xbe\x01\n\x12\x43reateFileResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\x0c\x12\x0e\n\x06length\x18\x03 \x01(\x03\x12\x10\n\x08position\x18\x04 \x01(\x03\x12\x11\n\tcan_write\x18\x05 \x01(\x08\x12\x10\n\x08\x63\x61n_read\x18\x06 \x01(\x08\x12\x18\n\x10\x63reated_datetime\x18\x07 \x01(\x03\"\xcb\x01\n\x13\x43reateStreamRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\x12\x39\n\nvalue_type\x18\x06 \x01(\x0e\x32%.Design.ORiN3.Provider.ORiN3ValueType\"{\n\x14\x43reateStreamResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x11\n\tstream_id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\"\x8d\x01\n\x10\x43reateJobRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"u\n\x11\x43reateJobResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x0e\n\x06job_id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\"\x90\x01\n\x13\x43reateModuleRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"{\n\x14\x43reateModuleResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\x11\n\tmodule_id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\x32\x8b\x05\n\x13\x43hildCreatorService\x12o\n\x0e\x43reateVariable\x12-.Message.ORiN3.Provider.CreateVariableRequest\x1a..Message.ORiN3.Provider.CreateVariableResponse\x12\x66\n\x0b\x43reateEvent\x12*.Message.ORiN3.Provider.CreateEventRequest\x1a+.Message.ORiN3.Provider.CreateEventResponse\x12\x63\n\nCreateFile\x12).Message.ORiN3.Provider.CreateFileRequest\x1a*.Message.ORiN3.Provider.CreateFileResponse\x12i\n\x0c\x43reateStream\x12+.Message.ORiN3.Provider.CreateStreamRequest\x1a,.Message.ORiN3.Provider.CreateStreamResponse\x12`\n\tCreateJob\x12(.Message.ORiN3.Provider.CreateJobRequest\x1a).Message.ORiN3.Provider.CreateJobResponse\x12i\n\x0c\x43reateModule\x12+.Message.ORiN3.Provider.CreateModuleRequest\x1a,.Message.ORiN3.Provider.CreateModuleResponseBs\xaa\x02\x34Message.ORiN3.Provider.V1.AutoGenerated.ChildCreator\xea\x02\x39Message::ORiN3::Provider::V1::AutoGenerated::ChildCreatorb\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
15
+
16
+ module Message
17
+ module ORiN3
18
+ module Provider
19
+ module V1
20
+ module AutoGenerated
21
+ module ChildCreator
22
+ CreateVariableRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateVariableRequest").msgclass
23
+ CreateVariableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateVariableResponse").msgclass
24
+ CreateEventRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateEventRequest").msgclass
25
+ CreateEventResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateEventResponse").msgclass
26
+ CreateFileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateFileRequest").msgclass
27
+ CreateFileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateFileResponse").msgclass
28
+ CreateStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateStreamRequest").msgclass
29
+ CreateStreamResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateStreamResponse").msgclass
30
+ CreateJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateJobRequest").msgclass
31
+ CreateJobResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateJobResponse").msgclass
32
+ CreateModuleRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateModuleRequest").msgclass
33
+ CreateModuleResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateModuleResponse").msgclass
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -1,8 +1,8 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: Message.ORiN3.Provider/V1/orin3childcreator.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.ChildCreator'
2
+ # Source: Message.ORiN3.Provider/V1/orin3_child_creator.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.ChildCreator'
3
3
 
4
4
  require 'grpc'
5
- require_relative 'orin3childcreator_pb'
5
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_child_creator_pb'
6
6
 
7
7
  module Message
8
8
  module ORiN3
@@ -17,7 +17,7 @@ module Message
17
17
 
18
18
  self.marshal_class_method = :encode
19
19
  self.unmarshal_class_method = :decode
20
- self.service_name = 'ChildCreatorService'
20
+ self.service_name = 'Message.ORiN3.Provider.ChildCreatorService'
21
21
 
22
22
  rpc :CreateVariable, ::Message::ORiN3::Provider::V1::AutoGenerated::ChildCreator::CreateVariableRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::ChildCreator::CreateVariableResponse
23
23
  rpc :CreateEvent, ::Message::ORiN3::Provider::V1::AutoGenerated::ChildCreator::CreateEventRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::ChildCreator::CreateEventResponse
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Message.ORiN3.Provider/V1/orin3_child.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_common_type_pb'
8
+
9
+
10
+ descriptor_data = "\n+Message.ORiN3.Provider/V1/orin3_child.proto\x12\x16Message.ORiN3.Provider\x1a\x31Message.ORiN3.Provider/V1/orin3_common_type.proto\"R\n\rDeleteRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\n\n\x02id\x18\x02 \x01(\x0c\"H\n\x0e\x44\x65leteResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse2g\n\x0c\x43hildService\x12W\n\x06\x44\x65lete\x12%.Message.ORiN3.Provider.DeleteRequest\x1a&.Message.ORiN3.Provider.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("Message.ORiN3.Provider.DeleteRequest").msgclass
22
+ DeleteResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.DeleteResponse").msgclass
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,8 +1,8 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: Message.ORiN3.Provider/V1/orin3child.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.Child'
2
+ # Source: Message.ORiN3.Provider/V1/orin3_child.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.Child'
3
3
 
4
4
  require 'grpc'
5
- require_relative 'orin3child_pb'
5
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_child_pb'
6
6
 
7
7
  module Message
8
8
  module ORiN3
@@ -17,7 +17,7 @@ module Message
17
17
 
18
18
  self.marshal_class_method = :encode
19
19
  self.unmarshal_class_method = :decode
20
- self.service_name = 'ChildService'
20
+ self.service_name = 'Message.ORiN3.Provider.ChildService'
21
21
 
22
22
  rpc :Delete, ::Message::ORiN3::Provider::V1::AutoGenerated::Child::DeleteRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::Child::DeleteResponse
23
23
  end
@@ -0,0 +1,79 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Message.ORiN3.Provider/V1/orin3_common_type.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative './../../Design.ORiN3.Common/V1/orin3_common_pb'
8
+ require_relative './../../Design.ORiN3.Provider/V1/orin3_value_type_pb'
9
+
10
+
11
+ descriptor_data = "\n1Message.ORiN3.Provider/V1/orin3_common_type.proto\x12\x16Message.ORiN3.Provider\x1a)Design.ORiN3.Common/V1/orin3_common.proto\x1a/Design.ORiN3.Provider/V1/orin3_value_type.proto\"!\n\rCommonRequest\x12\x10\n\x08reserved\x18\x01 \x01(\x05\"V\n\x0e\x43ommonResponse\x12\x34\n\x0bresult_code\x18\x01 \x01(\x0e\x32\x1f.Design.ORiN3.Common.ResultCode\x12\x0e\n\x06\x64\x65tail\x18\x02 \x01(\t\"\xbc\x1b\n\nORiN3Value\x12\x33\n\x04type\x18\x01 \x01(\x0e\x32%.Design.ORiN3.Provider.ORiN3ValueType\x12\x31\n\x04\x62ool\x18\n \x01(\x0b\x32!.Message.ORiN3.Provider.ORiN3BoolH\x00\x12<\n\nbool_array\x18\x0b \x01(\x0b\x32&.Message.ORiN3.Provider.ORiN3BoolArrayH\x00\x12\x42\n\rnullable_bool\x18\x0c \x01(\x0b\x32).Message.ORiN3.Provider.ORiN3NullableBoolH\x00\x12M\n\x13nullable_bool_array\x18\r \x01(\x0b\x32..Message.ORiN3.Provider.ORiN3NullableBoolArrayH\x00\x12\x31\n\x04int8\x18\x14 \x01(\x0b\x32!.Message.ORiN3.Provider.ORiN3Int8H\x00\x12<\n\nint8_array\x18\x15 \x01(\x0b\x32&.Message.ORiN3.Provider.ORiN3Int8ArrayH\x00\x12\x42\n\rnullable_int8\x18\x16 \x01(\x0b\x32).Message.ORiN3.Provider.ORiN3NullableInt8H\x00\x12M\n\x13nullable_int8_array\x18\x17 \x01(\x0b\x32..Message.ORiN3.Provider.ORiN3NullableInt8ArrayH\x00\x12\x33\n\x05int16\x18\x1e \x01(\x0b\x32\".Message.ORiN3.Provider.ORiN3Int16H\x00\x12>\n\x0bint16_array\x18\x1f \x01(\x0b\x32\'.Message.ORiN3.Provider.ORiN3Int16ArrayH\x00\x12\x44\n\x0enullable_int16\x18 \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt16H\x00\x12O\n\x14nullable_int16_array\x18! \x01(\x0b\x32/.Message.ORiN3.Provider.ORiN3NullableInt16ArrayH\x00\x12\x33\n\x05int32\x18( \x01(\x0b\x32\".Message.ORiN3.Provider.ORiN3Int32H\x00\x12>\n\x0bint32_array\x18) \x01(\x0b\x32\'.Message.ORiN3.Provider.ORiN3Int32ArrayH\x00\x12\x44\n\x0enullable_int32\x18* \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt32H\x00\x12O\n\x14nullable_int32_array\x18+ \x01(\x0b\x32/.Message.ORiN3.Provider.ORiN3NullableInt32ArrayH\x00\x12\x33\n\x05int64\x18\x32 \x01(\x0b\x32\".Message.ORiN3.Provider.ORiN3Int64H\x00\x12>\n\x0bint64_array\x18\x33 \x01(\x0b\x32\'.Message.ORiN3.Provider.ORiN3Int64ArrayH\x00\x12\x44\n\x0enullable_int64\x18\x34 \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt64H\x00\x12O\n\x14nullable_int64_array\x18\x35 \x01(\x0b\x32/.Message.ORiN3.Provider.ORiN3NullableInt64ArrayH\x00\x12\x33\n\x05uint8\x18< \x01(\x0b\x32\".Message.ORiN3.Provider.ORiN3UInt8H\x00\x12>\n\x0buint8_array\x18= \x01(\x0b\x32\'.Message.ORiN3.Provider.ORiN3UInt8ArrayH\x00\x12\x44\n\x0enullable_uint8\x18> \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableUInt8H\x00\x12O\n\x14nullable_uint8_array\x18? \x01(\x0b\x32/.Message.ORiN3.Provider.ORiN3NullableUInt8ArrayH\x00\x12\x35\n\x06uint16\x18\x46 \x01(\x0b\x32#.Message.ORiN3.Provider.ORiN3UInt16H\x00\x12@\n\x0cuint16_array\x18G \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3UInt16ArrayH\x00\x12\x46\n\x0fnullable_uint16\x18H \x01(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt16H\x00\x12Q\n\x15nullable_uint16_array\x18I \x01(\x0b\x32\x30.Message.ORiN3.Provider.ORiN3NullableUInt16ArrayH\x00\x12\x35\n\x06uint32\x18P \x01(\x0b\x32#.Message.ORiN3.Provider.ORiN3UInt32H\x00\x12@\n\x0cuint32_array\x18Q \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3UInt32ArrayH\x00\x12\x46\n\x0fnullable_uint32\x18R \x01(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt32H\x00\x12Q\n\x15nullable_uint32_array\x18S \x01(\x0b\x32\x30.Message.ORiN3.Provider.ORiN3NullableUInt32ArrayH\x00\x12\x35\n\x06uint64\x18Z \x01(\x0b\x32#.Message.ORiN3.Provider.ORiN3UInt64H\x00\x12@\n\x0cuint64_array\x18[ \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3UInt64ArrayH\x00\x12\x46\n\x0fnullable_uint64\x18\\ \x01(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt64H\x00\x12Q\n\x15nullable_uint64_array\x18] \x01(\x0b\x32\x30.Message.ORiN3.Provider.ORiN3NullableUInt64ArrayH\x00\x12\x33\n\x05\x66loat\x18\x64 \x01(\x0b\x32\".Message.ORiN3.Provider.ORiN3FloatH\x00\x12>\n\x0b\x66loat_array\x18\x65 \x01(\x0b\x32\'.Message.ORiN3.Provider.ORiN3FloatArrayH\x00\x12\x44\n\x0enullable_float\x18\x66 \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableFloatH\x00\x12O\n\x14nullable_float_array\x18g \x01(\x0b\x32/.Message.ORiN3.Provider.ORiN3NullableFloatArrayH\x00\x12\x35\n\x06\x64ouble\x18n \x01(\x0b\x32#.Message.ORiN3.Provider.ORiN3DoubleH\x00\x12@\n\x0c\x64ouble_array\x18o \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3DoubleArrayH\x00\x12\x46\n\x0fnullable_double\x18p \x01(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableDoubleH\x00\x12Q\n\x15nullable_double_array\x18q \x01(\x0b\x32\x30.Message.ORiN3.Provider.ORiN3NullableDoubleArrayH\x00\x12\x35\n\x06string\x18x \x01(\x0b\x32#.Message.ORiN3.Provider.ORiN3StringH\x00\x12@\n\x0cstring_array\x18y \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3StringArrayH\x00\x12:\n\x08\x64\x61tetime\x18\x82\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.ORiN3DateTimeH\x00\x12\x45\n\x0e\x64\x61tetime_array\x18\x83\x01 \x01(\x0b\x32*.Message.ORiN3.Provider.ORiN3DateTimeArrayH\x00\x12K\n\x11nullable_datetime\x18\x84\x01 \x01(\x0b\x32-.Message.ORiN3.Provider.ORiN3NullableDateTimeH\x00\x12V\n\x17nullable_datetime_array\x18\x85\x01 \x01(\x0b\x32\x32.Message.ORiN3.Provider.ORiN3NullableDateTimeArrayH\x00\x12;\n\x06object\x18\x8c\x01 \x01(\x0b\x32(.Message.ORiN3.Provider.ORiN3ValueObjectH\x00\x42\x07\n\x05value\"\x1e\n\tORiN3Bool\x12\x11\n\traw_value\x18\x01 \x01(\x08\"#\n\x0eORiN3BoolArray\x12\x11\n\traw_value\x18\x01 \x03(\x08\"7\n\x11ORiN3NullableBool\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x08\"V\n\x16ORiN3NullableBoolArray\x12<\n\traw_value\x18\x01 \x03(\x0b\x32).Message.ORiN3.Provider.ORiN3NullableBool\"\x1e\n\tORiN3Int8\x12\x11\n\traw_value\x18\x01 \x01(\x05\"#\n\x0eORiN3Int8Array\x12\x11\n\traw_value\x18\x01 \x03(\x05\"7\n\x11ORiN3NullableInt8\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x05\"V\n\x16ORiN3NullableInt8Array\x12<\n\traw_value\x18\x01 \x03(\x0b\x32).Message.ORiN3.Provider.ORiN3NullableInt8\"\x1f\n\nORiN3Int16\x12\x11\n\traw_value\x18\x01 \x01(\x05\"$\n\x0fORiN3Int16Array\x12\x11\n\traw_value\x18\x01 \x03(\x05\"8\n\x12ORiN3NullableInt16\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x05\"X\n\x17ORiN3NullableInt16Array\x12=\n\traw_value\x18\x01 \x03(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt16\"\x1f\n\nORiN3Int32\x12\x11\n\traw_value\x18\x01 \x01(\x05\"$\n\x0fORiN3Int32Array\x12\x11\n\traw_value\x18\x01 \x03(\x05\"8\n\x12ORiN3NullableInt32\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x05\"X\n\x17ORiN3NullableInt32Array\x12=\n\traw_value\x18\x01 \x03(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt32\"\x1f\n\nORiN3Int64\x12\x11\n\traw_value\x18\x01 \x01(\x03\"$\n\x0fORiN3Int64Array\x12\x11\n\traw_value\x18\x01 \x03(\x03\"8\n\x12ORiN3NullableInt64\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x03\"X\n\x17ORiN3NullableInt64Array\x12=\n\traw_value\x18\x01 \x03(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableInt64\"\x1f\n\nORiN3UInt8\x12\x11\n\traw_value\x18\x01 \x01(\r\"$\n\x0fORiN3UInt8Array\x12\x11\n\traw_value\x18\x01 \x03(\r\"8\n\x12ORiN3NullableUInt8\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\r\"X\n\x17ORiN3NullableUInt8Array\x12=\n\traw_value\x18\x01 \x03(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableUInt8\" \n\x0bORiN3UInt16\x12\x11\n\traw_value\x18\x01 \x01(\r\"%\n\x10ORiN3UInt16Array\x12\x11\n\traw_value\x18\x01 \x03(\r\"9\n\x13ORiN3NullableUInt16\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\r\"Z\n\x18ORiN3NullableUInt16Array\x12>\n\traw_value\x18\x01 \x03(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt16\" \n\x0bORiN3UInt32\x12\x11\n\traw_value\x18\x01 \x01(\r\"%\n\x10ORiN3UInt32Array\x12\x11\n\traw_value\x18\x01 \x03(\r\"9\n\x13ORiN3NullableUInt32\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\r\"Z\n\x18ORiN3NullableUInt32Array\x12>\n\traw_value\x18\x01 \x03(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt32\" \n\x0bORiN3UInt64\x12\x11\n\traw_value\x18\x01 \x01(\x04\"%\n\x10ORiN3UInt64Array\x12\x11\n\traw_value\x18\x01 \x03(\x04\"9\n\x13ORiN3NullableUInt64\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x04\"Z\n\x18ORiN3NullableUInt64Array\x12>\n\traw_value\x18\x01 \x03(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableUInt64\"\x1f\n\nORiN3Float\x12\x11\n\traw_value\x18\x01 \x01(\x02\"$\n\x0fORiN3FloatArray\x12\x11\n\traw_value\x18\x01 \x03(\x02\"8\n\x12ORiN3NullableFloat\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x02\"X\n\x17ORiN3NullableFloatArray\x12=\n\traw_value\x18\x01 \x03(\x0b\x32*.Message.ORiN3.Provider.ORiN3NullableFloat\" \n\x0bORiN3Double\x12\x11\n\traw_value\x18\x01 \x01(\x01\"%\n\x10ORiN3DoubleArray\x12\x11\n\traw_value\x18\x01 \x03(\x01\"9\n\x13ORiN3NullableDouble\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x01\"Z\n\x18ORiN3NullableDoubleArray\x12>\n\traw_value\x18\x01 \x03(\x0b\x32+.Message.ORiN3.Provider.ORiN3NullableDouble\"1\n\x0bORiN3String\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\t\"J\n\x10ORiN3StringArray\x12\x36\n\traw_value\x18\x01 \x03(\x0b\x32#.Message.ORiN3.Provider.ORiN3String\"\"\n\rORiN3DateTime\x12\x11\n\traw_value\x18\x01 \x01(\x03\"\'\n\x12ORiN3DateTimeArray\x12\x11\n\traw_value\x18\x01 \x03(\x03\";\n\x15ORiN3NullableDateTime\x12\x0f\n\x07is_null\x18\x01 \x01(\x08\x12\x11\n\traw_value\x18\x02 \x01(\x03\"^\n\x1aORiN3NullableDateTimeArray\x12@\n\traw_value\x18\x01 \x03(\x0b\x32-.Message.ORiN3.Provider.ORiN3NullableDateTime\"%\n\x10ORiN3ValueObject\x12\x11\n\traw_value\x18\x01 \x01(\x0c\x42X\xaa\x02\'Message.ORiN3.Provider.V1.AutoGenerated\xea\x02+Message::ORiN3::Provider::V1::AutoGeneratedb\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+ pool.add_serialized_file(descriptor_data)
15
+
16
+ module Message
17
+ module ORiN3
18
+ module Provider
19
+ module V1
20
+ module AutoGenerated
21
+ CommonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CommonRequest").msgclass
22
+ CommonResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CommonResponse").msgclass
23
+ ORiN3Value = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Value").msgclass
24
+ ORiN3Bool = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Bool").msgclass
25
+ ORiN3BoolArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3BoolArray").msgclass
26
+ ORiN3NullableBool = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableBool").msgclass
27
+ ORiN3NullableBoolArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableBoolArray").msgclass
28
+ ORiN3Int8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int8").msgclass
29
+ ORiN3Int8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int8Array").msgclass
30
+ ORiN3NullableInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt8").msgclass
31
+ ORiN3NullableInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt8Array").msgclass
32
+ ORiN3Int16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int16").msgclass
33
+ ORiN3Int16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int16Array").msgclass
34
+ ORiN3NullableInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt16").msgclass
35
+ ORiN3NullableInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt16Array").msgclass
36
+ ORiN3Int32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int32").msgclass
37
+ ORiN3Int32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int32Array").msgclass
38
+ ORiN3NullableInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt32").msgclass
39
+ ORiN3NullableInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt32Array").msgclass
40
+ ORiN3Int64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int64").msgclass
41
+ ORiN3Int64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Int64Array").msgclass
42
+ ORiN3NullableInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt64").msgclass
43
+ ORiN3NullableInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableInt64Array").msgclass
44
+ ORiN3UInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt8").msgclass
45
+ ORiN3UInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt8Array").msgclass
46
+ ORiN3NullableUInt8 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt8").msgclass
47
+ ORiN3NullableUInt8Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt8Array").msgclass
48
+ ORiN3UInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt16").msgclass
49
+ ORiN3UInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt16Array").msgclass
50
+ ORiN3NullableUInt16 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt16").msgclass
51
+ ORiN3NullableUInt16Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt16Array").msgclass
52
+ ORiN3UInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt32").msgclass
53
+ ORiN3UInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt32Array").msgclass
54
+ ORiN3NullableUInt32 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt32").msgclass
55
+ ORiN3NullableUInt32Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt32Array").msgclass
56
+ ORiN3UInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt64").msgclass
57
+ ORiN3UInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3UInt64Array").msgclass
58
+ ORiN3NullableUInt64 = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt64").msgclass
59
+ ORiN3NullableUInt64Array = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableUInt64Array").msgclass
60
+ ORiN3Float = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Float").msgclass
61
+ ORiN3FloatArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3FloatArray").msgclass
62
+ ORiN3NullableFloat = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableFloat").msgclass
63
+ ORiN3NullableFloatArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableFloatArray").msgclass
64
+ ORiN3Double = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3Double").msgclass
65
+ ORiN3DoubleArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3DoubleArray").msgclass
66
+ ORiN3NullableDouble = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableDouble").msgclass
67
+ ORiN3NullableDoubleArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableDoubleArray").msgclass
68
+ ORiN3String = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3String").msgclass
69
+ ORiN3StringArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3StringArray").msgclass
70
+ ORiN3DateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3DateTime").msgclass
71
+ ORiN3DateTimeArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3DateTimeArray").msgclass
72
+ ORiN3NullableDateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableDateTime").msgclass
73
+ ORiN3NullableDateTimeArray = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3NullableDateTimeArray").msgclass
74
+ ORiN3ValueObject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.ORiN3ValueObject").msgclass
75
+ end
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: Message.ORiN3.Provider/V1/orin3_controller_creator.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_common_type_pb'
8
+
9
+
10
+ descriptor_data = "\n8Message.ORiN3.Provider/V1/orin3_controller_creator.proto\x12\x16Message.ORiN3.Provider\x1a\x31Message.ORiN3.Provider/V1/orin3_common_type.proto\"\x94\x01\n\x17\x43reateControllerRequest\x12\x35\n\x06\x63ommon\x18\x01 \x01(\x0b\x32%.Message.ORiN3.Provider.CommonRequest\x12\x11\n\tparent_id\x18\x02 \x01(\x0c\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x11\n\ttype_name\x18\x04 \x01(\t\x12\x0e\n\x06option\x18\x05 \x01(\t\"x\n\x18\x43reateControllerResponse\x12\x36\n\x06\x63ommon\x18\x01 \x01(\x0b\x32&.Message.ORiN3.Provider.CommonResponse\x12\n\n\x02id\x18\x02 \x01(\x0c\x12\x18\n\x10\x63reated_datetime\x18\x03 \x01(\x03\x32\x91\x01\n\x18\x43ontrollerCreatorService\x12u\n\x10\x43reateController\x12/.Message.ORiN3.Provider.CreateControllerRequest\x1a\x30.Message.ORiN3.Provider.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("Message.ORiN3.Provider.CreateControllerRequest").msgclass
22
+ CreateControllerResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("Message.ORiN3.Provider.CreateControllerResponse").msgclass
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,8 +1,8 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: Message.ORiN3.Provider/V1/orin3controllercreator.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.ControllerCreator'
2
+ # Source: Message.ORiN3.Provider/V1/orin3_controller_creator.proto for package 'Message.ORiN3.Provider.V1.AutoGenerated.ControllerCreator'
3
3
 
4
4
  require 'grpc'
5
- require_relative 'orin3controllercreator_pb'
5
+ require_relative './../../Message.ORiN3.Provider/V1/orin3_controller_creator_pb'
6
6
 
7
7
  module Message
8
8
  module ORiN3
@@ -17,7 +17,7 @@ module Message
17
17
 
18
18
  self.marshal_class_method = :encode
19
19
  self.unmarshal_class_method = :decode
20
- self.service_name = 'ControllerCreatorService'
20
+ self.service_name = 'Message.ORiN3.Provider.ControllerCreatorService'
21
21
 
22
22
  rpc :CreateController, ::Message::ORiN3::Provider::V1::AutoGenerated::ControllerCreator::CreateControllerRequest, ::Message::ORiN3::Provider::V1::AutoGenerated::ControllerCreator::CreateControllerResponse
23
23
  end