viam-sdk 0.25.2__py3-none-linux_armv7l.whl → 0.62.0__py3-none-linux_armv7l.whl

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 (328) hide show
  1. viam/app/_logs.py +3 -6
  2. viam/app/app_client.py +606 -262
  3. viam/app/billing_client.py +60 -18
  4. viam/app/data_client.py +1086 -315
  5. viam/app/ml_training_client.py +51 -48
  6. viam/app/provisioning_client.py +3 -5
  7. viam/app/viam_client.py +105 -11
  8. viam/components/arm/__init__.py +1 -25
  9. viam/components/arm/arm.py +21 -22
  10. viam/components/arm/client.py +27 -30
  11. viam/components/arm/service.py +3 -3
  12. viam/components/audio_in/__init__.py +24 -0
  13. viam/components/audio_in/audio_in.py +74 -0
  14. viam/components/audio_in/client.py +76 -0
  15. viam/components/audio_in/service.py +83 -0
  16. viam/components/audio_input/__init__.py +1 -1
  17. viam/components/audio_input/audio_input.py +4 -3
  18. viam/components/audio_input/client.py +19 -8
  19. viam/components/audio_input/service.py +10 -0
  20. viam/components/audio_out/__init__.py +21 -0
  21. viam/components/audio_out/audio_out.py +72 -0
  22. viam/components/audio_out/client.py +67 -0
  23. viam/components/audio_out/service.py +63 -0
  24. viam/components/base/__init__.py +2 -10
  25. viam/components/base/base.py +20 -20
  26. viam/components/base/client.py +27 -30
  27. viam/components/board/__init__.py +2 -25
  28. viam/components/board/board.py +39 -77
  29. viam/components/board/client.py +39 -73
  30. viam/components/button/__init__.py +10 -0
  31. viam/components/button/button.py +41 -0
  32. viam/components/button/client.py +52 -0
  33. viam/components/button/service.py +46 -0
  34. viam/components/camera/__init__.py +1 -1
  35. viam/components/camera/camera.py +31 -22
  36. viam/components/camera/client.py +30 -20
  37. viam/components/camera/service.py +14 -12
  38. viam/components/component_base.py +10 -7
  39. viam/components/encoder/__init__.py +1 -1
  40. viam/components/encoder/client.py +15 -16
  41. viam/components/encoder/encoder.py +9 -9
  42. viam/components/gantry/__init__.py +1 -13
  43. viam/components/gantry/client.py +41 -28
  44. viam/components/gantry/gantry.py +48 -17
  45. viam/components/gantry/service.py +21 -5
  46. viam/components/generic/__init__.py +1 -1
  47. viam/components/generic/client.py +11 -7
  48. viam/components/generic/generic.py +3 -3
  49. viam/components/gripper/__init__.py +3 -12
  50. viam/components/gripper/client.py +43 -20
  51. viam/components/gripper/gripper.py +87 -12
  52. viam/components/gripper/service.py +32 -3
  53. viam/components/input/__init__.py +1 -14
  54. viam/components/input/client.py +22 -23
  55. viam/components/input/input.py +18 -12
  56. viam/components/motor/__init__.py +1 -21
  57. viam/components/motor/client.py +36 -42
  58. viam/components/motor/motor.py +24 -24
  59. viam/components/movement_sensor/__init__.py +1 -1
  60. viam/components/movement_sensor/client.py +33 -40
  61. viam/components/movement_sensor/movement_sensor.py +12 -12
  62. viam/components/pose_tracker/__init__.py +1 -1
  63. viam/components/pose_tracker/client.py +9 -8
  64. viam/components/pose_tracker/pose_tracker.py +2 -2
  65. viam/components/power_sensor/__init__.py +1 -1
  66. viam/components/power_sensor/client.py +15 -18
  67. viam/components/power_sensor/power_sensor.py +12 -12
  68. viam/components/sensor/__init__.py +1 -1
  69. viam/components/sensor/client.py +9 -8
  70. viam/components/sensor/sensor.py +5 -5
  71. viam/components/servo/__init__.py +1 -13
  72. viam/components/servo/client.py +18 -18
  73. viam/components/servo/servo.py +12 -12
  74. viam/components/switch/__init__.py +10 -0
  75. viam/components/switch/client.py +83 -0
  76. viam/components/switch/service.py +72 -0
  77. viam/components/switch/switch.py +95 -0
  78. viam/gen/app/agent/v1/agent_pb2.py +40 -29
  79. viam/gen/app/agent/v1/agent_pb2.pyi +73 -11
  80. viam/gen/app/cloudslam/v1/cloud_slam_pb2.py +45 -42
  81. viam/gen/app/data/v1/data_grpc.py +98 -2
  82. viam/gen/app/data/v1/data_pb2.py +238 -119
  83. viam/gen/app/data/v1/data_pb2.pyi +804 -34
  84. viam/gen/app/datapipelines/v1/data_pipelines_grpc.py +84 -0
  85. viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +57 -0
  86. viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi +387 -0
  87. viam/gen/app/dataset/v1/dataset_grpc.py +10 -2
  88. viam/gen/app/dataset/v1/dataset_pb2.py +38 -31
  89. viam/gen/app/dataset/v1/dataset_pb2.pyi +36 -1
  90. viam/gen/app/datasync/v1/data_sync_grpc.py +1 -1
  91. viam/gen/app/datasync/v1/data_sync_pb2.py +61 -51
  92. viam/gen/app/datasync/v1/data_sync_pb2.pyi +52 -12
  93. viam/gen/app/mlinference/__init__.py +0 -0
  94. viam/gen/app/mlinference/v1/__init__.py +0 -0
  95. viam/gen/app/mlinference/v1/ml_inference_grpc.py +28 -0
  96. viam/gen/app/mlinference/v1/ml_inference_pb2.py +23 -0
  97. viam/gen/app/mlinference/v1/ml_inference_pb2.pyi +63 -0
  98. viam/gen/app/mltraining/v1/ml_training_grpc.py +18 -2
  99. viam/gen/app/mltraining/v1/ml_training_pb2.py +134 -101
  100. viam/gen/app/mltraining/v1/ml_training_pb2.pyi +193 -7
  101. viam/gen/app/packages/v1/packages_pb2.py +43 -40
  102. viam/gen/app/v1/app_grpc.py +290 -2
  103. viam/gen/app/v1/app_pb2.py +670 -453
  104. viam/gen/app/v1/app_pb2.pyi +3133 -947
  105. viam/gen/app/v1/billing_grpc.py +34 -2
  106. viam/gen/app/v1/billing_pb2.py +94 -35
  107. viam/gen/app/v1/billing_pb2.pyi +314 -61
  108. viam/gen/app/v1/end_user_pb2.py +50 -29
  109. viam/gen/app/v1/robot_pb2.py +120 -111
  110. viam/gen/app/v1/robot_pb2.pyi +137 -15
  111. viam/gen/common/v1/common_pb2.py +86 -66
  112. viam/gen/common/v1/common_pb2.pyi +184 -8
  113. viam/gen/component/arm/v1/arm_grpc.py +18 -2
  114. viam/gen/component/arm/v1/arm_pb2.py +68 -55
  115. viam/gen/component/arm/v1/arm_pb2.pyi +73 -3
  116. viam/gen/component/audioin/__init__.py +0 -0
  117. viam/gen/component/audioin/v1/__init__.py +0 -0
  118. viam/gen/component/audioin/v1/audioin_grpc.py +54 -0
  119. viam/gen/component/audioin/v1/audioin_pb2.py +34 -0
  120. viam/gen/component/audioin/v1/audioin_pb2.pyi +94 -0
  121. viam/gen/component/audioinput/v1/audioinput_pb2.py +35 -32
  122. viam/gen/component/audioout/__init__.py +0 -0
  123. viam/gen/component/audioout/v1/__init__.py +0 -0
  124. viam/gen/component/audioout/v1/audioout_grpc.py +54 -0
  125. viam/gen/component/audioout/v1/audioout_pb2.py +32 -0
  126. viam/gen/component/audioout/v1/audioout_pb2.pyi +47 -0
  127. viam/gen/component/base/v1/base_pb2.py +57 -54
  128. viam/gen/component/board/v1/board_pb2.py +93 -90
  129. viam/gen/component/button/__init__.py +0 -0
  130. viam/gen/component/button/v1/__init__.py +0 -0
  131. viam/gen/component/button/v1/button_grpc.py +38 -0
  132. viam/gen/component/button/v1/button_pb2.py +28 -0
  133. viam/gen/component/button/v1/button_pb2.pyi +39 -0
  134. viam/gen/component/camera/v1/camera_pb2.py +58 -55
  135. viam/gen/component/camera/v1/camera_pb2.pyi +31 -7
  136. viam/gen/component/encoder/v1/encoder_pb2.py +35 -32
  137. viam/gen/component/gantry/v1/gantry_grpc.py +9 -1
  138. viam/gen/component/gantry/v1/gantry_pb2.py +56 -51
  139. viam/gen/component/generic/v1/generic_pb2.py +15 -12
  140. viam/gen/component/gripper/v1/gripper_grpc.py +18 -2
  141. viam/gen/component/gripper/v1/gripper_pb2.py +48 -37
  142. viam/gen/component/gripper/v1/gripper_pb2.pyi +43 -1
  143. viam/gen/component/inputcontroller/v1/input_controller_pb2.py +45 -42
  144. viam/gen/component/motor/v1/motor_pb2.py +77 -74
  145. viam/gen/component/movementsensor/v1/movementsensor_pb2.py +69 -66
  146. viam/gen/component/posetracker/v1/pose_tracker_pb2.py +25 -22
  147. viam/gen/component/powersensor/v1/powersensor_pb2.py +33 -30
  148. viam/gen/component/sensor/v1/sensor_pb2.py +17 -14
  149. viam/gen/component/servo/v1/servo_pb2.py +41 -38
  150. viam/gen/component/switch/__init__.py +0 -0
  151. viam/gen/component/switch/v1/__init__.py +0 -0
  152. viam/gen/component/switch/v1/switch_grpc.py +54 -0
  153. viam/gen/component/switch/v1/switch_pb2.py +40 -0
  154. viam/gen/component/switch/v1/switch_pb2.pyi +116 -0
  155. viam/gen/component/testecho/v1/testecho_pb2.py +29 -26
  156. viam/gen/module/v1/module_pb2.py +36 -33
  157. viam/gen/module/v1/module_pb2.pyi +7 -2
  158. viam/gen/proto/rpc/examples/echo/v1/echo_pb2.py +26 -23
  159. viam/gen/proto/rpc/examples/echoresource/v1/echoresource_pb2.py +23 -20
  160. viam/gen/proto/rpc/v1/auth_pb2.py +27 -24
  161. viam/gen/proto/rpc/webrtc/v1/grpc_pb2.py +35 -32
  162. viam/gen/proto/rpc/webrtc/v1/signaling_pb2.py +62 -57
  163. viam/gen/proto/rpc/webrtc/v1/signaling_pb2.pyi +18 -4
  164. viam/gen/provisioning/v1/provisioning_grpc.py +10 -2
  165. viam/gen/provisioning/v1/provisioning_pb2.py +38 -31
  166. viam/gen/provisioning/v1/provisioning_pb2.pyi +20 -2
  167. viam/gen/robot/v1/robot_grpc.py +61 -29
  168. viam/gen/robot/v1/robot_pb2.py +186 -155
  169. viam/gen/robot/v1/robot_pb2.pyi +278 -59
  170. viam/gen/service/datamanager/v1/data_manager_grpc.py +11 -2
  171. viam/gen/service/datamanager/v1/data_manager_pb2.py +27 -17
  172. viam/gen/service/datamanager/v1/data_manager_pb2.pyi +47 -1
  173. viam/gen/service/discovery/__init__.py +0 -0
  174. viam/gen/service/discovery/v1/__init__.py +0 -0
  175. viam/gen/service/discovery/v1/discovery_grpc.py +39 -0
  176. viam/gen/service/discovery/v1/discovery_pb2.py +29 -0
  177. viam/gen/service/discovery/v1/discovery_pb2.pyi +51 -0
  178. viam/gen/service/generic/v1/generic_pb2.py +13 -10
  179. viam/gen/service/mlmodel/v1/mlmodel_pb2.py +75 -72
  180. viam/gen/service/motion/v1/motion_pb2.py +118 -85
  181. viam/gen/service/motion/v1/motion_pb2.pyi +130 -68
  182. viam/gen/service/navigation/v1/navigation_pb2.py +75 -72
  183. viam/gen/service/sensors/v1/sensors_pb2.py +59 -56
  184. viam/gen/service/shell/v1/shell_pb2.py +35 -32
  185. viam/gen/service/slam/v1/slam_pb2.py +43 -40
  186. viam/gen/service/slam/v1/slam_pb2.pyi +1 -1
  187. viam/gen/service/video/__init__.py +0 -0
  188. viam/gen/service/video/v1/__init__.py +0 -0
  189. viam/gen/service/video/v1/video_grpc.py +39 -0
  190. viam/gen/service/video/v1/video_pb2.py +29 -0
  191. viam/gen/service/video/v1/video_pb2.pyi +72 -0
  192. viam/gen/service/vision/v1/vision_pb2.py +60 -57
  193. viam/gen/service/vision/v1/vision_pb2.pyi +28 -3
  194. viam/gen/service/worldstatestore/__init__.py +0 -0
  195. viam/gen/service/worldstatestore/v1/__init__.py +0 -0
  196. viam/gen/service/worldstatestore/v1/world_state_store_grpc.py +55 -0
  197. viam/gen/service/worldstatestore/v1/world_state_store_pb2.py +39 -0
  198. viam/gen/service/worldstatestore/v1/world_state_store_pb2.pyi +171 -0
  199. viam/gen/stream/v1/stream_grpc.py +17 -1
  200. viam/gen/stream/v1/stream_pb2.py +34 -21
  201. viam/gen/stream/v1/stream_pb2.pyi +79 -1
  202. viam/gen/tagger/v1/tagger_pb2.py +9 -8
  203. viam/logging.py +77 -18
  204. viam/media/audio.py +28 -0
  205. viam/media/utils/pil/__init__.py +7 -3
  206. viam/media/video.py +80 -17
  207. viam/module/module.py +111 -38
  208. viam/module/resource_data_consumer.py +41 -0
  209. viam/module/service.py +9 -1
  210. viam/module/types.py +2 -4
  211. viam/proto/app/__init__.py +199 -0
  212. viam/proto/app/agent/__init__.py +5 -2
  213. viam/proto/app/billing.py +31 -4
  214. viam/proto/app/cloudslam/__init__.py +1 -0
  215. viam/proto/app/data/__init__.py +63 -0
  216. viam/proto/app/datapipelines/__init__.py +56 -0
  217. viam/proto/app/dataset/__init__.py +5 -0
  218. viam/proto/app/datasync/__init__.py +3 -0
  219. viam/proto/app/end_user.py +1 -0
  220. viam/proto/app/mlinference/__init__.py +15 -0
  221. viam/proto/app/mltraining/__init__.py +13 -0
  222. viam/proto/app/packages/__init__.py +1 -0
  223. viam/proto/app/robot.py +7 -0
  224. viam/proto/common/__init__.py +15 -0
  225. viam/proto/component/arm/__init__.py +7 -0
  226. viam/proto/component/audioin/__init__.py +16 -0
  227. viam/proto/component/audioinput/__init__.py +1 -0
  228. viam/proto/component/audioout/__init__.py +15 -0
  229. viam/proto/component/base/__init__.py +1 -0
  230. viam/proto/component/board/__init__.py +1 -0
  231. viam/proto/component/button/__init__.py +15 -0
  232. viam/proto/component/camera/__init__.py +1 -0
  233. viam/proto/component/encoder/__init__.py +1 -0
  234. viam/proto/component/gantry/__init__.py +1 -0
  235. viam/proto/component/generic/__init__.py +1 -0
  236. viam/proto/component/gripper/__init__.py +5 -0
  237. viam/proto/component/inputcontroller/__init__.py +1 -0
  238. viam/proto/component/motor/__init__.py +1 -0
  239. viam/proto/component/movementsensor/__init__.py +1 -0
  240. viam/proto/component/posetracker/__init__.py +1 -0
  241. viam/proto/component/powersensor/__init__.py +1 -0
  242. viam/proto/component/sensor/__init__.py +1 -0
  243. viam/proto/component/servo/__init__.py +1 -0
  244. viam/proto/component/switch/__init__.py +26 -0
  245. viam/proto/component/testecho/__init__.py +1 -0
  246. viam/proto/module/__init__.py +1 -0
  247. viam/proto/provisioning/__init__.py +5 -0
  248. viam/proto/robot/__init__.py +29 -8
  249. viam/proto/rpc/auth.py +1 -0
  250. viam/proto/rpc/examples/echo/__init__.py +1 -0
  251. viam/proto/rpc/examples/echoresource/__init__.py +1 -0
  252. viam/proto/rpc/webrtc/grpc.py +1 -0
  253. viam/proto/rpc/webrtc/signaling.py +3 -0
  254. viam/proto/service/datamanager/__init__.py +9 -1
  255. viam/proto/service/discovery/__init__.py +15 -0
  256. viam/proto/service/generic/__init__.py +1 -0
  257. viam/proto/service/mlmodel/__init__.py +1 -0
  258. viam/proto/service/motion/__init__.py +3 -0
  259. viam/proto/service/navigation/__init__.py +1 -0
  260. viam/proto/service/sensors/__init__.py +1 -0
  261. viam/proto/service/shell/__init__.py +1 -0
  262. viam/proto/service/slam/__init__.py +1 -0
  263. viam/proto/service/video/__init__.py +15 -0
  264. viam/proto/service/vision/__init__.py +1 -0
  265. viam/proto/service/worldstatestore/__init__.py +32 -0
  266. viam/proto/stream/__init__.py +11 -0
  267. viam/py.typed +0 -0
  268. viam/resource/base.py +12 -8
  269. viam/resource/easy_resource.py +24 -13
  270. viam/resource/manager.py +6 -5
  271. viam/resource/registry.py +39 -51
  272. viam/resource/rpc_client_base.py +33 -1
  273. viam/resource/types.py +13 -14
  274. viam/robot/client.py +190 -122
  275. viam/robot/service.py +2 -50
  276. viam/rpc/dial.py +54 -4
  277. viam/rpc/libviam_rust_utils.so +0 -0
  278. viam/rpc/server.py +25 -11
  279. viam/rpc/types.py +2 -4
  280. viam/services/discovery/__init__.py +12 -0
  281. viam/services/discovery/client.py +55 -0
  282. viam/services/discovery/discovery.py +52 -0
  283. viam/services/discovery/service.py +43 -0
  284. viam/services/generic/__init__.py +1 -1
  285. viam/services/generic/client.py +8 -5
  286. viam/services/generic/generic.py +2 -2
  287. viam/services/mlmodel/__init__.py +1 -1
  288. viam/services/mlmodel/client.py +17 -7
  289. viam/services/mlmodel/mlmodel.py +23 -12
  290. viam/services/mlmodel/service.py +5 -2
  291. viam/services/mlmodel/utils.py +11 -1
  292. viam/services/motion/__init__.py +2 -2
  293. viam/services/motion/client.py +32 -32
  294. viam/services/motion/motion.py +66 -62
  295. viam/services/navigation/__init__.py +1 -1
  296. viam/services/navigation/client.py +30 -20
  297. viam/services/navigation/navigation.py +23 -23
  298. viam/services/service_base.py +13 -9
  299. viam/services/service_client_base.py +3 -3
  300. viam/services/slam/__init__.py +1 -1
  301. viam/services/slam/client.py +15 -10
  302. viam/services/slam/slam.py +11 -11
  303. viam/services/vision/__init__.py +1 -1
  304. viam/services/vision/client.py +31 -24
  305. viam/services/vision/service.py +8 -8
  306. viam/services/vision/vision.py +36 -53
  307. viam/services/worldstatestore/__init__.py +18 -0
  308. viam/services/worldstatestore/client.py +94 -0
  309. viam/services/worldstatestore/service.py +55 -0
  310. viam/services/worldstatestore/worldstatestore.py +90 -0
  311. viam/sessions_client.py +115 -46
  312. viam/streams.py +3 -6
  313. viam/utils.py +44 -14
  314. viam/version_metadata.py +4 -0
  315. {viam_sdk-0.25.2.dist-info → viam_sdk-0.62.0.dist-info}/METADATA +27 -28
  316. viam_sdk-0.62.0.dist-info/RECORD +514 -0
  317. {viam_sdk-0.25.2.dist-info → viam_sdk-0.62.0.dist-info}/WHEEL +1 -1
  318. viam/gen/proto/rpc/examples/fileupload/v1/fileupload_grpc.py +0 -27
  319. viam/gen/proto/rpc/examples/fileupload/v1/fileupload_pb2.py +0 -18
  320. viam/gen/proto/rpc/examples/fileupload/v1/fileupload_pb2.pyi +0 -45
  321. viam/proto/rpc/examples/fileupload/__init__.py +0 -18
  322. viam/services/sensors/__init__.py +0 -5
  323. viam/services/sensors/client.py +0 -65
  324. viam_sdk-0.25.2.dist-info/LICENSE +0 -202
  325. viam_sdk-0.25.2.dist-info/RECORD +0 -442
  326. /viam/gen/{proto/rpc/examples/fileupload → app/datapipelines}/__init__.py +0 -0
  327. /viam/gen/{proto/rpc/examples/fileupload → app/datapipelines}/v1/__init__.py +0 -0
  328. /LICENSE → /viam_sdk-0.62.0.dist-info/licenses/LICENSE +0 -0
@@ -0,0 +1,29 @@
1
+ """Generated protocol buffer code."""
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import descriptor_pool as _descriptor_pool
4
+ from google.protobuf import runtime_version as _runtime_version
5
+ from google.protobuf import symbol_database as _symbol_database
6
+ from google.protobuf.internal import builder as _builder
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/discovery/v1/discovery.proto')
8
+ _sym_db = _symbol_database.Default()
9
+ from ....app.v1 import robot_pb2 as app_dot_v1_dot_robot__pb2
10
+ from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
11
+ from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
12
+ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
13
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$service/discovery/v1/discovery.proto\x12\x19viam.service.discovery.v1\x1a\x12app/v1/robot.proto\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto"]\n\x18DiscoverResourcesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"[\n\x19DiscoverResourcesResponse\x12>\n\x0bdiscoveries\x18\x01 \x03(\x0b2\x1c.viam.app.v1.ComponentConfigR\x0bdiscoveries2\xcf\x02\n\x10DiscoveryService\x12\xad\x01\n\x11DiscoverResources\x123.viam.service.discovery.v1.DiscoverResourcesRequest\x1a4.viam.service.discovery.v1.DiscoverResourcesResponse"-\x82\xd3\xe4\x93\x02\'\x12%/viam/api/v1/service/{name}/discovery\x12\x8a\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"8\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/discovery/{name}/do_commandBD\n\x1dcom.viam.service.discovery.v1Z#go.viam.com/api/service/discovey/v1b\x06proto3')
14
+ _globals = globals()
15
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
16
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.discovery.v1.discovery_pb2', _globals)
17
+ if not _descriptor._USE_C_DESCRIPTORS:
18
+ _globals['DESCRIPTOR']._loaded_options = None
19
+ _globals['DESCRIPTOR']._serialized_options = b'\n\x1dcom.viam.service.discovery.v1Z#go.viam.com/api/service/discovey/v1'
20
+ _globals['_DISCOVERYSERVICE'].methods_by_name['DiscoverResources']._loaded_options = None
21
+ _globals['_DISCOVERYSERVICE'].methods_by_name['DiscoverResources']._serialized_options = b"\x82\xd3\xe4\x93\x02'\x12%/viam/api/v1/service/{name}/discovery"
22
+ _globals['_DISCOVERYSERVICE'].methods_by_name['DoCommand']._loaded_options = None
23
+ _globals['_DISCOVERYSERVICE'].methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/discovery/{name}/do_command'
24
+ _globals['_DISCOVERRESOURCESREQUEST']._serialized_start = 171
25
+ _globals['_DISCOVERRESOURCESREQUEST']._serialized_end = 264
26
+ _globals['_DISCOVERRESOURCESRESPONSE']._serialized_start = 266
27
+ _globals['_DISCOVERRESOURCESRESPONSE']._serialized_end = 357
28
+ _globals['_DISCOVERYSERVICE']._serialized_start = 360
29
+ _globals['_DISCOVERYSERVICE']._serialized_end = 695
@@ -0,0 +1,51 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ """
5
+ from .... import app
6
+ import builtins
7
+ import collections.abc
8
+ import google.protobuf.descriptor
9
+ import google.protobuf.internal.containers
10
+ import google.protobuf.message
11
+ import google.protobuf.struct_pb2
12
+ import typing
13
+ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
14
+
15
+ @typing.final
16
+ class DiscoverResourcesRequest(google.protobuf.message.Message):
17
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
18
+ NAME_FIELD_NUMBER: builtins.int
19
+ EXTRA_FIELD_NUMBER: builtins.int
20
+ name: builtins.str
21
+ 'name of the discover service'
22
+
23
+ @property
24
+ def extra(self) -> google.protobuf.struct_pb2.Struct:
25
+ """Additional arguments to the method"""
26
+
27
+ def __init__(self, *, name: builtins.str=..., extra: google.protobuf.struct_pb2.Struct | None=...) -> None:
28
+ ...
29
+
30
+ def HasField(self, field_name: typing.Literal['extra', b'extra']) -> builtins.bool:
31
+ ...
32
+
33
+ def ClearField(self, field_name: typing.Literal['extra', b'extra', 'name', b'name']) -> None:
34
+ ...
35
+ global___DiscoverResourcesRequest = DiscoverResourcesRequest
36
+
37
+ @typing.final
38
+ class DiscoverResourcesResponse(google.protobuf.message.Message):
39
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
40
+ DISCOVERIES_FIELD_NUMBER: builtins.int
41
+
42
+ @property
43
+ def discoveries(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[app.v1.robot_pb2.ComponentConfig]:
44
+ """list of ComponentConfigs that describe the components found by a discover service."""
45
+
46
+ def __init__(self, *, discoveries: collections.abc.Iterable[app.v1.robot_pb2.ComponentConfig] | None=...) -> None:
47
+ ...
48
+
49
+ def ClearField(self, field_name: typing.Literal['discoveries', b'discoveries']) -> None:
50
+ ...
51
+ global___DiscoverResourcesResponse = DiscoverResourcesResponse
@@ -1,18 +1,21 @@
1
1
  """Generated protocol buffer code."""
2
- from google.protobuf.internal import builder as _builder
3
2
  from google.protobuf import descriptor as _descriptor
4
3
  from google.protobuf import descriptor_pool as _descriptor_pool
4
+ from google.protobuf import runtime_version as _runtime_version
5
5
  from google.protobuf import symbol_database as _symbol_database
6
+ from google.protobuf.internal import builder as _builder
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/generic/v1/generic.proto')
6
8
  _sym_db = _symbol_database.Default()
7
9
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
8
10
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
9
11
  DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n service/generic/v1/generic.proto\x12\x17viam.service.generic.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto2\x9b\x01\n\x0eGenericService\x12\x88\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"6\x82\xd3\xe4\x93\x020"./viam/api/v1/service/generic/{name}/do_commandBA\n\x1bcom.viam.service.generic.v1Z"go.viam.com/api/service/generic/v1b\x06proto3')
10
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
11
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.generic.v1.generic_pb2', globals())
12
- if _descriptor._USE_C_DESCRIPTORS == False:
13
- DESCRIPTOR._options = None
14
- DESCRIPTOR._serialized_options = b'\n\x1bcom.viam.service.generic.v1Z"go.viam.com/api/service/generic/v1'
15
- _GENERICSERVICE.methods_by_name['DoCommand']._options = None
16
- _GENERICSERVICE.methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x020"./viam/api/v1/service/generic/{name}/do_command'
17
- _GENERICSERVICE._serialized_start = 116
18
- _GENERICSERVICE._serialized_end = 271
12
+ _globals = globals()
13
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
14
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.generic.v1.generic_pb2', _globals)
15
+ if not _descriptor._USE_C_DESCRIPTORS:
16
+ _globals['DESCRIPTOR']._loaded_options = None
17
+ _globals['DESCRIPTOR']._serialized_options = b'\n\x1bcom.viam.service.generic.v1Z"go.viam.com/api/service/generic/v1'
18
+ _globals['_GENERICSERVICE'].methods_by_name['DoCommand']._loaded_options = None
19
+ _globals['_GENERICSERVICE'].methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x020"./viam/api/v1/service/generic/{name}/do_command'
20
+ _globals['_GENERICSERVICE']._serialized_start = 116
21
+ _globals['_GENERICSERVICE']._serialized_end = 271
@@ -1,80 +1,83 @@
1
1
  """Generated protocol buffer code."""
2
- from google.protobuf.internal import builder as _builder
3
2
  from google.protobuf import descriptor as _descriptor
4
3
  from google.protobuf import descriptor_pool as _descriptor_pool
4
+ from google.protobuf import runtime_version as _runtime_version
5
5
  from google.protobuf import symbol_database as _symbol_database
6
+ from google.protobuf.internal import builder as _builder
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/mlmodel/v1/mlmodel.proto')
6
8
  _sym_db = _symbol_database.Default()
7
9
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
8
10
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
9
11
  DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n service/mlmodel/v1/mlmodel.proto\x12\x17viam.service.mlmodel.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto"\xae\x01\n\x0cInferRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12I\n\rinput_tensors\x18\x03 \x01(\x0b2$.viam.service.mlmodel.v1.FlatTensorsR\x0cinputTensors\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraJ\x04\x08\x02\x10\x03R\ninput_data"{\n\rInferResponse\x12K\n\x0eoutput_tensors\x18\x03 \x01(\x0b2$.viam.service.mlmodel.v1.FlatTensorsR\routputTensorsJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03R\x04nameR\x0boutput_data"T\n\x0fMetadataRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"Q\n\x10MetadataResponse\x12=\n\x08metadata\x18\x01 \x01(\x0b2!.viam.service.mlmodel.v1.MetadataR\x08metadata"\xde\x01\n\x08Metadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12B\n\ninput_info\x18\x04 \x03(\x0b2#.viam.service.mlmodel.v1.TensorInfoR\tinputInfo\x12D\n\x0boutput_info\x18\x05 \x03(\x0b2#.viam.service.mlmodel.v1.TensorInfoR\noutputInfo"\xee\x01\n\nTensorInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x02 \x01(\tR\x0bdescription\x12\x1b\n\tdata_type\x18\x03 \x01(\tR\x08dataType\x12\x14\n\x05shape\x18\x04 \x03(\x05R\x05shape\x12H\n\x10associated_files\x18\x05 \x03(\x0b2\x1d.viam.service.mlmodel.v1.FileR\x0fassociatedFiles\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x7f\n\x04File\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x02 \x01(\tR\x0bdescription\x12A\n\nlabel_type\x18\x03 \x01(\x0e2".viam.service.mlmodel.v1.LabelTypeR\tlabelType"(\n\x12FlatTensorDataInt8\x12\x12\n\x04data\x18\x01 \x01(\x0cR\x04data")\n\x13FlatTensorDataUInt8\x12\x12\n\x04data\x18\x01 \x01(\x0cR\x04data"-\n\x13FlatTensorDataInt16\x12\x16\n\x04data\x18\x01 \x03(\x07B\x02\x10\x01R\x04data".\n\x14FlatTensorDataUInt16\x12\x16\n\x04data\x18\x01 \x03(\x07B\x02\x10\x01R\x04data"-\n\x13FlatTensorDataInt32\x12\x16\n\x04data\x18\x01 \x03(\x0fB\x02\x10\x01R\x04data".\n\x14FlatTensorDataUInt32\x12\x16\n\x04data\x18\x01 \x03(\x07B\x02\x10\x01R\x04data"-\n\x13FlatTensorDataInt64\x12\x16\n\x04data\x18\x01 \x03(\x10B\x02\x10\x01R\x04data".\n\x14FlatTensorDataUInt64\x12\x16\n\x04data\x18\x01 \x03(\x06B\x02\x10\x01R\x04data"-\n\x13FlatTensorDataFloat\x12\x16\n\x04data\x18\x01 \x03(\x02B\x02\x10\x01R\x04data".\n\x14FlatTensorDataDouble\x12\x16\n\x04data\x18\x01 \x03(\x01B\x02\x10\x01R\x04data"\xf3\x06\n\nFlatTensor\x12\x14\n\x05shape\x18\x01 \x03(\x06R\x05shape\x12N\n\x0bint8_tensor\x18\x02 \x01(\x0b2+.viam.service.mlmodel.v1.FlatTensorDataInt8H\x00R\nint8Tensor\x12Q\n\x0cuint8_tensor\x18\x03 \x01(\x0b2,.viam.service.mlmodel.v1.FlatTensorDataUInt8H\x00R\x0buint8Tensor\x12Q\n\x0cint16_tensor\x18\x04 \x01(\x0b2,.viam.service.mlmodel.v1.FlatTensorDataInt16H\x00R\x0bint16Tensor\x12T\n\ruint16_tensor\x18\x05 \x01(\x0b2-.viam.service.mlmodel.v1.FlatTensorDataUInt16H\x00R\x0cuint16Tensor\x12Q\n\x0cint32_tensor\x18\x06 \x01(\x0b2,.viam.service.mlmodel.v1.FlatTensorDataInt32H\x00R\x0bint32Tensor\x12T\n\ruint32_tensor\x18\x07 \x01(\x0b2-.viam.service.mlmodel.v1.FlatTensorDataUInt32H\x00R\x0cuint32Tensor\x12Q\n\x0cint64_tensor\x18\x08 \x01(\x0b2,.viam.service.mlmodel.v1.FlatTensorDataInt64H\x00R\x0bint64Tensor\x12T\n\ruint64_tensor\x18\t \x01(\x0b2-.viam.service.mlmodel.v1.FlatTensorDataUInt64H\x00R\x0cuint64Tensor\x12Q\n\x0cfloat_tensor\x18\n \x01(\x0b2,.viam.service.mlmodel.v1.FlatTensorDataFloatH\x00R\x0bfloatTensor\x12T\n\rdouble_tensor\x18\x0b \x01(\x0b2-.viam.service.mlmodel.v1.FlatTensorDataDoubleH\x00R\x0cdoubleTensorB\x08\n\x06tensor"\xbb\x01\n\x0bFlatTensors\x12K\n\x07tensors\x18\x01 \x03(\x0b21.viam.service.mlmodel.v1.FlatTensors.TensorsEntryR\x07tensors\x1a_\n\x0cTensorsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x129\n\x05value\x18\x02 \x01(\x0b2#.viam.service.mlmodel.v1.FlatTensorR\x05value:\x028\x01*`\n\tLabelType\x12\x1a\n\x16LABEL_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17LABEL_TYPE_TENSOR_VALUE\x10\x01\x12\x1a\n\x16LABEL_TYPE_TENSOR_AXIS\x10\x022\xb4\x02\n\x0eMLModelService\x12\x89\x01\n\x05Infer\x12%.viam.service.mlmodel.v1.InferRequest\x1a&.viam.service.mlmodel.v1.InferResponse"1\x82\xd3\xe4\x93\x02+")/viam/api/v1/service/mlmodel/{name}/infer\x12\x95\x01\n\x08Metadata\x12(.viam.service.mlmodel.v1.MetadataRequest\x1a).viam.service.mlmodel.v1.MetadataResponse"4\x82\xd3\xe4\x93\x02.\x12,/viam/api/v1/service/mlmodel/{name}/metadataBA\n\x1bcom.viam.service.mlmodel.v1Z"go.viam.com/api/service/mlmodel/v1b\x06proto3')
10
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
11
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.mlmodel.v1.mlmodel_pb2', globals())
12
- if _descriptor._USE_C_DESCRIPTORS == False:
13
- DESCRIPTOR._options = None
14
- DESCRIPTOR._serialized_options = b'\n\x1bcom.viam.service.mlmodel.v1Z"go.viam.com/api/service/mlmodel/v1'
15
- _FLATTENSORDATAINT16.fields_by_name['data']._options = None
16
- _FLATTENSORDATAINT16.fields_by_name['data']._serialized_options = b'\x10\x01'
17
- _FLATTENSORDATAUINT16.fields_by_name['data']._options = None
18
- _FLATTENSORDATAUINT16.fields_by_name['data']._serialized_options = b'\x10\x01'
19
- _FLATTENSORDATAINT32.fields_by_name['data']._options = None
20
- _FLATTENSORDATAINT32.fields_by_name['data']._serialized_options = b'\x10\x01'
21
- _FLATTENSORDATAUINT32.fields_by_name['data']._options = None
22
- _FLATTENSORDATAUINT32.fields_by_name['data']._serialized_options = b'\x10\x01'
23
- _FLATTENSORDATAINT64.fields_by_name['data']._options = None
24
- _FLATTENSORDATAINT64.fields_by_name['data']._serialized_options = b'\x10\x01'
25
- _FLATTENSORDATAUINT64.fields_by_name['data']._options = None
26
- _FLATTENSORDATAUINT64.fields_by_name['data']._serialized_options = b'\x10\x01'
27
- _FLATTENSORDATAFLOAT.fields_by_name['data']._options = None
28
- _FLATTENSORDATAFLOAT.fields_by_name['data']._serialized_options = b'\x10\x01'
29
- _FLATTENSORDATADOUBLE.fields_by_name['data']._options = None
30
- _FLATTENSORDATADOUBLE.fields_by_name['data']._serialized_options = b'\x10\x01'
31
- _FLATTENSORS_TENSORSENTRY._options = None
32
- _FLATTENSORS_TENSORSENTRY._serialized_options = b'8\x01'
33
- _MLMODELSERVICE.methods_by_name['Infer']._options = None
34
- _MLMODELSERVICE.methods_by_name['Infer']._serialized_options = b'\x82\xd3\xe4\x93\x02+")/viam/api/v1/service/mlmodel/{name}/infer'
35
- _MLMODELSERVICE.methods_by_name['Metadata']._options = None
36
- _MLMODELSERVICE.methods_by_name['Metadata']._serialized_options = b'\x82\xd3\xe4\x93\x02.\x12,/viam/api/v1/service/mlmodel/{name}/metadata'
37
- _LABELTYPE._serialized_start = 2728
38
- _LABELTYPE._serialized_end = 2824
39
- _INFERREQUEST._serialized_start = 122
40
- _INFERREQUEST._serialized_end = 296
41
- _INFERRESPONSE._serialized_start = 298
42
- _INFERRESPONSE._serialized_end = 421
43
- _METADATAREQUEST._serialized_start = 423
44
- _METADATAREQUEST._serialized_end = 507
45
- _METADATARESPONSE._serialized_start = 509
46
- _METADATARESPONSE._serialized_end = 590
47
- _METADATA._serialized_start = 593
48
- _METADATA._serialized_end = 815
49
- _TENSORINFO._serialized_start = 818
50
- _TENSORINFO._serialized_end = 1056
51
- _FILE._serialized_start = 1058
52
- _FILE._serialized_end = 1185
53
- _FLATTENSORDATAINT8._serialized_start = 1187
54
- _FLATTENSORDATAINT8._serialized_end = 1227
55
- _FLATTENSORDATAUINT8._serialized_start = 1229
56
- _FLATTENSORDATAUINT8._serialized_end = 1270
57
- _FLATTENSORDATAINT16._serialized_start = 1272
58
- _FLATTENSORDATAINT16._serialized_end = 1317
59
- _FLATTENSORDATAUINT16._serialized_start = 1319
60
- _FLATTENSORDATAUINT16._serialized_end = 1365
61
- _FLATTENSORDATAINT32._serialized_start = 1367
62
- _FLATTENSORDATAINT32._serialized_end = 1412
63
- _FLATTENSORDATAUINT32._serialized_start = 1414
64
- _FLATTENSORDATAUINT32._serialized_end = 1460
65
- _FLATTENSORDATAINT64._serialized_start = 1462
66
- _FLATTENSORDATAINT64._serialized_end = 1507
67
- _FLATTENSORDATAUINT64._serialized_start = 1509
68
- _FLATTENSORDATAUINT64._serialized_end = 1555
69
- _FLATTENSORDATAFLOAT._serialized_start = 1557
70
- _FLATTENSORDATAFLOAT._serialized_end = 1602
71
- _FLATTENSORDATADOUBLE._serialized_start = 1604
72
- _FLATTENSORDATADOUBLE._serialized_end = 1650
73
- _FLATTENSOR._serialized_start = 1653
74
- _FLATTENSOR._serialized_end = 2536
75
- _FLATTENSORS._serialized_start = 2539
76
- _FLATTENSORS._serialized_end = 2726
77
- _FLATTENSORS_TENSORSENTRY._serialized_start = 2631
78
- _FLATTENSORS_TENSORSENTRY._serialized_end = 2726
79
- _MLMODELSERVICE._serialized_start = 2827
80
- _MLMODELSERVICE._serialized_end = 3135
12
+ _globals = globals()
13
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
14
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.mlmodel.v1.mlmodel_pb2', _globals)
15
+ if not _descriptor._USE_C_DESCRIPTORS:
16
+ _globals['DESCRIPTOR']._loaded_options = None
17
+ _globals['DESCRIPTOR']._serialized_options = b'\n\x1bcom.viam.service.mlmodel.v1Z"go.viam.com/api/service/mlmodel/v1'
18
+ _globals['_FLATTENSORDATAINT16'].fields_by_name['data']._loaded_options = None
19
+ _globals['_FLATTENSORDATAINT16'].fields_by_name['data']._serialized_options = b'\x10\x01'
20
+ _globals['_FLATTENSORDATAUINT16'].fields_by_name['data']._loaded_options = None
21
+ _globals['_FLATTENSORDATAUINT16'].fields_by_name['data']._serialized_options = b'\x10\x01'
22
+ _globals['_FLATTENSORDATAINT32'].fields_by_name['data']._loaded_options = None
23
+ _globals['_FLATTENSORDATAINT32'].fields_by_name['data']._serialized_options = b'\x10\x01'
24
+ _globals['_FLATTENSORDATAUINT32'].fields_by_name['data']._loaded_options = None
25
+ _globals['_FLATTENSORDATAUINT32'].fields_by_name['data']._serialized_options = b'\x10\x01'
26
+ _globals['_FLATTENSORDATAINT64'].fields_by_name['data']._loaded_options = None
27
+ _globals['_FLATTENSORDATAINT64'].fields_by_name['data']._serialized_options = b'\x10\x01'
28
+ _globals['_FLATTENSORDATAUINT64'].fields_by_name['data']._loaded_options = None
29
+ _globals['_FLATTENSORDATAUINT64'].fields_by_name['data']._serialized_options = b'\x10\x01'
30
+ _globals['_FLATTENSORDATAFLOAT'].fields_by_name['data']._loaded_options = None
31
+ _globals['_FLATTENSORDATAFLOAT'].fields_by_name['data']._serialized_options = b'\x10\x01'
32
+ _globals['_FLATTENSORDATADOUBLE'].fields_by_name['data']._loaded_options = None
33
+ _globals['_FLATTENSORDATADOUBLE'].fields_by_name['data']._serialized_options = b'\x10\x01'
34
+ _globals['_FLATTENSORS_TENSORSENTRY']._loaded_options = None
35
+ _globals['_FLATTENSORS_TENSORSENTRY']._serialized_options = b'8\x01'
36
+ _globals['_MLMODELSERVICE'].methods_by_name['Infer']._loaded_options = None
37
+ _globals['_MLMODELSERVICE'].methods_by_name['Infer']._serialized_options = b'\x82\xd3\xe4\x93\x02+")/viam/api/v1/service/mlmodel/{name}/infer'
38
+ _globals['_MLMODELSERVICE'].methods_by_name['Metadata']._loaded_options = None
39
+ _globals['_MLMODELSERVICE'].methods_by_name['Metadata']._serialized_options = b'\x82\xd3\xe4\x93\x02.\x12,/viam/api/v1/service/mlmodel/{name}/metadata'
40
+ _globals['_LABELTYPE']._serialized_start = 2728
41
+ _globals['_LABELTYPE']._serialized_end = 2824
42
+ _globals['_INFERREQUEST']._serialized_start = 122
43
+ _globals['_INFERREQUEST']._serialized_end = 296
44
+ _globals['_INFERRESPONSE']._serialized_start = 298
45
+ _globals['_INFERRESPONSE']._serialized_end = 421
46
+ _globals['_METADATAREQUEST']._serialized_start = 423
47
+ _globals['_METADATAREQUEST']._serialized_end = 507
48
+ _globals['_METADATARESPONSE']._serialized_start = 509
49
+ _globals['_METADATARESPONSE']._serialized_end = 590
50
+ _globals['_METADATA']._serialized_start = 593
51
+ _globals['_METADATA']._serialized_end = 815
52
+ _globals['_TENSORINFO']._serialized_start = 818
53
+ _globals['_TENSORINFO']._serialized_end = 1056
54
+ _globals['_FILE']._serialized_start = 1058
55
+ _globals['_FILE']._serialized_end = 1185
56
+ _globals['_FLATTENSORDATAINT8']._serialized_start = 1187
57
+ _globals['_FLATTENSORDATAINT8']._serialized_end = 1227
58
+ _globals['_FLATTENSORDATAUINT8']._serialized_start = 1229
59
+ _globals['_FLATTENSORDATAUINT8']._serialized_end = 1270
60
+ _globals['_FLATTENSORDATAINT16']._serialized_start = 1272
61
+ _globals['_FLATTENSORDATAINT16']._serialized_end = 1317
62
+ _globals['_FLATTENSORDATAUINT16']._serialized_start = 1319
63
+ _globals['_FLATTENSORDATAUINT16']._serialized_end = 1365
64
+ _globals['_FLATTENSORDATAINT32']._serialized_start = 1367
65
+ _globals['_FLATTENSORDATAINT32']._serialized_end = 1412
66
+ _globals['_FLATTENSORDATAUINT32']._serialized_start = 1414
67
+ _globals['_FLATTENSORDATAUINT32']._serialized_end = 1460
68
+ _globals['_FLATTENSORDATAINT64']._serialized_start = 1462
69
+ _globals['_FLATTENSORDATAINT64']._serialized_end = 1507
70
+ _globals['_FLATTENSORDATAUINT64']._serialized_start = 1509
71
+ _globals['_FLATTENSORDATAUINT64']._serialized_end = 1555
72
+ _globals['_FLATTENSORDATAFLOAT']._serialized_start = 1557
73
+ _globals['_FLATTENSORDATAFLOAT']._serialized_end = 1602
74
+ _globals['_FLATTENSORDATADOUBLE']._serialized_start = 1604
75
+ _globals['_FLATTENSORDATADOUBLE']._serialized_end = 1650
76
+ _globals['_FLATTENSOR']._serialized_start = 1653
77
+ _globals['_FLATTENSOR']._serialized_end = 2536
78
+ _globals['_FLATTENSORS']._serialized_start = 2539
79
+ _globals['_FLATTENSORS']._serialized_end = 2726
80
+ _globals['_FLATTENSORS_TENSORSENTRY']._serialized_start = 2631
81
+ _globals['_FLATTENSORS_TENSORSENTRY']._serialized_end = 2726
82
+ _globals['_MLMODELSERVICE']._serialized_start = 2827
83
+ _globals['_MLMODELSERVICE']._serialized_end = 3135
@@ -1,94 +1,127 @@
1
1
  """Generated protocol buffer code."""
2
- from google.protobuf.internal import builder as _builder
3
2
  from google.protobuf import descriptor as _descriptor
4
3
  from google.protobuf import descriptor_pool as _descriptor_pool
4
+ from google.protobuf import runtime_version as _runtime_version
5
5
  from google.protobuf import symbol_database as _symbol_database
6
+ from google.protobuf.internal import builder as _builder
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/motion/v1/motion.proto')
6
8
  _sym_db = _symbol_database.Default()
7
9
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
8
10
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
9
11
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
10
12
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
11
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eservice/motion/v1/motion.proto\x12\x16viam.service.motion.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\x82\x03\n\x0bMoveRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0bdestination\x18\x02 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x0bdestination\x12C\n\x0ecomponent_name\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12@\n\x0bworld_state\x18\x04 \x01(\x0b2\x1a.viam.common.v1.WorldStateH\x00R\nworldState\x88\x01\x01\x12J\n\x0bconstraints\x18\x05 \x01(\x0b2#.viam.service.motion.v1.ConstraintsH\x01R\x0bconstraints\x88\x01\x01\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0e\n\x0c_world_stateB\x0e\n\x0c_constraints"(\n\x0cMoveResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success"\xd2\x03\n\x10MoveOnMapRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x126\n\x0bdestination\x18\x02 \x01(\x0b2\x14.viam.common.v1.PoseR\x0bdestination\x12C\n\x0ecomponent_name\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12H\n\x11slam_service_name\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x0fslamServiceName\x12c\n\x14motion_configuration\x18\x05 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x00R\x13motionConfiguration\x88\x01\x01\x126\n\tobstacles\x18\x06 \x03(\x0b2\x18.viam.common.v1.GeometryR\tobstacles\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x17\n\x15_motion_configuration"6\n\x11MoveOnMapResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\x8d\x01\n\x10ObstacleDetector\x12C\n\x0evision_service\x18\x01 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rvisionService\x124\n\x06camera\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x06camera"\x98\x04\n\x13MotionConfiguration\x12W\n\x12obstacle_detectors\x18\x01 \x03(\x0b2(.viam.service.motion.v1.ObstacleDetectorR\x11obstacleDetectors\x12F\n\x1dposition_polling_frequency_hz\x18\x02 \x01(\x01H\x00R\x1apositionPollingFrequencyHz\x88\x01\x01\x12F\n\x1dobstacle_polling_frequency_hz\x18\x03 \x01(\x01H\x01R\x1aobstaclePollingFrequencyHz\x88\x01\x01\x12-\n\x10plan_deviation_m\x18\x04 \x01(\x01H\x02R\x0eplanDeviationM\x88\x01\x01\x12,\n\x10linear_m_per_sec\x18\x05 \x01(\x01H\x03R\rlinearMPerSec\x88\x01\x01\x124\n\x14angular_degs_per_sec\x18\x06 \x01(\x01H\x04R\x11angularDegsPerSec\x88\x01\x01B \n\x1e_position_polling_frequency_hzB \n\x1e_obstacle_polling_frequency_hzB\x13\n\x11_plan_deviation_mB\x13\n\x11_linear_m_per_secB\x17\n\x15_angular_degs_per_sec"\xd4\x04\n\x12MoveOnGlobeRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x0bdestination\x18\x02 \x01(\x0b2\x18.viam.common.v1.GeoPointR\x0bdestination\x12\x1d\n\x07heading\x18\x03 \x01(\x01H\x00R\x07heading\x88\x01\x01\x12C\n\x0ecomponent_name\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12N\n\x14movement_sensor_name\x18\x05 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x12movementSensorName\x129\n\tobstacles\x18\x06 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\tobstacles\x12c\n\x14motion_configuration\x18\x07 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x01R\x13motionConfiguration\x88\x01\x01\x12F\n\x10bounding_regions\x18\x08 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\x0fboundingRegions\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\n\n\x08_headingB\x17\n\x15_motion_configuration"8\n\x13MoveOnGlobeResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\x99\x02\n\x0eGetPoseRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12+\n\x11destination_frame\x18\x03 \x01(\tR\x10destinationFrame\x12R\n\x17supplemental_transforms\x18\x04 \x03(\x0b2\x19.viam.common.v1.TransformR\x16supplementalTransforms\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"B\n\x0fGetPoseResponse\x12/\n\x04pose\x18\x01 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x04pose"\x99\x01\n\x0fStopPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x12\n\x10StopPlanResponse"\x88\x01\n\x17ListPlanStatusesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x11only_active_plans\x18\x02 \x01(\x08R\x0fonlyActivePlans\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"y\n\x18ListPlanStatusesResponse\x12]\n\x16plan_statuses_with_ids\x18\x01 \x03(\x0b2(.viam.service.motion.v1.PlanStatusWithIDR\x13planStatusesWithIds"\xf7\x01\n\x0eGetPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12$\n\x0elast_plan_only\x18\x03 \x01(\x08R\x0clastPlanOnly\x12&\n\x0cexecution_id\x18\x04 \x01(\tH\x00R\x0bexecutionId\x88\x01\x01\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0f\n\r_execution_id"\xc1\x01\n\x0fGetPlanResponse\x12_\n\x18current_plan_with_status\x18\x01 \x01(\x0b2&.viam.service.motion.v1.PlanWithStatusR\x15currentPlanWithStatus\x12M\n\x0ereplan_history\x18\x02 \x03(\x0b2&.viam.service.motion.v1.PlanWithStatusR\rreplanHistory"\xb3\x02\n\x0bConstraints\x12U\n\x11linear_constraint\x18\x01 \x03(\x0b2(.viam.service.motion.v1.LinearConstraintR\x10linearConstraint\x12d\n\x16orientation_constraint\x18\x02 \x03(\x0b2-.viam.service.motion.v1.OrientationConstraintR\x15orientationConstraint\x12g\n\x17collision_specification\x18\x03 \x03(\x0b2..viam.service.motion.v1.CollisionSpecificationR\x16collisionSpecification"\xbb\x01\n\x10LinearConstraint\x12/\n\x11line_tolerance_mm\x18\x01 \x01(\x02H\x00R\x0flineToleranceMm\x88\x01\x01\x12A\n\x1aorientation_tolerance_degs\x18\x02 \x01(\x02H\x01R\x18orientationToleranceDegs\x88\x01\x01B\x14\n\x12_line_tolerance_mmB\x1d\n\x1b_orientation_tolerance_degs"y\n\x15OrientationConstraint\x12A\n\x1aorientation_tolerance_degs\x18\x01 \x01(\x02H\x00R\x18orientationToleranceDegs\x88\x01\x01B\x1d\n\x1b_orientation_tolerance_degs"\xc1\x01\n\x16CollisionSpecification\x12]\n\x06allows\x18\x01 \x03(\x0b2E.viam.service.motion.v1.CollisionSpecification.AllowedFrameCollisionsR\x06allows\x1aH\n\x16AllowedFrameCollisions\x12\x16\n\x06frame1\x18\x01 \x01(\tR\x06frame1\x12\x16\n\x06frame2\x18\x02 \x01(\tR\x06frame2"\xc9\x01\n\x0ePlanWithStatus\x120\n\x04plan\x18\x01 \x01(\x0b2\x1c.viam.service.motion.v1.PlanR\x04plan\x12:\n\x06status\x18\x02 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12I\n\x0estatus_history\x18\x03 \x03(\x0b2".viam.service.motion.v1.PlanStatusR\rstatusHistory"\xcf\x01\n\x10PlanStatusWithID\x12\x17\n\x07plan_id\x18\x01 \x01(\tR\x06planId\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x12:\n\x06status\x18\x04 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status"\xa7\x01\n\nPlanStatus\x127\n\x05state\x18\x01 \x01(\x0e2!.viam.service.motion.v1.PlanStateR\x05state\x128\n\ttimestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\ttimestamp\x12\x1b\n\x06reason\x18\x03 \x01(\tH\x00R\x06reason\x88\x01\x01B\t\n\x07_reason"\xb6\x01\n\x04Plan\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x126\n\x05steps\x18\x04 \x03(\x0b2 .viam.service.motion.v1.PlanStepR\x05steps"\xab\x01\n\x08PlanStep\x12>\n\x04step\x18\x01 \x03(\x0b2*.viam.service.motion.v1.PlanStep.StepEntryR\x04step\x1a_\n\tStepEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b2&.viam.service.motion.v1.ComponentStateR\x05value:\x028\x01":\n\x0eComponentState\x12(\n\x04pose\x18\x01 \x01(\x0b2\x14.viam.common.v1.PoseR\x04pose*\x8c\x01\n\tPlanState\x12\x1a\n\x16PLAN_STATE_UNSPECIFIED\x10\x00\x12\x1a\n\x16PLAN_STATE_IN_PROGRESS\x10\x01\x12\x16\n\x12PLAN_STATE_STOPPED\x10\x02\x12\x18\n\x14PLAN_STATE_SUCCEEDED\x10\x03\x12\x15\n\x11PLAN_STATE_FAILED\x10\x042\xc9\t\n\rMotionService\x12\x82\x01\n\x04Move\x12#.viam.service.motion.v1.MoveRequest\x1a$.viam.service.motion.v1.MoveResponse"/\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move\x12\x98\x01\n\tMoveOnMap\x12(.viam.service.motion.v1.MoveOnMapRequest\x1a).viam.service.motion.v1.MoveOnMapResponse"6\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map\x12\xa0\x01\n\x0bMoveOnGlobe\x12*.viam.service.motion.v1.MoveOnGlobeRequest\x1a+.viam.service.motion.v1.MoveOnGlobeResponse"8\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe\x12\x8b\x01\n\x07GetPose\x12&.viam.service.motion.v1.GetPoseRequest\x1a\'.viam.service.motion.v1.GetPoseResponse"/\x82\xd3\xe4\x93\x02)\x12\'/viam/api/v1/service/motion/{name}/pose\x12\x93\x01\n\x08StopPlan\x12\'.viam.service.motion.v1.StopPlanRequest\x1a(.viam.service.motion.v1.StopPlanResponse"4\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan\x12\xb4\x01\n\x10ListPlanStatuses\x12/.viam.service.motion.v1.ListPlanStatusesRequest\x1a0.viam.service.motion.v1.ListPlanStatusesResponse"=\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses\x12\x8f\x01\n\x07GetPlan\x12&.viam.service.motion.v1.GetPlanRequest\x1a\'.viam.service.motion.v1.GetPlanResponse"3\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan\x12\x87\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"5\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_commandB?\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1b\x06proto3')
12
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
13
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.motion.v1.motion_pb2', globals())
14
- if _descriptor._USE_C_DESCRIPTORS == False:
15
- DESCRIPTOR._options = None
16
- DESCRIPTOR._serialized_options = b'\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1'
17
- _PLANSTEP_STEPENTRY._options = None
18
- _PLANSTEP_STEPENTRY._serialized_options = b'8\x01'
19
- _MOTIONSERVICE.methods_by_name['Move']._options = None
20
- _MOTIONSERVICE.methods_by_name['Move']._serialized_options = b'\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move'
21
- _MOTIONSERVICE.methods_by_name['MoveOnMap']._options = None
22
- _MOTIONSERVICE.methods_by_name['MoveOnMap']._serialized_options = b'\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map'
23
- _MOTIONSERVICE.methods_by_name['MoveOnGlobe']._options = None
24
- _MOTIONSERVICE.methods_by_name['MoveOnGlobe']._serialized_options = b'\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe'
25
- _MOTIONSERVICE.methods_by_name['GetPose']._options = None
26
- _MOTIONSERVICE.methods_by_name['GetPose']._serialized_options = b"\x82\xd3\xe4\x93\x02)\x12'/viam/api/v1/service/motion/{name}/pose"
27
- _MOTIONSERVICE.methods_by_name['StopPlan']._options = None
28
- _MOTIONSERVICE.methods_by_name['StopPlan']._serialized_options = b'\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan'
29
- _MOTIONSERVICE.methods_by_name['ListPlanStatuses']._options = None
30
- _MOTIONSERVICE.methods_by_name['ListPlanStatuses']._serialized_options = b'\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses'
31
- _MOTIONSERVICE.methods_by_name['GetPlan']._options = None
32
- _MOTIONSERVICE.methods_by_name['GetPlan']._serialized_options = b'\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan'
33
- _MOTIONSERVICE.methods_by_name['DoCommand']._options = None
34
- _MOTIONSERVICE.methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_command'
35
- _PLANSTATE._serialized_start = 5530
36
- _PLANSTATE._serialized_end = 5670
37
- _MOVEREQUEST._serialized_start = 176
38
- _MOVEREQUEST._serialized_end = 562
39
- _MOVERESPONSE._serialized_start = 564
40
- _MOVERESPONSE._serialized_end = 604
41
- _MOVEONMAPREQUEST._serialized_start = 607
42
- _MOVEONMAPREQUEST._serialized_end = 1073
43
- _MOVEONMAPRESPONSE._serialized_start = 1075
44
- _MOVEONMAPRESPONSE._serialized_end = 1129
45
- _OBSTACLEDETECTOR._serialized_start = 1132
46
- _OBSTACLEDETECTOR._serialized_end = 1273
47
- _MOTIONCONFIGURATION._serialized_start = 1276
48
- _MOTIONCONFIGURATION._serialized_end = 1812
49
- _MOVEONGLOBEREQUEST._serialized_start = 1815
50
- _MOVEONGLOBEREQUEST._serialized_end = 2411
51
- _MOVEONGLOBERESPONSE._serialized_start = 2413
52
- _MOVEONGLOBERESPONSE._serialized_end = 2469
53
- _GETPOSEREQUEST._serialized_start = 2472
54
- _GETPOSEREQUEST._serialized_end = 2753
55
- _GETPOSERESPONSE._serialized_start = 2755
56
- _GETPOSERESPONSE._serialized_end = 2821
57
- _STOPPLANREQUEST._serialized_start = 2824
58
- _STOPPLANREQUEST._serialized_end = 2977
59
- _STOPPLANRESPONSE._serialized_start = 2979
60
- _STOPPLANRESPONSE._serialized_end = 2997
61
- _LISTPLANSTATUSESREQUEST._serialized_start = 3000
62
- _LISTPLANSTATUSESREQUEST._serialized_end = 3136
63
- _LISTPLANSTATUSESRESPONSE._serialized_start = 3138
64
- _LISTPLANSTATUSESRESPONSE._serialized_end = 3259
65
- _GETPLANREQUEST._serialized_start = 3262
66
- _GETPLANREQUEST._serialized_end = 3509
67
- _GETPLANRESPONSE._serialized_start = 3512
68
- _GETPLANRESPONSE._serialized_end = 3705
69
- _CONSTRAINTS._serialized_start = 3708
70
- _CONSTRAINTS._serialized_end = 4015
71
- _LINEARCONSTRAINT._serialized_start = 4018
72
- _LINEARCONSTRAINT._serialized_end = 4205
73
- _ORIENTATIONCONSTRAINT._serialized_start = 4207
74
- _ORIENTATIONCONSTRAINT._serialized_end = 4328
75
- _COLLISIONSPECIFICATION._serialized_start = 4331
76
- _COLLISIONSPECIFICATION._serialized_end = 4524
77
- _COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS._serialized_start = 4452
78
- _COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS._serialized_end = 4524
79
- _PLANWITHSTATUS._serialized_start = 4527
80
- _PLANWITHSTATUS._serialized_end = 4728
81
- _PLANSTATUSWITHID._serialized_start = 4731
82
- _PLANSTATUSWITHID._serialized_end = 4938
83
- _PLANSTATUS._serialized_start = 4941
84
- _PLANSTATUS._serialized_end = 5108
85
- _PLAN._serialized_start = 5111
86
- _PLAN._serialized_end = 5293
87
- _PLANSTEP._serialized_start = 5296
88
- _PLANSTEP._serialized_end = 5467
89
- _PLANSTEP_STEPENTRY._serialized_start = 5372
90
- _PLANSTEP_STEPENTRY._serialized_end = 5467
91
- _COMPONENTSTATE._serialized_start = 5469
92
- _COMPONENTSTATE._serialized_end = 5527
93
- _MOTIONSERVICE._serialized_start = 5673
94
- _MOTIONSERVICE._serialized_end = 6898
13
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eservice/motion/v1/motion.proto\x12\x16viam.service.motion.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\xc2\x03\n\x0bMoveRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0bdestination\x18\x02 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x0bdestination\x12\\\n\x19component_name_deprecated\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12@\n\x0bworld_state\x18\x04 \x01(\x0b2\x1a.viam.common.v1.WorldStateH\x00R\nworldState\x88\x01\x01\x12J\n\x0bconstraints\x18\x05 \x01(\x0b2#.viam.service.motion.v1.ConstraintsH\x01R\x0bconstraints\x88\x01\x01\x12%\n\x0ecomponent_name\x18\x06 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0e\n\x0c_world_stateB\x0e\n\x0c_constraints"(\n\x0cMoveResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success"\xd7\x04\n\x10MoveOnMapRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x126\n\x0bdestination\x18\x02 \x01(\x0b2\x14.viam.common.v1.PoseR\x0bdestination\x12\\\n\x19component_name_deprecated\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12a\n\x1cslam_service_name_deprecated\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x19slamServiceNameDeprecated\x12c\n\x14motion_configuration\x18\x05 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x00R\x13motionConfiguration\x88\x01\x01\x126\n\tobstacles\x18\x06 \x03(\x0b2\x18.viam.common.v1.GeometryR\tobstacles\x12%\n\x0ecomponent_name\x18\x07 \x01(\tR\rcomponentName\x12*\n\x11slam_service_name\x18\x08 \x01(\tR\x0fslamServiceName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x17\n\x15_motion_configuration"6\n\x11MoveOnMapResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\xfe\x01\n\x10ObstacleDetector\x12\\\n\x19vision_service_deprecated\x18\x01 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17visionServiceDeprecated\x12M\n\x11camera_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x10cameraDeprecated\x12%\n\x0evision_service\x18\x03 \x01(\tR\rvisionService\x12\x16\n\x06camera\x18\x04 \x01(\tR\x06camera"\x98\x04\n\x13MotionConfiguration\x12W\n\x12obstacle_detectors\x18\x01 \x03(\x0b2(.viam.service.motion.v1.ObstacleDetectorR\x11obstacleDetectors\x12F\n\x1dposition_polling_frequency_hz\x18\x02 \x01(\x01H\x00R\x1apositionPollingFrequencyHz\x88\x01\x01\x12F\n\x1dobstacle_polling_frequency_hz\x18\x03 \x01(\x01H\x01R\x1aobstaclePollingFrequencyHz\x88\x01\x01\x12-\n\x10plan_deviation_m\x18\x04 \x01(\x01H\x02R\x0eplanDeviationM\x88\x01\x01\x12,\n\x10linear_m_per_sec\x18\x05 \x01(\x01H\x03R\rlinearMPerSec\x88\x01\x01\x124\n\x14angular_degs_per_sec\x18\x06 \x01(\x01H\x04R\x11angularDegsPerSec\x88\x01\x01B \n\x1e_position_polling_frequency_hzB \n\x1e_obstacle_polling_frequency_hzB\x13\n\x11_plan_deviation_mB\x13\n\x11_linear_m_per_secB\x17\n\x15_angular_degs_per_sec"\xdf\x05\n\x12MoveOnGlobeRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x0bdestination\x18\x02 \x01(\x0b2\x18.viam.common.v1.GeoPointR\x0bdestination\x12\x1d\n\x07heading\x18\x03 \x01(\x01H\x00R\x07heading\x88\x01\x01\x12\\\n\x19component_name_deprecated\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12g\n\x1fmovement_sensor_name_deprecated\x18\x05 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x1cmovementSensorNameDeprecated\x129\n\tobstacles\x18\x06 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\tobstacles\x12c\n\x14motion_configuration\x18\x07 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x01R\x13motionConfiguration\x88\x01\x01\x12F\n\x10bounding_regions\x18\x08 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\x0fboundingRegions\x12%\n\x0ecomponent_name\x18\t \x01(\tR\rcomponentName\x120\n\x14movement_sensor_name\x18\n \x01(\tR\x12movementSensorName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\n\n\x08_headingB\x17\n\x15_motion_configuration"8\n\x13MoveOnGlobeResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\xdd\x02\n\x0eGetPoseRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12+\n\x11destination_frame\x18\x03 \x01(\tR\x10destinationFrame\x12R\n\x17supplemental_transforms\x18\x04 \x03(\x0b2\x19.viam.common.v1.TransformR\x16supplementalTransforms\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra:\x02\x18\x01"F\n\x0fGetPoseResponse\x12/\n\x04pose\x18\x01 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x04pose:\x02\x18\x01"\xd9\x01\n\x0fStopPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12%\n\x0ecomponent_name\x18\x03 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x12\n\x10StopPlanResponse"\x88\x01\n\x17ListPlanStatusesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x11only_active_plans\x18\x02 \x01(\x08R\x0fonlyActivePlans\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"y\n\x18ListPlanStatusesResponse\x12]\n\x16plan_statuses_with_ids\x18\x01 \x03(\x0b2(.viam.service.motion.v1.PlanStatusWithIDR\x13planStatusesWithIds"\xb7\x02\n\x0eGetPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12$\n\x0elast_plan_only\x18\x03 \x01(\x08R\x0clastPlanOnly\x12&\n\x0cexecution_id\x18\x04 \x01(\tH\x00R\x0bexecutionId\x88\x01\x01\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0f\n\r_execution_id"\xc1\x01\n\x0fGetPlanResponse\x12_\n\x18current_plan_with_status\x18\x01 \x01(\x0b2&.viam.service.motion.v1.PlanWithStatusR\x15currentPlanWithStatus\x12M\n\x0ereplan_history\x18\x02 \x03(\x0b2&.viam.service.motion.v1.PlanWithStatusR\rreplanHistory"\x9c\x03\n\x0bConstraints\x12U\n\x11linear_constraint\x18\x01 \x03(\x0b2(.viam.service.motion.v1.LinearConstraintR\x10linearConstraint\x12d\n\x16orientation_constraint\x18\x02 \x03(\x0b2-.viam.service.motion.v1.OrientationConstraintR\x15orientationConstraint\x12g\n\x17collision_specification\x18\x03 \x03(\x0b2..viam.service.motion.v1.CollisionSpecificationR\x16collisionSpecification\x12g\n\x17pseudolinear_constraint\x18\x04 \x03(\x0b2..viam.service.motion.v1.PseudolinearConstraintR\x16pseudolinearConstraint"\xbb\x01\n\x10LinearConstraint\x12/\n\x11line_tolerance_mm\x18\x01 \x01(\x02H\x00R\x0flineToleranceMm\x88\x01\x01\x12A\n\x1aorientation_tolerance_degs\x18\x02 \x01(\x02H\x01R\x18orientationToleranceDegs\x88\x01\x01B\x14\n\x12_line_tolerance_mmB\x1d\n\x1b_orientation_tolerance_degs"\xd3\x01\n\x16PseudolinearConstraint\x127\n\x15line_tolerance_factor\x18\x01 \x01(\x02H\x00R\x13lineToleranceFactor\x88\x01\x01\x12E\n\x1corientation_tolerance_factor\x18\x02 \x01(\x02H\x01R\x1aorientationToleranceFactor\x88\x01\x01B\x18\n\x16_line_tolerance_factorB\x1f\n\x1d_orientation_tolerance_factor"y\n\x15OrientationConstraint\x12A\n\x1aorientation_tolerance_degs\x18\x01 \x01(\x02H\x00R\x18orientationToleranceDegs\x88\x01\x01B\x1d\n\x1b_orientation_tolerance_degs"\xc1\x01\n\x16CollisionSpecification\x12]\n\x06allows\x18\x01 \x03(\x0b2E.viam.service.motion.v1.CollisionSpecification.AllowedFrameCollisionsR\x06allows\x1aH\n\x16AllowedFrameCollisions\x12\x16\n\x06frame1\x18\x01 \x01(\tR\x06frame1\x12\x16\n\x06frame2\x18\x02 \x01(\tR\x06frame2"\xc9\x01\n\x0ePlanWithStatus\x120\n\x04plan\x18\x01 \x01(\x0b2\x1c.viam.service.motion.v1.PlanR\x04plan\x12:\n\x06status\x18\x02 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12I\n\x0estatus_history\x18\x03 \x03(\x0b2".viam.service.motion.v1.PlanStatusR\rstatusHistory"\x8f\x02\n\x10PlanStatusWithID\x12\x17\n\x07plan_id\x18\x01 \x01(\tR\x06planId\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x12:\n\x06status\x18\x04 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName"\xa7\x01\n\nPlanStatus\x127\n\x05state\x18\x01 \x01(\x0e2!.viam.service.motion.v1.PlanStateR\x05state\x128\n\ttimestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\ttimestamp\x12\x1b\n\x06reason\x18\x03 \x01(\tH\x00R\x06reason\x88\x01\x01B\t\n\x07_reason"\xf6\x01\n\x04Plan\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x126\n\x05steps\x18\x04 \x03(\x0b2 .viam.service.motion.v1.PlanStepR\x05steps\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName"\xab\x01\n\x08PlanStep\x12>\n\x04step\x18\x01 \x03(\x0b2*.viam.service.motion.v1.PlanStep.StepEntryR\x04step\x1a_\n\tStepEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b2&.viam.service.motion.v1.ComponentStateR\x05value:\x028\x01":\n\x0eComponentState\x12(\n\x04pose\x18\x01 \x01(\x0b2\x14.viam.common.v1.PoseR\x04pose*\x8c\x01\n\tPlanState\x12\x1a\n\x16PLAN_STATE_UNSPECIFIED\x10\x00\x12\x1a\n\x16PLAN_STATE_IN_PROGRESS\x10\x01\x12\x16\n\x12PLAN_STATE_STOPPED\x10\x02\x12\x18\n\x14PLAN_STATE_SUCCEEDED\x10\x03\x12\x15\n\x11PLAN_STATE_FAILED\x10\x042\xcc\t\n\rMotionService\x12\x82\x01\n\x04Move\x12#.viam.service.motion.v1.MoveRequest\x1a$.viam.service.motion.v1.MoveResponse"/\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move\x12\x98\x01\n\tMoveOnMap\x12(.viam.service.motion.v1.MoveOnMapRequest\x1a).viam.service.motion.v1.MoveOnMapResponse"6\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map\x12\xa0\x01\n\x0bMoveOnGlobe\x12*.viam.service.motion.v1.MoveOnGlobeRequest\x1a+.viam.service.motion.v1.MoveOnGlobeResponse"8\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe\x12\x8e\x01\n\x07GetPose\x12&.viam.service.motion.v1.GetPoseRequest\x1a\'.viam.service.motion.v1.GetPoseResponse"2\x88\x02\x01\x82\xd3\xe4\x93\x02)\x12\'/viam/api/v1/service/motion/{name}/pose\x12\x93\x01\n\x08StopPlan\x12\'.viam.service.motion.v1.StopPlanRequest\x1a(.viam.service.motion.v1.StopPlanResponse"4\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan\x12\xb4\x01\n\x10ListPlanStatuses\x12/.viam.service.motion.v1.ListPlanStatusesRequest\x1a0.viam.service.motion.v1.ListPlanStatusesResponse"=\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses\x12\x8f\x01\n\x07GetPlan\x12&.viam.service.motion.v1.GetPlanRequest\x1a\'.viam.service.motion.v1.GetPlanResponse"3\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan\x12\x87\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"5\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_commandB?\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1b\x06proto3')
14
+ _globals = globals()
15
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
16
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.motion.v1.motion_pb2', _globals)
17
+ if not _descriptor._USE_C_DESCRIPTORS:
18
+ _globals['DESCRIPTOR']._loaded_options = None
19
+ _globals['DESCRIPTOR']._serialized_options = b'\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1'
20
+ _globals['_MOVEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
21
+ _globals['_MOVEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
22
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
23
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
24
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['slam_service_name_deprecated']._loaded_options = None
25
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['slam_service_name_deprecated']._serialized_options = b'\x18\x01'
26
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['vision_service_deprecated']._loaded_options = None
27
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['vision_service_deprecated']._serialized_options = b'\x18\x01'
28
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['camera_deprecated']._loaded_options = None
29
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['camera_deprecated']._serialized_options = b'\x18\x01'
30
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
31
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
32
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['movement_sensor_name_deprecated']._loaded_options = None
33
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['movement_sensor_name_deprecated']._serialized_options = b'\x18\x01'
34
+ _globals['_GETPOSEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
35
+ _globals['_GETPOSEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
36
+ _globals['_GETPOSEREQUEST']._loaded_options = None
37
+ _globals['_GETPOSEREQUEST']._serialized_options = b'\x18\x01'
38
+ _globals['_GETPOSERESPONSE']._loaded_options = None
39
+ _globals['_GETPOSERESPONSE']._serialized_options = b'\x18\x01'
40
+ _globals['_STOPPLANREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
41
+ _globals['_STOPPLANREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
42
+ _globals['_GETPLANREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
43
+ _globals['_GETPLANREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
44
+ _globals['_PLANSTATUSWITHID'].fields_by_name['component_name_deprecated']._loaded_options = None
45
+ _globals['_PLANSTATUSWITHID'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
46
+ _globals['_PLAN'].fields_by_name['component_name_deprecated']._loaded_options = None
47
+ _globals['_PLAN'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
48
+ _globals['_PLANSTEP_STEPENTRY']._loaded_options = None
49
+ _globals['_PLANSTEP_STEPENTRY']._serialized_options = b'8\x01'
50
+ _globals['_MOTIONSERVICE'].methods_by_name['Move']._loaded_options = None
51
+ _globals['_MOTIONSERVICE'].methods_by_name['Move']._serialized_options = b'\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move'
52
+ _globals['_MOTIONSERVICE'].methods_by_name['MoveOnMap']._loaded_options = None
53
+ _globals['_MOTIONSERVICE'].methods_by_name['MoveOnMap']._serialized_options = b'\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map'
54
+ _globals['_MOTIONSERVICE'].methods_by_name['MoveOnGlobe']._loaded_options = None
55
+ _globals['_MOTIONSERVICE'].methods_by_name['MoveOnGlobe']._serialized_options = b'\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe'
56
+ _globals['_MOTIONSERVICE'].methods_by_name['GetPose']._loaded_options = None
57
+ _globals['_MOTIONSERVICE'].methods_by_name['GetPose']._serialized_options = b"\x88\x02\x01\x82\xd3\xe4\x93\x02)\x12'/viam/api/v1/service/motion/{name}/pose"
58
+ _globals['_MOTIONSERVICE'].methods_by_name['StopPlan']._loaded_options = None
59
+ _globals['_MOTIONSERVICE'].methods_by_name['StopPlan']._serialized_options = b'\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan'
60
+ _globals['_MOTIONSERVICE'].methods_by_name['ListPlanStatuses']._loaded_options = None
61
+ _globals['_MOTIONSERVICE'].methods_by_name['ListPlanStatuses']._serialized_options = b'\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses'
62
+ _globals['_MOTIONSERVICE'].methods_by_name['GetPlan']._loaded_options = None
63
+ _globals['_MOTIONSERVICE'].methods_by_name['GetPlan']._serialized_options = b'\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan'
64
+ _globals['_MOTIONSERVICE'].methods_by_name['DoCommand']._loaded_options = None
65
+ _globals['_MOTIONSERVICE'].methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_command'
66
+ _globals['_PLANSTATE']._serialized_start = 6626
67
+ _globals['_PLANSTATE']._serialized_end = 6766
68
+ _globals['_MOVEREQUEST']._serialized_start = 176
69
+ _globals['_MOVEREQUEST']._serialized_end = 626
70
+ _globals['_MOVERESPONSE']._serialized_start = 628
71
+ _globals['_MOVERESPONSE']._serialized_end = 668
72
+ _globals['_MOVEONMAPREQUEST']._serialized_start = 671
73
+ _globals['_MOVEONMAPREQUEST']._serialized_end = 1270
74
+ _globals['_MOVEONMAPRESPONSE']._serialized_start = 1272
75
+ _globals['_MOVEONMAPRESPONSE']._serialized_end = 1326
76
+ _globals['_OBSTACLEDETECTOR']._serialized_start = 1329
77
+ _globals['_OBSTACLEDETECTOR']._serialized_end = 1583
78
+ _globals['_MOTIONCONFIGURATION']._serialized_start = 1586
79
+ _globals['_MOTIONCONFIGURATION']._serialized_end = 2122
80
+ _globals['_MOVEONGLOBEREQUEST']._serialized_start = 2125
81
+ _globals['_MOVEONGLOBEREQUEST']._serialized_end = 2860
82
+ _globals['_MOVEONGLOBERESPONSE']._serialized_start = 2862
83
+ _globals['_MOVEONGLOBERESPONSE']._serialized_end = 2918
84
+ _globals['_GETPOSEREQUEST']._serialized_start = 2921
85
+ _globals['_GETPOSEREQUEST']._serialized_end = 3270
86
+ _globals['_GETPOSERESPONSE']._serialized_start = 3272
87
+ _globals['_GETPOSERESPONSE']._serialized_end = 3342
88
+ _globals['_STOPPLANREQUEST']._serialized_start = 3345
89
+ _globals['_STOPPLANREQUEST']._serialized_end = 3562
90
+ _globals['_STOPPLANRESPONSE']._serialized_start = 3564
91
+ _globals['_STOPPLANRESPONSE']._serialized_end = 3582
92
+ _globals['_LISTPLANSTATUSESREQUEST']._serialized_start = 3585
93
+ _globals['_LISTPLANSTATUSESREQUEST']._serialized_end = 3721
94
+ _globals['_LISTPLANSTATUSESRESPONSE']._serialized_start = 3723
95
+ _globals['_LISTPLANSTATUSESRESPONSE']._serialized_end = 3844
96
+ _globals['_GETPLANREQUEST']._serialized_start = 3847
97
+ _globals['_GETPLANREQUEST']._serialized_end = 4158
98
+ _globals['_GETPLANRESPONSE']._serialized_start = 4161
99
+ _globals['_GETPLANRESPONSE']._serialized_end = 4354
100
+ _globals['_CONSTRAINTS']._serialized_start = 4357
101
+ _globals['_CONSTRAINTS']._serialized_end = 4769
102
+ _globals['_LINEARCONSTRAINT']._serialized_start = 4772
103
+ _globals['_LINEARCONSTRAINT']._serialized_end = 4959
104
+ _globals['_PSEUDOLINEARCONSTRAINT']._serialized_start = 4962
105
+ _globals['_PSEUDOLINEARCONSTRAINT']._serialized_end = 5173
106
+ _globals['_ORIENTATIONCONSTRAINT']._serialized_start = 5175
107
+ _globals['_ORIENTATIONCONSTRAINT']._serialized_end = 5296
108
+ _globals['_COLLISIONSPECIFICATION']._serialized_start = 5299
109
+ _globals['_COLLISIONSPECIFICATION']._serialized_end = 5492
110
+ _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_start = 5420
111
+ _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_end = 5492
112
+ _globals['_PLANWITHSTATUS']._serialized_start = 5495
113
+ _globals['_PLANWITHSTATUS']._serialized_end = 5696
114
+ _globals['_PLANSTATUSWITHID']._serialized_start = 5699
115
+ _globals['_PLANSTATUSWITHID']._serialized_end = 5970
116
+ _globals['_PLANSTATUS']._serialized_start = 5973
117
+ _globals['_PLANSTATUS']._serialized_end = 6140
118
+ _globals['_PLAN']._serialized_start = 6143
119
+ _globals['_PLAN']._serialized_end = 6389
120
+ _globals['_PLANSTEP']._serialized_start = 6392
121
+ _globals['_PLANSTEP']._serialized_end = 6563
122
+ _globals['_PLANSTEP_STEPENTRY']._serialized_start = 6468
123
+ _globals['_PLANSTEP_STEPENTRY']._serialized_end = 6563
124
+ _globals['_COMPONENTSTATE']._serialized_start = 6565
125
+ _globals['_COMPONENTSTATE']._serialized_end = 6623
126
+ _globals['_MOTIONSERVICE']._serialized_start = 6769
127
+ _globals['_MOTIONSERVICE']._serialized_end = 7997