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
@@ -1,8 +1,10 @@
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, '', 'app/v1/app.proto')
6
8
  _sym_db = _symbol_database.Default()
7
9
  from ...app.mltraining.v1 import ml_training_pb2 as app_dot_mltraining_dot_v1_dot_ml__training__pb2
8
10
  from ...app.packages.v1 import packages_pb2 as app_dot_packages_dot_v1_dot_packages__pb2
@@ -10,455 +12,670 @@ from ...common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
10
12
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
11
13
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
12
14
  from ...tagger.v1 import tagger_pb2 as tagger_dot_v1_dot_tagger__pb2
13
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10app/v1/app.proto\x12\x0bviam.app.v1\x1a#app/mltraining/v1/ml_training.proto\x1a\x1eapp/packages/v1/packages.proto\x1a\x16common/v1/common.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x16tagger/v1/tagger.proto"\xec\x02\n\x05Robot\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12@\n\x08location\x18\x03 \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"location" json:"location"R\x08location\x12g\n\x0blast_access\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampB*\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"R\nlastAccess\x12Q\n\ncreated_on\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn"\xd3\x07\n\tRobotPart\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12?\n\x08dns_name\x18\n \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"dns_name" json:"dns_name"R\x07dnsName\x12B\n\x06secret\x18\x03 \x01(\tB*\x9a\x84\x9e\x03%bson:"secret" json:"secret,omitempty"R\x06secret\x124\n\x05robot\x18\x04 \x01(\tB\x1e\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"R\x05robot\x12A\n\x0blocation_id\x18\x0c \x01(\tB \x9a\x84\x9e\x03\x1bbson:"location_id" json:"-"R\nlocationId\x12b\n\x0crobot_config\x18\x05 \x01(\x0b2\x17.google.protobuf.StructB&\x9a\x84\x9e\x03!bson:"config" json:"robot_config"R\x0brobotConfig\x12g\n\x0blast_access\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampB*\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"R\nlastAccess\x12\x7f\n\x12user_supplied_info\x18\x07 \x01(\x0b2\x17.google.protobuf.StructB8\x9a\x84\x9e\x033bson:"user_supplied_info" json:"user_supplied_info"R\x10userSuppliedInfo\x12C\n\tmain_part\x18\x08 \x01(\x08B&\x9a\x84\x9e\x03!bson:"main_part" json:"main_part"R\x08mainPart\x12\x12\n\x04fqdn\x18\t \x01(\tR\x04fqdn\x12\x1d\n\nlocal_fqdn\x18\x0b \x01(\tR\tlocalFqdn\x12Q\n\ncreated_on\x18\r \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn\x12H\n\x07secrets\x18\x0e \x03(\x0b2\x19.viam.app.v1.SharedSecretB\x13\x9a\x84\x9e\x03\x0ebson:"secrets"R\x07secrets"\xf8\x02\n\x15RobotPartHistoryEntry\x120\n\x04part\x18\x01 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"part" json:"part"R\x04part\x124\n\x05robot\x18\x02 \x01(\tB\x1e\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"R\x05robot\x12L\n\x04when\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampB\x1c\x9a\x84\x9e\x03\x17bson:"when" json:"when"R\x04when\x12D\n\x03old\x18\x04 \x01(\x0b2\x16.viam.app.v1.RobotPartB\x1a\x9a\x84\x9e\x03\x15bson:"old" json:"old"R\x03old\x12c\n\tedited_by\x18\x05 \x01(\x0b2\x1e.viam.app.v1.AuthenticatorInfoB&\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"R\x08editedBy"\x85\x01\n\x11AuthenticatorInfo\x123\n\x04type\x18\x01 \x01(\x0e2\x1f.viam.app.v1.AuthenticationTypeR\x04type\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12%\n\x0eis_deactivated\x18\x03 \x01(\x08R\risDeactivated"\x1a\n\x18ListOrganizationsRequest"\xde\x01\n\x0cOrganization\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12)\n\x10public_namespace\x18\x04 \x01(\tR\x0fpublicNamespace\x12%\n\x0edefault_region\x18\x05 \x01(\tR\rdefaultRegion\x12\x15\n\x03cid\x18\x06 \x01(\tH\x00R\x03cid\x88\x01\x01B\x06\n\x04_cid"\xcf\x01\n\x12OrganizationMember\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId\x12\x16\n\x06emails\x18\x02 \x03(\tR\x06emails\x129\n\ndate_added\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tdateAdded\x12>\n\nlast_login\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampH\x00R\tlastLogin\x88\x01\x01B\r\n\x0b_last_login"\\\n\x19ListOrganizationsResponse\x12?\n\rorganizations\x18\x01 \x03(\x0b2\x19.viam.app.v1.OrganizationR\rorganizations"\xd2\x01\n\x12OrganizationInvite\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12B\n\x0eauthorizations\x18\x04 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations"/\n\x19CreateOrganizationRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"[\n\x1aCreateOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"A\n\x16GetOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"X\n\x17GetOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"X\n+GetOrganizationNamespaceAvailabilityRequest\x12)\n\x10public_namespace\x18\x01 \x01(\tR\x0fpublicNamespace"L\n,GetOrganizationNamespaceAvailabilityResponse\x12\x1c\n\tavailable\x18\x01 \x01(\x08R\tavailable"\xf2\x01\n\x19UpdateOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x12.\n\x10public_namespace\x18\x03 \x01(\tH\x01R\x0fpublicNamespace\x88\x01\x01\x12\x1b\n\x06region\x18\x04 \x01(\tH\x02R\x06region\x88\x01\x01\x12\x15\n\x03cid\x18\x05 \x01(\tH\x03R\x03cid\x88\x01\x01B\x07\n\x05_nameB\x13\n\x11_public_namespaceB\t\n\x07_regionB\x06\n\x04_cid"[\n\x1aUpdateOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"D\n\x19DeleteOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"\x1c\n\x1aDeleteOrganizationResponse"I\n\x1eListOrganizationMembersRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"\xc0\x01\n\x1fListOrganizationMembersResponse\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x129\n\x07members\x18\x02 \x03(\x0b2\x1f.viam.app.v1.OrganizationMemberR\x07members\x129\n\x07invites\x18\x03 \x03(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x07invites"\xeb\x01\n\x1fCreateOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x12B\n\x0eauthorizations\x18\x03 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations\x12/\n\x11send_email_invite\x18\x04 \x01(\x08H\x00R\x0fsendEmailInvite\x88\x01\x01B\x14\n\x12_send_email_invite"[\n CreateOrganizationInviteResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"\x8a\x02\n-UpdateOrganizationInviteAuthorizationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x12I\n\x12add_authorizations\x18\x03 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x11addAuthorizations\x12O\n\x15remove_authorizations\x18\x04 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x14removeAuthorizations"i\n.UpdateOrganizationInviteAuthorizationsResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"`\n\x1fDeleteOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email""\n DeleteOrganizationInviteResponse"`\n\x1fResendOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email"[\n ResendOrganizationInviteResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"c\n\x1fDeleteOrganizationMemberRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId""\n DeleteOrganizationMemberResponse":\n\x14OrganizationIdentity\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"Y\n\x14LocationOrganization\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x18\n\x07primary\x18\x02 \x01(\x08R\x07primary"\x80\x01\n\x0cLocationAuth\x12\x1a\n\x06secret\x18\x01 \x01(\tB\x02\x18\x01R\x06secret\x12\x1f\n\x0blocation_id\x18\x02 \x01(\tR\nlocationId\x123\n\x07secrets\x18\x03 \x03(\x0b2\x19.viam.app.v1.SharedSecretR\x07secrets"\'\n\rStorageConfig\x12\x16\n\x06region\x18\x01 \x01(\tR\x06region"\xe4\x02\n\x08Location\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12,\n\x12parent_location_id\x18\x04 \x01(\tR\x10parentLocationId\x12-\n\x04auth\x18\x05 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth\x12G\n\rorganizations\x18\x06 \x03(\x0b2!.viam.app.v1.LocationOrganizationR\rorganizations\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12\x1f\n\x0brobot_count\x18\x07 \x01(\x05R\nrobotCount\x122\n\x06config\x18\x08 \x01(\x0b2\x1a.viam.app.v1.StorageConfigR\x06config"\xd0\x02\n\x0cSharedSecret\x12\x1e\n\x02id\x18\x01 \x01(\tB\x0e\x9a\x84\x9e\x03\tbson:"id"R\x02id\x12*\n\x06secret\x18\x02 \x01(\tB\x12\x9a\x84\x9e\x03\rbson:"secret"R\x06secret\x12c\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampB(\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"R\tcreatedOn\x12H\n\x05state\x18\x04 \x01(\x0e2\x1f.viam.app.v1.SharedSecret.StateB\x11\x9a\x84\x9e\x03\x0cbson:"state"R\x05state"E\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x11\n\rSTATE_ENABLED\x10\x01\x12\x12\n\x0eSTATE_DISABLED\x10\x02"\x9e\x01\n\x15CreateLocationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x121\n\x12parent_location_id\x18\x03 \x01(\tH\x00R\x10parentLocationId\x88\x01\x01B\x15\n\x13_parent_location_id"K\n\x16CreateLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"5\n\x12GetLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"H\n\x13GetLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"\xcc\x01\n\x15UpdateLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x121\n\x12parent_location_id\x18\x03 \x01(\tH\x01R\x10parentLocationId\x88\x01\x01\x12\x1b\n\x06region\x18\x04 \x01(\tH\x02R\x06region\x88\x01\x01B\x07\n\x05_nameB\x15\n\x13_parent_location_idB\t\n\x07_region"K\n\x16UpdateLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"8\n\x15DeleteLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"\x18\n\x16DeleteLocationResponse"N\n+GetOrganizationsWithAccessToLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"\x8a\x01\n,GetOrganizationsWithAccessToLocationResponse\x12Z\n\x17organization_identities\x18\x01 \x03(\x0b2!.viam.app.v1.OrganizationIdentityR\x16organizationIdentities"?\n\x14ListLocationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"`\n\x14ShareLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId"\x17\n\x15ShareLocationResponse"b\n\x16UnshareLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId"\x19\n\x17UnshareLocationResponse"L\n\x15ListLocationsResponse\x123\n\tlocations\x18\x01 \x03(\x0b2\x15.viam.app.v1.LocationR\tlocations">\n\x1bCreateLocationSecretRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"M\n\x1cCreateLocationSecretResponse\x12-\n\x04auth\x18\x01 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth"[\n\x1bDeleteLocationSecretRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\x1b\n\tsecret_id\x18\x02 \x01(\tR\x08secretId"\x1e\n\x1cDeleteLocationSecretResponse"6\n\x13LocationAuthRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"E\n\x14LocationAuthResponse\x12-\n\x04auth\x18\x01 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth"!\n\x0fGetRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"4\n\x1bGetRoverRentalRobotsRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x9a\x01\n\x10RoverRentalRobot\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId\x12\x1f\n\x0blocation_id\x18\x02 \x01(\tR\nlocationId\x12\x1d\n\nrobot_name\x18\x03 \x01(\tR\trobotName\x12+\n\x12robot_main_part_id\x18\x04 \x01(\tR\x0frobotMainPartId"U\n\x1cGetRoverRentalRobotsResponse\x125\n\x06robots\x18\x01 \x03(\x0b2\x1d.viam.app.v1.RoverRentalRobotR\x06robots"<\n\x10GetRobotResponse\x12(\n\x05robot\x18\x01 \x01(\x0b2\x12.viam.app.v1.RobotR\x05robot"1\n\x14GetRobotPartsRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId"E\n\x15GetRobotPartsResponse\x12,\n\x05parts\x18\x01 \x03(\x0b2\x16.viam.app.v1.RobotPartR\x05parts"%\n\x13GetRobotPartRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"c\n\x14GetRobotPartResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part\x12\x1f\n\x0bconfig_json\x18\x02 \x01(\tR\nconfigJson"\xc1\x01\n\x17GetRobotPartLogsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12#\n\x0berrors_only\x18\x02 \x01(\x08B\x02\x18\x01R\nerrorsOnly\x12\x1b\n\x06filter\x18\x03 \x01(\tH\x00R\x06filter\x88\x01\x01\x12"\n\npage_token\x18\x04 \x01(\tH\x01R\tpageToken\x88\x01\x01\x12\x16\n\x06levels\x18\x05 \x03(\tR\x06levelsB\t\n\x07_filterB\r\n\x0b_page_token"p\n\x18GetRobotPartLogsResponse\x12,\n\x04logs\x18\x01 \x03(\x0b2\x18.viam.common.v1.LogEntryR\x04logs\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken"s\n\x18TailRobotPartLogsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1f\n\x0berrors_only\x18\x02 \x01(\x08R\nerrorsOnly\x12\x1b\n\x06filter\x18\x03 \x01(\tH\x00R\x06filter\x88\x01\x01B\t\n\x07_filter"I\n\x19TailRobotPartLogsResponse\x12,\n\x04logs\x18\x01 \x03(\x0b2\x18.viam.common.v1.LogEntryR\x04logs",\n\x1aGetRobotPartHistoryRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"[\n\x1bGetRobotPartHistoryResponse\x12<\n\x07history\x18\x01 \x03(\x0b2".viam.app.v1.RobotPartHistoryEntryR\x07history"x\n\x16UpdateRobotPartRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12:\n\x0crobot_config\x18\x03 \x01(\x0b2\x17.google.protobuf.StructR\x0brobotConfig"E\n\x17UpdateRobotPartResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part"M\n\x13NewRobotPartRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId\x12\x1b\n\tpart_name\x18\x02 \x01(\tR\x08partName"/\n\x14NewRobotPartResponse\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"1\n\x16DeleteRobotPartRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"3\n\x16GetRobotAPIKeysRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId"y\n\x06APIKey\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x129\n\ncreated_on\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn"[\n\x17GetRobotAPIKeysResponse\x12@\n\x08api_keys\x18\x01 \x03(\x0b2%.viam.app.v1.APIKeyWithAuthorizationsR\x07apiKeys"\x19\n\x17DeleteRobotPartResponse"\xa9\x05\n\x08Fragment\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12Y\n\x08fragment\x18\x03 \x01(\x0b2\x17.google.protobuf.StructB$\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"R\x08fragment\x12Z\n\x12organization_owner\x18\x04 \x01(\tB+\x9a\x84\x9e\x03&bson:"organization_owner" json:"owner"R\x11organizationOwner\x128\n\x06public\x18\x05 \x01(\x08B \x9a\x84\x9e\x03\x1bbson:"public" json:"public"R\x06public\x12Q\n\ncreated_on\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn\x12+\n\x11organization_name\x18\x07 \x01(\tR\x10organizationName\x12(\n\x10robot_part_count\x18\t \x01(\x05R\x0erobotPartCount\x12-\n\x12organization_count\x18\n \x01(\x05R\x11organizationCount\x12+\n\x12only_used_by_owner\x18\x0b \x01(\x08R\x0fonlyUsedByOwner\x12?\n\nvisibility\x18\x0c \x01(\x0e2\x1f.viam.app.v1.FragmentVisibilityR\nvisibility"\xe3\x02\n\x14FragmentHistoryEntry\x12@\n\x08fragment\x18\x01 \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"R\x08fragment\x12_\n\tedited_on\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampB&\x9a\x84\x9e\x03!bson:"edited_on" json:"edited_on"R\x08editedOn\x12C\n\x03old\x18\x03 \x01(\x0b2\x15.viam.app.v1.FragmentB\x1a\x9a\x84\x9e\x03\x15bson:"old" json:"old"R\x03old\x12c\n\tedited_by\x18\x04 \x01(\x0b2\x1e.viam.app.v1.AuthenticatorInfoB&\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"R\x08editedBy"\xb2\x01\n\x14ListFragmentsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x1f\n\x0bshow_public\x18\x02 \x01(\x08R\nshowPublic\x12P\n\x13fragment_visibility\x18\x03 \x03(\x0e2\x1f.viam.app.v1.FragmentVisibilityR\x12fragmentVisibility"L\n\x15ListFragmentsResponse\x123\n\tfragments\x18\x01 \x03(\x0b2\x15.viam.app.v1.FragmentR\tfragments"$\n\x12GetFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"H\n\x13GetFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment"\x85\x01\n\x15CreateFragmentRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12/\n\x06config\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x06config\x12\'\n\x0forganization_id\x18\x03 \x01(\tR\x0eorganizationId"K\n\x16CreateFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment"\xe9\x01\n\x15UpdateFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12/\n\x06config\x18\x03 \x01(\x0b2\x17.google.protobuf.StructR\x06config\x12\x1b\n\x06public\x18\x04 \x01(\x08H\x00R\x06public\x88\x01\x01\x12D\n\nvisibility\x18\x05 \x01(\x0e2\x1f.viam.app.v1.FragmentVisibilityH\x01R\nvisibility\x88\x01\x01B\t\n\x07_publicB\r\n\x0b_visibility"K\n\x16UpdateFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment"\'\n\x15DeleteFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x18\n\x16DeleteFragmentResponse"\x91\x01\n\x19GetFragmentHistoryRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12"\n\npage_token\x18\x02 \x01(\tH\x00R\tpageToken\x88\x01\x01\x12"\n\npage_limit\x18\x03 \x01(\x03H\x01R\tpageLimit\x88\x01\x01B\r\n\x0b_page_tokenB\r\n\x0b_page_limit"\x81\x01\n\x1aGetFragmentHistoryResponse\x12;\n\x07history\x18\x01 \x03(\x0b2!.viam.app.v1.FragmentHistoryEntryR\x07history\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken"4\n\x11ListRobotsRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"t\n\x1bListMachineFragmentsRequest\x12\x1d\n\nmachine_id\x18\x01 \x01(\tR\tmachineId\x126\n\x17additional_fragment_ids\x18\x02 \x03(\tR\x15additionalFragmentIds"S\n\x1cListMachineFragmentsResponse\x123\n\tfragments\x18\x01 \x03(\x0b2\x15.viam.app.v1.FragmentR\tfragments"@\n\x12ListRobotsResponse\x12*\n\x06robots\x18\x01 \x03(\x0b2\x12.viam.app.v1.RobotR\x06robots"A\n\x0fNewRobotRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n\x08location\x18\x02 \x01(\tR\x08location""\n\x10NewRobotResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"T\n\x12UpdateRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1a\n\x08location\x18\x03 \x01(\tR\x08location"?\n\x13UpdateRobotResponse\x12(\n\x05robot\x18\x01 \x01(\x0b2\x12.viam.app.v1.RobotR\x05robot"$\n\x12DeleteRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x15\n\x13DeleteRobotResponse"0\n\x15MarkPartAsMainRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"\x18\n\x16MarkPartAsMainResponse"4\n\x19MarkPartForRestartRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"\x1c\n\x1aMarkPartForRestartResponse"7\n\x1cCreateRobotPartSecretRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"K\n\x1dCreateRobotPartSecretResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part"T\n\x1cDeleteRobotPartSecretRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId\x12\x1b\n\tsecret_id\x18\x02 \x01(\tR\x08secretId"\x1f\n\x1dDeleteRobotPartSecretResponse"\x9e\x02\n\rAuthorization\x12-\n\x12authorization_type\x18\x01 \x01(\tR\x11authorizationType\x12)\n\x10authorization_id\x18\x02 \x01(\tR\x0fauthorizationId\x12#\n\rresource_type\x18\x03 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x04 \x01(\tR\nresourceId\x12\x1f\n\x0bidentity_id\x18\x05 \x01(\tR\nidentityId\x12\'\n\x0forganization_id\x18\x06 \x01(\tR\x0eorganizationId\x12#\n\ridentity_type\x18\x07 \x01(\tR\x0cidentityType"R\n\x0eAddRoleRequest\x12@\n\rauthorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\rauthorization"\x11\n\x0fAddRoleResponse"U\n\x11RemoveRoleRequest\x12@\n\rauthorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\rauthorization"\x14\n\x12RemoveRoleResponse"\xa5\x01\n\x11ChangeRoleRequest\x12G\n\x11old_authorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\x10oldAuthorization\x12G\n\x11new_authorization\x18\x02 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\x10newAuthorization"\x14\n\x12ChangeRoleResponse"g\n\x19ListAuthorizationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0cresource_ids\x18\x02 \x03(\tR\x0bresourceIds"`\n\x1aListAuthorizationsResponse\x12B\n\x0eauthorizations\x18\x01 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations"_\n\x17CheckPermissionsRequest\x12D\n\x0bpermissions\x18\x01 \x03(\x0b2".viam.app.v1.AuthorizedPermissionsR\x0bpermissions"\x7f\n\x15AuthorizedPermissions\x12#\n\rresource_type\x18\x01 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x02 \x01(\tR\nresourceId\x12 \n\x0bpermissions\x18\x03 \x03(\tR\x0bpermissions"u\n\x18CheckPermissionsResponse\x12Y\n\x16authorized_permissions\x18\x01 \x03(\x0b2".viam.app.v1.AuthorizedPermissionsR\x15authorizedPermissions"\xa1\x01\n\rModuleVersion\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x12*\n\x05files\x18\x02 \x03(\x0b2\x14.viam.app.v1.UploadsR\x05files\x12*\n\x06models\x18\x03 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x04 \x01(\tR\nentrypoint"\x94\x01\n\x0eModuleMetadata\x12*\n\x06models\x18\x01 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x126\n\x08versions\x18\x02 \x03(\x0b2\x1a.viam.app.v1.ModuleVersionR\x08versions\x12\x1e\n\nentrypoint\x18\x03 \x01(\tR\nentrypoint"\xc0\x01\n\x0fMLModelMetadata\x12\x1a\n\x08versions\x18\x01 \x03(\tR\x08versions\x12@\n\nmodel_type\x18\x02 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x03 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework"h\n\x11MLTrainingVersion\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x129\n\ncreated_on\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn"\xff\x01\n\x12MLTrainingMetadata\x12:\n\x08versions\x18\x05 \x03(\x0b2\x1e.viam.app.v1.MLTrainingVersionR\x08versions\x12@\n\nmodel_type\x18\x02 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x03 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework\x12\x14\n\x05draft\x18\x04 \x01(\x08R\x05draftJ\x04\x08\x01\x10\x02"\x8c\x07\n\x0cRegistryItem\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12)\n\x10public_namespace\x18\x03 \x01(\tR\x0fpublicNamespace\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x125\n\x04type\x18\x05 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type\x127\n\nvisibility\x18\x06 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x12\x10\n\x03url\x18\x07 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x08 \x01(\tR\x0bdescription\x12*\n\x11total_robot_usage\x18\t \x01(\x03R\x0ftotalRobotUsage\x12;\n\x1atotal_external_robot_usage\x18\r \x01(\x03R\x17totalExternalRobotUsage\x128\n\x18total_organization_usage\x18\n \x01(\x03R\x16totalOrganizationUsage\x12I\n!total_external_organization_usage\x18\x0e \x01(\x03R\x1etotalExternalOrganizationUsage\x12F\n\x0fmodule_metadata\x18\x0b \x01(\x0b2\x1b.viam.app.v1.ModuleMetadataH\x00R\x0emoduleMetadata\x12J\n\x11ml_model_metadata\x18\x0c \x01(\x0b2\x1c.viam.app.v1.MLModelMetadataH\x00R\x0fmlModelMetadata\x12S\n\x14ml_training_metadata\x18\x12 \x01(\x0b2\x1f.viam.app.v1.MLTrainingMetadataH\x00R\x12mlTrainingMetadata\x129\n\ncreated_at\x18\x0f \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x10 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAtB\n\n\x08metadata"1\n\x16GetRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId"H\n\x17GetRegistryItemResponse\x12-\n\x04item\x18\x01 \x01(\x0b2\x19.viam.app.v1.RegistryItemR\x04item"\x8f\x01\n\x19CreateRegistryItemRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x125\n\x04type\x18\x03 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type"\x1c\n\x1aCreateRegistryItemResponse"\xc6\x01\n\x19UpdateRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x125\n\x04type\x18\x02 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x127\n\nvisibility\x18\x04 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility"\x1c\n\x1aUpdateRegistryItemResponse"\xc3\x03\n\x18ListRegistryItemsRequest\x12,\n\x0forganization_id\x18\x01 \x01(\tH\x00R\x0eorganizationId\x88\x01\x01\x127\n\x05types\x18\x02 \x03(\x0e2!.viam.app.packages.v1.PackageTypeR\x05types\x12;\n\x0cvisibilities\x18\x03 \x03(\x0e2\x17.viam.app.v1.VisibilityR\x0cvisibilities\x12\x1c\n\tplatforms\x18\x04 \x03(\tR\tplatforms\x12;\n\x08statuses\x18\x05 \x03(\x0e2\x1f.viam.app.v1.RegistryItemStatusR\x08statuses\x12$\n\x0bsearch_term\x18\x06 \x01(\tH\x01R\nsearchTerm\x88\x01\x01\x12"\n\npage_token\x18\x07 \x01(\tH\x02R\tpageToken\x88\x01\x01\x12+\n\x11public_namespaces\x18\x08 \x03(\tR\x10publicNamespacesB\x12\n\x10_organization_idB\x0e\n\x0c_search_termB\r\n\x0b_page_token"L\n\x19ListRegistryItemsResponse\x12/\n\x05items\x18\x01 \x03(\x0b2\x19.viam.app.v1.RegistryItemR\x05items"4\n\x19DeleteRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId"\x1c\n\x1aDeleteRegistryItemResponse"h\n\x1bTransferRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x120\n\x14new_public_namespace\x18\x02 \x01(\tR\x12newPublicNamespace"\x1e\n\x1cTransferRegistryItemResponse"R\n\x13CreateModuleRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"E\n\x14CreateModuleResponse\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url"\xeb\x01\n\x13UpdateModuleRequest\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x127\n\nvisibility\x18\x02 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x12\x10\n\x03url\x18\x03 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x04 \x01(\tR\x0bdescription\x12*\n\x06models\x18\x05 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x06 \x01(\tR\nentrypoint"(\n\x14UpdateModuleResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"/\n\x05Model\x12\x10\n\x03api\x18\x01 \x01(\tR\x03api\x12\x14\n\x05model\x18\x02 \x01(\tR\x05model"c\n\x0eModuleFileInfo\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x1a\n\x08platform\x18\x03 \x01(\tR\x08platform"\x87\x01\n\x17UploadModuleFileRequest\x12G\n\x10module_file_info\x18\x01 \x01(\x0b2\x1b.viam.app.v1.ModuleFileInfoH\x00R\x0emoduleFileInfo\x12\x14\n\x04file\x18\x02 \x01(\x0cH\x00R\x04fileB\r\n\x0bmodule_file",\n\x18UploadModuleFileResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"/\n\x10GetModuleRequest\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId"@\n\x11GetModuleResponse\x12+\n\x06module\x18\x01 \x01(\x0b2\x13.viam.app.v1.ModuleR\x06module"\xe5\x03\n\x06Module\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x127\n\nvisibility\x18\x03 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x127\n\x08versions\x18\x04 \x03(\x0b2\x1b.viam.app.v1.VersionHistoryR\x08versions\x12\x10\n\x03url\x18\x05 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x06 \x01(\tR\x0bdescription\x12*\n\x06models\x18\x07 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12*\n\x11total_robot_usage\x18\x08 \x01(\x03R\x0ftotalRobotUsage\x128\n\x18total_organization_usage\x18\t \x01(\x03R\x16totalOrganizationUsage\x12\'\n\x0forganization_id\x18\n \x01(\tR\x0eorganizationId\x12\x1e\n\nentrypoint\x18\x0b \x01(\tR\nentrypoint\x12)\n\x10public_namespace\x18\x0c \x01(\tR\x0fpublicNamespace"\xa2\x01\n\x0eVersionHistory\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x12*\n\x05files\x18\x02 \x03(\x0b2\x14.viam.app.v1.UploadsR\x05files\x12*\n\x06models\x18\x03 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x04 \x01(\tR\nentrypoint"b\n\x07Uploads\x12\x1a\n\x08platform\x18\x01 \x01(\tR\x08platform\x12;\n\x0buploaded_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\nuploadedAt"V\n\x12ListModulesRequest\x12,\n\x0forganization_id\x18\x01 \x01(\tH\x00R\x0eorganizationId\x88\x01\x01B\x12\n\x10_organization_id"D\n\x13ListModulesResponse\x12-\n\x07modules\x18\x01 \x03(\x0b2\x13.viam.app.v1.ModuleR\x07modules"/\n\x17GetUserIDByEmailRequest\x12\x14\n\x05email\x18\x01 \x01(\tR\x05email"3\n\x18GetUserIDByEmailResponse\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId"9\n\x1eListOrganizationsByUserRequest\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId">\n\nOrgDetails\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x19\n\x08org_name\x18\x02 \x01(\tR\x07orgName"N\n\x1fListOrganizationsByUserResponse\x12+\n\x04orgs\x18\x01 \x03(\x0b2\x17.viam.app.v1.OrgDetailsR\x04orgs"j\n\x10CreateKeyRequest\x12B\n\x0eauthorizations\x18\x01 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"5\n\x11CreateKeyResponse\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id""\n\x10DeleteKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x13\n\x11DeleteKeyResponse"6\n\x10RenameKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"7\n\x11RenameKeyResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"\xcd\x01\n\x14AuthorizationDetails\x12-\n\x12authorization_type\x18\x01 \x01(\tR\x11authorizationType\x12)\n\x10authorization_id\x18\x02 \x01(\tR\x0fauthorizationId\x12#\n\rresource_type\x18\x03 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x04 \x01(\tR\nresourceId\x12\x15\n\x06org_id\x18\x05 \x01(\tR\x05orgId"\x93\x01\n\x18APIKeyWithAuthorizations\x12,\n\x07api_key\x18\x01 \x01(\x0b2\x13.viam.app.v1.APIKeyR\x06apiKey\x12I\n\x0eauthorizations\x18\x02 \x03(\x0b2!.viam.app.v1.AuthorizationDetailsR\x0eauthorizations"(\n\x0fListKeysRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"T\n\x10ListKeysResponse\x12@\n\x08api_keys\x18\x01 \x03(\x0b2%.viam.app.v1.APIKeyWithAuthorizationsR\x07apiKeys""\n\x10RotateKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"5\n\x11RotateKeyResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key"?\n-CreateKeyFromExistingKeyAuthorizationsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"R\n.CreateKeyFromExistingKeyAuthorizationsResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key*\xd1\x01\n\x12AuthenticationType\x12#\n\x1fAUTHENTICATION_TYPE_UNSPECIFIED\x10\x00\x12!\n\x1dAUTHENTICATION_TYPE_WEB_OAUTH\x10\x01\x12\x1f\n\x1bAUTHENTICATION_TYPE_API_KEY\x10\x02\x12)\n%AUTHENTICATION_TYPE_ROBOT_PART_SECRET\x10\x03\x12\'\n#AUTHENTICATION_TYPE_LOCATION_SECRET\x10\x04*\xa3\x01\n\x12FragmentVisibility\x12#\n\x1fFRAGMENT_VISIBILITY_UNSPECIFIED\x10\x00\x12\x1f\n\x1bFRAGMENT_VISIBILITY_PRIVATE\x10\x01\x12\x1e\n\x1aFRAGMENT_VISIBILITY_PUBLIC\x10\x02\x12\'\n#FRAGMENT_VISIBILITY_PUBLIC_UNLISTED\x10\x03*\x87\x01\n\x12RegistryItemStatus\x12$\n REGISTRY_ITEM_STATUS_UNSPECIFIED\x10\x00\x12"\n\x1eREGISTRY_ITEM_STATUS_PUBLISHED\x10\x01\x12\'\n#REGISTRY_ITEM_STATUS_IN_DEVELOPMENT\x10\x02*W\n\nVisibility\x12\x1a\n\x16VISIBILITY_UNSPECIFIED\x10\x00\x12\x16\n\x12VISIBILITY_PRIVATE\x10\x01\x12\x15\n\x11VISIBILITY_PUBLIC\x10\x022\xfc7\n\nAppService\x12_\n\x10GetUserIDByEmail\x12$.viam.app.v1.GetUserIDByEmailRequest\x1a%.viam.app.v1.GetUserIDByEmailResponse\x12e\n\x12CreateOrganization\x12&.viam.app.v1.CreateOrganizationRequest\x1a\'.viam.app.v1.CreateOrganizationResponse\x12b\n\x11ListOrganizations\x12%.viam.app.v1.ListOrganizationsRequest\x1a&.viam.app.v1.ListOrganizationsResponse\x12\x9b\x01\n$GetOrganizationsWithAccessToLocation\x128.viam.app.v1.GetOrganizationsWithAccessToLocationRequest\x1a9.viam.app.v1.GetOrganizationsWithAccessToLocationResponse\x12t\n\x17ListOrganizationsByUser\x12+.viam.app.v1.ListOrganizationsByUserRequest\x1a,.viam.app.v1.ListOrganizationsByUserResponse\x12\\\n\x0fGetOrganization\x12#.viam.app.v1.GetOrganizationRequest\x1a$.viam.app.v1.GetOrganizationResponse\x12\x9b\x01\n$GetOrganizationNamespaceAvailability\x128.viam.app.v1.GetOrganizationNamespaceAvailabilityRequest\x1a9.viam.app.v1.GetOrganizationNamespaceAvailabilityResponse\x12e\n\x12UpdateOrganization\x12&.viam.app.v1.UpdateOrganizationRequest\x1a\'.viam.app.v1.UpdateOrganizationResponse\x12e\n\x12DeleteOrganization\x12&.viam.app.v1.DeleteOrganizationRequest\x1a\'.viam.app.v1.DeleteOrganizationResponse\x12t\n\x17ListOrganizationMembers\x12+.viam.app.v1.ListOrganizationMembersRequest\x1a,.viam.app.v1.ListOrganizationMembersResponse\x12w\n\x18CreateOrganizationInvite\x12,.viam.app.v1.CreateOrganizationInviteRequest\x1a-.viam.app.v1.CreateOrganizationInviteResponse\x12\xa1\x01\n&UpdateOrganizationInviteAuthorizations\x12:.viam.app.v1.UpdateOrganizationInviteAuthorizationsRequest\x1a;.viam.app.v1.UpdateOrganizationInviteAuthorizationsResponse\x12w\n\x18DeleteOrganizationMember\x12,.viam.app.v1.DeleteOrganizationMemberRequest\x1a-.viam.app.v1.DeleteOrganizationMemberResponse\x12w\n\x18DeleteOrganizationInvite\x12,.viam.app.v1.DeleteOrganizationInviteRequest\x1a-.viam.app.v1.DeleteOrganizationInviteResponse\x12w\n\x18ResendOrganizationInvite\x12,.viam.app.v1.ResendOrganizationInviteRequest\x1a-.viam.app.v1.ResendOrganizationInviteResponse\x12Y\n\x0eCreateLocation\x12".viam.app.v1.CreateLocationRequest\x1a#.viam.app.v1.CreateLocationResponse\x12P\n\x0bGetLocation\x12\x1f.viam.app.v1.GetLocationRequest\x1a .viam.app.v1.GetLocationResponse\x12Y\n\x0eUpdateLocation\x12".viam.app.v1.UpdateLocationRequest\x1a#.viam.app.v1.UpdateLocationResponse\x12Y\n\x0eDeleteLocation\x12".viam.app.v1.DeleteLocationRequest\x1a#.viam.app.v1.DeleteLocationResponse\x12V\n\rListLocations\x12!.viam.app.v1.ListLocationsRequest\x1a".viam.app.v1.ListLocationsResponse\x12V\n\rShareLocation\x12!.viam.app.v1.ShareLocationRequest\x1a".viam.app.v1.ShareLocationResponse\x12\\\n\x0fUnshareLocation\x12#.viam.app.v1.UnshareLocationRequest\x1a$.viam.app.v1.UnshareLocationResponse\x12S\n\x0cLocationAuth\x12 .viam.app.v1.LocationAuthRequest\x1a!.viam.app.v1.LocationAuthResponse\x12k\n\x14CreateLocationSecret\x12(.viam.app.v1.CreateLocationSecretRequest\x1a).viam.app.v1.CreateLocationSecretResponse\x12k\n\x14DeleteLocationSecret\x12(.viam.app.v1.DeleteLocationSecretRequest\x1a).viam.app.v1.DeleteLocationSecretResponse\x12G\n\x08GetRobot\x12\x1c.viam.app.v1.GetRobotRequest\x1a\x1d.viam.app.v1.GetRobotResponse\x12k\n\x14GetRoverRentalRobots\x12(.viam.app.v1.GetRoverRentalRobotsRequest\x1a).viam.app.v1.GetRoverRentalRobotsResponse\x12V\n\rGetRobotParts\x12!.viam.app.v1.GetRobotPartsRequest\x1a".viam.app.v1.GetRobotPartsResponse\x12S\n\x0cGetRobotPart\x12 .viam.app.v1.GetRobotPartRequest\x1a!.viam.app.v1.GetRobotPartResponse\x12_\n\x10GetRobotPartLogs\x12$.viam.app.v1.GetRobotPartLogsRequest\x1a%.viam.app.v1.GetRobotPartLogsResponse\x12d\n\x11TailRobotPartLogs\x12%.viam.app.v1.TailRobotPartLogsRequest\x1a&.viam.app.v1.TailRobotPartLogsResponse0\x01\x12h\n\x13GetRobotPartHistory\x12\'.viam.app.v1.GetRobotPartHistoryRequest\x1a(.viam.app.v1.GetRobotPartHistoryResponse\x12\\\n\x0fUpdateRobotPart\x12#.viam.app.v1.UpdateRobotPartRequest\x1a$.viam.app.v1.UpdateRobotPartResponse\x12S\n\x0cNewRobotPart\x12 .viam.app.v1.NewRobotPartRequest\x1a!.viam.app.v1.NewRobotPartResponse\x12\\\n\x0fDeleteRobotPart\x12#.viam.app.v1.DeleteRobotPartRequest\x1a$.viam.app.v1.DeleteRobotPartResponse\x12\\\n\x0fGetRobotAPIKeys\x12#.viam.app.v1.GetRobotAPIKeysRequest\x1a$.viam.app.v1.GetRobotAPIKeysResponse\x12Y\n\x0eMarkPartAsMain\x12".viam.app.v1.MarkPartAsMainRequest\x1a#.viam.app.v1.MarkPartAsMainResponse\x12e\n\x12MarkPartForRestart\x12&.viam.app.v1.MarkPartForRestartRequest\x1a\'.viam.app.v1.MarkPartForRestartResponse\x12n\n\x15CreateRobotPartSecret\x12).viam.app.v1.CreateRobotPartSecretRequest\x1a*.viam.app.v1.CreateRobotPartSecretResponse\x12n\n\x15DeleteRobotPartSecret\x12).viam.app.v1.DeleteRobotPartSecretRequest\x1a*.viam.app.v1.DeleteRobotPartSecretResponse\x12M\n\nListRobots\x12\x1e.viam.app.v1.ListRobotsRequest\x1a\x1f.viam.app.v1.ListRobotsResponse\x12G\n\x08NewRobot\x12\x1c.viam.app.v1.NewRobotRequest\x1a\x1d.viam.app.v1.NewRobotResponse\x12P\n\x0bUpdateRobot\x12\x1f.viam.app.v1.UpdateRobotRequest\x1a .viam.app.v1.UpdateRobotResponse\x12P\n\x0bDeleteRobot\x12\x1f.viam.app.v1.DeleteRobotRequest\x1a .viam.app.v1.DeleteRobotResponse\x12V\n\rListFragments\x12!.viam.app.v1.ListFragmentsRequest\x1a".viam.app.v1.ListFragmentsResponse\x12P\n\x0bGetFragment\x12\x1f.viam.app.v1.GetFragmentRequest\x1a .viam.app.v1.GetFragmentResponse\x12Y\n\x0eCreateFragment\x12".viam.app.v1.CreateFragmentRequest\x1a#.viam.app.v1.CreateFragmentResponse\x12Y\n\x0eUpdateFragment\x12".viam.app.v1.UpdateFragmentRequest\x1a#.viam.app.v1.UpdateFragmentResponse\x12Y\n\x0eDeleteFragment\x12".viam.app.v1.DeleteFragmentRequest\x1a#.viam.app.v1.DeleteFragmentResponse\x12k\n\x14ListMachineFragments\x12(.viam.app.v1.ListMachineFragmentsRequest\x1a).viam.app.v1.ListMachineFragmentsResponse\x12e\n\x12GetFragmentHistory\x12&.viam.app.v1.GetFragmentHistoryRequest\x1a\'.viam.app.v1.GetFragmentHistoryResponse\x12D\n\x07AddRole\x12\x1b.viam.app.v1.AddRoleRequest\x1a\x1c.viam.app.v1.AddRoleResponse\x12M\n\nRemoveRole\x12\x1e.viam.app.v1.RemoveRoleRequest\x1a\x1f.viam.app.v1.RemoveRoleResponse\x12M\n\nChangeRole\x12\x1e.viam.app.v1.ChangeRoleRequest\x1a\x1f.viam.app.v1.ChangeRoleResponse\x12e\n\x12ListAuthorizations\x12&.viam.app.v1.ListAuthorizationsRequest\x1a\'.viam.app.v1.ListAuthorizationsResponse\x12_\n\x10CheckPermissions\x12$.viam.app.v1.CheckPermissionsRequest\x1a%.viam.app.v1.CheckPermissionsResponse\x12\\\n\x0fGetRegistryItem\x12#.viam.app.v1.GetRegistryItemRequest\x1a$.viam.app.v1.GetRegistryItemResponse\x12e\n\x12CreateRegistryItem\x12&.viam.app.v1.CreateRegistryItemRequest\x1a\'.viam.app.v1.CreateRegistryItemResponse\x12e\n\x12UpdateRegistryItem\x12&.viam.app.v1.UpdateRegistryItemRequest\x1a\'.viam.app.v1.UpdateRegistryItemResponse\x12b\n\x11ListRegistryItems\x12%.viam.app.v1.ListRegistryItemsRequest\x1a&.viam.app.v1.ListRegistryItemsResponse\x12e\n\x12DeleteRegistryItem\x12&.viam.app.v1.DeleteRegistryItemRequest\x1a\'.viam.app.v1.DeleteRegistryItemResponse\x12k\n\x14TransferRegistryItem\x12(.viam.app.v1.TransferRegistryItemRequest\x1a).viam.app.v1.TransferRegistryItemResponse\x12S\n\x0cCreateModule\x12 .viam.app.v1.CreateModuleRequest\x1a!.viam.app.v1.CreateModuleResponse\x12S\n\x0cUpdateModule\x12 .viam.app.v1.UpdateModuleRequest\x1a!.viam.app.v1.UpdateModuleResponse\x12a\n\x10UploadModuleFile\x12$.viam.app.v1.UploadModuleFileRequest\x1a%.viam.app.v1.UploadModuleFileResponse(\x01\x12J\n\tGetModule\x12\x1d.viam.app.v1.GetModuleRequest\x1a\x1e.viam.app.v1.GetModuleResponse\x12P\n\x0bListModules\x12\x1f.viam.app.v1.ListModulesRequest\x1a .viam.app.v1.ListModulesResponse\x12J\n\tCreateKey\x12\x1d.viam.app.v1.CreateKeyRequest\x1a\x1e.viam.app.v1.CreateKeyResponse\x12J\n\tDeleteKey\x12\x1d.viam.app.v1.DeleteKeyRequest\x1a\x1e.viam.app.v1.DeleteKeyResponse\x12G\n\x08ListKeys\x12\x1c.viam.app.v1.ListKeysRequest\x1a\x1d.viam.app.v1.ListKeysResponse\x12J\n\tRenameKey\x12\x1d.viam.app.v1.RenameKeyRequest\x1a\x1e.viam.app.v1.RenameKeyResponse\x12J\n\tRotateKey\x12\x1d.viam.app.v1.RotateKeyRequest\x1a\x1e.viam.app.v1.RotateKeyResponse\x12\xa1\x01\n&CreateKeyFromExistingKeyAuthorizations\x12:.viam.app.v1.CreateKeyFromExistingKeyAuthorizationsRequest\x1a;.viam.app.v1.CreateKeyFromExistingKeyAuthorizationsResponseB\x18Z\x16go.viam.com/api/app/v1b\x06proto3')
14
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
15
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app.v1.app_pb2', globals())
16
- if _descriptor._USE_C_DESCRIPTORS == False:
17
- DESCRIPTOR._options = None
18
- DESCRIPTOR._serialized_options = b'Z\x16go.viam.com/api/app/v1'
19
- _ROBOT.fields_by_name['id']._options = None
20
- _ROBOT.fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
21
- _ROBOT.fields_by_name['name']._options = None
22
- _ROBOT.fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
23
- _ROBOT.fields_by_name['location']._options = None
24
- _ROBOT.fields_by_name['location']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"location" json:"location"'
25
- _ROBOT.fields_by_name['last_access']._options = None
26
- _ROBOT.fields_by_name['last_access']._serialized_options = b'\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"'
27
- _ROBOT.fields_by_name['created_on']._options = None
28
- _ROBOT.fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
29
- _ROBOTPART.fields_by_name['id']._options = None
30
- _ROBOTPART.fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
31
- _ROBOTPART.fields_by_name['name']._options = None
32
- _ROBOTPART.fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
33
- _ROBOTPART.fields_by_name['dns_name']._options = None
34
- _ROBOTPART.fields_by_name['dns_name']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"dns_name" json:"dns_name"'
35
- _ROBOTPART.fields_by_name['secret']._options = None
36
- _ROBOTPART.fields_by_name['secret']._serialized_options = b'\x9a\x84\x9e\x03%bson:"secret" json:"secret,omitempty"'
37
- _ROBOTPART.fields_by_name['robot']._options = None
38
- _ROBOTPART.fields_by_name['robot']._serialized_options = b'\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"'
39
- _ROBOTPART.fields_by_name['location_id']._options = None
40
- _ROBOTPART.fields_by_name['location_id']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"location_id" json:"-"'
41
- _ROBOTPART.fields_by_name['robot_config']._options = None
42
- _ROBOTPART.fields_by_name['robot_config']._serialized_options = b'\x9a\x84\x9e\x03!bson:"config" json:"robot_config"'
43
- _ROBOTPART.fields_by_name['last_access']._options = None
44
- _ROBOTPART.fields_by_name['last_access']._serialized_options = b'\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"'
45
- _ROBOTPART.fields_by_name['user_supplied_info']._options = None
46
- _ROBOTPART.fields_by_name['user_supplied_info']._serialized_options = b'\x9a\x84\x9e\x033bson:"user_supplied_info" json:"user_supplied_info"'
47
- _ROBOTPART.fields_by_name['main_part']._options = None
48
- _ROBOTPART.fields_by_name['main_part']._serialized_options = b'\x9a\x84\x9e\x03!bson:"main_part" json:"main_part"'
49
- _ROBOTPART.fields_by_name['created_on']._options = None
50
- _ROBOTPART.fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
51
- _ROBOTPART.fields_by_name['secrets']._options = None
52
- _ROBOTPART.fields_by_name['secrets']._serialized_options = b'\x9a\x84\x9e\x03\x0ebson:"secrets"'
53
- _ROBOTPARTHISTORYENTRY.fields_by_name['part']._options = None
54
- _ROBOTPARTHISTORYENTRY.fields_by_name['part']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"part" json:"part"'
55
- _ROBOTPARTHISTORYENTRY.fields_by_name['robot']._options = None
56
- _ROBOTPARTHISTORYENTRY.fields_by_name['robot']._serialized_options = b'\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"'
57
- _ROBOTPARTHISTORYENTRY.fields_by_name['when']._options = None
58
- _ROBOTPARTHISTORYENTRY.fields_by_name['when']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"when" json:"when"'
59
- _ROBOTPARTHISTORYENTRY.fields_by_name['old']._options = None
60
- _ROBOTPARTHISTORYENTRY.fields_by_name['old']._serialized_options = b'\x9a\x84\x9e\x03\x15bson:"old" json:"old"'
61
- _ROBOTPARTHISTORYENTRY.fields_by_name['edited_by']._options = None
62
- _ROBOTPARTHISTORYENTRY.fields_by_name['edited_by']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"'
63
- _LOCATIONAUTH.fields_by_name['secret']._options = None
64
- _LOCATIONAUTH.fields_by_name['secret']._serialized_options = b'\x18\x01'
65
- _SHAREDSECRET.fields_by_name['id']._options = None
66
- _SHAREDSECRET.fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\tbson:"id"'
67
- _SHAREDSECRET.fields_by_name['secret']._options = None
68
- _SHAREDSECRET.fields_by_name['secret']._serialized_options = b'\x9a\x84\x9e\x03\rbson:"secret"'
69
- _SHAREDSECRET.fields_by_name['created_on']._options = None
70
- _SHAREDSECRET.fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"'
71
- _SHAREDSECRET.fields_by_name['state']._options = None
72
- _SHAREDSECRET.fields_by_name['state']._serialized_options = b'\x9a\x84\x9e\x03\x0cbson:"state"'
73
- _GETROBOTPARTLOGSREQUEST.fields_by_name['errors_only']._options = None
74
- _GETROBOTPARTLOGSREQUEST.fields_by_name['errors_only']._serialized_options = b'\x18\x01'
75
- _FRAGMENT.fields_by_name['id']._options = None
76
- _FRAGMENT.fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
77
- _FRAGMENT.fields_by_name['name']._options = None
78
- _FRAGMENT.fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
79
- _FRAGMENT.fields_by_name['fragment']._options = None
80
- _FRAGMENT.fields_by_name['fragment']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"'
81
- _FRAGMENT.fields_by_name['organization_owner']._options = None
82
- _FRAGMENT.fields_by_name['organization_owner']._serialized_options = b'\x9a\x84\x9e\x03&bson:"organization_owner" json:"owner"'
83
- _FRAGMENT.fields_by_name['public']._options = None
84
- _FRAGMENT.fields_by_name['public']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"public" json:"public"'
85
- _FRAGMENT.fields_by_name['created_on']._options = None
86
- _FRAGMENT.fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
87
- _FRAGMENTHISTORYENTRY.fields_by_name['fragment']._options = None
88
- _FRAGMENTHISTORYENTRY.fields_by_name['fragment']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"'
89
- _FRAGMENTHISTORYENTRY.fields_by_name['edited_on']._options = None
90
- _FRAGMENTHISTORYENTRY.fields_by_name['edited_on']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_on" json:"edited_on"'
91
- _FRAGMENTHISTORYENTRY.fields_by_name['old']._options = None
92
- _FRAGMENTHISTORYENTRY.fields_by_name['old']._serialized_options = b'\x9a\x84\x9e\x03\x15bson:"old" json:"old"'
93
- _FRAGMENTHISTORYENTRY.fields_by_name['edited_by']._options = None
94
- _FRAGMENTHISTORYENTRY.fields_by_name['edited_by']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"'
95
- _AUTHENTICATIONTYPE._serialized_start = 20729
96
- _AUTHENTICATIONTYPE._serialized_end = 20938
97
- _FRAGMENTVISIBILITY._serialized_start = 20941
98
- _FRAGMENTVISIBILITY._serialized_end = 21104
99
- _REGISTRYITEMSTATUS._serialized_start = 21107
100
- _REGISTRYITEMSTATUS._serialized_end = 21242
101
- _VISIBILITY._serialized_start = 21244
102
- _VISIBILITY._serialized_end = 21331
103
- _ROBOT._serialized_start = 214
104
- _ROBOT._serialized_end = 578
105
- _ROBOTPART._serialized_start = 581
106
- _ROBOTPART._serialized_end = 1560
107
- _ROBOTPARTHISTORYENTRY._serialized_start = 1563
108
- _ROBOTPARTHISTORYENTRY._serialized_end = 1939
109
- _AUTHENTICATORINFO._serialized_start = 1942
110
- _AUTHENTICATORINFO._serialized_end = 2075
111
- _LISTORGANIZATIONSREQUEST._serialized_start = 2077
112
- _LISTORGANIZATIONSREQUEST._serialized_end = 2103
113
- _ORGANIZATION._serialized_start = 2106
114
- _ORGANIZATION._serialized_end = 2328
115
- _ORGANIZATIONMEMBER._serialized_start = 2331
116
- _ORGANIZATIONMEMBER._serialized_end = 2538
117
- _LISTORGANIZATIONSRESPONSE._serialized_start = 2540
118
- _LISTORGANIZATIONSRESPONSE._serialized_end = 2632
119
- _ORGANIZATIONINVITE._serialized_start = 2635
120
- _ORGANIZATIONINVITE._serialized_end = 2845
121
- _CREATEORGANIZATIONREQUEST._serialized_start = 2847
122
- _CREATEORGANIZATIONREQUEST._serialized_end = 2894
123
- _CREATEORGANIZATIONRESPONSE._serialized_start = 2896
124
- _CREATEORGANIZATIONRESPONSE._serialized_end = 2987
125
- _GETORGANIZATIONREQUEST._serialized_start = 2989
126
- _GETORGANIZATIONREQUEST._serialized_end = 3054
127
- _GETORGANIZATIONRESPONSE._serialized_start = 3056
128
- _GETORGANIZATIONRESPONSE._serialized_end = 3144
129
- _GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST._serialized_start = 3146
130
- _GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST._serialized_end = 3234
131
- _GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE._serialized_start = 3236
132
- _GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE._serialized_end = 3312
133
- _UPDATEORGANIZATIONREQUEST._serialized_start = 3315
134
- _UPDATEORGANIZATIONREQUEST._serialized_end = 3557
135
- _UPDATEORGANIZATIONRESPONSE._serialized_start = 3559
136
- _UPDATEORGANIZATIONRESPONSE._serialized_end = 3650
137
- _DELETEORGANIZATIONREQUEST._serialized_start = 3652
138
- _DELETEORGANIZATIONREQUEST._serialized_end = 3720
139
- _DELETEORGANIZATIONRESPONSE._serialized_start = 3722
140
- _DELETEORGANIZATIONRESPONSE._serialized_end = 3750
141
- _LISTORGANIZATIONMEMBERSREQUEST._serialized_start = 3752
142
- _LISTORGANIZATIONMEMBERSREQUEST._serialized_end = 3825
143
- _LISTORGANIZATIONMEMBERSRESPONSE._serialized_start = 3828
144
- _LISTORGANIZATIONMEMBERSRESPONSE._serialized_end = 4020
145
- _CREATEORGANIZATIONINVITEREQUEST._serialized_start = 4023
146
- _CREATEORGANIZATIONINVITEREQUEST._serialized_end = 4258
147
- _CREATEORGANIZATIONINVITERESPONSE._serialized_start = 4260
148
- _CREATEORGANIZATIONINVITERESPONSE._serialized_end = 4351
149
- _UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST._serialized_start = 4354
150
- _UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST._serialized_end = 4620
151
- _UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE._serialized_start = 4622
152
- _UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE._serialized_end = 4727
153
- _DELETEORGANIZATIONINVITEREQUEST._serialized_start = 4729
154
- _DELETEORGANIZATIONINVITEREQUEST._serialized_end = 4825
155
- _DELETEORGANIZATIONINVITERESPONSE._serialized_start = 4827
156
- _DELETEORGANIZATIONINVITERESPONSE._serialized_end = 4861
157
- _RESENDORGANIZATIONINVITEREQUEST._serialized_start = 4863
158
- _RESENDORGANIZATIONINVITEREQUEST._serialized_end = 4959
159
- _RESENDORGANIZATIONINVITERESPONSE._serialized_start = 4961
160
- _RESENDORGANIZATIONINVITERESPONSE._serialized_end = 5052
161
- _DELETEORGANIZATIONMEMBERREQUEST._serialized_start = 5054
162
- _DELETEORGANIZATIONMEMBERREQUEST._serialized_end = 5153
163
- _DELETEORGANIZATIONMEMBERRESPONSE._serialized_start = 5155
164
- _DELETEORGANIZATIONMEMBERRESPONSE._serialized_end = 5189
165
- _ORGANIZATIONIDENTITY._serialized_start = 5191
166
- _ORGANIZATIONIDENTITY._serialized_end = 5249
167
- _LOCATIONORGANIZATION._serialized_start = 5251
168
- _LOCATIONORGANIZATION._serialized_end = 5340
169
- _LOCATIONAUTH._serialized_start = 5343
170
- _LOCATIONAUTH._serialized_end = 5471
171
- _STORAGECONFIG._serialized_start = 5473
172
- _STORAGECONFIG._serialized_end = 5512
173
- _LOCATION._serialized_start = 5515
174
- _LOCATION._serialized_end = 5871
175
- _SHAREDSECRET._serialized_start = 5874
176
- _SHAREDSECRET._serialized_end = 6210
177
- _SHAREDSECRET_STATE._serialized_start = 6141
178
- _SHAREDSECRET_STATE._serialized_end = 6210
179
- _CREATELOCATIONREQUEST._serialized_start = 6213
180
- _CREATELOCATIONREQUEST._serialized_end = 6371
181
- _CREATELOCATIONRESPONSE._serialized_start = 6373
182
- _CREATELOCATIONRESPONSE._serialized_end = 6448
183
- _GETLOCATIONREQUEST._serialized_start = 6450
184
- _GETLOCATIONREQUEST._serialized_end = 6503
185
- _GETLOCATIONRESPONSE._serialized_start = 6505
186
- _GETLOCATIONRESPONSE._serialized_end = 6577
187
- _UPDATELOCATIONREQUEST._serialized_start = 6580
188
- _UPDATELOCATIONREQUEST._serialized_end = 6784
189
- _UPDATELOCATIONRESPONSE._serialized_start = 6786
190
- _UPDATELOCATIONRESPONSE._serialized_end = 6861
191
- _DELETELOCATIONREQUEST._serialized_start = 6863
192
- _DELETELOCATIONREQUEST._serialized_end = 6919
193
- _DELETELOCATIONRESPONSE._serialized_start = 6921
194
- _DELETELOCATIONRESPONSE._serialized_end = 6945
195
- _GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST._serialized_start = 6947
196
- _GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST._serialized_end = 7025
197
- _GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE._serialized_start = 7028
198
- _GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE._serialized_end = 7166
199
- _LISTLOCATIONSREQUEST._serialized_start = 7168
200
- _LISTLOCATIONSREQUEST._serialized_end = 7231
201
- _SHARELOCATIONREQUEST._serialized_start = 7233
202
- _SHARELOCATIONREQUEST._serialized_end = 7329
203
- _SHARELOCATIONRESPONSE._serialized_start = 7331
204
- _SHARELOCATIONRESPONSE._serialized_end = 7354
205
- _UNSHARELOCATIONREQUEST._serialized_start = 7356
206
- _UNSHARELOCATIONREQUEST._serialized_end = 7454
207
- _UNSHARELOCATIONRESPONSE._serialized_start = 7456
208
- _UNSHARELOCATIONRESPONSE._serialized_end = 7481
209
- _LISTLOCATIONSRESPONSE._serialized_start = 7483
210
- _LISTLOCATIONSRESPONSE._serialized_end = 7559
211
- _CREATELOCATIONSECRETREQUEST._serialized_start = 7561
212
- _CREATELOCATIONSECRETREQUEST._serialized_end = 7623
213
- _CREATELOCATIONSECRETRESPONSE._serialized_start = 7625
214
- _CREATELOCATIONSECRETRESPONSE._serialized_end = 7702
215
- _DELETELOCATIONSECRETREQUEST._serialized_start = 7704
216
- _DELETELOCATIONSECRETREQUEST._serialized_end = 7795
217
- _DELETELOCATIONSECRETRESPONSE._serialized_start = 7797
218
- _DELETELOCATIONSECRETRESPONSE._serialized_end = 7827
219
- _LOCATIONAUTHREQUEST._serialized_start = 7829
220
- _LOCATIONAUTHREQUEST._serialized_end = 7883
221
- _LOCATIONAUTHRESPONSE._serialized_start = 7885
222
- _LOCATIONAUTHRESPONSE._serialized_end = 7954
223
- _GETROBOTREQUEST._serialized_start = 7956
224
- _GETROBOTREQUEST._serialized_end = 7989
225
- _GETROVERRENTALROBOTSREQUEST._serialized_start = 7991
226
- _GETROVERRENTALROBOTSREQUEST._serialized_end = 8043
227
- _ROVERRENTALROBOT._serialized_start = 8046
228
- _ROVERRENTALROBOT._serialized_end = 8200
229
- _GETROVERRENTALROBOTSRESPONSE._serialized_start = 8202
230
- _GETROVERRENTALROBOTSRESPONSE._serialized_end = 8287
231
- _GETROBOTRESPONSE._serialized_start = 8289
232
- _GETROBOTRESPONSE._serialized_end = 8349
233
- _GETROBOTPARTSREQUEST._serialized_start = 8351
234
- _GETROBOTPARTSREQUEST._serialized_end = 8400
235
- _GETROBOTPARTSRESPONSE._serialized_start = 8402
236
- _GETROBOTPARTSRESPONSE._serialized_end = 8471
237
- _GETROBOTPARTREQUEST._serialized_start = 8473
238
- _GETROBOTPARTREQUEST._serialized_end = 8510
239
- _GETROBOTPARTRESPONSE._serialized_start = 8512
240
- _GETROBOTPARTRESPONSE._serialized_end = 8611
241
- _GETROBOTPARTLOGSREQUEST._serialized_start = 8614
242
- _GETROBOTPARTLOGSREQUEST._serialized_end = 8807
243
- _GETROBOTPARTLOGSRESPONSE._serialized_start = 8809
244
- _GETROBOTPARTLOGSRESPONSE._serialized_end = 8921
245
- _TAILROBOTPARTLOGSREQUEST._serialized_start = 8923
246
- _TAILROBOTPARTLOGSREQUEST._serialized_end = 9038
247
- _TAILROBOTPARTLOGSRESPONSE._serialized_start = 9040
248
- _TAILROBOTPARTLOGSRESPONSE._serialized_end = 9113
249
- _GETROBOTPARTHISTORYREQUEST._serialized_start = 9115
250
- _GETROBOTPARTHISTORYREQUEST._serialized_end = 9159
251
- _GETROBOTPARTHISTORYRESPONSE._serialized_start = 9161
252
- _GETROBOTPARTHISTORYRESPONSE._serialized_end = 9252
253
- _UPDATEROBOTPARTREQUEST._serialized_start = 9254
254
- _UPDATEROBOTPARTREQUEST._serialized_end = 9374
255
- _UPDATEROBOTPARTRESPONSE._serialized_start = 9376
256
- _UPDATEROBOTPARTRESPONSE._serialized_end = 9445
257
- _NEWROBOTPARTREQUEST._serialized_start = 9447
258
- _NEWROBOTPARTREQUEST._serialized_end = 9524
259
- _NEWROBOTPARTRESPONSE._serialized_start = 9526
260
- _NEWROBOTPARTRESPONSE._serialized_end = 9573
261
- _DELETEROBOTPARTREQUEST._serialized_start = 9575
262
- _DELETEROBOTPARTREQUEST._serialized_end = 9624
263
- _GETROBOTAPIKEYSREQUEST._serialized_start = 9626
264
- _GETROBOTAPIKEYSREQUEST._serialized_end = 9677
265
- _APIKEY._serialized_start = 9679
266
- _APIKEY._serialized_end = 9800
267
- _GETROBOTAPIKEYSRESPONSE._serialized_start = 9802
268
- _GETROBOTAPIKEYSRESPONSE._serialized_end = 9893
269
- _DELETEROBOTPARTRESPONSE._serialized_start = 9895
270
- _DELETEROBOTPARTRESPONSE._serialized_end = 9920
271
- _FRAGMENT._serialized_start = 9923
272
- _FRAGMENT._serialized_end = 10604
273
- _FRAGMENTHISTORYENTRY._serialized_start = 10607
274
- _FRAGMENTHISTORYENTRY._serialized_end = 10962
275
- _LISTFRAGMENTSREQUEST._serialized_start = 10965
276
- _LISTFRAGMENTSREQUEST._serialized_end = 11143
277
- _LISTFRAGMENTSRESPONSE._serialized_start = 11145
278
- _LISTFRAGMENTSRESPONSE._serialized_end = 11221
279
- _GETFRAGMENTREQUEST._serialized_start = 11223
280
- _GETFRAGMENTREQUEST._serialized_end = 11259
281
- _GETFRAGMENTRESPONSE._serialized_start = 11261
282
- _GETFRAGMENTRESPONSE._serialized_end = 11333
283
- _CREATEFRAGMENTREQUEST._serialized_start = 11336
284
- _CREATEFRAGMENTREQUEST._serialized_end = 11469
285
- _CREATEFRAGMENTRESPONSE._serialized_start = 11471
286
- _CREATEFRAGMENTRESPONSE._serialized_end = 11546
287
- _UPDATEFRAGMENTREQUEST._serialized_start = 11549
288
- _UPDATEFRAGMENTREQUEST._serialized_end = 11782
289
- _UPDATEFRAGMENTRESPONSE._serialized_start = 11784
290
- _UPDATEFRAGMENTRESPONSE._serialized_end = 11859
291
- _DELETEFRAGMENTREQUEST._serialized_start = 11861
292
- _DELETEFRAGMENTREQUEST._serialized_end = 11900
293
- _DELETEFRAGMENTRESPONSE._serialized_start = 11902
294
- _DELETEFRAGMENTRESPONSE._serialized_end = 11926
295
- _GETFRAGMENTHISTORYREQUEST._serialized_start = 11929
296
- _GETFRAGMENTHISTORYREQUEST._serialized_end = 12074
297
- _GETFRAGMENTHISTORYRESPONSE._serialized_start = 12077
298
- _GETFRAGMENTHISTORYRESPONSE._serialized_end = 12206
299
- _LISTROBOTSREQUEST._serialized_start = 12208
300
- _LISTROBOTSREQUEST._serialized_end = 12260
301
- _LISTMACHINEFRAGMENTSREQUEST._serialized_start = 12262
302
- _LISTMACHINEFRAGMENTSREQUEST._serialized_end = 12378
303
- _LISTMACHINEFRAGMENTSRESPONSE._serialized_start = 12380
304
- _LISTMACHINEFRAGMENTSRESPONSE._serialized_end = 12463
305
- _LISTROBOTSRESPONSE._serialized_start = 12465
306
- _LISTROBOTSRESPONSE._serialized_end = 12529
307
- _NEWROBOTREQUEST._serialized_start = 12531
308
- _NEWROBOTREQUEST._serialized_end = 12596
309
- _NEWROBOTRESPONSE._serialized_start = 12598
310
- _NEWROBOTRESPONSE._serialized_end = 12632
311
- _UPDATEROBOTREQUEST._serialized_start = 12634
312
- _UPDATEROBOTREQUEST._serialized_end = 12718
313
- _UPDATEROBOTRESPONSE._serialized_start = 12720
314
- _UPDATEROBOTRESPONSE._serialized_end = 12783
315
- _DELETEROBOTREQUEST._serialized_start = 12785
316
- _DELETEROBOTREQUEST._serialized_end = 12821
317
- _DELETEROBOTRESPONSE._serialized_start = 12823
318
- _DELETEROBOTRESPONSE._serialized_end = 12844
319
- _MARKPARTASMAINREQUEST._serialized_start = 12846
320
- _MARKPARTASMAINREQUEST._serialized_end = 12894
321
- _MARKPARTASMAINRESPONSE._serialized_start = 12896
322
- _MARKPARTASMAINRESPONSE._serialized_end = 12920
323
- _MARKPARTFORRESTARTREQUEST._serialized_start = 12922
324
- _MARKPARTFORRESTARTREQUEST._serialized_end = 12974
325
- _MARKPARTFORRESTARTRESPONSE._serialized_start = 12976
326
- _MARKPARTFORRESTARTRESPONSE._serialized_end = 13004
327
- _CREATEROBOTPARTSECRETREQUEST._serialized_start = 13006
328
- _CREATEROBOTPARTSECRETREQUEST._serialized_end = 13061
329
- _CREATEROBOTPARTSECRETRESPONSE._serialized_start = 13063
330
- _CREATEROBOTPARTSECRETRESPONSE._serialized_end = 13138
331
- _DELETEROBOTPARTSECRETREQUEST._serialized_start = 13140
332
- _DELETEROBOTPARTSECRETREQUEST._serialized_end = 13224
333
- _DELETEROBOTPARTSECRETRESPONSE._serialized_start = 13226
334
- _DELETEROBOTPARTSECRETRESPONSE._serialized_end = 13257
335
- _AUTHORIZATION._serialized_start = 13260
336
- _AUTHORIZATION._serialized_end = 13546
337
- _ADDROLEREQUEST._serialized_start = 13548
338
- _ADDROLEREQUEST._serialized_end = 13630
339
- _ADDROLERESPONSE._serialized_start = 13632
340
- _ADDROLERESPONSE._serialized_end = 13649
341
- _REMOVEROLEREQUEST._serialized_start = 13651
342
- _REMOVEROLEREQUEST._serialized_end = 13736
343
- _REMOVEROLERESPONSE._serialized_start = 13738
344
- _REMOVEROLERESPONSE._serialized_end = 13758
345
- _CHANGEROLEREQUEST._serialized_start = 13761
346
- _CHANGEROLEREQUEST._serialized_end = 13926
347
- _CHANGEROLERESPONSE._serialized_start = 13928
348
- _CHANGEROLERESPONSE._serialized_end = 13948
349
- _LISTAUTHORIZATIONSREQUEST._serialized_start = 13950
350
- _LISTAUTHORIZATIONSREQUEST._serialized_end = 14053
351
- _LISTAUTHORIZATIONSRESPONSE._serialized_start = 14055
352
- _LISTAUTHORIZATIONSRESPONSE._serialized_end = 14151
353
- _CHECKPERMISSIONSREQUEST._serialized_start = 14153
354
- _CHECKPERMISSIONSREQUEST._serialized_end = 14248
355
- _AUTHORIZEDPERMISSIONS._serialized_start = 14250
356
- _AUTHORIZEDPERMISSIONS._serialized_end = 14377
357
- _CHECKPERMISSIONSRESPONSE._serialized_start = 14379
358
- _CHECKPERMISSIONSRESPONSE._serialized_end = 14496
359
- _MODULEVERSION._serialized_start = 14499
360
- _MODULEVERSION._serialized_end = 14660
361
- _MODULEMETADATA._serialized_start = 14663
362
- _MODULEMETADATA._serialized_end = 14811
363
- _MLMODELMETADATA._serialized_start = 14814
364
- _MLMODELMETADATA._serialized_end = 15006
365
- _MLTRAININGVERSION._serialized_start = 15008
366
- _MLTRAININGVERSION._serialized_end = 15112
367
- _MLTRAININGMETADATA._serialized_start = 15115
368
- _MLTRAININGMETADATA._serialized_end = 15370
369
- _REGISTRYITEM._serialized_start = 15373
370
- _REGISTRYITEM._serialized_end = 16281
371
- _GETREGISTRYITEMREQUEST._serialized_start = 16283
372
- _GETREGISTRYITEMREQUEST._serialized_end = 16332
373
- _GETREGISTRYITEMRESPONSE._serialized_start = 16334
374
- _GETREGISTRYITEMRESPONSE._serialized_end = 16406
375
- _CREATEREGISTRYITEMREQUEST._serialized_start = 16409
376
- _CREATEREGISTRYITEMREQUEST._serialized_end = 16552
377
- _CREATEREGISTRYITEMRESPONSE._serialized_start = 16554
378
- _CREATEREGISTRYITEMRESPONSE._serialized_end = 16582
379
- _UPDATEREGISTRYITEMREQUEST._serialized_start = 16585
380
- _UPDATEREGISTRYITEMREQUEST._serialized_end = 16783
381
- _UPDATEREGISTRYITEMRESPONSE._serialized_start = 16785
382
- _UPDATEREGISTRYITEMRESPONSE._serialized_end = 16813
383
- _LISTREGISTRYITEMSREQUEST._serialized_start = 16816
384
- _LISTREGISTRYITEMSREQUEST._serialized_end = 17267
385
- _LISTREGISTRYITEMSRESPONSE._serialized_start = 17269
386
- _LISTREGISTRYITEMSRESPONSE._serialized_end = 17345
387
- _DELETEREGISTRYITEMREQUEST._serialized_start = 17347
388
- _DELETEREGISTRYITEMREQUEST._serialized_end = 17399
389
- _DELETEREGISTRYITEMRESPONSE._serialized_start = 17401
390
- _DELETEREGISTRYITEMRESPONSE._serialized_end = 17429
391
- _TRANSFERREGISTRYITEMREQUEST._serialized_start = 17431
392
- _TRANSFERREGISTRYITEMREQUEST._serialized_end = 17535
393
- _TRANSFERREGISTRYITEMRESPONSE._serialized_start = 17537
394
- _TRANSFERREGISTRYITEMRESPONSE._serialized_end = 17567
395
- _CREATEMODULEREQUEST._serialized_start = 17569
396
- _CREATEMODULEREQUEST._serialized_end = 17651
397
- _CREATEMODULERESPONSE._serialized_start = 17653
398
- _CREATEMODULERESPONSE._serialized_end = 17722
399
- _UPDATEMODULEREQUEST._serialized_start = 17725
400
- _UPDATEMODULEREQUEST._serialized_end = 17960
401
- _UPDATEMODULERESPONSE._serialized_start = 17962
402
- _UPDATEMODULERESPONSE._serialized_end = 18002
403
- _MODEL._serialized_start = 18004
404
- _MODEL._serialized_end = 18051
405
- _MODULEFILEINFO._serialized_start = 18053
406
- _MODULEFILEINFO._serialized_end = 18152
407
- _UPLOADMODULEFILEREQUEST._serialized_start = 18155
408
- _UPLOADMODULEFILEREQUEST._serialized_end = 18290
409
- _UPLOADMODULEFILERESPONSE._serialized_start = 18292
410
- _UPLOADMODULEFILERESPONSE._serialized_end = 18336
411
- _GETMODULEREQUEST._serialized_start = 18338
412
- _GETMODULEREQUEST._serialized_end = 18385
413
- _GETMODULERESPONSE._serialized_start = 18387
414
- _GETMODULERESPONSE._serialized_end = 18451
415
- _MODULE._serialized_start = 18454
416
- _MODULE._serialized_end = 18939
417
- _VERSIONHISTORY._serialized_start = 18942
418
- _VERSIONHISTORY._serialized_end = 19104
419
- _UPLOADS._serialized_start = 19106
420
- _UPLOADS._serialized_end = 19204
421
- _LISTMODULESREQUEST._serialized_start = 19206
422
- _LISTMODULESREQUEST._serialized_end = 19292
423
- _LISTMODULESRESPONSE._serialized_start = 19294
424
- _LISTMODULESRESPONSE._serialized_end = 19362
425
- _GETUSERIDBYEMAILREQUEST._serialized_start = 19364
426
- _GETUSERIDBYEMAILREQUEST._serialized_end = 19411
427
- _GETUSERIDBYEMAILRESPONSE._serialized_start = 19413
428
- _GETUSERIDBYEMAILRESPONSE._serialized_end = 19464
429
- _LISTORGANIZATIONSBYUSERREQUEST._serialized_start = 19466
430
- _LISTORGANIZATIONSBYUSERREQUEST._serialized_end = 19523
431
- _ORGDETAILS._serialized_start = 19525
432
- _ORGDETAILS._serialized_end = 19587
433
- _LISTORGANIZATIONSBYUSERRESPONSE._serialized_start = 19589
434
- _LISTORGANIZATIONSBYUSERRESPONSE._serialized_end = 19667
435
- _CREATEKEYREQUEST._serialized_start = 19669
436
- _CREATEKEYREQUEST._serialized_end = 19775
437
- _CREATEKEYRESPONSE._serialized_start = 19777
438
- _CREATEKEYRESPONSE._serialized_end = 19830
439
- _DELETEKEYREQUEST._serialized_start = 19832
440
- _DELETEKEYREQUEST._serialized_end = 19866
441
- _DELETEKEYRESPONSE._serialized_start = 19868
442
- _DELETEKEYRESPONSE._serialized_end = 19887
443
- _RENAMEKEYREQUEST._serialized_start = 19889
444
- _RENAMEKEYREQUEST._serialized_end = 19943
445
- _RENAMEKEYRESPONSE._serialized_start = 19945
446
- _RENAMEKEYRESPONSE._serialized_end = 20000
447
- _AUTHORIZATIONDETAILS._serialized_start = 20003
448
- _AUTHORIZATIONDETAILS._serialized_end = 20208
449
- _APIKEYWITHAUTHORIZATIONS._serialized_start = 20211
450
- _APIKEYWITHAUTHORIZATIONS._serialized_end = 20358
451
- _LISTKEYSREQUEST._serialized_start = 20360
452
- _LISTKEYSREQUEST._serialized_end = 20400
453
- _LISTKEYSRESPONSE._serialized_start = 20402
454
- _LISTKEYSRESPONSE._serialized_end = 20486
455
- _ROTATEKEYREQUEST._serialized_start = 20488
456
- _ROTATEKEYREQUEST._serialized_end = 20522
457
- _ROTATEKEYRESPONSE._serialized_start = 20524
458
- _ROTATEKEYRESPONSE._serialized_end = 20577
459
- _CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST._serialized_start = 20579
460
- _CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST._serialized_end = 20642
461
- _CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE._serialized_start = 20644
462
- _CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE._serialized_end = 20726
463
- _APPSERVICE._serialized_start = 21334
464
- _APPSERVICE._serialized_end = 28498
15
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10app/v1/app.proto\x12\x0bviam.app.v1\x1a#app/mltraining/v1/ml_training.proto\x1a\x1eapp/packages/v1/packages.proto\x1a\x16common/v1/common.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x16tagger/v1/tagger.proto"\xec\x02\n\x05Robot\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12@\n\x08location\x18\x03 \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"location" json:"location"R\x08location\x12g\n\x0blast_access\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampB*\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"R\nlastAccess\x12Q\n\ncreated_on\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn"\xaf\x08\n\tRobotPart\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12?\n\x08dns_name\x18\n \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"dns_name" json:"dns_name"R\x07dnsName\x12B\n\x06secret\x18\x03 \x01(\tB*\x9a\x84\x9e\x03%bson:"secret" json:"secret,omitempty"R\x06secret\x124\n\x05robot\x18\x04 \x01(\tB\x1e\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"R\x05robot\x12A\n\x0blocation_id\x18\x0c \x01(\tB \x9a\x84\x9e\x03\x1bbson:"location_id" json:"-"R\nlocationId\x12b\n\x0crobot_config\x18\x05 \x01(\x0b2\x17.google.protobuf.StructB&\x9a\x84\x9e\x03!bson:"config" json:"robot_config"R\x0brobotConfig\x12g\n\x0blast_access\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampB*\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"R\nlastAccess\x12\x7f\n\x12user_supplied_info\x18\x07 \x01(\x0b2\x17.google.protobuf.StructB8\x9a\x84\x9e\x033bson:"user_supplied_info" json:"user_supplied_info"R\x10userSuppliedInfo\x12C\n\tmain_part\x18\x08 \x01(\x08B&\x9a\x84\x9e\x03!bson:"main_part" json:"main_part"R\x08mainPart\x12\x12\n\x04fqdn\x18\t \x01(\tR\x04fqdn\x12\x1d\n\nlocal_fqdn\x18\x0b \x01(\tR\tlocalFqdn\x12Q\n\ncreated_on\x18\r \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn\x12H\n\x07secrets\x18\x0e \x03(\x0b2\x19.viam.app.v1.SharedSecretB\x13\x9a\x84\x9e\x03\x0ebson:"secrets"R\x07secrets\x12Z\n\x0clast_updated\x18\x0f \x01(\x0b2\x1a.google.protobuf.TimestampB\x1b\x9a\x84\x9e\x03\x16bson:"last_updated_at"R\x0blastUpdated"\xf8\x02\n\x15RobotPartHistoryEntry\x120\n\x04part\x18\x01 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"part" json:"part"R\x04part\x124\n\x05robot\x18\x02 \x01(\tB\x1e\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"R\x05robot\x12L\n\x04when\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampB\x1c\x9a\x84\x9e\x03\x17bson:"when" json:"when"R\x04when\x12D\n\x03old\x18\x04 \x01(\x0b2\x16.viam.app.v1.RobotPartB\x1a\x9a\x84\x9e\x03\x15bson:"old" json:"old"R\x03old\x12c\n\tedited_by\x18\x05 \x01(\x0b2\x1e.viam.app.v1.AuthenticatorInfoB&\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"R\x08editedBy"\x85\x01\n\x11AuthenticatorInfo\x123\n\x04type\x18\x01 \x01(\x0e2\x1f.viam.app.v1.AuthenticationTypeR\x04type\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\x12%\n\x0eis_deactivated\x18\x03 \x01(\x08R\risDeactivated"\x1a\n\x18ListOrganizationsRequest"\xde\x01\n\x0cOrganization\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12)\n\x10public_namespace\x18\x04 \x01(\tR\x0fpublicNamespace\x12%\n\x0edefault_region\x18\x05 \x01(\tR\rdefaultRegion\x12\x15\n\x03cid\x18\x06 \x01(\tH\x00R\x03cid\x88\x01\x01B\x06\n\x04_cid"\xa1\x02\n\x12OrganizationMember\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId\x12\x16\n\x06emails\x18\x02 \x03(\tR\x06emails\x129\n\ndate_added\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tdateAdded\x12>\n\nlast_login\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampH\x00R\tlastLogin\x88\x01\x01\x12@\n\x0blast_access\x18\x05 \x01(\x0b2\x1a.google.protobuf.TimestampH\x01R\nlastAccess\x88\x01\x01B\r\n\x0b_last_loginB\x0e\n\x0c_last_access"\\\n\x19ListOrganizationsResponse\x12?\n\rorganizations\x18\x01 \x03(\x0b2\x19.viam.app.v1.OrganizationR\rorganizations"\xd2\x01\n\x12OrganizationInvite\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12B\n\x0eauthorizations\x18\x04 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations"/\n\x19CreateOrganizationRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name"[\n\x1aCreateOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"A\n\x16GetOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"X\n\x17GetOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"\x81\x01\n+GetOrganizationNamespaceAvailabilityRequest\x12)\n\x10public_namespace\x18\x01 \x01(\tR\x0fpublicNamespace\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId"L\n,GetOrganizationNamespaceAvailabilityResponse\x12\x1c\n\tavailable\x18\x01 \x01(\x08R\tavailable"\xf2\x01\n\x19UpdateOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x12.\n\x10public_namespace\x18\x03 \x01(\tH\x01R\x0fpublicNamespace\x88\x01\x01\x12\x1b\n\x06region\x18\x04 \x01(\tH\x02R\x06region\x88\x01\x01\x12\x15\n\x03cid\x18\x05 \x01(\tH\x03R\x03cid\x88\x01\x01B\x07\n\x05_nameB\x13\n\x11_public_namespaceB\t\n\x07_regionB\x06\n\x04_cid"[\n\x1aUpdateOrganizationResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"\x7f\n"UpdateOrganizationNamespaceRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x120\n\x14new_public_namespace\x18\x02 \x01(\tR\x12newPublicNamespace"d\n#UpdateOrganizationNamespaceResponse\x12=\n\x0corganization\x18\x01 \x01(\x0b2\x19.viam.app.v1.OrganizationR\x0corganization"D\n\x19DeleteOrganizationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"\x1c\n\x1aDeleteOrganizationResponse"I\n\x1eGetOrganizationMetadataRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"N\n\x1fGetOrganizationMetadataResponse\x12+\n\x04data\x18\x01 \x01(\x0b2\x17.google.protobuf.StructR\x04data"y\n!UpdateOrganizationMetadataRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12+\n\x04data\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x04data"$\n"UpdateOrganizationMetadataResponse"I\n\x1eListOrganizationMembersRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"\xc0\x01\n\x1fListOrganizationMembersResponse\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x129\n\x07members\x18\x02 \x03(\x0b2\x1f.viam.app.v1.OrganizationMemberR\x07members\x129\n\x07invites\x18\x03 \x03(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x07invites"\xeb\x01\n\x1fCreateOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x12B\n\x0eauthorizations\x18\x03 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations\x12/\n\x11send_email_invite\x18\x04 \x01(\x08H\x00R\x0fsendEmailInvite\x88\x01\x01B\x14\n\x12_send_email_invite"[\n CreateOrganizationInviteResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"\x8a\x02\n-UpdateOrganizationInviteAuthorizationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x12I\n\x12add_authorizations\x18\x03 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x11addAuthorizations\x12O\n\x15remove_authorizations\x18\x04 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x14removeAuthorizations"i\n.UpdateOrganizationInviteAuthorizationsResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"`\n\x1fDeleteOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email""\n DeleteOrganizationInviteResponse"\xa7\x01\n\x1fResendOrganizationInviteRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email\x12/\n\x11send_email_invite\x18\x03 \x01(\x08H\x00R\x0fsendEmailInvite\x88\x01\x01B\x14\n\x12_send_email_invite"[\n ResendOrganizationInviteResponse\x127\n\x06invite\x18\x01 \x01(\x0b2\x1f.viam.app.v1.OrganizationInviteR\x06invite"c\n\x1fDeleteOrganizationMemberRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId""\n DeleteOrganizationMemberResponse"\xd2\x01\n\x0eBillingAddress\x12$\n\x0eaddress_line_1\x18\x01 \x01(\tR\x0caddressLine1\x12)\n\x0eaddress_line_2\x18\x02 \x01(\tH\x00R\x0caddressLine2\x88\x01\x01\x12\x12\n\x04city\x18\x03 \x01(\tR\x04city\x12\x14\n\x05state\x18\x04 \x01(\tR\x05state\x12\x18\n\x07zipcode\x18\x05 \x01(\tR\x07zipcode\x12\x18\n\x07country\x18\x06 \x01(\tR\x07countryB\x11\n\x0f_address_line_2"z\n\x1bEnableBillingServiceRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12D\n\x0fbilling_address\x18\x02 \x01(\x0b2\x1b.viam.app.v1.BillingAddressR\x0ebillingAddress"\x1e\n\x1cEnableBillingServiceResponse"z\n\x1bUpdateBillingServiceRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12D\n\x0fbilling_address\x18\x02 \x01(\x0b2\x1b.viam.app.v1.BillingAddressR\x0ebillingAddress"\x1e\n\x1cUpdateBillingServiceResponse"7\n\x1eGetBillingServiceConfigRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\xdb\x01\n\x1fGetBillingServiceConfigResponse\x12D\n\x0fbilling_address\x18\x01 \x01(\x0b2\x1b.viam.app.v1.BillingAddressR\x0ebillingAddress\x12#\n\rsupport_email\x18\x02 \x01(\tR\x0csupportEmail\x12\x19\n\x08logo_url\x18\x03 \x01(\tR\x07logoUrl\x122\n\x15billing_dashboard_url\x18\x04 \x01(\tR\x13billingDashboardUrl"5\n\x1cDisableBillingServiceRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x1f\n\x1dDisableBillingServiceResponse"Q\n"OrganizationSetSupportEmailRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x14\n\x05email\x18\x02 \x01(\tR\x05email"%\n#OrganizationSetSupportEmailResponse";\n"OrganizationGetSupportEmailRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId";\n#OrganizationGetSupportEmailResponse\x12\x14\n\x05email\x18\x01 \x01(\tR\x05email":\n\x14OrganizationIdentity\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"Y\n\x14LocationOrganization\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x18\n\x07primary\x18\x02 \x01(\x08R\x07primary"\x80\x01\n\x0cLocationAuth\x12\x1a\n\x06secret\x18\x01 \x01(\tB\x02\x18\x01R\x06secret\x12\x1f\n\x0blocation_id\x18\x02 \x01(\tR\nlocationId\x123\n\x07secrets\x18\x03 \x03(\x0b2\x19.viam.app.v1.SharedSecretR\x07secrets"\'\n\rStorageConfig\x12\x16\n\x06region\x18\x01 \x01(\tR\x06region"\xd7\x03\n\x08Location\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12,\n\x12parent_location_id\x18\x04 \x01(\tR\x10parentLocationId\x12-\n\x04auth\x18\x05 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth\x12G\n\rorganizations\x18\x06 \x03(\x0b2!.viam.app.v1.LocationOrganizationR\rorganizations\x129\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn\x12\x1f\n\x0brobot_count\x18\x07 \x01(\x05R\nrobotCount\x122\n\x06config\x18\x08 \x01(\x0b2\x1a.viam.app.v1.StorageConfigR\x06config\x12X\n\x14primary_org_identity\x18\t \x01(\x0b2!.viam.app.v1.OrganizationIdentityH\x00R\x12primaryOrgIdentity\x88\x01\x01B\x17\n\x15_primary_org_identity"\xd0\x02\n\x0cSharedSecret\x12\x1e\n\x02id\x18\x01 \x01(\tB\x0e\x9a\x84\x9e\x03\tbson:"id"R\x02id\x12*\n\x06secret\x18\x02 \x01(\tB\x12\x9a\x84\x9e\x03\rbson:"secret"R\x06secret\x12c\n\ncreated_on\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampB(\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"R\tcreatedOn\x12H\n\x05state\x18\x04 \x01(\x0e2\x1f.viam.app.v1.SharedSecret.StateB\x11\x9a\x84\x9e\x03\x0cbson:"state"R\x05state"E\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x11\n\rSTATE_ENABLED\x10\x01\x12\x12\n\x0eSTATE_DISABLED\x10\x02"\x9e\x01\n\x15CreateLocationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x121\n\x12parent_location_id\x18\x03 \x01(\tH\x00R\x10parentLocationId\x88\x01\x01B\x15\n\x13_parent_location_id"K\n\x16CreateLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"5\n\x12GetLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"H\n\x13GetLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"\xcc\x01\n\x15UpdateLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\x17\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x88\x01\x01\x121\n\x12parent_location_id\x18\x03 \x01(\tH\x01R\x10parentLocationId\x88\x01\x01\x12\x1b\n\x06region\x18\x04 \x01(\tH\x02R\x06region\x88\x01\x01B\x07\n\x05_nameB\x15\n\x13_parent_location_idB\t\n\x07_region"K\n\x16UpdateLocationResponse\x121\n\x08location\x18\x01 \x01(\x0b2\x15.viam.app.v1.LocationR\x08location"8\n\x15DeleteLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"\x18\n\x16DeleteLocationResponse"=\n\x1aGetLocationMetadataRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"J\n\x1bGetLocationMetadataResponse\x12+\n\x04data\x18\x01 \x01(\x0b2\x17.google.protobuf.StructR\x04data"m\n\x1dUpdateLocationMetadataRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12+\n\x04data\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x04data" \n\x1eUpdateLocationMetadataResponse"N\n+GetOrganizationsWithAccessToLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"\x8a\x01\n,GetOrganizationsWithAccessToLocationResponse\x12Z\n\x17organization_identities\x18\x01 \x03(\x0b2!.viam.app.v1.OrganizationIdentityR\x16organizationIdentities"?\n\x14ListLocationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"`\n\x14ShareLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId"\x17\n\x15ShareLocationResponse"b\n\x16UnshareLocationRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId"\x19\n\x17UnshareLocationResponse"L\n\x15ListLocationsResponse\x123\n\tlocations\x18\x01 \x03(\x0b2\x15.viam.app.v1.LocationR\tlocations">\n\x1bCreateLocationSecretRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"M\n\x1cCreateLocationSecretResponse\x12-\n\x04auth\x18\x01 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth"[\n\x1bDeleteLocationSecretRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12\x1b\n\tsecret_id\x18\x02 \x01(\tR\x08secretId"\x1e\n\x1cDeleteLocationSecretResponse"6\n\x13LocationAuthRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"E\n\x14LocationAuthResponse\x12-\n\x04auth\x18\x01 \x01(\x0b2\x19.viam.app.v1.LocationAuthR\x04auth"!\n\x0fGetRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"4\n\x1bGetRoverRentalRobotsRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x9a\x01\n\x10RoverRentalRobot\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId\x12\x1f\n\x0blocation_id\x18\x02 \x01(\tR\nlocationId\x12\x1d\n\nrobot_name\x18\x03 \x01(\tR\trobotName\x12+\n\x12robot_main_part_id\x18\x04 \x01(\tR\x0frobotMainPartId"U\n\x1cGetRoverRentalRobotsResponse\x125\n\x06robots\x18\x01 \x03(\x0b2\x1d.viam.app.v1.RoverRentalRobotR\x06robots"<\n\x10GetRobotResponse\x12(\n\x05robot\x18\x01 \x01(\x0b2\x12.viam.app.v1.RobotR\x05robot"1\n\x14GetRobotPartsRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId"E\n\x15GetRobotPartsResponse\x12,\n\x05parts\x18\x01 \x03(\x0b2\x16.viam.app.v1.RobotPartR\x05parts"%\n\x13GetRobotPartRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"c\n\x14GetRobotPartResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part\x12\x1f\n\x0bconfig_json\x18\x02 \x01(\tR\nconfigJson"[\n$GetRobotPartByNameAndLocationRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1f\n\x0blocation_id\x18\x02 \x01(\tR\nlocationId"S\n%GetRobotPartByNameAndLocationResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part"\x8a\x03\n\x17GetRobotPartLogsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12#\n\x0berrors_only\x18\x02 \x01(\x08B\x02\x18\x01R\nerrorsOnly\x12\x1b\n\x06filter\x18\x03 \x01(\tH\x00R\x06filter\x88\x01\x01\x12"\n\npage_token\x18\x04 \x01(\tH\x01R\tpageToken\x88\x01\x01\x12\x16\n\x06levels\x18\x05 \x03(\tR\x06levels\x125\n\x05start\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampH\x02R\x05start\x88\x01\x01\x121\n\x03end\x18\x07 \x01(\x0b2\x1a.google.protobuf.TimestampH\x03R\x03end\x88\x01\x01\x12\x19\n\x05limit\x18\x08 \x01(\x03H\x04R\x05limit\x88\x01\x01\x12\x1b\n\x06source\x18\t \x01(\tH\x05R\x06source\x88\x01\x01B\t\n\x07_filterB\r\n\x0b_page_tokenB\x08\n\x06_startB\x06\n\x04_endB\x08\n\x06_limitB\t\n\x07_source"p\n\x18GetRobotPartLogsResponse\x12,\n\x04logs\x18\x01 \x03(\x0b2\x18.viam.common.v1.LogEntryR\x04logs\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken"s\n\x18TailRobotPartLogsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1f\n\x0berrors_only\x18\x02 \x01(\x08R\nerrorsOnly\x12\x1b\n\x06filter\x18\x03 \x01(\tH\x00R\x06filter\x88\x01\x01B\t\n\x07_filter"I\n\x19TailRobotPartLogsResponse\x12,\n\x04logs\x18\x01 \x03(\x0b2\x18.viam.common.v1.LogEntryR\x04logs",\n\x1aGetRobotPartHistoryRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"[\n\x1bGetRobotPartHistoryResponse\x12<\n\x07history\x18\x01 \x03(\x0b2".viam.app.v1.RobotPartHistoryEntryR\x07history"\xdb\x01\n\x16UpdateRobotPartRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12:\n\x0crobot_config\x18\x03 \x01(\x0b2\x17.google.protobuf.StructR\x0brobotConfig\x12K\n\x11last_known_update\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampH\x00R\x0flastKnownUpdate\x88\x01\x01B\x14\n\x12_last_known_update"E\n\x17UpdateRobotPartResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part"M\n\x13NewRobotPartRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId\x12\x1b\n\tpart_name\x18\x02 \x01(\tR\x08partName"/\n\x14NewRobotPartResponse\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"1\n\x16DeleteRobotPartRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"-\n\x1bGetRobotPartMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"K\n\x1cGetRobotPartMetadataResponse\x12+\n\x04data\x18\x01 \x01(\x0b2\x17.google.protobuf.StructR\x04data"]\n\x1eUpdateRobotPartMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12+\n\x04data\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x04data"!\n\x1fUpdateRobotPartMetadataResponse"3\n\x16GetRobotAPIKeysRequest\x12\x19\n\x08robot_id\x18\x01 \x01(\tR\x07robotId"y\n\x06APIKey\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x129\n\ncreated_on\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn"[\n\x17GetRobotAPIKeysResponse\x12@\n\x08api_keys\x18\x01 \x03(\x0b2%.viam.app.v1.APIKeyWithAuthorizationsR\x07apiKeys"\x19\n\x17DeleteRobotPartResponse"\xa1\x06\n\x08Fragment\x123\n\x02id\x18\x01 \x01(\tB#\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"R\x02id\x120\n\x04name\x18\x02 \x01(\tB\x1c\x9a\x84\x9e\x03\x17bson:"name" json:"name"R\x04name\x12Y\n\x08fragment\x18\x03 \x01(\x0b2\x17.google.protobuf.StructB$\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"R\x08fragment\x12Z\n\x12organization_owner\x18\x04 \x01(\tB+\x9a\x84\x9e\x03&bson:"organization_owner" json:"owner"R\x11organizationOwner\x128\n\x06public\x18\x05 \x01(\x08B \x9a\x84\x9e\x03\x1bbson:"public" json:"public"R\x06public\x12Q\n\ncreated_on\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampB\x16\x9a\x84\x9e\x03\x11bson:"created_on"R\tcreatedOn\x12+\n\x11organization_name\x18\x07 \x01(\tR\x10organizationName\x12(\n\x10robot_part_count\x18\t \x01(\x05R\x0erobotPartCount\x12-\n\x12organization_count\x18\n \x01(\x05R\x11organizationCount\x12+\n\x12only_used_by_owner\x18\x0b \x01(\x08R\x0fonlyUsedByOwner\x12?\n\nvisibility\x18\x0c \x01(\x0e2\x1f.viam.app.v1.FragmentVisibilityR\nvisibility\x12Z\n\x0clast_updated\x18\r \x01(\x0b2\x1a.google.protobuf.TimestampB\x1b\x9a\x84\x9e\x03\x16bson:"last_updated_at"R\x0blastUpdated\x12\x1a\n\x08revision\x18\x0e \x01(\tR\x08revision"\xf8\x03\n\x14FragmentHistoryEntry\x12@\n\x08fragment\x18\x01 \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"R\x08fragment\x12_\n\tedited_on\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampB&\x9a\x84\x9e\x03!bson:"edited_on" json:"edited_on"R\x08editedOn\x12C\n\x03old\x18\x03 \x01(\x0b2\x15.viam.app.v1.FragmentB\x1a\x9a\x84\x9e\x03\x15bson:"old" json:"old"R\x03old\x12c\n\tedited_by\x18\x04 \x01(\x0b2\x1e.viam.app.v1.AuthenticatorInfoB&\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"R\x08editedBy\x12@\n\x08revision\x18\x05 \x01(\tB$\x9a\x84\x9e\x03\x1fbson:"revision" json:"revision"R\x08revision\x12Q\n\x06config\x18\x06 \x01(\x0b2\x17.google.protobuf.StructB \x9a\x84\x9e\x03\x1bbson:"config" json:"config"R\x06config"i\n\x10FragmentRevision\x12\x1a\n\x08revision\x18\x01 \x01(\tR\x08revision\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt";\n\x0bFragmentTag\x12\x10\n\x03tag\x18\x01 \x01(\tR\x03tag\x12\x1a\n\x08revision\x18\x02 \x01(\tR\x08revision"\x87\x01\n\rFragmentError\x12=\n\nerror_type\x18\x01 \x01(\x0e2\x1e.viam.app.v1.FragmentErrorTypeR\terrorType\x12\x1f\n\x0bfragment_id\x18\x02 \x01(\tR\nfragmentId\x12\x16\n\x06detail\x18\x03 \x01(\tR\x06detail"\xd4\x01\n\rFragmentUsage\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12$\n\rorganizations\x18\x02 \x01(\x05R\rorganizations\x12\x1a\n\x08machines\x18\x03 \x01(\x05R\x08machines\x125\n\x17machines_in_current_org\x18\x04 \x01(\x05R\x14machinesInCurrentOrg\x12\x1d\n\x07version\x18\x05 \x01(\tH\x00R\x07version\x88\x01\x01B\n\n\x08_version"\xc3\x01\n\x10ResolvedFragment\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12@\n\x0fresolved_config\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x0eresolvedConfig\x120\n\x05error\x18\x03 \x01(\x0b2\x1a.viam.app.v1.FragmentErrorR\x05error\x12\x1a\n\x08revision\x18\x04 \x01(\tR\x08revision"\xb2\x01\n\x14ListFragmentsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x1f\n\x0bshow_public\x18\x02 \x01(\x08R\nshowPublic\x12P\n\x13fragment_visibility\x18\x03 \x03(\x0e2\x1f.viam.app.v1.FragmentVisibilityR\x12fragmentVisibility"\x91\x01\n\x15ListFragmentsResponse\x123\n\tfragments\x18\x01 \x03(\x0b2\x15.viam.app.v1.FragmentR\tfragments\x12C\n\x0ffragment_usages\x18\x02 \x03(\x0b2\x1a.viam.app.v1.FragmentUsageR\x0efragmentUsages"\x87\x01\n\x12GetFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x126\n\x17current_organization_id\x18\x02 \x01(\tR\x15currentOrganizationId\x12\x1d\n\x07version\x18\x03 \x01(\tH\x00R\x07version\x88\x01\x01B\n\n\x08_version"\xf6\x01\n\x13GetFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment\x12A\n\x0efragment_usage\x18\x02 \x01(\x0b2\x1a.viam.app.v1.FragmentUsageR\rfragmentUsage\x12;\n\trevisions\x18\x03 \x03(\x0b2\x1d.viam.app.v1.FragmentRevisionR\trevisions\x12,\n\x04tags\x18\x04 \x03(\x0b2\x18.viam.app.v1.FragmentTagR\x04tags"\xda\x01\n\x15CreateFragmentRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12/\n\x06config\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x06config\x12\'\n\x0forganization_id\x18\x03 \x01(\tR\x0eorganizationId\x12D\n\nvisibility\x18\x04 \x01(\x0e2\x1f.viam.app.v1.FragmentVisibilityH\x00R\nvisibility\x88\x01\x01B\r\n\x0b_visibility"K\n\x16CreateFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment"\xcc\x02\n\x15UpdateFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12/\n\x06config\x18\x03 \x01(\x0b2\x17.google.protobuf.StructR\x06config\x12\x1b\n\x06public\x18\x04 \x01(\x08H\x00R\x06public\x88\x01\x01\x12D\n\nvisibility\x18\x05 \x01(\x0e2\x1f.viam.app.v1.FragmentVisibilityH\x01R\nvisibility\x88\x01\x01\x12K\n\x11last_known_update\x18\x06 \x01(\x0b2\x1a.google.protobuf.TimestampH\x02R\x0flastKnownUpdate\x88\x01\x01B\t\n\x07_publicB\r\n\x0b_visibilityB\x14\n\x12_last_known_update"K\n\x16UpdateFragmentResponse\x121\n\x08fragment\x18\x01 \x01(\x0b2\x15.viam.app.v1.FragmentR\x08fragment"\'\n\x15DeleteFragmentRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x18\n\x16DeleteFragmentResponse"\x91\x01\n\x19GetFragmentHistoryRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12"\n\npage_token\x18\x02 \x01(\tH\x00R\tpageToken\x88\x01\x01\x12"\n\npage_limit\x18\x03 \x01(\x03H\x01R\tpageLimit\x88\x01\x01B\r\n\x0b_page_tokenB\r\n\x0b_page_limit"\x81\x01\n\x1aGetFragmentHistoryResponse\x12;\n\x07history\x18\x01 \x03(\x0b2!.viam.app.v1.FragmentHistoryEntryR\x07history\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken":\n\x17GetFragmentUsageRequest\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId"]\n\x18GetFragmentUsageResponse\x12A\n\x0eversion_usages\x18\x01 \x03(\x0b2\x1a.viam.app.v1.FragmentUsageR\rversionUsages"f\n\x15SetFragmentTagRequest\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12\x10\n\x03tag\x18\x02 \x01(\tR\x03tag\x12\x1a\n\x08revision\x18\x03 \x01(\tR\x08revision"F\n\x16SetFragmentTagResponse\x12,\n\x04tags\x18\x01 \x03(\x0b2\x18.viam.app.v1.FragmentTagR\x04tags"M\n\x18DeleteFragmentTagRequest\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12\x10\n\x03tag\x18\x02 \x01(\tR\x03tag"I\n\x19DeleteFragmentTagResponse\x12,\n\x04tags\x18\x01 \x03(\x0b2\x18.viam.app.v1.FragmentTagR\x04tags"4\n\x11ListRobotsRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"B\n\x1dListRobotsForLocationsRequest\x12!\n\x0clocation_ids\x18\x01 \x03(\tR\x0blocationIds"0\n\x17ListRobotsForOrgRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"`\n\x12AdditionalFragment\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12\x1d\n\x07version\x18\x02 \x01(\tH\x00R\x07version\x88\x01\x01B\n\n\x08_version"\xa6\x01\n\x1aListNestedFragmentsRequest\x12$\n\x0bfragment_id\x18\x01 \x01(\tH\x00R\nfragmentId\x88\x01\x01\x12R\n\x14additional_fragments\x18\x02 \x03(\x0b2\x1f.viam.app.v1.AdditionalFragmentR\x13additionalFragmentsB\x0e\n\x0c_fragment_id"\xa0\x01\n\x1bListNestedFragmentsResponse\x123\n\tfragments\x18\x01 \x03(\x0b2\x15.viam.app.v1.FragmentR\tfragments\x12L\n\x12resolved_fragments\x18\x02 \x03(\x0b2\x1d.viam.app.v1.ResolvedFragmentR\x11resolvedFragments"\xc8\x01\n\x1bListMachineFragmentsRequest\x12\x1d\n\nmachine_id\x18\x01 \x01(\tR\tmachineId\x126\n\x17additional_fragment_ids\x18\x02 \x03(\tR\x15additionalFragmentIds\x12R\n\x14additional_fragments\x18\x03 \x03(\x0b2\x1f.viam.app.v1.AdditionalFragmentR\x13additionalFragments"\xa1\x01\n\x1cListMachineFragmentsResponse\x123\n\tfragments\x18\x01 \x03(\x0b2\x15.viam.app.v1.FragmentR\tfragments\x12L\n\x12resolved_fragments\x18\x02 \x03(\x0b2\x1d.viam.app.v1.ResolvedFragmentR\x11resolvedFragments"\xb1\x01\n\x1bListMachineSummariesRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0cfragment_ids\x18\x02 \x03(\tR\x0bfragmentIds\x12!\n\x0clocation_ids\x18\x03 \x03(\tR\x0blocationIds\x12\x19\n\x05limit\x18\x04 \x01(\x05H\x00R\x05limit\x88\x01\x01B\x08\n\x06_limit"k\n\x1cListMachineSummariesResponse\x12K\n\x12location_summaries\x18\x01 \x03(\x0b2\x1c.viam.app.v1.LocationSummaryR\x11locationSummaries"\xa1\x01\n\x0fLocationSummary\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12#\n\rlocation_name\x18\x02 \x01(\tR\x0clocationName\x12H\n\x11machine_summaries\x18\x03 \x03(\x0b2\x1b.viam.app.v1.MachineSummaryR\x10machineSummaries"\x93\x01\n\x0eMachineSummary\x12\x1d\n\nmachine_id\x18\x01 \x01(\tR\tmachineId\x12!\n\x0cmachine_name\x18\x02 \x01(\tR\x0bmachineName\x12?\n\x0epart_summaries\x18\x03 \x03(\x0b2\x18.viam.app.v1.PartSummaryR\rpartSummaries";\n\x0fFragmentSummary\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x03 \x01(\tR\x04nameJ\x04\x08\x02\x10\x03"N\n\x11ViamServerVersion\x12\x16\n\x05major\x18\x01 \x01(\tH\x00R\x05major\x12\x16\n\x05minor\x18\x02 \x01(\tH\x00R\x05minorB\t\n\x07version"M\n\x10ViamAgentVersion\x12\x16\n\x05major\x18\x01 \x01(\tH\x00R\x05major\x12\x16\n\x05minor\x18\x02 \x01(\tH\x00R\x05minorB\t\n\x07version"\x87\x05\n\x0bPartSummary\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId\x12\x1b\n\tpart_name\x18\x02 \x01(\tR\x08partName\x12 \n\x0cis_main_part\x18\x0b \x01(\x08R\nisMainPart\x12@\n\x0blast_online\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampH\x00R\nlastOnline\x88\x01\x01\x12S\n\x13viam_server_version\x18\x04 \x01(\x0b2\x1e.viam.app.v1.ViamServerVersionH\x01R\x11viamServerVersion\x88\x01\x01\x12P\n\x12viam_agent_version\x18\x05 \x01(\x0b2\x1d.viam.app.v1.ViamAgentVersionH\x02R\x10viamAgentVersion\x88\x01\x01\x12\x13\n\x02os\x18\x06 \x01(\tH\x03R\x02os\x88\x01\x01\x12\x1f\n\x08platform\x18\x07 \x01(\tH\x04R\x08platform\x88\x01\x01\x12/\n\x11public_ip_address\x18\x08 \x01(\tH\x05R\x0fpublicIpAddress\x88\x01\x01\x12\x1e\n\x08dns_name\x18\n \x01(\tH\x06R\x07dnsName\x88\x01\x01\x12:\n\tfragments\x18\t \x03(\x0b2\x1c.viam.app.v1.FragmentSummaryR\tfragmentsB\x0e\n\x0c_last_onlineB\x16\n\x14_viam_server_versionB\x15\n\x13_viam_agent_versionB\x05\n\x03_osB\x0b\n\t_platformB\x14\n\x12_public_ip_addressB\x0b\n\t_dns_name"@\n\x12ListRobotsResponse\x12*\n\x06robots\x18\x01 \x03(\x0b2\x12.viam.app.v1.RobotR\x06robots"L\n\x1eListRobotsForLocationsResponse\x12*\n\x06robots\x18\x01 \x03(\x0b2\x12.viam.app.v1.RobotR\x06robots"F\n\x18ListRobotsForOrgResponse\x12*\n\x06robots\x18\x01 \x03(\x0b2\x12.viam.app.v1.RobotR\x06robots"A\n\x0fNewRobotRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n\x08location\x18\x02 \x01(\tR\x08location""\n\x10NewRobotResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"T\n\x12UpdateRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1a\n\x08location\x18\x03 \x01(\tR\x08location"?\n\x13UpdateRobotResponse\x12(\n\x05robot\x18\x01 \x01(\x0b2\x12.viam.app.v1.RobotR\x05robot"$\n\x12DeleteRobotRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x15\n\x13DeleteRobotResponse")\n\x17GetRobotMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"G\n\x18GetRobotMetadataResponse\x12+\n\x04data\x18\x01 \x01(\x0b2\x17.google.protobuf.StructR\x04data"Y\n\x1aUpdateRobotMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12+\n\x04data\x18\x02 \x01(\x0b2\x17.google.protobuf.StructR\x04data"\x1d\n\x1bUpdateRobotMetadataResponse"0\n\x15MarkPartAsMainRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"\x18\n\x16MarkPartAsMainResponse"4\n\x19MarkPartForRestartRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"\x1c\n\x1aMarkPartForRestartResponse"7\n\x1cCreateRobotPartSecretRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId"K\n\x1dCreateRobotPartSecretResponse\x12*\n\x04part\x18\x01 \x01(\x0b2\x16.viam.app.v1.RobotPartR\x04part"T\n\x1cDeleteRobotPartSecretRequest\x12\x17\n\x07part_id\x18\x01 \x01(\tR\x06partId\x12\x1b\n\tsecret_id\x18\x02 \x01(\tR\x08secretId"\x1f\n\x1dDeleteRobotPartSecretResponse"\x9e\x02\n\rAuthorization\x12-\n\x12authorization_type\x18\x01 \x01(\tR\x11authorizationType\x12)\n\x10authorization_id\x18\x02 \x01(\tR\x0fauthorizationId\x12#\n\rresource_type\x18\x03 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x04 \x01(\tR\nresourceId\x12\x1f\n\x0bidentity_id\x18\x05 \x01(\tR\nidentityId\x12\'\n\x0forganization_id\x18\x06 \x01(\tR\x0eorganizationId\x12#\n\ridentity_type\x18\x07 \x01(\tR\x0cidentityType"R\n\x0eAddRoleRequest\x12@\n\rauthorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\rauthorization"\x11\n\x0fAddRoleResponse"U\n\x11RemoveRoleRequest\x12@\n\rauthorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\rauthorization"\x14\n\x12RemoveRoleResponse"\xa5\x01\n\x11ChangeRoleRequest\x12G\n\x11old_authorization\x18\x01 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\x10oldAuthorization\x12G\n\x11new_authorization\x18\x02 \x01(\x0b2\x1a.viam.app.v1.AuthorizationR\x10newAuthorization"\x14\n\x12ChangeRoleResponse"g\n\x19ListAuthorizationsRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0cresource_ids\x18\x02 \x03(\tR\x0bresourceIds"`\n\x1aListAuthorizationsResponse\x12B\n\x0eauthorizations\x18\x01 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations"_\n\x17CheckPermissionsRequest\x12D\n\x0bpermissions\x18\x01 \x03(\x0b2".viam.app.v1.AuthorizedPermissionsR\x0bpermissions"\x7f\n\x15AuthorizedPermissions\x12#\n\rresource_type\x18\x01 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x02 \x01(\tR\nresourceId\x12 \n\x0bpermissions\x18\x03 \x03(\tR\x0bpermissions"u\n\x18CheckPermissionsResponse\x12Y\n\x16authorized_permissions\x18\x01 \x03(\x0b2".viam.app.v1.AuthorizedPermissionsR\x15authorizedPermissions"\xc8\x02\n\rModuleVersion\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x12*\n\x05files\x18\x02 \x03(\x0b2\x14.viam.app.v1.UploadsR\x05files\x12*\n\x06models\x18\x03 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x04 \x01(\tR\nentrypoint\x12 \n\tfirst_run\x18\x05 \x01(\tH\x00R\x08firstRun\x88\x01\x01\x126\n\x14markdown_description\x18\x06 \x01(\tH\x01R\x13markdownDescription\x88\x01\x01\x12$\n\x04apps\x18\x07 \x03(\x0b2\x10.viam.app.v1.AppR\x04appsB\x0c\n\n_first_runB\x17\n\x15_markdown_description"\xbb\x02\n\x0eModuleMetadata\x12*\n\x06models\x18\x01 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x126\n\x08versions\x18\x02 \x03(\x0b2\x1a.viam.app.v1.ModuleVersionR\x08versions\x12\x1e\n\nentrypoint\x18\x03 \x01(\tR\nentrypoint\x12 \n\tfirst_run\x18\x04 \x01(\tH\x00R\x08firstRun\x88\x01\x01\x126\n\x14markdown_description\x18\x05 \x01(\tH\x01R\x13markdownDescription\x88\x01\x01\x12$\n\x04apps\x18\x06 \x03(\x0b2\x10.viam.app.v1.AppR\x04appsB\x0c\n\n_first_runB\x17\n\x15_markdown_description"\xc0\x01\n\x0fMLModelMetadata\x12\x1a\n\x08versions\x18\x01 \x03(\tR\x08versions\x12@\n\nmodel_type\x18\x02 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x03 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework"h\n\x11MLTrainingVersion\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x129\n\ncreated_on\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedOn"\xff\x01\n\x12MLTrainingMetadata\x12:\n\x08versions\x18\x05 \x03(\x0b2\x1e.viam.app.v1.MLTrainingVersionR\x08versions\x12@\n\nmodel_type\x18\x02 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x03 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework\x12\x14\n\x05draft\x18\x04 \x01(\x08R\x05draftJ\x04\x08\x01\x10\x02"\x8c\x07\n\x0cRegistryItem\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12)\n\x10public_namespace\x18\x03 \x01(\tR\x0fpublicNamespace\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x125\n\x04type\x18\x05 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type\x127\n\nvisibility\x18\x06 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x12\x10\n\x03url\x18\x07 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x08 \x01(\tR\x0bdescription\x12*\n\x11total_robot_usage\x18\t \x01(\x03R\x0ftotalRobotUsage\x12;\n\x1atotal_external_robot_usage\x18\r \x01(\x03R\x17totalExternalRobotUsage\x128\n\x18total_organization_usage\x18\n \x01(\x03R\x16totalOrganizationUsage\x12I\n!total_external_organization_usage\x18\x0e \x01(\x03R\x1etotalExternalOrganizationUsage\x12F\n\x0fmodule_metadata\x18\x0b \x01(\x0b2\x1b.viam.app.v1.ModuleMetadataH\x00R\x0emoduleMetadata\x12J\n\x11ml_model_metadata\x18\x0c \x01(\x0b2\x1c.viam.app.v1.MLModelMetadataH\x00R\x0fmlModelMetadata\x12S\n\x14ml_training_metadata\x18\x12 \x01(\x0b2\x1f.viam.app.v1.MLTrainingMetadataH\x00R\x12mlTrainingMetadata\x129\n\ncreated_at\x18\x0f \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x10 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAtB\n\n\x08metadata"\x9f\x01\n\x16GetRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x12I\n\x1einclude_markdown_documentation\x18\x02 \x01(\x08H\x00R\x1cincludeMarkdownDocumentation\x88\x01\x01B!\n\x1f_include_markdown_documentation"H\n\x17GetRegistryItemResponse\x12-\n\x04item\x18\x01 \x01(\x0b2\x19.viam.app.v1.RegistryItemR\x04item"\x8f\x01\n\x19CreateRegistryItemRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x125\n\x04type\x18\x03 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type"\x1c\n\x1aCreateRegistryItemResponse"\xe4\x04\n\x19UpdateRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x125\n\x04type\x18\x02 \x01(\x0e2!.viam.app.packages.v1.PackageTypeR\x04type\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x127\n\nvisibility\x18\x04 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x12\x15\n\x03url\x18\x05 \x01(\tH\x01R\x03url\x88\x01\x01\x12Y\n\x16update_module_metadata\x18\x06 \x01(\x0b2!.viam.app.v1.UpdateModuleMetadataH\x00R\x14updateModuleMetadata\x12]\n\x18update_ml_model_metadata\x18\x07 \x01(\x0b2".viam.app.v1.UpdateMLModelMetadataH\x00R\x15updateMlModelMetadata\x12f\n\x1bupdate_ml_training_metadata\x18\x08 \x01(\x0b2%.viam.app.v1.UpdateMLTrainingMetadataH\x00R\x18updateMlTrainingMetadata\x126\n\x14markdown_description\x18\t \x01(\tH\x02R\x13markdownDescription\x88\x01\x01B\n\n\x08metadataB\x06\n\x04_urlB\x17\n\x15_markdown_description"\x1c\n\x1aUpdateRegistryItemResponse"\xb1\x04\n\x18ListRegistryItemsRequest\x12,\n\x0forganization_id\x18\x01 \x01(\tH\x00R\x0eorganizationId\x88\x01\x01\x127\n\x05types\x18\x02 \x03(\x0e2!.viam.app.packages.v1.PackageTypeR\x05types\x12;\n\x0cvisibilities\x18\x03 \x03(\x0e2\x17.viam.app.v1.VisibilityR\x0cvisibilities\x12\x1c\n\tplatforms\x18\x04 \x03(\tR\tplatforms\x12;\n\x08statuses\x18\x05 \x03(\x0e2\x1f.viam.app.v1.RegistryItemStatusR\x08statuses\x12$\n\x0bsearch_term\x18\x06 \x01(\tH\x01R\nsearchTerm\x88\x01\x01\x12"\n\npage_token\x18\x07 \x01(\tH\x02R\tpageToken\x88\x01\x01\x12+\n\x11public_namespaces\x18\x08 \x03(\tR\x10publicNamespaces\x12I\n\x1einclude_markdown_documentation\x18\t \x01(\x08H\x03R\x1cincludeMarkdownDocumentation\x88\x01\x01B\x12\n\x10_organization_idB\x0e\n\x0c_search_termB\r\n\x0b_page_tokenB!\n\x1f_include_markdown_documentation"L\n\x19ListRegistryItemsResponse\x12/\n\x05items\x18\x01 \x03(\x0b2\x19.viam.app.v1.RegistryItemR\x05items"4\n\x19DeleteRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId"\x1c\n\x1aDeleteRegistryItemResponse"O\n\x19RenameRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x12\x19\n\x08new_name\x18\x02 \x01(\tR\x07newName"K\n\x1aRenameRegistryItemResponse\x12-\n\x04item\x18\x01 \x01(\x0b2\x19.viam.app.v1.RegistryItemR\x04item"h\n\x1bTransferRegistryItemRequest\x12\x17\n\x07item_id\x18\x01 \x01(\tR\x06itemId\x120\n\x14new_public_namespace\x18\x02 \x01(\tR\x12newPublicNamespace"\x1e\n\x1cTransferRegistryItemResponse"R\n\x13CreateModuleRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"E\n\x14CreateModuleResponse\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x10\n\x03url\x18\x02 \x01(\tR\x03url"\x92\x03\n\x13UpdateModuleRequest\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x127\n\nvisibility\x18\x02 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x12\x10\n\x03url\x18\x03 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x04 \x01(\tR\x0bdescription\x12*\n\x06models\x18\x05 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x06 \x01(\tR\nentrypoint\x12 \n\tfirst_run\x18\x07 \x01(\tH\x00R\x08firstRun\x88\x01\x01\x12$\n\x04apps\x18\x08 \x03(\x0b2\x10.viam.app.v1.AppR\x04apps\x126\n\x14markdown_description\x18\t \x01(\tH\x01R\x13markdownDescription\x88\x01\x01B\x0c\n\n_first_runB\x17\n\x15_markdown_description"\xe8\x01\n\x03App\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x1e\n\nentrypoint\x18\x03 \x01(\tR\nentrypoint\x12!\n\x0cfragment_ids\x18\x04 \x03(\tR\x0bfragmentIds\x12 \n\tlogo_path\x18\x05 \x01(\tH\x00R\x08logoPath\x88\x01\x01\x12F\n\x0ecustomizations\x18\x06 \x01(\x0b2\x1e.viam.app.v1.AppCustomizationsR\x0ecustomizationsB\x0c\n\n_logo_path"(\n\x14UpdateModuleResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"\x88\x01\n\x14UpdateModuleMetadata\x12*\n\x06models\x18\x01 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x02 \x01(\tR\nentrypoint\x12$\n\x04apps\x18\x03 \x03(\x0b2\x10.viam.app.v1.AppR\x04apps"\xaa\x01\n\x15UpdateMLModelMetadata\x12@\n\nmodel_type\x18\x01 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x02 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework"\xc3\x01\n\x18UpdateMLTrainingMetadata\x12@\n\nmodel_type\x18\x01 \x01(\x0e2!.viam.app.mltraining.v1.ModelTypeR\tmodelType\x12O\n\x0fmodel_framework\x18\x02 \x01(\x0e2&.viam.app.mltraining.v1.ModelFrameworkR\x0emodelFramework\x12\x14\n\x05draft\x18\x03 \x01(\x08R\x05draft"\xec\x01\n\x05Model\x12\x10\n\x03api\x18\x01 \x01(\tR\x03api\x12\x14\n\x05model\x18\x02 \x01(\tR\x05model\x12:\n\x16markdown_documentation\x18\x03 \x01(\tH\x00R\x15markdownDocumentation\x88\x01\x01\x12%\n\x0bdescription\x18\x04 \x01(\tH\x01R\x0bdescription\x88\x01\x01\x12-\n\x12supported_hardware\x18\x05 \x03(\tR\x11supportedHardwareB\x19\n\x17_markdown_documentationB\x0e\n\x0c_description"\x88\x01\n\x0eModuleFileInfo\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x1a\n\x08platform\x18\x03 \x01(\tR\x08platform\x12#\n\rplatform_tags\x18\x05 \x03(\tR\x0cplatformTags"\x87\x01\n\x17UploadModuleFileRequest\x12G\n\x10module_file_info\x18\x01 \x01(\x0b2\x1b.viam.app.v1.ModuleFileInfoH\x00R\x0emoduleFileInfo\x12\x14\n\x04file\x18\x02 \x01(\x0cH\x00R\x04fileB\r\n\x0bmodule_file",\n\x18UploadModuleFileResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"\x9d\x01\n\x10GetModuleRequest\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12I\n\x1einclude_markdown_documentation\x18\x02 \x01(\x08H\x00R\x1cincludeMarkdownDocumentation\x88\x01\x01B!\n\x1f_include_markdown_documentation"@\n\x11GetModuleResponse\x12+\n\x06module\x18\x01 \x01(\x0b2\x13.viam.app.v1.ModuleR\x06module"\x8c\x05\n\x06Module\x12\x1b\n\tmodule_id\x18\x01 \x01(\tR\x08moduleId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x127\n\nvisibility\x18\x03 \x01(\x0e2\x17.viam.app.v1.VisibilityR\nvisibility\x127\n\x08versions\x18\x04 \x03(\x0b2\x1b.viam.app.v1.VersionHistoryR\x08versions\x12\x10\n\x03url\x18\x05 \x01(\tR\x03url\x12 \n\x0bdescription\x18\x06 \x01(\tR\x0bdescription\x12*\n\x06models\x18\x07 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12*\n\x11total_robot_usage\x18\x08 \x01(\x03R\x0ftotalRobotUsage\x128\n\x18total_organization_usage\x18\t \x01(\x03R\x16totalOrganizationUsage\x12\'\n\x0forganization_id\x18\n \x01(\tR\x0eorganizationId\x12\x1e\n\nentrypoint\x18\x0b \x01(\tR\nentrypoint\x12)\n\x10public_namespace\x18\x0c \x01(\tR\x0fpublicNamespace\x12 \n\tfirst_run\x18\r \x01(\tH\x00R\x08firstRun\x88\x01\x01\x126\n\x14markdown_description\x18\x0e \x01(\tH\x01R\x13markdownDescription\x88\x01\x01\x12$\n\x04apps\x18\x0f \x03(\x0b2\x10.viam.app.v1.AppR\x04appsB\x0c\n\n_first_runB\x17\n\x15_markdown_description"\xc9\x02\n\x0eVersionHistory\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x12*\n\x05files\x18\x02 \x03(\x0b2\x14.viam.app.v1.UploadsR\x05files\x12*\n\x06models\x18\x03 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x04 \x01(\tR\nentrypoint\x12 \n\tfirst_run\x18\x05 \x01(\tH\x00R\x08firstRun\x88\x01\x01\x126\n\x14markdown_description\x18\x06 \x01(\tH\x01R\x13markdownDescription\x88\x01\x01\x12$\n\x04apps\x18\x07 \x03(\x0b2\x10.viam.app.v1.AppR\x04appsB\x0c\n\n_first_runB\x17\n\x15_markdown_description"b\n\x07Uploads\x12\x1a\n\x08platform\x18\x01 \x01(\tR\x08platform\x12;\n\x0buploaded_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\nuploadedAt"\xc4\x01\n\x12ListModulesRequest\x12,\n\x0forganization_id\x18\x01 \x01(\tH\x00R\x0eorganizationId\x88\x01\x01\x12I\n\x1einclude_markdown_documentation\x18\x02 \x01(\x08H\x01R\x1cincludeMarkdownDocumentation\x88\x01\x01B\x12\n\x10_organization_idB!\n\x1f_include_markdown_documentation"D\n\x13ListModulesResponse\x12-\n\x07modules\x18\x01 \x03(\x0b2\x13.viam.app.v1.ModuleR\x07modules"/\n\x17GetUserIDByEmailRequest\x12\x14\n\x05email\x18\x01 \x01(\tR\x05email"3\n\x18GetUserIDByEmailResponse\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId"9\n\x1eListOrganizationsByUserRequest\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId"\xe6\x01\n\nOrgDetails\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x19\n\x08org_name\x18\x02 \x01(\tR\x07orgName\x12\x1c\n\x07org_cid\x18\x03 \x01(\tH\x00R\x06orgCid\x88\x01\x01\x12.\n\x10public_namespace\x18\x04 \x01(\tH\x01R\x0fpublicNamespace\x88\x01\x01\x12&\n\x0cbilling_tier\x18\x05 \x01(\tH\x02R\x0bbillingTier\x88\x01\x01B\n\n\x08_org_cidB\x13\n\x11_public_namespaceB\x0f\n\r_billing_tier"N\n\x1fListOrganizationsByUserResponse\x12+\n\x04orgs\x18\x01 \x03(\x0b2\x17.viam.app.v1.OrgDetailsR\x04orgs"\xd4\x01\n\x1aSearchOrganizationsRequest\x12\x1a\n\x06org_id\x18\x01 \x01(\tH\x00R\x05orgId\x88\x01\x01\x12\x1e\n\x08org_name\x18\x02 \x01(\tH\x01R\x07orgName\x88\x01\x01\x12\x15\n\x03cid\x18\x03 \x01(\tH\x02R\x03cid\x88\x01\x01\x12.\n\x10public_namespace\x18\x04 \x01(\tH\x03R\x0fpublicNamespace\x88\x01\x01B\t\n\x07_org_idB\x0b\n\t_org_nameB\x06\n\x04_cidB\x13\n\x11_public_namespace"\\\n\x1bSearchOrganizationsResponse\x12=\n\rorganizations\x18\x01 \x03(\x0b2\x17.viam.app.v1.OrgDetailsR\rorganizations"j\n\x10CreateKeyRequest\x12B\n\x0eauthorizations\x18\x01 \x03(\x0b2\x1a.viam.app.v1.AuthorizationR\x0eauthorizations\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"5\n\x11CreateKeyResponse\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id""\n\x10DeleteKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\x13\n\x11DeleteKeyResponse"6\n\x10RenameKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"7\n\x11RenameKeyResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"\xcd\x01\n\x14AuthorizationDetails\x12-\n\x12authorization_type\x18\x01 \x01(\tR\x11authorizationType\x12)\n\x10authorization_id\x18\x02 \x01(\tR\x0fauthorizationId\x12#\n\rresource_type\x18\x03 \x01(\tR\x0cresourceType\x12\x1f\n\x0bresource_id\x18\x04 \x01(\tR\nresourceId\x12\x15\n\x06org_id\x18\x05 \x01(\tR\x05orgId"\x93\x01\n\x18APIKeyWithAuthorizations\x12,\n\x07api_key\x18\x01 \x01(\x0b2\x13.viam.app.v1.APIKeyR\x06apiKey\x12I\n\x0eauthorizations\x18\x02 \x03(\x0b2!.viam.app.v1.AuthorizationDetailsR\x0eauthorizations"(\n\x0fListKeysRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"T\n\x10ListKeysResponse\x12@\n\x08api_keys\x18\x01 \x03(\x0b2%.viam.app.v1.APIKeyWithAuthorizationsR\x07apiKeys""\n\x10RotateKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"5\n\x11RotateKeyResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key"?\n-CreateKeyFromExistingKeyAuthorizationsRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"R\n.CreateKeyFromExistingKeyAuthorizationsResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key"U\n\x14GetAppContentRequest\x12)\n\x10public_namespace\x18\x01 \x01(\tR\x0fpublicNamespace\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"\x85\x01\n\x15GetAppContentResponse\x12\x1b\n\tblob_path\x18\x01 \x01(\tR\x08blobPath\x12\x1e\n\nentrypoint\x18\x02 \x01(\tR\nentrypoint\x12/\n\x08app_type\x18\x03 \x01(\x0e2\x14.viam.app.v1.AppTypeR\x07appType"G\n\x1aOrganizationSetLogoRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x12\n\x04logo\x18\x02 \x01(\x0cR\x04logo"\x1d\n\x1bOrganizationSetLogoResponse"3\n\x1aOrganizationGetLogoRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"/\n\x1bOrganizationGetLogoResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"1\n\x18EnableAuthServiceRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x1b\n\x19EnableAuthServiceResponse"2\n\x19DisableAuthServiceRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"\x1c\n\x1aDisableAuthServiceResponse"\x8c\x01\n\x15CreateOAuthAppRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x1f\n\x0bclient_name\x18\x02 \x01(\tR\nclientName\x12;\n\x0coauth_config\x18\x03 \x01(\x0b2\x18.viam.app.v1.OAuthConfigR\x0boauthConfig"Z\n\x16CreateOAuthAppResponse\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08clientId\x12#\n\rclient_secret\x18\x02 \x01(\tR\x0cclientSecret"I\n\x13ReadOAuthAppRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x1b\n\tclient_id\x18\x02 \x01(\tR\x08clientId"\x99\x01\n\x14ReadOAuthAppResponse\x12\x1f\n\x0bclient_name\x18\x01 \x01(\tR\nclientName\x12#\n\rclient_secret\x18\x02 \x01(\tR\x0cclientSecret\x12;\n\x0coauth_config\x18\x03 \x01(\x0b2\x18.viam.app.v1.OAuthConfigR\x0boauthConfig"\xa9\x01\n\x15UpdateOAuthAppRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x1b\n\tclient_id\x18\x02 \x01(\tR\x08clientId\x12\x1f\n\x0bclient_name\x18\x03 \x01(\tR\nclientName\x12;\n\x0coauth_config\x18\x04 \x01(\x0b2\x18.viam.app.v1.OAuthConfigR\x0boauthConfig"\x18\n\x16UpdateOAuthAppResponse"K\n\x15DeleteOAuthAppRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId\x12\x1b\n\tclient_id\x18\x02 \x01(\tR\x08clientId"\x18\n\x16DeleteOAuthAppResponse"-\n\x14ListOAuthAppsRequest\x12\x15\n\x06org_id\x18\x01 \x01(\tR\x05orgId"6\n\x15ListOAuthAppsResponse\x12\x1d\n\nclient_ids\x18\x01 \x03(\tR\tclientIds"\xf6\x02\n\x0bOAuthConfig\x12V\n\x15client_authentication\x18\x01 \x01(\x0e2!.viam.app.v1.ClientAuthenticationR\x14clientAuthentication\x12%\n\x04pkce\x18\x02 \x01(\x0e2\x11.viam.app.v1.PKCER\x04pkce\x12A\n\x0eurl_validation\x18\x03 \x01(\x0e2\x1a.viam.app.v1.URLValidationR\rurlValidation\x12\x1f\n\x0borigin_uris\x18\x04 \x03(\tR\noriginUris\x12#\n\rredirect_uris\x18\x05 \x03(\tR\x0credirectUris\x12\x1d\n\nlogout_uri\x18\x06 \x01(\tR\tlogoutUri\x12@\n\x0eenabled_grants\x18\x07 \x03(\x0e2\x19.viam.app.v1.EnabledGrantR\renabledGrants"V\n\x15GetAppBrandingRequest\x12)\n\x10public_namespace\x18\x01 \x01(\tR\x0fpublicNamespace\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name"\x8a\x01\n\rTextOverrides\x12>\n\x06fields\x18\x01 \x03(\x0b2&.viam.app.v1.TextOverrides.FieldsEntryR\x06fields\x1a9\n\x0bFieldsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01"\xbc\x02\n\x16GetAppBrandingResponse\x12 \n\tlogo_path\x18\x01 \x01(\tH\x00R\x08logoPath\x88\x01\x01\x12l\n\x13text_customizations\x18\x02 \x03(\x0b2;.viam.app.v1.GetAppBrandingResponse.TextCustomizationsEntryR\x12textCustomizations\x12!\n\x0cfragment_ids\x18\x03 \x03(\tR\x0bfragmentIds\x1aa\n\x17TextCustomizationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x120\n\x05value\x18\x02 \x01(\x0b2\x1a.viam.app.v1.TextOverridesR\x05value:\x028\x01B\x0c\n\n_logo_path"d\n\x11AppCustomizations\x12O\n\x0emachine_picker\x18\x01 \x01(\x0b2(.viam.app.v1.MachinePickerCustomizationsR\rmachinePicker"|\n\x1bMachinePickerCustomizations\x12\x1d\n\x07heading\x18\x01 \x01(\tH\x00R\x07heading\x88\x01\x01\x12#\n\nsubheading\x18\x02 \x01(\tH\x01R\nsubheading\x88\x01\x01B\n\n\x08_headingB\r\n\x0b_subheading*\xd1\x01\n\x12AuthenticationType\x12#\n\x1fAUTHENTICATION_TYPE_UNSPECIFIED\x10\x00\x12!\n\x1dAUTHENTICATION_TYPE_WEB_OAUTH\x10\x01\x12\x1f\n\x1bAUTHENTICATION_TYPE_API_KEY\x10\x02\x12)\n%AUTHENTICATION_TYPE_ROBOT_PART_SECRET\x10\x03\x12\'\n#AUTHENTICATION_TYPE_LOCATION_SECRET\x10\x04*\xa3\x01\n\x12FragmentVisibility\x12#\n\x1fFRAGMENT_VISIBILITY_UNSPECIFIED\x10\x00\x12\x1f\n\x1bFRAGMENT_VISIBILITY_PRIVATE\x10\x01\x12\x1e\n\x1aFRAGMENT_VISIBILITY_PUBLIC\x10\x02\x12\'\n#FRAGMENT_VISIBILITY_PUBLIC_UNLISTED\x10\x03*\xdd\x01\n\x11FragmentErrorType\x12#\n\x1fFRAGMENT_ERROR_TYPE_UNSPECIFIED\x10\x00\x12!\n\x1dFRAGMENT_ERROR_TYPE_NO_ACCESS\x10\x01\x12.\n*FRAGMENT_ERROR_TYPE_NESTING_LIMIT_EXCEEDED\x10\x02\x12(\n$FRAGMENT_ERROR_TYPE_CHILD_ID_INVALID\x10\x03\x12&\n"FRAGMENT_ERROR_TYPE_CYCLE_DETECTED\x10\x04*\x87\x01\n\x12RegistryItemStatus\x12$\n REGISTRY_ITEM_STATUS_UNSPECIFIED\x10\x00\x12"\n\x1eREGISTRY_ITEM_STATUS_PUBLISHED\x10\x01\x12\'\n#REGISTRY_ITEM_STATUS_IN_DEVELOPMENT\x10\x02*w\n\nVisibility\x12\x1a\n\x16VISIBILITY_UNSPECIFIED\x10\x00\x12\x16\n\x12VISIBILITY_PRIVATE\x10\x01\x12\x15\n\x11VISIBILITY_PUBLIC\x10\x02\x12\x1e\n\x1aVISIBILITY_PUBLIC_UNLISTED\x10\x03*\\\n\x07AppType\x12\x18\n\x14APP_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17APP_TYPE_SINGLE_MACHINE\x10\x01\x12\x1a\n\x16APP_TYPE_MULTI_MACHINE\x10\x02*\xc1\x01\n\x14ClientAuthentication\x12%\n!CLIENT_AUTHENTICATION_UNSPECIFIED\x10\x00\x12"\n\x1eCLIENT_AUTHENTICATION_REQUIRED\x10\x01\x12&\n"CLIENT_AUTHENTICATION_NOT_REQUIRED\x10\x02\x126\n2CLIENT_AUTHENTICATION_NOT_REQUIRED_WHEN_USING_PKCE\x10\x03*~\n\x04PKCE\x12\x14\n\x10PKCE_UNSPECIFIED\x10\x00\x12\x11\n\rPKCE_REQUIRED\x10\x01\x12\x15\n\x11PKCE_NOT_REQUIRED\x10\x02\x126\n2PKCE_NOT_REQUIRED_WHEN_USING_CLIENT_AUTHENTICATION\x10\x03*s\n\rURLValidation\x12\x1e\n\x1aURL_VALIDATION_UNSPECIFIED\x10\x00\x12\x1e\n\x1aURL_VALIDATION_EXACT_MATCH\x10\x01\x12"\n\x1eURL_VALIDATION_ALLOW_WILDCARDS\x10\x02*\xcb\x01\n\x0cEnabledGrant\x12\x1d\n\x19ENABLED_GRANT_UNSPECIFIED\x10\x00\x12$\n ENABLED_GRANT_AUTHORIZATION_CODE\x10\x01\x12\x1a\n\x16ENABLED_GRANT_IMPLICIT\x10\x02\x12\x1a\n\x16ENABLED_GRANT_PASSWORD\x10\x03\x12\x1f\n\x1bENABLED_GRANT_REFRESH_TOKEN\x10\x04\x12\x1d\n\x19ENABLED_GRANT_DEVICE_CODE\x10\x052\xfaU\n\nAppService\x12_\n\x10GetUserIDByEmail\x12$.viam.app.v1.GetUserIDByEmailRequest\x1a%.viam.app.v1.GetUserIDByEmailResponse\x12e\n\x12CreateOrganization\x12&.viam.app.v1.CreateOrganizationRequest\x1a\'.viam.app.v1.CreateOrganizationResponse\x12b\n\x11ListOrganizations\x12%.viam.app.v1.ListOrganizationsRequest\x1a&.viam.app.v1.ListOrganizationsResponse\x12\x9b\x01\n$GetOrganizationsWithAccessToLocation\x128.viam.app.v1.GetOrganizationsWithAccessToLocationRequest\x1a9.viam.app.v1.GetOrganizationsWithAccessToLocationResponse\x12t\n\x17ListOrganizationsByUser\x12+.viam.app.v1.ListOrganizationsByUserRequest\x1a,.viam.app.v1.ListOrganizationsByUserResponse\x12h\n\x13SearchOrganizations\x12\'.viam.app.v1.SearchOrganizationsRequest\x1a(.viam.app.v1.SearchOrganizationsResponse\x12\\\n\x0fGetOrganization\x12#.viam.app.v1.GetOrganizationRequest\x1a$.viam.app.v1.GetOrganizationResponse\x12\x9b\x01\n$GetOrganizationNamespaceAvailability\x128.viam.app.v1.GetOrganizationNamespaceAvailabilityRequest\x1a9.viam.app.v1.GetOrganizationNamespaceAvailabilityResponse\x12e\n\x12UpdateOrganization\x12&.viam.app.v1.UpdateOrganizationRequest\x1a\'.viam.app.v1.UpdateOrganizationResponse\x12\x80\x01\n\x1bUpdateOrganizationNamespace\x12/.viam.app.v1.UpdateOrganizationNamespaceRequest\x1a0.viam.app.v1.UpdateOrganizationNamespaceResponse\x12e\n\x12DeleteOrganization\x12&.viam.app.v1.DeleteOrganizationRequest\x1a\'.viam.app.v1.DeleteOrganizationResponse\x12t\n\x17GetOrganizationMetadata\x12+.viam.app.v1.GetOrganizationMetadataRequest\x1a,.viam.app.v1.GetOrganizationMetadataResponse\x12}\n\x1aUpdateOrganizationMetadata\x12..viam.app.v1.UpdateOrganizationMetadataRequest\x1a/.viam.app.v1.UpdateOrganizationMetadataResponse\x12t\n\x17ListOrganizationMembers\x12+.viam.app.v1.ListOrganizationMembersRequest\x1a,.viam.app.v1.ListOrganizationMembersResponse\x12w\n\x18CreateOrganizationInvite\x12,.viam.app.v1.CreateOrganizationInviteRequest\x1a-.viam.app.v1.CreateOrganizationInviteResponse\x12\xa1\x01\n&UpdateOrganizationInviteAuthorizations\x12:.viam.app.v1.UpdateOrganizationInviteAuthorizationsRequest\x1a;.viam.app.v1.UpdateOrganizationInviteAuthorizationsResponse\x12w\n\x18DeleteOrganizationMember\x12,.viam.app.v1.DeleteOrganizationMemberRequest\x1a-.viam.app.v1.DeleteOrganizationMemberResponse\x12w\n\x18DeleteOrganizationInvite\x12,.viam.app.v1.DeleteOrganizationInviteRequest\x1a-.viam.app.v1.DeleteOrganizationInviteResponse\x12w\n\x18ResendOrganizationInvite\x12,.viam.app.v1.ResendOrganizationInviteRequest\x1a-.viam.app.v1.ResendOrganizationInviteResponse\x12k\n\x14EnableBillingService\x12(.viam.app.v1.EnableBillingServiceRequest\x1a).viam.app.v1.EnableBillingServiceResponse\x12n\n\x15DisableBillingService\x12).viam.app.v1.DisableBillingServiceRequest\x1a*.viam.app.v1.DisableBillingServiceResponse\x12k\n\x14UpdateBillingService\x12(.viam.app.v1.UpdateBillingServiceRequest\x1a).viam.app.v1.UpdateBillingServiceResponse\x12t\n\x17GetBillingServiceConfig\x12+.viam.app.v1.GetBillingServiceConfigRequest\x1a,.viam.app.v1.GetBillingServiceConfigResponse\x12\x80\x01\n\x1bOrganizationSetSupportEmail\x12/.viam.app.v1.OrganizationSetSupportEmailRequest\x1a0.viam.app.v1.OrganizationSetSupportEmailResponse\x12\x80\x01\n\x1bOrganizationGetSupportEmail\x12/.viam.app.v1.OrganizationGetSupportEmailRequest\x1a0.viam.app.v1.OrganizationGetSupportEmailResponse\x12h\n\x13OrganizationSetLogo\x12\'.viam.app.v1.OrganizationSetLogoRequest\x1a(.viam.app.v1.OrganizationSetLogoResponse\x12h\n\x13OrganizationGetLogo\x12\'.viam.app.v1.OrganizationGetLogoRequest\x1a(.viam.app.v1.OrganizationGetLogoResponse\x12b\n\x11EnableAuthService\x12%.viam.app.v1.EnableAuthServiceRequest\x1a&.viam.app.v1.EnableAuthServiceResponse\x12e\n\x12DisableAuthService\x12&.viam.app.v1.DisableAuthServiceRequest\x1a\'.viam.app.v1.DisableAuthServiceResponse\x12Y\n\x0eCreateOAuthApp\x12".viam.app.v1.CreateOAuthAppRequest\x1a#.viam.app.v1.CreateOAuthAppResponse\x12S\n\x0cReadOAuthApp\x12 .viam.app.v1.ReadOAuthAppRequest\x1a!.viam.app.v1.ReadOAuthAppResponse\x12Y\n\x0eUpdateOAuthApp\x12".viam.app.v1.UpdateOAuthAppRequest\x1a#.viam.app.v1.UpdateOAuthAppResponse\x12Y\n\x0eDeleteOAuthApp\x12".viam.app.v1.DeleteOAuthAppRequest\x1a#.viam.app.v1.DeleteOAuthAppResponse\x12V\n\rListOAuthApps\x12!.viam.app.v1.ListOAuthAppsRequest\x1a".viam.app.v1.ListOAuthAppsResponse\x12Y\n\x0eCreateLocation\x12".viam.app.v1.CreateLocationRequest\x1a#.viam.app.v1.CreateLocationResponse\x12P\n\x0bGetLocation\x12\x1f.viam.app.v1.GetLocationRequest\x1a .viam.app.v1.GetLocationResponse\x12Y\n\x0eUpdateLocation\x12".viam.app.v1.UpdateLocationRequest\x1a#.viam.app.v1.UpdateLocationResponse\x12Y\n\x0eDeleteLocation\x12".viam.app.v1.DeleteLocationRequest\x1a#.viam.app.v1.DeleteLocationResponse\x12h\n\x13GetLocationMetadata\x12\'.viam.app.v1.GetLocationMetadataRequest\x1a(.viam.app.v1.GetLocationMetadataResponse\x12q\n\x16UpdateLocationMetadata\x12*.viam.app.v1.UpdateLocationMetadataRequest\x1a+.viam.app.v1.UpdateLocationMetadataResponse\x12V\n\rListLocations\x12!.viam.app.v1.ListLocationsRequest\x1a".viam.app.v1.ListLocationsResponse\x12V\n\rShareLocation\x12!.viam.app.v1.ShareLocationRequest\x1a".viam.app.v1.ShareLocationResponse\x12\\\n\x0fUnshareLocation\x12#.viam.app.v1.UnshareLocationRequest\x1a$.viam.app.v1.UnshareLocationResponse\x12S\n\x0cLocationAuth\x12 .viam.app.v1.LocationAuthRequest\x1a!.viam.app.v1.LocationAuthResponse\x12k\n\x14CreateLocationSecret\x12(.viam.app.v1.CreateLocationSecretRequest\x1a).viam.app.v1.CreateLocationSecretResponse\x12k\n\x14DeleteLocationSecret\x12(.viam.app.v1.DeleteLocationSecretRequest\x1a).viam.app.v1.DeleteLocationSecretResponse\x12G\n\x08GetRobot\x12\x1c.viam.app.v1.GetRobotRequest\x1a\x1d.viam.app.v1.GetRobotResponse\x12_\n\x10GetRobotMetadata\x12$.viam.app.v1.GetRobotMetadataRequest\x1a%.viam.app.v1.GetRobotMetadataResponse\x12h\n\x13UpdateRobotMetadata\x12\'.viam.app.v1.UpdateRobotMetadataRequest\x1a(.viam.app.v1.UpdateRobotMetadataResponse\x12k\n\x14GetRoverRentalRobots\x12(.viam.app.v1.GetRoverRentalRobotsRequest\x1a).viam.app.v1.GetRoverRentalRobotsResponse\x12V\n\rGetRobotParts\x12!.viam.app.v1.GetRobotPartsRequest\x1a".viam.app.v1.GetRobotPartsResponse\x12S\n\x0cGetRobotPart\x12 .viam.app.v1.GetRobotPartRequest\x1a!.viam.app.v1.GetRobotPartResponse\x12\x86\x01\n\x1dGetRobotPartByNameAndLocation\x121.viam.app.v1.GetRobotPartByNameAndLocationRequest\x1a2.viam.app.v1.GetRobotPartByNameAndLocationResponse\x12_\n\x10GetRobotPartLogs\x12$.viam.app.v1.GetRobotPartLogsRequest\x1a%.viam.app.v1.GetRobotPartLogsResponse\x12d\n\x11TailRobotPartLogs\x12%.viam.app.v1.TailRobotPartLogsRequest\x1a&.viam.app.v1.TailRobotPartLogsResponse0\x01\x12h\n\x13GetRobotPartHistory\x12\'.viam.app.v1.GetRobotPartHistoryRequest\x1a(.viam.app.v1.GetRobotPartHistoryResponse\x12\\\n\x0fUpdateRobotPart\x12#.viam.app.v1.UpdateRobotPartRequest\x1a$.viam.app.v1.UpdateRobotPartResponse\x12S\n\x0cNewRobotPart\x12 .viam.app.v1.NewRobotPartRequest\x1a!.viam.app.v1.NewRobotPartResponse\x12\\\n\x0fDeleteRobotPart\x12#.viam.app.v1.DeleteRobotPartRequest\x1a$.viam.app.v1.DeleteRobotPartResponse\x12k\n\x14GetRobotPartMetadata\x12(.viam.app.v1.GetRobotPartMetadataRequest\x1a).viam.app.v1.GetRobotPartMetadataResponse\x12t\n\x17UpdateRobotPartMetadata\x12+.viam.app.v1.UpdateRobotPartMetadataRequest\x1a,.viam.app.v1.UpdateRobotPartMetadataResponse\x12\\\n\x0fGetRobotAPIKeys\x12#.viam.app.v1.GetRobotAPIKeysRequest\x1a$.viam.app.v1.GetRobotAPIKeysResponse\x12Y\n\x0eMarkPartAsMain\x12".viam.app.v1.MarkPartAsMainRequest\x1a#.viam.app.v1.MarkPartAsMainResponse\x12e\n\x12MarkPartForRestart\x12&.viam.app.v1.MarkPartForRestartRequest\x1a\'.viam.app.v1.MarkPartForRestartResponse\x12n\n\x15CreateRobotPartSecret\x12).viam.app.v1.CreateRobotPartSecretRequest\x1a*.viam.app.v1.CreateRobotPartSecretResponse\x12n\n\x15DeleteRobotPartSecret\x12).viam.app.v1.DeleteRobotPartSecretRequest\x1a*.viam.app.v1.DeleteRobotPartSecretResponse\x12M\n\nListRobots\x12\x1e.viam.app.v1.ListRobotsRequest\x1a\x1f.viam.app.v1.ListRobotsResponse\x12q\n\x16ListRobotsForLocations\x12*.viam.app.v1.ListRobotsForLocationsRequest\x1a+.viam.app.v1.ListRobotsForLocationsResponse\x12_\n\x10ListRobotsForOrg\x12$.viam.app.v1.ListRobotsForOrgRequest\x1a%.viam.app.v1.ListRobotsForOrgResponse\x12G\n\x08NewRobot\x12\x1c.viam.app.v1.NewRobotRequest\x1a\x1d.viam.app.v1.NewRobotResponse\x12P\n\x0bUpdateRobot\x12\x1f.viam.app.v1.UpdateRobotRequest\x1a .viam.app.v1.UpdateRobotResponse\x12P\n\x0bDeleteRobot\x12\x1f.viam.app.v1.DeleteRobotRequest\x1a .viam.app.v1.DeleteRobotResponse\x12V\n\rListFragments\x12!.viam.app.v1.ListFragmentsRequest\x1a".viam.app.v1.ListFragmentsResponse\x12P\n\x0bGetFragment\x12\x1f.viam.app.v1.GetFragmentRequest\x1a .viam.app.v1.GetFragmentResponse\x12Y\n\x0eCreateFragment\x12".viam.app.v1.CreateFragmentRequest\x1a#.viam.app.v1.CreateFragmentResponse\x12Y\n\x0eUpdateFragment\x12".viam.app.v1.UpdateFragmentRequest\x1a#.viam.app.v1.UpdateFragmentResponse\x12Y\n\x0eDeleteFragment\x12".viam.app.v1.DeleteFragmentRequest\x1a#.viam.app.v1.DeleteFragmentResponse\x12h\n\x13ListNestedFragments\x12\'.viam.app.v1.ListNestedFragmentsRequest\x1a(.viam.app.v1.ListNestedFragmentsResponse\x12k\n\x14ListMachineFragments\x12(.viam.app.v1.ListMachineFragmentsRequest\x1a).viam.app.v1.ListMachineFragmentsResponse\x12k\n\x14ListMachineSummaries\x12(.viam.app.v1.ListMachineSummariesRequest\x1a).viam.app.v1.ListMachineSummariesResponse\x12e\n\x12GetFragmentHistory\x12&.viam.app.v1.GetFragmentHistoryRequest\x1a\'.viam.app.v1.GetFragmentHistoryResponse\x12_\n\x10GetFragmentUsage\x12$.viam.app.v1.GetFragmentUsageRequest\x1a%.viam.app.v1.GetFragmentUsageResponse\x12Y\n\x0eSetFragmentTag\x12".viam.app.v1.SetFragmentTagRequest\x1a#.viam.app.v1.SetFragmentTagResponse\x12b\n\x11DeleteFragmentTag\x12%.viam.app.v1.DeleteFragmentTagRequest\x1a&.viam.app.v1.DeleteFragmentTagResponse\x12D\n\x07AddRole\x12\x1b.viam.app.v1.AddRoleRequest\x1a\x1c.viam.app.v1.AddRoleResponse\x12M\n\nRemoveRole\x12\x1e.viam.app.v1.RemoveRoleRequest\x1a\x1f.viam.app.v1.RemoveRoleResponse\x12M\n\nChangeRole\x12\x1e.viam.app.v1.ChangeRoleRequest\x1a\x1f.viam.app.v1.ChangeRoleResponse\x12e\n\x12ListAuthorizations\x12&.viam.app.v1.ListAuthorizationsRequest\x1a\'.viam.app.v1.ListAuthorizationsResponse\x12_\n\x10CheckPermissions\x12$.viam.app.v1.CheckPermissionsRequest\x1a%.viam.app.v1.CheckPermissionsResponse\x12\\\n\x0fGetRegistryItem\x12#.viam.app.v1.GetRegistryItemRequest\x1a$.viam.app.v1.GetRegistryItemResponse\x12e\n\x12CreateRegistryItem\x12&.viam.app.v1.CreateRegistryItemRequest\x1a\'.viam.app.v1.CreateRegistryItemResponse\x12e\n\x12UpdateRegistryItem\x12&.viam.app.v1.UpdateRegistryItemRequest\x1a\'.viam.app.v1.UpdateRegistryItemResponse\x12b\n\x11ListRegistryItems\x12%.viam.app.v1.ListRegistryItemsRequest\x1a&.viam.app.v1.ListRegistryItemsResponse\x12e\n\x12DeleteRegistryItem\x12&.viam.app.v1.DeleteRegistryItemRequest\x1a\'.viam.app.v1.DeleteRegistryItemResponse\x12e\n\x12RenameRegistryItem\x12&.viam.app.v1.RenameRegistryItemRequest\x1a\'.viam.app.v1.RenameRegistryItemResponse\x12k\n\x14TransferRegistryItem\x12(.viam.app.v1.TransferRegistryItemRequest\x1a).viam.app.v1.TransferRegistryItemResponse\x12S\n\x0cCreateModule\x12 .viam.app.v1.CreateModuleRequest\x1a!.viam.app.v1.CreateModuleResponse\x12S\n\x0cUpdateModule\x12 .viam.app.v1.UpdateModuleRequest\x1a!.viam.app.v1.UpdateModuleResponse\x12a\n\x10UploadModuleFile\x12$.viam.app.v1.UploadModuleFileRequest\x1a%.viam.app.v1.UploadModuleFileResponse(\x01\x12J\n\tGetModule\x12\x1d.viam.app.v1.GetModuleRequest\x1a\x1e.viam.app.v1.GetModuleResponse\x12P\n\x0bListModules\x12\x1f.viam.app.v1.ListModulesRequest\x1a .viam.app.v1.ListModulesResponse\x12J\n\tCreateKey\x12\x1d.viam.app.v1.CreateKeyRequest\x1a\x1e.viam.app.v1.CreateKeyResponse\x12J\n\tDeleteKey\x12\x1d.viam.app.v1.DeleteKeyRequest\x1a\x1e.viam.app.v1.DeleteKeyResponse\x12G\n\x08ListKeys\x12\x1c.viam.app.v1.ListKeysRequest\x1a\x1d.viam.app.v1.ListKeysResponse\x12J\n\tRenameKey\x12\x1d.viam.app.v1.RenameKeyRequest\x1a\x1e.viam.app.v1.RenameKeyResponse\x12J\n\tRotateKey\x12\x1d.viam.app.v1.RotateKeyRequest\x1a\x1e.viam.app.v1.RotateKeyResponse\x12\xa1\x01\n&CreateKeyFromExistingKeyAuthorizations\x12:.viam.app.v1.CreateKeyFromExistingKeyAuthorizationsRequest\x1a;.viam.app.v1.CreateKeyFromExistingKeyAuthorizationsResponse\x12V\n\rGetAppContent\x12!.viam.app.v1.GetAppContentRequest\x1a".viam.app.v1.GetAppContentResponse\x12Y\n\x0eGetAppBranding\x12".viam.app.v1.GetAppBrandingRequest\x1a#.viam.app.v1.GetAppBrandingResponseB\x18Z\x16go.viam.com/api/app/v1b\x06proto3')
16
+ _globals = globals()
17
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
18
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app.v1.app_pb2', _globals)
19
+ if not _descriptor._USE_C_DESCRIPTORS:
20
+ _globals['DESCRIPTOR']._loaded_options = None
21
+ _globals['DESCRIPTOR']._serialized_options = b'Z\x16go.viam.com/api/app/v1'
22
+ _globals['_ROBOT'].fields_by_name['id']._loaded_options = None
23
+ _globals['_ROBOT'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
24
+ _globals['_ROBOT'].fields_by_name['name']._loaded_options = None
25
+ _globals['_ROBOT'].fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
26
+ _globals['_ROBOT'].fields_by_name['location']._loaded_options = None
27
+ _globals['_ROBOT'].fields_by_name['location']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"location" json:"location"'
28
+ _globals['_ROBOT'].fields_by_name['last_access']._loaded_options = None
29
+ _globals['_ROBOT'].fields_by_name['last_access']._serialized_options = b'\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"'
30
+ _globals['_ROBOT'].fields_by_name['created_on']._loaded_options = None
31
+ _globals['_ROBOT'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
32
+ _globals['_ROBOTPART'].fields_by_name['id']._loaded_options = None
33
+ _globals['_ROBOTPART'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
34
+ _globals['_ROBOTPART'].fields_by_name['name']._loaded_options = None
35
+ _globals['_ROBOTPART'].fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
36
+ _globals['_ROBOTPART'].fields_by_name['dns_name']._loaded_options = None
37
+ _globals['_ROBOTPART'].fields_by_name['dns_name']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"dns_name" json:"dns_name"'
38
+ _globals['_ROBOTPART'].fields_by_name['secret']._loaded_options = None
39
+ _globals['_ROBOTPART'].fields_by_name['secret']._serialized_options = b'\x9a\x84\x9e\x03%bson:"secret" json:"secret,omitempty"'
40
+ _globals['_ROBOTPART'].fields_by_name['robot']._loaded_options = None
41
+ _globals['_ROBOTPART'].fields_by_name['robot']._serialized_options = b'\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"'
42
+ _globals['_ROBOTPART'].fields_by_name['location_id']._loaded_options = None
43
+ _globals['_ROBOTPART'].fields_by_name['location_id']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"location_id" json:"-"'
44
+ _globals['_ROBOTPART'].fields_by_name['robot_config']._loaded_options = None
45
+ _globals['_ROBOTPART'].fields_by_name['robot_config']._serialized_options = b'\x9a\x84\x9e\x03!bson:"config" json:"robot_config"'
46
+ _globals['_ROBOTPART'].fields_by_name['last_access']._loaded_options = None
47
+ _globals['_ROBOTPART'].fields_by_name['last_access']._serialized_options = b'\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"'
48
+ _globals['_ROBOTPART'].fields_by_name['user_supplied_info']._loaded_options = None
49
+ _globals['_ROBOTPART'].fields_by_name['user_supplied_info']._serialized_options = b'\x9a\x84\x9e\x033bson:"user_supplied_info" json:"user_supplied_info"'
50
+ _globals['_ROBOTPART'].fields_by_name['main_part']._loaded_options = None
51
+ _globals['_ROBOTPART'].fields_by_name['main_part']._serialized_options = b'\x9a\x84\x9e\x03!bson:"main_part" json:"main_part"'
52
+ _globals['_ROBOTPART'].fields_by_name['created_on']._loaded_options = None
53
+ _globals['_ROBOTPART'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
54
+ _globals['_ROBOTPART'].fields_by_name['secrets']._loaded_options = None
55
+ _globals['_ROBOTPART'].fields_by_name['secrets']._serialized_options = b'\x9a\x84\x9e\x03\x0ebson:"secrets"'
56
+ _globals['_ROBOTPART'].fields_by_name['last_updated']._loaded_options = None
57
+ _globals['_ROBOTPART'].fields_by_name['last_updated']._serialized_options = b'\x9a\x84\x9e\x03\x16bson:"last_updated_at"'
58
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['part']._loaded_options = None
59
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['part']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"part" json:"part"'
60
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['robot']._loaded_options = None
61
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['robot']._serialized_options = b'\x9a\x84\x9e\x03\x19bson:"robot" json:"robot"'
62
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['when']._loaded_options = None
63
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['when']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"when" json:"when"'
64
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['old']._loaded_options = None
65
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['old']._serialized_options = b'\x9a\x84\x9e\x03\x15bson:"old" json:"old"'
66
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['edited_by']._loaded_options = None
67
+ _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['edited_by']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"'
68
+ _globals['_LOCATIONAUTH'].fields_by_name['secret']._loaded_options = None
69
+ _globals['_LOCATIONAUTH'].fields_by_name['secret']._serialized_options = b'\x18\x01'
70
+ _globals['_SHAREDSECRET'].fields_by_name['id']._loaded_options = None
71
+ _globals['_SHAREDSECRET'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\tbson:"id"'
72
+ _globals['_SHAREDSECRET'].fields_by_name['secret']._loaded_options = None
73
+ _globals['_SHAREDSECRET'].fields_by_name['secret']._serialized_options = b'\x9a\x84\x9e\x03\rbson:"secret"'
74
+ _globals['_SHAREDSECRET'].fields_by_name['created_on']._loaded_options = None
75
+ _globals['_SHAREDSECRET'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"'
76
+ _globals['_SHAREDSECRET'].fields_by_name['state']._loaded_options = None
77
+ _globals['_SHAREDSECRET'].fields_by_name['state']._serialized_options = b'\x9a\x84\x9e\x03\x0cbson:"state"'
78
+ _globals['_GETROBOTPARTLOGSREQUEST'].fields_by_name['errors_only']._loaded_options = None
79
+ _globals['_GETROBOTPARTLOGSREQUEST'].fields_by_name['errors_only']._serialized_options = b'\x18\x01'
80
+ _globals['_FRAGMENT'].fields_by_name['id']._loaded_options = None
81
+ _globals['_FRAGMENT'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
82
+ _globals['_FRAGMENT'].fields_by_name['name']._loaded_options = None
83
+ _globals['_FRAGMENT'].fields_by_name['name']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"name" json:"name"'
84
+ _globals['_FRAGMENT'].fields_by_name['fragment']._loaded_options = None
85
+ _globals['_FRAGMENT'].fields_by_name['fragment']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"'
86
+ _globals['_FRAGMENT'].fields_by_name['organization_owner']._loaded_options = None
87
+ _globals['_FRAGMENT'].fields_by_name['organization_owner']._serialized_options = b'\x9a\x84\x9e\x03&bson:"organization_owner" json:"owner"'
88
+ _globals['_FRAGMENT'].fields_by_name['public']._loaded_options = None
89
+ _globals['_FRAGMENT'].fields_by_name['public']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"public" json:"public"'
90
+ _globals['_FRAGMENT'].fields_by_name['created_on']._loaded_options = None
91
+ _globals['_FRAGMENT'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
92
+ _globals['_FRAGMENT'].fields_by_name['last_updated']._loaded_options = None
93
+ _globals['_FRAGMENT'].fields_by_name['last_updated']._serialized_options = b'\x9a\x84\x9e\x03\x16bson:"last_updated_at"'
94
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['fragment']._loaded_options = None
95
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['fragment']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"fragment" json:"fragment"'
96
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['edited_on']._loaded_options = None
97
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['edited_on']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_on" json:"edited_on"'
98
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['old']._loaded_options = None
99
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['old']._serialized_options = b'\x9a\x84\x9e\x03\x15bson:"old" json:"old"'
100
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['edited_by']._loaded_options = None
101
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['edited_by']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"'
102
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['revision']._loaded_options = None
103
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['revision']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"revision" json:"revision"'
104
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['config']._loaded_options = None
105
+ _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['config']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"config" json:"config"'
106
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._loaded_options = None
107
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_options = b'8\x01'
108
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._loaded_options = None
109
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_options = b'8\x01'
110
+ _globals['_AUTHENTICATIONTYPE']._serialized_start = 34322
111
+ _globals['_AUTHENTICATIONTYPE']._serialized_end = 34531
112
+ _globals['_FRAGMENTVISIBILITY']._serialized_start = 34534
113
+ _globals['_FRAGMENTVISIBILITY']._serialized_end = 34697
114
+ _globals['_FRAGMENTERRORTYPE']._serialized_start = 34700
115
+ _globals['_FRAGMENTERRORTYPE']._serialized_end = 34921
116
+ _globals['_REGISTRYITEMSTATUS']._serialized_start = 34924
117
+ _globals['_REGISTRYITEMSTATUS']._serialized_end = 35059
118
+ _globals['_VISIBILITY']._serialized_start = 35061
119
+ _globals['_VISIBILITY']._serialized_end = 35180
120
+ _globals['_APPTYPE']._serialized_start = 35182
121
+ _globals['_APPTYPE']._serialized_end = 35274
122
+ _globals['_CLIENTAUTHENTICATION']._serialized_start = 35277
123
+ _globals['_CLIENTAUTHENTICATION']._serialized_end = 35470
124
+ _globals['_PKCE']._serialized_start = 35472
125
+ _globals['_PKCE']._serialized_end = 35598
126
+ _globals['_URLVALIDATION']._serialized_start = 35600
127
+ _globals['_URLVALIDATION']._serialized_end = 35715
128
+ _globals['_ENABLEDGRANT']._serialized_start = 35718
129
+ _globals['_ENABLEDGRANT']._serialized_end = 35921
130
+ _globals['_ROBOT']._serialized_start = 214
131
+ _globals['_ROBOT']._serialized_end = 578
132
+ _globals['_ROBOTPART']._serialized_start = 581
133
+ _globals['_ROBOTPART']._serialized_end = 1652
134
+ _globals['_ROBOTPARTHISTORYENTRY']._serialized_start = 1655
135
+ _globals['_ROBOTPARTHISTORYENTRY']._serialized_end = 2031
136
+ _globals['_AUTHENTICATORINFO']._serialized_start = 2034
137
+ _globals['_AUTHENTICATORINFO']._serialized_end = 2167
138
+ _globals['_LISTORGANIZATIONSREQUEST']._serialized_start = 2169
139
+ _globals['_LISTORGANIZATIONSREQUEST']._serialized_end = 2195
140
+ _globals['_ORGANIZATION']._serialized_start = 2198
141
+ _globals['_ORGANIZATION']._serialized_end = 2420
142
+ _globals['_ORGANIZATIONMEMBER']._serialized_start = 2423
143
+ _globals['_ORGANIZATIONMEMBER']._serialized_end = 2712
144
+ _globals['_LISTORGANIZATIONSRESPONSE']._serialized_start = 2714
145
+ _globals['_LISTORGANIZATIONSRESPONSE']._serialized_end = 2806
146
+ _globals['_ORGANIZATIONINVITE']._serialized_start = 2809
147
+ _globals['_ORGANIZATIONINVITE']._serialized_end = 3019
148
+ _globals['_CREATEORGANIZATIONREQUEST']._serialized_start = 3021
149
+ _globals['_CREATEORGANIZATIONREQUEST']._serialized_end = 3068
150
+ _globals['_CREATEORGANIZATIONRESPONSE']._serialized_start = 3070
151
+ _globals['_CREATEORGANIZATIONRESPONSE']._serialized_end = 3161
152
+ _globals['_GETORGANIZATIONREQUEST']._serialized_start = 3163
153
+ _globals['_GETORGANIZATIONREQUEST']._serialized_end = 3228
154
+ _globals['_GETORGANIZATIONRESPONSE']._serialized_start = 3230
155
+ _globals['_GETORGANIZATIONRESPONSE']._serialized_end = 3318
156
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_start = 3321
157
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_end = 3450
158
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_start = 3452
159
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_end = 3528
160
+ _globals['_UPDATEORGANIZATIONREQUEST']._serialized_start = 3531
161
+ _globals['_UPDATEORGANIZATIONREQUEST']._serialized_end = 3773
162
+ _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_start = 3775
163
+ _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_end = 3866
164
+ _globals['_UPDATEORGANIZATIONNAMESPACEREQUEST']._serialized_start = 3868
165
+ _globals['_UPDATEORGANIZATIONNAMESPACEREQUEST']._serialized_end = 3995
166
+ _globals['_UPDATEORGANIZATIONNAMESPACERESPONSE']._serialized_start = 3997
167
+ _globals['_UPDATEORGANIZATIONNAMESPACERESPONSE']._serialized_end = 4097
168
+ _globals['_DELETEORGANIZATIONREQUEST']._serialized_start = 4099
169
+ _globals['_DELETEORGANIZATIONREQUEST']._serialized_end = 4167
170
+ _globals['_DELETEORGANIZATIONRESPONSE']._serialized_start = 4169
171
+ _globals['_DELETEORGANIZATIONRESPONSE']._serialized_end = 4197
172
+ _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_start = 4199
173
+ _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_end = 4272
174
+ _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_start = 4274
175
+ _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_end = 4352
176
+ _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_start = 4354
177
+ _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_end = 4475
178
+ _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_start = 4477
179
+ _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_end = 4513
180
+ _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_start = 4515
181
+ _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_end = 4588
182
+ _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_start = 4591
183
+ _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_end = 4783
184
+ _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_start = 4786
185
+ _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_end = 5021
186
+ _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_start = 5023
187
+ _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_end = 5114
188
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_start = 5117
189
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_end = 5383
190
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_start = 5385
191
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_end = 5490
192
+ _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_start = 5492
193
+ _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_end = 5588
194
+ _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_start = 5590
195
+ _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_end = 5624
196
+ _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_start = 5627
197
+ _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_end = 5794
198
+ _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_start = 5796
199
+ _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_end = 5887
200
+ _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_start = 5889
201
+ _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_end = 5988
202
+ _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_start = 5990
203
+ _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_end = 6024
204
+ _globals['_BILLINGADDRESS']._serialized_start = 6027
205
+ _globals['_BILLINGADDRESS']._serialized_end = 6237
206
+ _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_start = 6239
207
+ _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_end = 6361
208
+ _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_start = 6363
209
+ _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_end = 6393
210
+ _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_start = 6395
211
+ _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_end = 6517
212
+ _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_start = 6519
213
+ _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_end = 6549
214
+ _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_start = 6551
215
+ _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_end = 6606
216
+ _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_start = 6609
217
+ _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_end = 6828
218
+ _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_start = 6830
219
+ _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_end = 6883
220
+ _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_start = 6885
221
+ _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_end = 6916
222
+ _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_start = 6918
223
+ _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_end = 6999
224
+ _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_start = 7001
225
+ _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_end = 7038
226
+ _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_start = 7040
227
+ _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_end = 7099
228
+ _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_start = 7101
229
+ _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_end = 7160
230
+ _globals['_ORGANIZATIONIDENTITY']._serialized_start = 7162
231
+ _globals['_ORGANIZATIONIDENTITY']._serialized_end = 7220
232
+ _globals['_LOCATIONORGANIZATION']._serialized_start = 7222
233
+ _globals['_LOCATIONORGANIZATION']._serialized_end = 7311
234
+ _globals['_LOCATIONAUTH']._serialized_start = 7314
235
+ _globals['_LOCATIONAUTH']._serialized_end = 7442
236
+ _globals['_STORAGECONFIG']._serialized_start = 7444
237
+ _globals['_STORAGECONFIG']._serialized_end = 7483
238
+ _globals['_LOCATION']._serialized_start = 7486
239
+ _globals['_LOCATION']._serialized_end = 7957
240
+ _globals['_SHAREDSECRET']._serialized_start = 7960
241
+ _globals['_SHAREDSECRET']._serialized_end = 8296
242
+ _globals['_SHAREDSECRET_STATE']._serialized_start = 8227
243
+ _globals['_SHAREDSECRET_STATE']._serialized_end = 8296
244
+ _globals['_CREATELOCATIONREQUEST']._serialized_start = 8299
245
+ _globals['_CREATELOCATIONREQUEST']._serialized_end = 8457
246
+ _globals['_CREATELOCATIONRESPONSE']._serialized_start = 8459
247
+ _globals['_CREATELOCATIONRESPONSE']._serialized_end = 8534
248
+ _globals['_GETLOCATIONREQUEST']._serialized_start = 8536
249
+ _globals['_GETLOCATIONREQUEST']._serialized_end = 8589
250
+ _globals['_GETLOCATIONRESPONSE']._serialized_start = 8591
251
+ _globals['_GETLOCATIONRESPONSE']._serialized_end = 8663
252
+ _globals['_UPDATELOCATIONREQUEST']._serialized_start = 8666
253
+ _globals['_UPDATELOCATIONREQUEST']._serialized_end = 8870
254
+ _globals['_UPDATELOCATIONRESPONSE']._serialized_start = 8872
255
+ _globals['_UPDATELOCATIONRESPONSE']._serialized_end = 8947
256
+ _globals['_DELETELOCATIONREQUEST']._serialized_start = 8949
257
+ _globals['_DELETELOCATIONREQUEST']._serialized_end = 9005
258
+ _globals['_DELETELOCATIONRESPONSE']._serialized_start = 9007
259
+ _globals['_DELETELOCATIONRESPONSE']._serialized_end = 9031
260
+ _globals['_GETLOCATIONMETADATAREQUEST']._serialized_start = 9033
261
+ _globals['_GETLOCATIONMETADATAREQUEST']._serialized_end = 9094
262
+ _globals['_GETLOCATIONMETADATARESPONSE']._serialized_start = 9096
263
+ _globals['_GETLOCATIONMETADATARESPONSE']._serialized_end = 9170
264
+ _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_start = 9172
265
+ _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_end = 9281
266
+ _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_start = 9283
267
+ _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_end = 9315
268
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_start = 9317
269
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_end = 9395
270
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_start = 9398
271
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_end = 9536
272
+ _globals['_LISTLOCATIONSREQUEST']._serialized_start = 9538
273
+ _globals['_LISTLOCATIONSREQUEST']._serialized_end = 9601
274
+ _globals['_SHARELOCATIONREQUEST']._serialized_start = 9603
275
+ _globals['_SHARELOCATIONREQUEST']._serialized_end = 9699
276
+ _globals['_SHARELOCATIONRESPONSE']._serialized_start = 9701
277
+ _globals['_SHARELOCATIONRESPONSE']._serialized_end = 9724
278
+ _globals['_UNSHARELOCATIONREQUEST']._serialized_start = 9726
279
+ _globals['_UNSHARELOCATIONREQUEST']._serialized_end = 9824
280
+ _globals['_UNSHARELOCATIONRESPONSE']._serialized_start = 9826
281
+ _globals['_UNSHARELOCATIONRESPONSE']._serialized_end = 9851
282
+ _globals['_LISTLOCATIONSRESPONSE']._serialized_start = 9853
283
+ _globals['_LISTLOCATIONSRESPONSE']._serialized_end = 9929
284
+ _globals['_CREATELOCATIONSECRETREQUEST']._serialized_start = 9931
285
+ _globals['_CREATELOCATIONSECRETREQUEST']._serialized_end = 9993
286
+ _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_start = 9995
287
+ _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_end = 10072
288
+ _globals['_DELETELOCATIONSECRETREQUEST']._serialized_start = 10074
289
+ _globals['_DELETELOCATIONSECRETREQUEST']._serialized_end = 10165
290
+ _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_start = 10167
291
+ _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_end = 10197
292
+ _globals['_LOCATIONAUTHREQUEST']._serialized_start = 10199
293
+ _globals['_LOCATIONAUTHREQUEST']._serialized_end = 10253
294
+ _globals['_LOCATIONAUTHRESPONSE']._serialized_start = 10255
295
+ _globals['_LOCATIONAUTHRESPONSE']._serialized_end = 10324
296
+ _globals['_GETROBOTREQUEST']._serialized_start = 10326
297
+ _globals['_GETROBOTREQUEST']._serialized_end = 10359
298
+ _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_start = 10361
299
+ _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_end = 10413
300
+ _globals['_ROVERRENTALROBOT']._serialized_start = 10416
301
+ _globals['_ROVERRENTALROBOT']._serialized_end = 10570
302
+ _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_start = 10572
303
+ _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_end = 10657
304
+ _globals['_GETROBOTRESPONSE']._serialized_start = 10659
305
+ _globals['_GETROBOTRESPONSE']._serialized_end = 10719
306
+ _globals['_GETROBOTPARTSREQUEST']._serialized_start = 10721
307
+ _globals['_GETROBOTPARTSREQUEST']._serialized_end = 10770
308
+ _globals['_GETROBOTPARTSRESPONSE']._serialized_start = 10772
309
+ _globals['_GETROBOTPARTSRESPONSE']._serialized_end = 10841
310
+ _globals['_GETROBOTPARTREQUEST']._serialized_start = 10843
311
+ _globals['_GETROBOTPARTREQUEST']._serialized_end = 10880
312
+ _globals['_GETROBOTPARTRESPONSE']._serialized_start = 10882
313
+ _globals['_GETROBOTPARTRESPONSE']._serialized_end = 10981
314
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONREQUEST']._serialized_start = 10983
315
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONREQUEST']._serialized_end = 11074
316
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONRESPONSE']._serialized_start = 11076
317
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONRESPONSE']._serialized_end = 11159
318
+ _globals['_GETROBOTPARTLOGSREQUEST']._serialized_start = 11162
319
+ _globals['_GETROBOTPARTLOGSREQUEST']._serialized_end = 11556
320
+ _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_start = 11558
321
+ _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_end = 11670
322
+ _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_start = 11672
323
+ _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_end = 11787
324
+ _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_start = 11789
325
+ _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_end = 11862
326
+ _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_start = 11864
327
+ _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_end = 11908
328
+ _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_start = 11910
329
+ _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_end = 12001
330
+ _globals['_UPDATEROBOTPARTREQUEST']._serialized_start = 12004
331
+ _globals['_UPDATEROBOTPARTREQUEST']._serialized_end = 12223
332
+ _globals['_UPDATEROBOTPARTRESPONSE']._serialized_start = 12225
333
+ _globals['_UPDATEROBOTPARTRESPONSE']._serialized_end = 12294
334
+ _globals['_NEWROBOTPARTREQUEST']._serialized_start = 12296
335
+ _globals['_NEWROBOTPARTREQUEST']._serialized_end = 12373
336
+ _globals['_NEWROBOTPARTRESPONSE']._serialized_start = 12375
337
+ _globals['_NEWROBOTPARTRESPONSE']._serialized_end = 12422
338
+ _globals['_DELETEROBOTPARTREQUEST']._serialized_start = 12424
339
+ _globals['_DELETEROBOTPARTREQUEST']._serialized_end = 12473
340
+ _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_start = 12475
341
+ _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_end = 12520
342
+ _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_start = 12522
343
+ _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_end = 12597
344
+ _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_start = 12599
345
+ _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_end = 12692
346
+ _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_start = 12694
347
+ _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_end = 12727
348
+ _globals['_GETROBOTAPIKEYSREQUEST']._serialized_start = 12729
349
+ _globals['_GETROBOTAPIKEYSREQUEST']._serialized_end = 12780
350
+ _globals['_APIKEY']._serialized_start = 12782
351
+ _globals['_APIKEY']._serialized_end = 12903
352
+ _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_start = 12905
353
+ _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_end = 12996
354
+ _globals['_DELETEROBOTPARTRESPONSE']._serialized_start = 12998
355
+ _globals['_DELETEROBOTPARTRESPONSE']._serialized_end = 13023
356
+ _globals['_FRAGMENT']._serialized_start = 13026
357
+ _globals['_FRAGMENT']._serialized_end = 13827
358
+ _globals['_FRAGMENTHISTORYENTRY']._serialized_start = 13830
359
+ _globals['_FRAGMENTHISTORYENTRY']._serialized_end = 14334
360
+ _globals['_FRAGMENTREVISION']._serialized_start = 14336
361
+ _globals['_FRAGMENTREVISION']._serialized_end = 14441
362
+ _globals['_FRAGMENTTAG']._serialized_start = 14443
363
+ _globals['_FRAGMENTTAG']._serialized_end = 14502
364
+ _globals['_FRAGMENTERROR']._serialized_start = 14505
365
+ _globals['_FRAGMENTERROR']._serialized_end = 14640
366
+ _globals['_FRAGMENTUSAGE']._serialized_start = 14643
367
+ _globals['_FRAGMENTUSAGE']._serialized_end = 14855
368
+ _globals['_RESOLVEDFRAGMENT']._serialized_start = 14858
369
+ _globals['_RESOLVEDFRAGMENT']._serialized_end = 15053
370
+ _globals['_LISTFRAGMENTSREQUEST']._serialized_start = 15056
371
+ _globals['_LISTFRAGMENTSREQUEST']._serialized_end = 15234
372
+ _globals['_LISTFRAGMENTSRESPONSE']._serialized_start = 15237
373
+ _globals['_LISTFRAGMENTSRESPONSE']._serialized_end = 15382
374
+ _globals['_GETFRAGMENTREQUEST']._serialized_start = 15385
375
+ _globals['_GETFRAGMENTREQUEST']._serialized_end = 15520
376
+ _globals['_GETFRAGMENTRESPONSE']._serialized_start = 15523
377
+ _globals['_GETFRAGMENTRESPONSE']._serialized_end = 15769
378
+ _globals['_CREATEFRAGMENTREQUEST']._serialized_start = 15772
379
+ _globals['_CREATEFRAGMENTREQUEST']._serialized_end = 15990
380
+ _globals['_CREATEFRAGMENTRESPONSE']._serialized_start = 15992
381
+ _globals['_CREATEFRAGMENTRESPONSE']._serialized_end = 16067
382
+ _globals['_UPDATEFRAGMENTREQUEST']._serialized_start = 16070
383
+ _globals['_UPDATEFRAGMENTREQUEST']._serialized_end = 16402
384
+ _globals['_UPDATEFRAGMENTRESPONSE']._serialized_start = 16404
385
+ _globals['_UPDATEFRAGMENTRESPONSE']._serialized_end = 16479
386
+ _globals['_DELETEFRAGMENTREQUEST']._serialized_start = 16481
387
+ _globals['_DELETEFRAGMENTREQUEST']._serialized_end = 16520
388
+ _globals['_DELETEFRAGMENTRESPONSE']._serialized_start = 16522
389
+ _globals['_DELETEFRAGMENTRESPONSE']._serialized_end = 16546
390
+ _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_start = 16549
391
+ _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_end = 16694
392
+ _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_start = 16697
393
+ _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_end = 16826
394
+ _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_start = 16828
395
+ _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_end = 16886
396
+ _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_start = 16888
397
+ _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_end = 16981
398
+ _globals['_SETFRAGMENTTAGREQUEST']._serialized_start = 16983
399
+ _globals['_SETFRAGMENTTAGREQUEST']._serialized_end = 17085
400
+ _globals['_SETFRAGMENTTAGRESPONSE']._serialized_start = 17087
401
+ _globals['_SETFRAGMENTTAGRESPONSE']._serialized_end = 17157
402
+ _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_start = 17159
403
+ _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_end = 17236
404
+ _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_start = 17238
405
+ _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_end = 17311
406
+ _globals['_LISTROBOTSREQUEST']._serialized_start = 17313
407
+ _globals['_LISTROBOTSREQUEST']._serialized_end = 17365
408
+ _globals['_LISTROBOTSFORLOCATIONSREQUEST']._serialized_start = 17367
409
+ _globals['_LISTROBOTSFORLOCATIONSREQUEST']._serialized_end = 17433
410
+ _globals['_LISTROBOTSFORORGREQUEST']._serialized_start = 17435
411
+ _globals['_LISTROBOTSFORORGREQUEST']._serialized_end = 17483
412
+ _globals['_ADDITIONALFRAGMENT']._serialized_start = 17485
413
+ _globals['_ADDITIONALFRAGMENT']._serialized_end = 17581
414
+ _globals['_LISTNESTEDFRAGMENTSREQUEST']._serialized_start = 17584
415
+ _globals['_LISTNESTEDFRAGMENTSREQUEST']._serialized_end = 17750
416
+ _globals['_LISTNESTEDFRAGMENTSRESPONSE']._serialized_start = 17753
417
+ _globals['_LISTNESTEDFRAGMENTSRESPONSE']._serialized_end = 17913
418
+ _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_start = 17916
419
+ _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_end = 18116
420
+ _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_start = 18119
421
+ _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_end = 18280
422
+ _globals['_LISTMACHINESUMMARIESREQUEST']._serialized_start = 18283
423
+ _globals['_LISTMACHINESUMMARIESREQUEST']._serialized_end = 18460
424
+ _globals['_LISTMACHINESUMMARIESRESPONSE']._serialized_start = 18462
425
+ _globals['_LISTMACHINESUMMARIESRESPONSE']._serialized_end = 18569
426
+ _globals['_LOCATIONSUMMARY']._serialized_start = 18572
427
+ _globals['_LOCATIONSUMMARY']._serialized_end = 18733
428
+ _globals['_MACHINESUMMARY']._serialized_start = 18736
429
+ _globals['_MACHINESUMMARY']._serialized_end = 18883
430
+ _globals['_FRAGMENTSUMMARY']._serialized_start = 18885
431
+ _globals['_FRAGMENTSUMMARY']._serialized_end = 18944
432
+ _globals['_VIAMSERVERVERSION']._serialized_start = 18946
433
+ _globals['_VIAMSERVERVERSION']._serialized_end = 19024
434
+ _globals['_VIAMAGENTVERSION']._serialized_start = 19026
435
+ _globals['_VIAMAGENTVERSION']._serialized_end = 19103
436
+ _globals['_PARTSUMMARY']._serialized_start = 19106
437
+ _globals['_PARTSUMMARY']._serialized_end = 19753
438
+ _globals['_LISTROBOTSRESPONSE']._serialized_start = 19755
439
+ _globals['_LISTROBOTSRESPONSE']._serialized_end = 19819
440
+ _globals['_LISTROBOTSFORLOCATIONSRESPONSE']._serialized_start = 19821
441
+ _globals['_LISTROBOTSFORLOCATIONSRESPONSE']._serialized_end = 19897
442
+ _globals['_LISTROBOTSFORORGRESPONSE']._serialized_start = 19899
443
+ _globals['_LISTROBOTSFORORGRESPONSE']._serialized_end = 19969
444
+ _globals['_NEWROBOTREQUEST']._serialized_start = 19971
445
+ _globals['_NEWROBOTREQUEST']._serialized_end = 20036
446
+ _globals['_NEWROBOTRESPONSE']._serialized_start = 20038
447
+ _globals['_NEWROBOTRESPONSE']._serialized_end = 20072
448
+ _globals['_UPDATEROBOTREQUEST']._serialized_start = 20074
449
+ _globals['_UPDATEROBOTREQUEST']._serialized_end = 20158
450
+ _globals['_UPDATEROBOTRESPONSE']._serialized_start = 20160
451
+ _globals['_UPDATEROBOTRESPONSE']._serialized_end = 20223
452
+ _globals['_DELETEROBOTREQUEST']._serialized_start = 20225
453
+ _globals['_DELETEROBOTREQUEST']._serialized_end = 20261
454
+ _globals['_DELETEROBOTRESPONSE']._serialized_start = 20263
455
+ _globals['_DELETEROBOTRESPONSE']._serialized_end = 20284
456
+ _globals['_GETROBOTMETADATAREQUEST']._serialized_start = 20286
457
+ _globals['_GETROBOTMETADATAREQUEST']._serialized_end = 20327
458
+ _globals['_GETROBOTMETADATARESPONSE']._serialized_start = 20329
459
+ _globals['_GETROBOTMETADATARESPONSE']._serialized_end = 20400
460
+ _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_start = 20402
461
+ _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_end = 20491
462
+ _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_start = 20493
463
+ _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_end = 20522
464
+ _globals['_MARKPARTASMAINREQUEST']._serialized_start = 20524
465
+ _globals['_MARKPARTASMAINREQUEST']._serialized_end = 20572
466
+ _globals['_MARKPARTASMAINRESPONSE']._serialized_start = 20574
467
+ _globals['_MARKPARTASMAINRESPONSE']._serialized_end = 20598
468
+ _globals['_MARKPARTFORRESTARTREQUEST']._serialized_start = 20600
469
+ _globals['_MARKPARTFORRESTARTREQUEST']._serialized_end = 20652
470
+ _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_start = 20654
471
+ _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_end = 20682
472
+ _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_start = 20684
473
+ _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_end = 20739
474
+ _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_start = 20741
475
+ _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_end = 20816
476
+ _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_start = 20818
477
+ _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_end = 20902
478
+ _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_start = 20904
479
+ _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_end = 20935
480
+ _globals['_AUTHORIZATION']._serialized_start = 20938
481
+ _globals['_AUTHORIZATION']._serialized_end = 21224
482
+ _globals['_ADDROLEREQUEST']._serialized_start = 21226
483
+ _globals['_ADDROLEREQUEST']._serialized_end = 21308
484
+ _globals['_ADDROLERESPONSE']._serialized_start = 21310
485
+ _globals['_ADDROLERESPONSE']._serialized_end = 21327
486
+ _globals['_REMOVEROLEREQUEST']._serialized_start = 21329
487
+ _globals['_REMOVEROLEREQUEST']._serialized_end = 21414
488
+ _globals['_REMOVEROLERESPONSE']._serialized_start = 21416
489
+ _globals['_REMOVEROLERESPONSE']._serialized_end = 21436
490
+ _globals['_CHANGEROLEREQUEST']._serialized_start = 21439
491
+ _globals['_CHANGEROLEREQUEST']._serialized_end = 21604
492
+ _globals['_CHANGEROLERESPONSE']._serialized_start = 21606
493
+ _globals['_CHANGEROLERESPONSE']._serialized_end = 21626
494
+ _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_start = 21628
495
+ _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_end = 21731
496
+ _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_start = 21733
497
+ _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_end = 21829
498
+ _globals['_CHECKPERMISSIONSREQUEST']._serialized_start = 21831
499
+ _globals['_CHECKPERMISSIONSREQUEST']._serialized_end = 21926
500
+ _globals['_AUTHORIZEDPERMISSIONS']._serialized_start = 21928
501
+ _globals['_AUTHORIZEDPERMISSIONS']._serialized_end = 22055
502
+ _globals['_CHECKPERMISSIONSRESPONSE']._serialized_start = 22057
503
+ _globals['_CHECKPERMISSIONSRESPONSE']._serialized_end = 22174
504
+ _globals['_MODULEVERSION']._serialized_start = 22177
505
+ _globals['_MODULEVERSION']._serialized_end = 22505
506
+ _globals['_MODULEMETADATA']._serialized_start = 22508
507
+ _globals['_MODULEMETADATA']._serialized_end = 22823
508
+ _globals['_MLMODELMETADATA']._serialized_start = 22826
509
+ _globals['_MLMODELMETADATA']._serialized_end = 23018
510
+ _globals['_MLTRAININGVERSION']._serialized_start = 23020
511
+ _globals['_MLTRAININGVERSION']._serialized_end = 23124
512
+ _globals['_MLTRAININGMETADATA']._serialized_start = 23127
513
+ _globals['_MLTRAININGMETADATA']._serialized_end = 23382
514
+ _globals['_REGISTRYITEM']._serialized_start = 23385
515
+ _globals['_REGISTRYITEM']._serialized_end = 24293
516
+ _globals['_GETREGISTRYITEMREQUEST']._serialized_start = 24296
517
+ _globals['_GETREGISTRYITEMREQUEST']._serialized_end = 24455
518
+ _globals['_GETREGISTRYITEMRESPONSE']._serialized_start = 24457
519
+ _globals['_GETREGISTRYITEMRESPONSE']._serialized_end = 24529
520
+ _globals['_CREATEREGISTRYITEMREQUEST']._serialized_start = 24532
521
+ _globals['_CREATEREGISTRYITEMREQUEST']._serialized_end = 24675
522
+ _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_start = 24677
523
+ _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_end = 24705
524
+ _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_start = 24708
525
+ _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_end = 25320
526
+ _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_start = 25322
527
+ _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_end = 25350
528
+ _globals['_LISTREGISTRYITEMSREQUEST']._serialized_start = 25353
529
+ _globals['_LISTREGISTRYITEMSREQUEST']._serialized_end = 25914
530
+ _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_start = 25916
531
+ _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_end = 25992
532
+ _globals['_DELETEREGISTRYITEMREQUEST']._serialized_start = 25994
533
+ _globals['_DELETEREGISTRYITEMREQUEST']._serialized_end = 26046
534
+ _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_start = 26048
535
+ _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_end = 26076
536
+ _globals['_RENAMEREGISTRYITEMREQUEST']._serialized_start = 26078
537
+ _globals['_RENAMEREGISTRYITEMREQUEST']._serialized_end = 26157
538
+ _globals['_RENAMEREGISTRYITEMRESPONSE']._serialized_start = 26159
539
+ _globals['_RENAMEREGISTRYITEMRESPONSE']._serialized_end = 26234
540
+ _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_start = 26236
541
+ _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_end = 26340
542
+ _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_start = 26342
543
+ _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_end = 26372
544
+ _globals['_CREATEMODULEREQUEST']._serialized_start = 26374
545
+ _globals['_CREATEMODULEREQUEST']._serialized_end = 26456
546
+ _globals['_CREATEMODULERESPONSE']._serialized_start = 26458
547
+ _globals['_CREATEMODULERESPONSE']._serialized_end = 26527
548
+ _globals['_UPDATEMODULEREQUEST']._serialized_start = 26530
549
+ _globals['_UPDATEMODULEREQUEST']._serialized_end = 26932
550
+ _globals['_APP']._serialized_start = 26935
551
+ _globals['_APP']._serialized_end = 27167
552
+ _globals['_UPDATEMODULERESPONSE']._serialized_start = 27169
553
+ _globals['_UPDATEMODULERESPONSE']._serialized_end = 27209
554
+ _globals['_UPDATEMODULEMETADATA']._serialized_start = 27212
555
+ _globals['_UPDATEMODULEMETADATA']._serialized_end = 27348
556
+ _globals['_UPDATEMLMODELMETADATA']._serialized_start = 27351
557
+ _globals['_UPDATEMLMODELMETADATA']._serialized_end = 27521
558
+ _globals['_UPDATEMLTRAININGMETADATA']._serialized_start = 27524
559
+ _globals['_UPDATEMLTRAININGMETADATA']._serialized_end = 27719
560
+ _globals['_MODEL']._serialized_start = 27722
561
+ _globals['_MODEL']._serialized_end = 27958
562
+ _globals['_MODULEFILEINFO']._serialized_start = 27961
563
+ _globals['_MODULEFILEINFO']._serialized_end = 28097
564
+ _globals['_UPLOADMODULEFILEREQUEST']._serialized_start = 28100
565
+ _globals['_UPLOADMODULEFILEREQUEST']._serialized_end = 28235
566
+ _globals['_UPLOADMODULEFILERESPONSE']._serialized_start = 28237
567
+ _globals['_UPLOADMODULEFILERESPONSE']._serialized_end = 28281
568
+ _globals['_GETMODULEREQUEST']._serialized_start = 28284
569
+ _globals['_GETMODULEREQUEST']._serialized_end = 28441
570
+ _globals['_GETMODULERESPONSE']._serialized_start = 28443
571
+ _globals['_GETMODULERESPONSE']._serialized_end = 28507
572
+ _globals['_MODULE']._serialized_start = 28510
573
+ _globals['_MODULE']._serialized_end = 29162
574
+ _globals['_VERSIONHISTORY']._serialized_start = 29165
575
+ _globals['_VERSIONHISTORY']._serialized_end = 29494
576
+ _globals['_UPLOADS']._serialized_start = 29496
577
+ _globals['_UPLOADS']._serialized_end = 29594
578
+ _globals['_LISTMODULESREQUEST']._serialized_start = 29597
579
+ _globals['_LISTMODULESREQUEST']._serialized_end = 29793
580
+ _globals['_LISTMODULESRESPONSE']._serialized_start = 29795
581
+ _globals['_LISTMODULESRESPONSE']._serialized_end = 29863
582
+ _globals['_GETUSERIDBYEMAILREQUEST']._serialized_start = 29865
583
+ _globals['_GETUSERIDBYEMAILREQUEST']._serialized_end = 29912
584
+ _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_start = 29914
585
+ _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_end = 29965
586
+ _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_start = 29967
587
+ _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_end = 30024
588
+ _globals['_ORGDETAILS']._serialized_start = 30027
589
+ _globals['_ORGDETAILS']._serialized_end = 30257
590
+ _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_start = 30259
591
+ _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_end = 30337
592
+ _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_start = 30340
593
+ _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_end = 30552
594
+ _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_start = 30554
595
+ _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_end = 30646
596
+ _globals['_CREATEKEYREQUEST']._serialized_start = 30648
597
+ _globals['_CREATEKEYREQUEST']._serialized_end = 30754
598
+ _globals['_CREATEKEYRESPONSE']._serialized_start = 30756
599
+ _globals['_CREATEKEYRESPONSE']._serialized_end = 30809
600
+ _globals['_DELETEKEYREQUEST']._serialized_start = 30811
601
+ _globals['_DELETEKEYREQUEST']._serialized_end = 30845
602
+ _globals['_DELETEKEYRESPONSE']._serialized_start = 30847
603
+ _globals['_DELETEKEYRESPONSE']._serialized_end = 30866
604
+ _globals['_RENAMEKEYREQUEST']._serialized_start = 30868
605
+ _globals['_RENAMEKEYREQUEST']._serialized_end = 30922
606
+ _globals['_RENAMEKEYRESPONSE']._serialized_start = 30924
607
+ _globals['_RENAMEKEYRESPONSE']._serialized_end = 30979
608
+ _globals['_AUTHORIZATIONDETAILS']._serialized_start = 30982
609
+ _globals['_AUTHORIZATIONDETAILS']._serialized_end = 31187
610
+ _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_start = 31190
611
+ _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_end = 31337
612
+ _globals['_LISTKEYSREQUEST']._serialized_start = 31339
613
+ _globals['_LISTKEYSREQUEST']._serialized_end = 31379
614
+ _globals['_LISTKEYSRESPONSE']._serialized_start = 31381
615
+ _globals['_LISTKEYSRESPONSE']._serialized_end = 31465
616
+ _globals['_ROTATEKEYREQUEST']._serialized_start = 31467
617
+ _globals['_ROTATEKEYREQUEST']._serialized_end = 31501
618
+ _globals['_ROTATEKEYRESPONSE']._serialized_start = 31503
619
+ _globals['_ROTATEKEYRESPONSE']._serialized_end = 31556
620
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_start = 31558
621
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_end = 31621
622
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_start = 31623
623
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_end = 31705
624
+ _globals['_GETAPPCONTENTREQUEST']._serialized_start = 31707
625
+ _globals['_GETAPPCONTENTREQUEST']._serialized_end = 31792
626
+ _globals['_GETAPPCONTENTRESPONSE']._serialized_start = 31795
627
+ _globals['_GETAPPCONTENTRESPONSE']._serialized_end = 31928
628
+ _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_start = 31930
629
+ _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_end = 32001
630
+ _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_start = 32003
631
+ _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_end = 32032
632
+ _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_start = 32034
633
+ _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_end = 32085
634
+ _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_start = 32087
635
+ _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_end = 32134
636
+ _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_start = 32136
637
+ _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_end = 32185
638
+ _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_start = 32187
639
+ _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_end = 32214
640
+ _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_start = 32216
641
+ _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_end = 32266
642
+ _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_start = 32268
643
+ _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_end = 32296
644
+ _globals['_CREATEOAUTHAPPREQUEST']._serialized_start = 32299
645
+ _globals['_CREATEOAUTHAPPREQUEST']._serialized_end = 32439
646
+ _globals['_CREATEOAUTHAPPRESPONSE']._serialized_start = 32441
647
+ _globals['_CREATEOAUTHAPPRESPONSE']._serialized_end = 32531
648
+ _globals['_READOAUTHAPPREQUEST']._serialized_start = 32533
649
+ _globals['_READOAUTHAPPREQUEST']._serialized_end = 32606
650
+ _globals['_READOAUTHAPPRESPONSE']._serialized_start = 32609
651
+ _globals['_READOAUTHAPPRESPONSE']._serialized_end = 32762
652
+ _globals['_UPDATEOAUTHAPPREQUEST']._serialized_start = 32765
653
+ _globals['_UPDATEOAUTHAPPREQUEST']._serialized_end = 32934
654
+ _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_start = 32936
655
+ _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_end = 32960
656
+ _globals['_DELETEOAUTHAPPREQUEST']._serialized_start = 32962
657
+ _globals['_DELETEOAUTHAPPREQUEST']._serialized_end = 33037
658
+ _globals['_DELETEOAUTHAPPRESPONSE']._serialized_start = 33039
659
+ _globals['_DELETEOAUTHAPPRESPONSE']._serialized_end = 33063
660
+ _globals['_LISTOAUTHAPPSREQUEST']._serialized_start = 33065
661
+ _globals['_LISTOAUTHAPPSREQUEST']._serialized_end = 33110
662
+ _globals['_LISTOAUTHAPPSRESPONSE']._serialized_start = 33112
663
+ _globals['_LISTOAUTHAPPSRESPONSE']._serialized_end = 33166
664
+ _globals['_OAUTHCONFIG']._serialized_start = 33169
665
+ _globals['_OAUTHCONFIG']._serialized_end = 33543
666
+ _globals['_GETAPPBRANDINGREQUEST']._serialized_start = 33545
667
+ _globals['_GETAPPBRANDINGREQUEST']._serialized_end = 33631
668
+ _globals['_TEXTOVERRIDES']._serialized_start = 33634
669
+ _globals['_TEXTOVERRIDES']._serialized_end = 33772
670
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_start = 33715
671
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_end = 33772
672
+ _globals['_GETAPPBRANDINGRESPONSE']._serialized_start = 33775
673
+ _globals['_GETAPPBRANDINGRESPONSE']._serialized_end = 34091
674
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_start = 33980
675
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_end = 34077
676
+ _globals['_APPCUSTOMIZATIONS']._serialized_start = 34093
677
+ _globals['_APPCUSTOMIZATIONS']._serialized_end = 34193
678
+ _globals['_MACHINEPICKERCUSTOMIZATIONS']._serialized_start = 34195
679
+ _globals['_MACHINEPICKERCUSTOMIZATIONS']._serialized_end = 34319
680
+ _globals['_APPSERVICE']._serialized_start = 35924
681
+ _globals['_APPSERVICE']._serialized_end = 46926