viam-sdk 0.41.1__py3-none-linux_armv6l.whl → 0.66.0__py3-none-linux_armv6l.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.

Potentially problematic release.


This version of viam-sdk might be problematic. Click here for more details.

Files changed (225) hide show
  1. viam/app/app_client.py +225 -51
  2. viam/app/billing_client.py +47 -5
  3. viam/app/data_client.py +771 -234
  4. viam/app/ml_training_client.py +3 -5
  5. viam/app/provisioning_client.py +3 -5
  6. viam/app/viam_client.py +58 -11
  7. viam/components/arm/arm.py +1 -1
  8. viam/components/arm/service.py +1 -1
  9. viam/components/audio_in/__init__.py +24 -0
  10. viam/components/audio_in/audio_in.py +74 -0
  11. viam/components/audio_in/client.py +76 -0
  12. viam/components/audio_in/service.py +83 -0
  13. viam/components/audio_out/__init__.py +21 -0
  14. viam/components/audio_out/audio_out.py +72 -0
  15. viam/components/audio_out/client.py +67 -0
  16. viam/components/audio_out/service.py +63 -0
  17. viam/components/base/base.py +1 -1
  18. viam/components/board/board.py +8 -2
  19. viam/components/board/client.py +2 -1
  20. viam/components/board/service.py +1 -0
  21. viam/components/button/__init__.py +10 -0
  22. viam/components/button/button.py +41 -0
  23. viam/components/button/client.py +52 -0
  24. viam/components/button/service.py +46 -0
  25. viam/components/camera/camera.py +15 -30
  26. viam/components/camera/client.py +10 -21
  27. viam/components/camera/service.py +15 -28
  28. viam/components/component_base.py +2 -2
  29. viam/components/gantry/client.py +17 -2
  30. viam/components/gantry/gantry.py +32 -1
  31. viam/components/gantry/service.py +21 -5
  32. viam/components/gripper/__init__.py +2 -0
  33. viam/components/gripper/client.py +25 -2
  34. viam/components/gripper/gripper.py +76 -1
  35. viam/components/gripper/service.py +32 -3
  36. viam/components/input/input.py +1 -1
  37. viam/components/motor/motor.py +1 -1
  38. viam/components/power_sensor/power_sensor.py +1 -1
  39. viam/components/switch/__init__.py +10 -0
  40. viam/components/switch/client.py +83 -0
  41. viam/components/switch/service.py +72 -0
  42. viam/components/switch/switch.py +98 -0
  43. viam/gen/app/agent/v1/agent_pb2.py +1 -1
  44. viam/gen/app/cloudslam/v1/cloud_slam_pb2.py +1 -1
  45. viam/gen/app/data/v1/data_grpc.py +74 -2
  46. viam/gen/app/data/v1/data_pb2.py +198 -104
  47. viam/gen/app/data/v1/data_pb2.pyi +563 -31
  48. viam/gen/app/datapipelines/__init__.py +0 -0
  49. viam/gen/app/datapipelines/v1/__init__.py +0 -0
  50. viam/gen/app/datapipelines/v1/data_pipelines_grpc.py +84 -0
  51. viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +57 -0
  52. viam/gen/app/datapipelines/v1/data_pipelines_pb2.pyi +387 -0
  53. viam/gen/app/dataset/v1/dataset_grpc.py +10 -2
  54. viam/gen/app/dataset/v1/dataset_pb2.py +8 -4
  55. viam/gen/app/dataset/v1/dataset_pb2.pyi +36 -1
  56. viam/gen/app/datasync/v1/data_sync_pb2.py +39 -35
  57. viam/gen/app/datasync/v1/data_sync_pb2.pyi +21 -8
  58. viam/gen/app/mlinference/v1/ml_inference_pb2.py +7 -7
  59. viam/gen/app/mlinference/v1/ml_inference_pb2.pyi +4 -2
  60. viam/gen/app/mltraining/v1/ml_training_grpc.py +10 -2
  61. viam/gen/app/mltraining/v1/ml_training_pb2.py +63 -43
  62. viam/gen/app/mltraining/v1/ml_training_pb2.pyi +112 -7
  63. viam/gen/app/packages/v1/packages_pb2.py +1 -1
  64. viam/gen/app/v1/app_grpc.py +74 -3
  65. viam/gen/app/v1/app_pb2.py +600 -545
  66. viam/gen/app/v1/app_pb2.pyi +1108 -258
  67. viam/gen/app/v1/billing_grpc.py +26 -2
  68. viam/gen/app/v1/billing_pb2.py +52 -36
  69. viam/gen/app/v1/billing_pb2.pyi +158 -4
  70. viam/gen/app/v1/end_user_pb2.py +1 -1
  71. viam/gen/app/v1/robot_pb2.py +95 -89
  72. viam/gen/app/v1/robot_pb2.pyi +121 -9
  73. viam/gen/common/v1/common_pb2.py +76 -58
  74. viam/gen/common/v1/common_pb2.pyi +186 -17
  75. viam/gen/component/arm/v1/arm_grpc.py +10 -2
  76. viam/gen/component/arm/v1/arm_pb2.py +5 -3
  77. viam/gen/component/audioin/__init__.py +0 -0
  78. viam/gen/component/audioin/v1/__init__.py +0 -0
  79. viam/gen/component/audioin/v1/audioin_grpc.py +54 -0
  80. viam/gen/component/audioin/v1/audioin_pb2.py +34 -0
  81. viam/gen/component/audioin/v1/audioin_pb2.pyi +94 -0
  82. viam/gen/component/audioinput/v1/audioinput_pb2.py +1 -1
  83. viam/gen/component/audioout/__init__.py +0 -0
  84. viam/gen/component/audioout/v1/__init__.py +0 -0
  85. viam/gen/component/audioout/v1/audioout_grpc.py +54 -0
  86. viam/gen/component/audioout/v1/audioout_pb2.py +32 -0
  87. viam/gen/component/audioout/v1/audioout_pb2.pyi +47 -0
  88. viam/gen/component/base/v1/base_pb2.py +1 -1
  89. viam/gen/component/board/v1/board_pb2.py +1 -1
  90. viam/gen/component/button/v1/button_pb2.py +1 -1
  91. viam/gen/component/camera/v1/camera_grpc.py +1 -0
  92. viam/gen/component/camera/v1/camera_pb2.py +37 -36
  93. viam/gen/component/camera/v1/camera_pb2.pyi +31 -4
  94. viam/gen/component/encoder/v1/encoder_pb2.py +1 -1
  95. viam/gen/component/gantry/v1/gantry_grpc.py +9 -1
  96. viam/gen/component/gantry/v1/gantry_pb2.py +5 -3
  97. viam/gen/component/generic/v1/generic_pb2.py +1 -1
  98. viam/gen/component/gripper/v1/gripper_grpc.py +18 -2
  99. viam/gen/component/gripper/v1/gripper_pb2.py +12 -4
  100. viam/gen/component/gripper/v1/gripper_pb2.pyi +43 -1
  101. viam/gen/component/inputcontroller/v1/input_controller_pb2.py +1 -1
  102. viam/gen/component/motor/v1/motor_pb2.py +1 -1
  103. viam/gen/component/movementsensor/v1/movementsensor_pb2.py +1 -1
  104. viam/gen/component/posetracker/v1/pose_tracker_pb2.py +1 -1
  105. viam/gen/component/powersensor/v1/powersensor_pb2.py +1 -1
  106. viam/gen/component/sensor/v1/sensor_pb2.py +1 -1
  107. viam/gen/component/servo/v1/servo_pb2.py +1 -1
  108. viam/gen/component/switch/v1/switch_pb2.py +5 -5
  109. viam/gen/component/switch/v1/switch_pb2.pyi +9 -2
  110. viam/gen/component/testecho/v1/testecho_pb2.py +1 -1
  111. viam/gen/module/v1/module_pb2.py +5 -5
  112. viam/gen/module/v1/module_pb2.pyi +7 -2
  113. viam/gen/opentelemetry/__init__.py +0 -0
  114. viam/gen/opentelemetry/proto/__init__.py +0 -0
  115. viam/gen/opentelemetry/proto/common/__init__.py +0 -0
  116. viam/gen/opentelemetry/proto/common/v1/__init__.py +0 -0
  117. viam/gen/opentelemetry/proto/common/v1/common_grpc.py +0 -0
  118. viam/gen/opentelemetry/proto/common/v1/common_pb2.py +27 -0
  119. viam/gen/opentelemetry/proto/common/v1/common_pb2.pyi +208 -0
  120. viam/gen/opentelemetry/proto/resource/__init__.py +0 -0
  121. viam/gen/opentelemetry/proto/resource/v1/__init__.py +0 -0
  122. viam/gen/opentelemetry/proto/resource/v1/resource_grpc.py +0 -0
  123. viam/gen/opentelemetry/proto/resource/v1/resource_pb2.py +18 -0
  124. viam/gen/opentelemetry/proto/resource/v1/resource_pb2.pyi +59 -0
  125. viam/gen/opentelemetry/proto/trace/__init__.py +0 -0
  126. viam/gen/opentelemetry/proto/trace/v1/__init__.py +0 -0
  127. viam/gen/opentelemetry/proto/trace/v1/trace_grpc.py +0 -0
  128. viam/gen/opentelemetry/proto/trace/v1/trace_pb2.py +37 -0
  129. viam/gen/opentelemetry/proto/trace/v1/trace_pb2.pyi +402 -0
  130. viam/gen/proto/rpc/examples/echo/v1/echo_pb2.py +1 -1
  131. viam/gen/proto/rpc/examples/echoresource/v1/echoresource_pb2.py +1 -1
  132. viam/gen/proto/rpc/v1/auth_pb2.py +1 -1
  133. viam/gen/proto/rpc/webrtc/v1/grpc_pb2.py +1 -1
  134. viam/gen/proto/rpc/webrtc/v1/signaling_pb2.py +1 -1
  135. viam/gen/provisioning/v1/provisioning_grpc.py +10 -2
  136. viam/gen/provisioning/v1/provisioning_pb2.py +32 -26
  137. viam/gen/provisioning/v1/provisioning_pb2.pyi +46 -5
  138. viam/gen/robot/v1/robot_grpc.py +51 -34
  139. viam/gen/robot/v1/robot_pb2.py +147 -142
  140. viam/gen/robot/v1/robot_pb2.pyi +153 -86
  141. viam/gen/service/datamanager/v1/data_manager_grpc.py +11 -2
  142. viam/gen/service/datamanager/v1/data_manager_pb2.py +15 -8
  143. viam/gen/service/datamanager/v1/data_manager_pb2.pyi +47 -1
  144. viam/gen/service/discovery/v1/discovery_pb2.py +1 -1
  145. viam/gen/service/generic/v1/generic_pb2.py +1 -1
  146. viam/gen/service/mlmodel/v1/mlmodel_pb2.py +1 -1
  147. viam/gen/service/motion/v1/motion_pb2.py +92 -62
  148. viam/gen/service/motion/v1/motion_pb2.pyi +130 -68
  149. viam/gen/service/navigation/v1/navigation_pb2.py +1 -1
  150. viam/gen/service/sensors/v1/sensors_pb2.py +1 -1
  151. viam/gen/service/shell/v1/shell_pb2.py +1 -1
  152. viam/gen/service/slam/v1/slam_pb2.py +1 -1
  153. viam/gen/service/slam/v1/slam_pb2.pyi +1 -1
  154. viam/gen/service/video/__init__.py +0 -0
  155. viam/gen/service/video/v1/__init__.py +0 -0
  156. viam/gen/service/video/v1/video_grpc.py +39 -0
  157. viam/gen/service/video/v1/video_pb2.py +29 -0
  158. viam/gen/service/video/v1/video_pb2.pyi +72 -0
  159. viam/gen/service/vision/v1/vision_pb2.py +27 -27
  160. viam/gen/service/vision/v1/vision_pb2.pyi +28 -3
  161. viam/gen/service/worldstatestore/__init__.py +0 -0
  162. viam/gen/service/worldstatestore/v1/__init__.py +0 -0
  163. viam/gen/service/worldstatestore/v1/world_state_store_grpc.py +55 -0
  164. viam/gen/service/worldstatestore/v1/world_state_store_pb2.py +39 -0
  165. viam/gen/service/worldstatestore/v1/world_state_store_pb2.pyi +171 -0
  166. viam/gen/stream/v1/stream_pb2.py +1 -1
  167. viam/gen/tagger/v1/tagger_pb2.py +1 -1
  168. viam/logging.py +9 -8
  169. viam/media/audio.py +22 -10
  170. viam/media/utils/pil/__init__.py +5 -1
  171. viam/media/video.py +54 -40
  172. viam/module/module.py +85 -16
  173. viam/module/resource_data_consumer.py +41 -0
  174. viam/module/service.py +9 -1
  175. viam/proto/app/__init__.py +68 -0
  176. viam/proto/app/billing.py +16 -0
  177. viam/proto/app/data/__init__.py +48 -0
  178. viam/proto/app/datapipelines/__init__.py +56 -0
  179. viam/proto/app/dataset/__init__.py +4 -0
  180. viam/proto/app/mltraining/__init__.py +6 -0
  181. viam/proto/app/robot.py +6 -0
  182. viam/proto/common/__init__.py +14 -0
  183. viam/proto/component/audioin/__init__.py +16 -0
  184. viam/proto/component/audioout/__init__.py +15 -0
  185. viam/proto/component/camera/__init__.py +0 -2
  186. viam/proto/component/gripper/__init__.py +4 -0
  187. viam/proto/opentelemetry/__init__.py +0 -0
  188. viam/proto/opentelemetry/proto/__init__.py +0 -0
  189. viam/proto/opentelemetry/proto/common/__init__.py +15 -0
  190. viam/proto/opentelemetry/proto/resource/__init__.py +10 -0
  191. viam/proto/opentelemetry/proto/trace/__init__.py +15 -0
  192. viam/proto/provisioning/__init__.py +6 -0
  193. viam/proto/robot/__init__.py +16 -8
  194. viam/proto/service/datamanager/__init__.py +8 -1
  195. viam/proto/service/motion/__init__.py +2 -0
  196. viam/proto/service/video/__init__.py +15 -0
  197. viam/proto/service/worldstatestore/__init__.py +32 -0
  198. viam/resource/easy_resource.py +5 -9
  199. viam/resource/manager.py +4 -3
  200. viam/resource/registry.py +2 -2
  201. viam/resource/types.py +2 -2
  202. viam/robot/client.py +38 -59
  203. viam/rpc/dial.py +48 -5
  204. viam/rpc/libviam_rust_utils.so +0 -0
  205. viam/rpc/server.py +24 -10
  206. viam/services/motion/client.py +8 -9
  207. viam/services/motion/motion.py +48 -46
  208. viam/services/navigation/navigation.py +2 -2
  209. viam/services/vision/client.py +1 -1
  210. viam/services/vision/service.py +5 -8
  211. viam/services/vision/vision.py +5 -3
  212. viam/services/worldstatestore/__init__.py +18 -0
  213. viam/services/worldstatestore/client.py +94 -0
  214. viam/services/worldstatestore/service.py +55 -0
  215. viam/services/worldstatestore/worldstatestore.py +90 -0
  216. viam/sessions_client.py +115 -46
  217. viam/version_metadata.py +2 -2
  218. {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/METADATA +10 -6
  219. {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/RECORD +221 -152
  220. {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/WHEEL +1 -1
  221. viam/components/audio_input/__init__.py +0 -18
  222. viam/components/audio_input/audio_input.py +0 -81
  223. viam/components/audio_input/client.py +0 -70
  224. viam/components/audio_input/service.py +0 -114
  225. {viam_sdk-0.41.1.dist-info → viam_sdk-0.66.0.dist-info}/licenses/LICENSE +0 -0
@@ -4,16 +4,15 @@ from google.protobuf import descriptor_pool as _descriptor_pool
4
4
  from google.protobuf import runtime_version as _runtime_version
5
5
  from google.protobuf import symbol_database as _symbol_database
6
6
  from google.protobuf.internal import builder as _builder
7
- _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 1, '', 'app/v1/app.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'app/v1/app.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ...app.mltraining.v1 import ml_training_pb2 as app_dot_mltraining_dot_v1_dot_ml__training__pb2
10
10
  from ...app.packages.v1 import packages_pb2 as app_dot_packages_dot_v1_dot_packages__pb2
11
11
  from ...common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
12
- from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
13
12
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
14
13
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
15
14
  from ...tagger.v1 import tagger_pb2 as tagger_dot_v1_dot_tagger__pb2
16
- 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\x19google/protobuf/any.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"\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\x1eGetOrganizationMetadataRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId"\xbc\x01\n\x1fGetOrganizationMetadataResponse\x12J\n\x04data\x18\x01 \x03(\x0b26.viam.app.v1.GetOrganizationMetadataResponse.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"\xe9\x01\n!UpdateOrganizationMetadataRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12L\n\x04data\x18\x02 \x03(\x0b28.viam.app.v1.UpdateOrganizationMetadataRequest.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"$\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"`\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"\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"\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\x1aGetLocationMetadataRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId"\xb4\x01\n\x1bGetLocationMetadataResponse\x12F\n\x04data\x18\x01 \x03(\x0b22.viam.app.v1.GetLocationMetadataResponse.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"\xd9\x01\n\x1dUpdateLocationMetadataRequest\x12\x1f\n\x0blocation_id\x18\x01 \x01(\tR\nlocationId\x12H\n\x04data\x18\x02 \x03(\x0b24.viam.app.v1.UpdateLocationMetadataRequest.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01" \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"\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"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"-\n\x1bGetRobotPartMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\xb6\x01\n\x1cGetRobotPartMetadataResponse\x12G\n\x04data\x18\x01 \x03(\x0b23.viam.app.v1.GetRobotPartMetadataResponse.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"\xca\x01\n\x1eUpdateRobotPartMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12I\n\x04data\x18\x02 \x03(\x0b25.viam.app.v1.UpdateRobotPartMetadataRequest.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"!\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"\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":\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"`\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"\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"@\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")\n\x17GetRobotMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id"\xae\x01\n\x18GetRobotMetadataResponse\x12C\n\x04data\x18\x01 \x03(\x0b2/.viam.app.v1.GetRobotMetadataResponse.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"\xc2\x01\n\x1aUpdateRobotMetadataRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12E\n\x04data\x18\x02 \x03(\x0b21.viam.app.v1.UpdateRobotMetadataRequest.DataEntryR\x04data\x1aM\n\tDataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b2\x14.google.protobuf.AnyR\x05value:\x028\x01"\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"\xd1\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\x12 \n\tfirst_run\x18\x05 \x01(\tH\x00R\x08firstRun\x88\x01\x01B\x0c\n\n_first_run"\xc4\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\x12 \n\tfirst_run\x18\x04 \x01(\tH\x00R\x08firstRun\x88\x01\x01B\x0c\n\n_first_run"\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"\x93\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\x16module_update_metadata\x18\x06 \x01(\x0b2!.viam.app.v1.UpdateModuleMetadataH\x00R\x14moduleUpdateMetadata\x12]\n\x18ml_model_update_metadata\x18\x07 \x01(\x0b2".viam.app.v1.UpdateMLModelMetadataH\x00R\x15mlModelUpdateMetadata\x12f\n\x1bml_training_update_metadata\x18\x08 \x01(\x0b2%.viam.app.v1.UpdateMLTrainingMetadataH\x00R\x18mlTrainingUpdateMetadataB\n\n\x08metadataB\x06\n\x04_url"\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"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"\x9b\x02\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\x01B\x0c\n\n_first_run"(\n\x14UpdateModuleResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url"b\n\x14UpdateModuleMetadata\x12*\n\x06models\x18\x01 \x03(\x0b2\x12.viam.app.v1.ModelR\x06models\x12\x1e\n\nentrypoint\x18\x02 \x01(\tR\nentrypoint"\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"\xbd\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\x01B\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"\x95\x04\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\x01B\x0c\n\n_first_run"\xd2\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\x12 \n\tfirst_run\x18\x05 \x01(\tH\x00R\x08firstRun\x88\x01\x01B\x0c\n\n_first_run"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"\xad\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\x01B\n\n\x08_org_cidB\x13\n\x11_public_namespace"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"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*\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*\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\xa9N\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\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_\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\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\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\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')
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"\xdb\x04\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\x12s\n\x0conline_state\x18\x06 \x01(\x0e2\x18.viam.app.v1.OnlineStateB6\x9a\x84\x9e\x031bson:"online_state" json:"online_state,omitempty"R\x0bonlineState\x12x\n\x14seconds_since_online\x18\x07 \x01(\x03BF\x9a\x84\x9e\x03Abson:"seconds_since_online" json:"seconds_since_online,omitempty"R\x12secondsSinceOnline"\x9e\n\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\x12s\n\x0conline_state\x18\x10 \x01(\x0e2\x18.viam.app.v1.OnlineStateB6\x9a\x84\x9e\x031bson:"online_state" json:"online_state,omitempty"R\x0bonlineState\x12x\n\x14seconds_since_online\x18\x11 \x01(\x03BF\x9a\x84\x9e\x03Abson:"seconds_since_online" json:"seconds_since_online,omitempty"R\x12secondsSinceOnline"\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"K\n\x12FragmentImportList\x125\n\x07imports\x18\x01 \x03(\x0b2\x1b.viam.app.v1.FragmentImportR\x07imports"\xd8\x02\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\x01\x12O\n\x10fragment_imports\x18\x06 \x01(\x0b2\x1f.viam.app.v1.FragmentImportListH\x04R\x0ffragmentImports\x88\x01\x01B\x07\n\x05_nameB\x13\n\x11_public_namespaceB\t\n\x07_regionB\x06\n\x04_cidB\x13\n\x11_fragment_imports"[\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"\xce\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\x01\x12-\n\x10user_facing_only\x18\n \x01(\x08H\x06R\x0euserFacingOnly\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_sourceB\x13\n\x11_user_facing_only"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"\xfb\x01\n\x0eFragmentImport\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x1b\n\x06prefix\x18\x03 \x01(\tH\x00R\x06prefix\x88\x01\x01\x12H\n\tvariables\x18\x04 \x03(\x0b2*.viam.app.v1.FragmentImport.VariablesEntryR\tvariables\x1a<\n\x0eVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\t\n\x07_prefix"\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"\xc8\x06\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\x0conline_state\x18\x0c \x01(\x0e2\x18.viam.app.v1.OnlineStateR\x0bonlineState\x120\n\x14seconds_since_online\x18\r \x01(\x03R\x12secondsSinceOnline\x12@\n\x0blast_access\x18\x0e \x01(\x0b2\x1a.google.protobuf.TimestampH\x00R\nlastAccess\x88\x01\x01\x12@\n\x0blast_online\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampH\x01R\nlastOnline\x88\x01\x01\x12S\n\x13viam_server_version\x18\x04 \x01(\x0b2\x1e.viam.app.v1.ViamServerVersionH\x02R\x11viamServerVersion\x88\x01\x01\x12P\n\x12viam_agent_version\x18\x05 \x01(\x0b2\x1d.viam.app.v1.ViamAgentVersionH\x03R\x10viamAgentVersion\x88\x01\x01\x12\x13\n\x02os\x18\x06 \x01(\tH\x04R\x02os\x88\x01\x01\x12\x1f\n\x08platform\x18\x07 \x01(\tH\x05R\x08platform\x88\x01\x01\x12/\n\x11public_ip_address\x18\x08 \x01(\tH\x06R\x0fpublicIpAddress\x88\x01\x01\x12\x1e\n\x08dns_name\x18\n \x01(\tH\x07R\x07dnsName\x88\x01\x01\x12:\n\tfragments\x18\t \x03(\x0b2\x1c.viam.app.v1.FragmentSummaryR\tfragmentsB\x0e\n\x0c_last_accessB\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"\xdb\x03\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\x04apps\x12C\n\x0bsource_type\x18\x07 \x01(\x0e2\x1d.viam.app.v1.ModuleSourceTypeH\x02R\nsourceType\x88\x01\x01\x12<\n\x08language\x18\x08 \x01(\x0e2\x1b.viam.app.v1.ModuleLanguageH\x03R\x08language\x88\x01\x01B\x0c\n\n_first_runB\x17\n\x15_markdown_descriptionB\x0e\n\x0c_source_typeB\x0b\n\t_language"\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"\xc8\x05\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\x01\x12M\n\x13module_source_types\x18\n \x03(\x0e2\x1d.viam.app.v1.ModuleSourceTypeR\x11moduleSourceTypes\x12F\n\x10module_languages\x18\x0b \x03(\x0e2\x1b.viam.app.v1.ModuleLanguageR\x0fmoduleLanguagesB\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"\xa8\x02\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\x12C\n\x0bsource_type\x18\x04 \x01(\x0e2\x1d.viam.app.v1.ModuleSourceTypeH\x00R\nsourceType\x88\x01\x01\x12<\n\x08language\x18\x05 \x01(\x0e2\x1b.viam.app.v1.ModuleLanguageH\x01R\x08language\x88\x01\x01B\x0e\n\x0c_source_typeB\x0b\n\t_language"\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*\x7f\n\x0bOnlineState\x12\x1c\n\x18ONLINE_STATE_UNSPECIFIED\x10\x00\x12\x17\n\x13ONLINE_STATE_ONLINE\x10\x01\x12\x18\n\x14ONLINE_STATE_OFFLINE\x10\x02\x12\x1f\n\x1bONLINE_STATE_AWAITING_SETUP\x10\x03*\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*{\n\x10ModuleSourceType\x12"\n\x1eMODULE_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bMODULE_SOURCE_TYPE_EXTERNAL\x10\x01\x12"\n\x1eMODULE_SOURCE_TYPE_VIAM_HOSTED\x10\x02*\x82\x01\n\x0eModuleLanguage\x12\x1f\n\x1bMODULE_LANGUAGE_UNSPECIFIED\x10\x00\x12\x1a\n\x16MODULE_LANGUAGE_GOLANG\x10\x01\x12\x1a\n\x16MODULE_LANGUAGE_PYTHON\x10\x02\x12\x17\n\x13MODULE_LANGUAGE_CPP\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\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')
17
16
  _globals = globals()
18
17
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
19
18
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app.v1.app_pb2', _globals)
@@ -30,6 +29,10 @@ if not _descriptor._USE_C_DESCRIPTORS:
30
29
  _globals['_ROBOT'].fields_by_name['last_access']._serialized_options = b'\x9a\x84\x9e\x03%bson:"last_access" json:"last_access"'
31
30
  _globals['_ROBOT'].fields_by_name['created_on']._loaded_options = None
32
31
  _globals['_ROBOT'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03\x11bson:"created_on"'
32
+ _globals['_ROBOT'].fields_by_name['online_state']._loaded_options = None
33
+ _globals['_ROBOT'].fields_by_name['online_state']._serialized_options = b'\x9a\x84\x9e\x031bson:"online_state" json:"online_state,omitempty"'
34
+ _globals['_ROBOT'].fields_by_name['seconds_since_online']._loaded_options = None
35
+ _globals['_ROBOT'].fields_by_name['seconds_since_online']._serialized_options = b'\x9a\x84\x9e\x03Abson:"seconds_since_online" json:"seconds_since_online,omitempty"'
33
36
  _globals['_ROBOTPART'].fields_by_name['id']._loaded_options = None
34
37
  _globals['_ROBOTPART'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
35
38
  _globals['_ROBOTPART'].fields_by_name['name']._loaded_options = None
@@ -56,6 +59,10 @@ if not _descriptor._USE_C_DESCRIPTORS:
56
59
  _globals['_ROBOTPART'].fields_by_name['secrets']._serialized_options = b'\x9a\x84\x9e\x03\x0ebson:"secrets"'
57
60
  _globals['_ROBOTPART'].fields_by_name['last_updated']._loaded_options = None
58
61
  _globals['_ROBOTPART'].fields_by_name['last_updated']._serialized_options = b'\x9a\x84\x9e\x03\x16bson:"last_updated_at"'
62
+ _globals['_ROBOTPART'].fields_by_name['online_state']._loaded_options = None
63
+ _globals['_ROBOTPART'].fields_by_name['online_state']._serialized_options = b'\x9a\x84\x9e\x031bson:"online_state" json:"online_state,omitempty"'
64
+ _globals['_ROBOTPART'].fields_by_name['seconds_since_online']._loaded_options = None
65
+ _globals['_ROBOTPART'].fields_by_name['seconds_since_online']._serialized_options = b'\x9a\x84\x9e\x03Abson:"seconds_since_online" json:"seconds_since_online,omitempty"'
59
66
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['part']._loaded_options = None
60
67
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['part']._serialized_options = b'\x9a\x84\x9e\x03\x17bson:"part" json:"part"'
61
68
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['robot']._loaded_options = None
@@ -66,10 +73,6 @@ if not _descriptor._USE_C_DESCRIPTORS:
66
73
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['old']._serialized_options = b'\x9a\x84\x9e\x03\x15bson:"old" json:"old"'
67
74
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['edited_by']._loaded_options = None
68
75
  _globals['_ROBOTPARTHISTORYENTRY'].fields_by_name['edited_by']._serialized_options = b'\x9a\x84\x9e\x03!bson:"edited_by" json:"edited_by"'
69
- _globals['_GETORGANIZATIONMETADATARESPONSE_DATAENTRY']._loaded_options = None
70
- _globals['_GETORGANIZATIONMETADATARESPONSE_DATAENTRY']._serialized_options = b'8\x01'
71
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST_DATAENTRY']._loaded_options = None
72
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST_DATAENTRY']._serialized_options = b'8\x01'
73
76
  _globals['_LOCATIONAUTH'].fields_by_name['secret']._loaded_options = None
74
77
  _globals['_LOCATIONAUTH'].fields_by_name['secret']._serialized_options = b'\x18\x01'
75
78
  _globals['_SHAREDSECRET'].fields_by_name['id']._loaded_options = None
@@ -80,16 +83,8 @@ if not _descriptor._USE_C_DESCRIPTORS:
80
83
  _globals['_SHAREDSECRET'].fields_by_name['created_on']._serialized_options = b'\x9a\x84\x9e\x03#bson:"created_on" json:"created_on"'
81
84
  _globals['_SHAREDSECRET'].fields_by_name['state']._loaded_options = None
82
85
  _globals['_SHAREDSECRET'].fields_by_name['state']._serialized_options = b'\x9a\x84\x9e\x03\x0cbson:"state"'
83
- _globals['_GETLOCATIONMETADATARESPONSE_DATAENTRY']._loaded_options = None
84
- _globals['_GETLOCATIONMETADATARESPONSE_DATAENTRY']._serialized_options = b'8\x01'
85
- _globals['_UPDATELOCATIONMETADATAREQUEST_DATAENTRY']._loaded_options = None
86
- _globals['_UPDATELOCATIONMETADATAREQUEST_DATAENTRY']._serialized_options = b'8\x01'
87
86
  _globals['_GETROBOTPARTLOGSREQUEST'].fields_by_name['errors_only']._loaded_options = None
88
87
  _globals['_GETROBOTPARTLOGSREQUEST'].fields_by_name['errors_only']._serialized_options = b'\x18\x01'
89
- _globals['_GETROBOTPARTMETADATARESPONSE_DATAENTRY']._loaded_options = None
90
- _globals['_GETROBOTPARTMETADATARESPONSE_DATAENTRY']._serialized_options = b'8\x01'
91
- _globals['_UPDATEROBOTPARTMETADATAREQUEST_DATAENTRY']._loaded_options = None
92
- _globals['_UPDATEROBOTPARTMETADATAREQUEST_DATAENTRY']._serialized_options = b'8\x01'
93
88
  _globals['_FRAGMENT'].fields_by_name['id']._loaded_options = None
94
89
  _globals['_FRAGMENT'].fields_by_name['id']._serialized_options = b'\x9a\x84\x9e\x03\x1ebson:"_id" json:"id,omitempty"'
95
90
  _globals['_FRAGMENT'].fields_by_name['name']._loaded_options = None
@@ -116,533 +111,593 @@ if not _descriptor._USE_C_DESCRIPTORS:
116
111
  _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['revision']._serialized_options = b'\x9a\x84\x9e\x03\x1fbson:"revision" json:"revision"'
117
112
  _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['config']._loaded_options = None
118
113
  _globals['_FRAGMENTHISTORYENTRY'].fields_by_name['config']._serialized_options = b'\x9a\x84\x9e\x03\x1bbson:"config" json:"config"'
119
- _globals['_GETROBOTMETADATARESPONSE_DATAENTRY']._loaded_options = None
120
- _globals['_GETROBOTMETADATARESPONSE_DATAENTRY']._serialized_options = b'8\x01'
121
- _globals['_UPDATEROBOTMETADATAREQUEST_DATAENTRY']._loaded_options = None
122
- _globals['_UPDATEROBOTMETADATAREQUEST_DATAENTRY']._serialized_options = b'8\x01'
123
- _globals['_AUTHENTICATIONTYPE']._serialized_start = 30014
124
- _globals['_AUTHENTICATIONTYPE']._serialized_end = 30223
125
- _globals['_FRAGMENTVISIBILITY']._serialized_start = 30226
126
- _globals['_FRAGMENTVISIBILITY']._serialized_end = 30389
127
- _globals['_FRAGMENTERRORTYPE']._serialized_start = 30392
128
- _globals['_FRAGMENTERRORTYPE']._serialized_end = 30613
129
- _globals['_REGISTRYITEMSTATUS']._serialized_start = 30616
130
- _globals['_REGISTRYITEMSTATUS']._serialized_end = 30751
131
- _globals['_VISIBILITY']._serialized_start = 30753
132
- _globals['_VISIBILITY']._serialized_end = 30872
133
- _globals['_CLIENTAUTHENTICATION']._serialized_start = 30875
134
- _globals['_CLIENTAUTHENTICATION']._serialized_end = 31068
135
- _globals['_PKCE']._serialized_start = 31070
136
- _globals['_PKCE']._serialized_end = 31196
137
- _globals['_URLVALIDATION']._serialized_start = 31198
138
- _globals['_URLVALIDATION']._serialized_end = 31313
139
- _globals['_ENABLEDGRANT']._serialized_start = 31316
140
- _globals['_ENABLEDGRANT']._serialized_end = 31519
141
- _globals['_ROBOT']._serialized_start = 241
142
- _globals['_ROBOT']._serialized_end = 605
143
- _globals['_ROBOTPART']._serialized_start = 608
144
- _globals['_ROBOTPART']._serialized_end = 1679
145
- _globals['_ROBOTPARTHISTORYENTRY']._serialized_start = 1682
146
- _globals['_ROBOTPARTHISTORYENTRY']._serialized_end = 2058
147
- _globals['_AUTHENTICATORINFO']._serialized_start = 2061
148
- _globals['_AUTHENTICATORINFO']._serialized_end = 2194
149
- _globals['_LISTORGANIZATIONSREQUEST']._serialized_start = 2196
150
- _globals['_LISTORGANIZATIONSREQUEST']._serialized_end = 2222
151
- _globals['_ORGANIZATION']._serialized_start = 2225
152
- _globals['_ORGANIZATION']._serialized_end = 2447
153
- _globals['_ORGANIZATIONMEMBER']._serialized_start = 2450
154
- _globals['_ORGANIZATIONMEMBER']._serialized_end = 2657
155
- _globals['_LISTORGANIZATIONSRESPONSE']._serialized_start = 2659
156
- _globals['_LISTORGANIZATIONSRESPONSE']._serialized_end = 2751
157
- _globals['_ORGANIZATIONINVITE']._serialized_start = 2754
158
- _globals['_ORGANIZATIONINVITE']._serialized_end = 2964
159
- _globals['_CREATEORGANIZATIONREQUEST']._serialized_start = 2966
160
- _globals['_CREATEORGANIZATIONREQUEST']._serialized_end = 3013
161
- _globals['_CREATEORGANIZATIONRESPONSE']._serialized_start = 3015
162
- _globals['_CREATEORGANIZATIONRESPONSE']._serialized_end = 3106
163
- _globals['_GETORGANIZATIONREQUEST']._serialized_start = 3108
164
- _globals['_GETORGANIZATIONREQUEST']._serialized_end = 3173
165
- _globals['_GETORGANIZATIONRESPONSE']._serialized_start = 3175
166
- _globals['_GETORGANIZATIONRESPONSE']._serialized_end = 3263
167
- _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_start = 3265
168
- _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_end = 3353
169
- _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_start = 3355
170
- _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_end = 3431
171
- _globals['_UPDATEORGANIZATIONREQUEST']._serialized_start = 3434
172
- _globals['_UPDATEORGANIZATIONREQUEST']._serialized_end = 3676
173
- _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_start = 3678
174
- _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_end = 3769
175
- _globals['_DELETEORGANIZATIONREQUEST']._serialized_start = 3771
176
- _globals['_DELETEORGANIZATIONREQUEST']._serialized_end = 3839
177
- _globals['_DELETEORGANIZATIONRESPONSE']._serialized_start = 3841
178
- _globals['_DELETEORGANIZATIONRESPONSE']._serialized_end = 3869
179
- _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_start = 3871
180
- _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_end = 3944
181
- _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_start = 3947
182
- _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_end = 4135
183
- _globals['_GETORGANIZATIONMETADATARESPONSE_DATAENTRY']._serialized_start = 4058
184
- _globals['_GETORGANIZATIONMETADATARESPONSE_DATAENTRY']._serialized_end = 4135
185
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_start = 4138
186
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_end = 4371
187
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST_DATAENTRY']._serialized_start = 4058
188
- _globals['_UPDATEORGANIZATIONMETADATAREQUEST_DATAENTRY']._serialized_end = 4135
189
- _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_start = 4373
190
- _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_end = 4409
191
- _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_start = 4411
192
- _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_end = 4484
193
- _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_start = 4487
194
- _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_end = 4679
195
- _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_start = 4682
196
- _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_end = 4917
197
- _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_start = 4919
198
- _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_end = 5010
199
- _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_start = 5013
200
- _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_end = 5279
201
- _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_start = 5281
202
- _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_end = 5386
203
- _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_start = 5388
204
- _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_end = 5484
205
- _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_start = 5486
206
- _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_end = 5520
207
- _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_start = 5522
208
- _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_end = 5618
209
- _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_start = 5620
210
- _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_end = 5711
211
- _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_start = 5713
212
- _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_end = 5812
213
- _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_start = 5814
214
- _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_end = 5848
215
- _globals['_BILLINGADDRESS']._serialized_start = 5851
216
- _globals['_BILLINGADDRESS']._serialized_end = 6061
217
- _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_start = 6063
218
- _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_end = 6185
219
- _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_start = 6187
220
- _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_end = 6217
221
- _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_start = 6219
222
- _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_end = 6341
223
- _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_start = 6343
224
- _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_end = 6373
225
- _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_start = 6375
226
- _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_end = 6430
227
- _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_start = 6433
228
- _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_end = 6652
229
- _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_start = 6654
230
- _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_end = 6707
231
- _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_start = 6709
232
- _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_end = 6740
233
- _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_start = 6742
234
- _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_end = 6823
235
- _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_start = 6825
236
- _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_end = 6862
237
- _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_start = 6864
238
- _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_end = 6923
239
- _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_start = 6925
240
- _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_end = 6984
241
- _globals['_ORGANIZATIONIDENTITY']._serialized_start = 6986
242
- _globals['_ORGANIZATIONIDENTITY']._serialized_end = 7044
243
- _globals['_LOCATIONORGANIZATION']._serialized_start = 7046
244
- _globals['_LOCATIONORGANIZATION']._serialized_end = 7135
245
- _globals['_LOCATIONAUTH']._serialized_start = 7138
246
- _globals['_LOCATIONAUTH']._serialized_end = 7266
247
- _globals['_STORAGECONFIG']._serialized_start = 7268
248
- _globals['_STORAGECONFIG']._serialized_end = 7307
249
- _globals['_LOCATION']._serialized_start = 7310
250
- _globals['_LOCATION']._serialized_end = 7666
251
- _globals['_SHAREDSECRET']._serialized_start = 7669
252
- _globals['_SHAREDSECRET']._serialized_end = 8005
253
- _globals['_SHAREDSECRET_STATE']._serialized_start = 7936
254
- _globals['_SHAREDSECRET_STATE']._serialized_end = 8005
255
- _globals['_CREATELOCATIONREQUEST']._serialized_start = 8008
256
- _globals['_CREATELOCATIONREQUEST']._serialized_end = 8166
257
- _globals['_CREATELOCATIONRESPONSE']._serialized_start = 8168
258
- _globals['_CREATELOCATIONRESPONSE']._serialized_end = 8243
259
- _globals['_GETLOCATIONREQUEST']._serialized_start = 8245
260
- _globals['_GETLOCATIONREQUEST']._serialized_end = 8298
261
- _globals['_GETLOCATIONRESPONSE']._serialized_start = 8300
262
- _globals['_GETLOCATIONRESPONSE']._serialized_end = 8372
263
- _globals['_UPDATELOCATIONREQUEST']._serialized_start = 8375
264
- _globals['_UPDATELOCATIONREQUEST']._serialized_end = 8579
265
- _globals['_UPDATELOCATIONRESPONSE']._serialized_start = 8581
266
- _globals['_UPDATELOCATIONRESPONSE']._serialized_end = 8656
267
- _globals['_DELETELOCATIONREQUEST']._serialized_start = 8658
268
- _globals['_DELETELOCATIONREQUEST']._serialized_end = 8714
269
- _globals['_DELETELOCATIONRESPONSE']._serialized_start = 8716
270
- _globals['_DELETELOCATIONRESPONSE']._serialized_end = 8740
271
- _globals['_GETLOCATIONMETADATAREQUEST']._serialized_start = 8742
272
- _globals['_GETLOCATIONMETADATAREQUEST']._serialized_end = 8803
273
- _globals['_GETLOCATIONMETADATARESPONSE']._serialized_start = 8806
274
- _globals['_GETLOCATIONMETADATARESPONSE']._serialized_end = 8986
275
- _globals['_GETLOCATIONMETADATARESPONSE_DATAENTRY']._serialized_start = 4058
276
- _globals['_GETLOCATIONMETADATARESPONSE_DATAENTRY']._serialized_end = 4135
277
- _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_start = 8989
278
- _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_end = 9206
279
- _globals['_UPDATELOCATIONMETADATAREQUEST_DATAENTRY']._serialized_start = 4058
280
- _globals['_UPDATELOCATIONMETADATAREQUEST_DATAENTRY']._serialized_end = 4135
281
- _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_start = 9208
282
- _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_end = 9240
283
- _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_start = 9242
284
- _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_end = 9320
285
- _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_start = 9323
286
- _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_end = 9461
287
- _globals['_LISTLOCATIONSREQUEST']._serialized_start = 9463
288
- _globals['_LISTLOCATIONSREQUEST']._serialized_end = 9526
289
- _globals['_SHARELOCATIONREQUEST']._serialized_start = 9528
290
- _globals['_SHARELOCATIONREQUEST']._serialized_end = 9624
291
- _globals['_SHARELOCATIONRESPONSE']._serialized_start = 9626
292
- _globals['_SHARELOCATIONRESPONSE']._serialized_end = 9649
293
- _globals['_UNSHARELOCATIONREQUEST']._serialized_start = 9651
294
- _globals['_UNSHARELOCATIONREQUEST']._serialized_end = 9749
295
- _globals['_UNSHARELOCATIONRESPONSE']._serialized_start = 9751
296
- _globals['_UNSHARELOCATIONRESPONSE']._serialized_end = 9776
297
- _globals['_LISTLOCATIONSRESPONSE']._serialized_start = 9778
298
- _globals['_LISTLOCATIONSRESPONSE']._serialized_end = 9854
299
- _globals['_CREATELOCATIONSECRETREQUEST']._serialized_start = 9856
300
- _globals['_CREATELOCATIONSECRETREQUEST']._serialized_end = 9918
301
- _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_start = 9920
302
- _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_end = 9997
303
- _globals['_DELETELOCATIONSECRETREQUEST']._serialized_start = 9999
304
- _globals['_DELETELOCATIONSECRETREQUEST']._serialized_end = 10090
305
- _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_start = 10092
306
- _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_end = 10122
307
- _globals['_LOCATIONAUTHREQUEST']._serialized_start = 10124
308
- _globals['_LOCATIONAUTHREQUEST']._serialized_end = 10178
309
- _globals['_LOCATIONAUTHRESPONSE']._serialized_start = 10180
310
- _globals['_LOCATIONAUTHRESPONSE']._serialized_end = 10249
311
- _globals['_GETROBOTREQUEST']._serialized_start = 10251
312
- _globals['_GETROBOTREQUEST']._serialized_end = 10284
313
- _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_start = 10286
314
- _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_end = 10338
315
- _globals['_ROVERRENTALROBOT']._serialized_start = 10341
316
- _globals['_ROVERRENTALROBOT']._serialized_end = 10495
317
- _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_start = 10497
318
- _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_end = 10582
319
- _globals['_GETROBOTRESPONSE']._serialized_start = 10584
320
- _globals['_GETROBOTRESPONSE']._serialized_end = 10644
321
- _globals['_GETROBOTPARTSREQUEST']._serialized_start = 10646
322
- _globals['_GETROBOTPARTSREQUEST']._serialized_end = 10695
323
- _globals['_GETROBOTPARTSRESPONSE']._serialized_start = 10697
324
- _globals['_GETROBOTPARTSRESPONSE']._serialized_end = 10766
325
- _globals['_GETROBOTPARTREQUEST']._serialized_start = 10768
326
- _globals['_GETROBOTPARTREQUEST']._serialized_end = 10805
327
- _globals['_GETROBOTPARTRESPONSE']._serialized_start = 10807
328
- _globals['_GETROBOTPARTRESPONSE']._serialized_end = 10906
329
- _globals['_GETROBOTPARTLOGSREQUEST']._serialized_start = 10909
330
- _globals['_GETROBOTPARTLOGSREQUEST']._serialized_end = 11303
331
- _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_start = 11305
332
- _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_end = 11417
333
- _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_start = 11419
334
- _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_end = 11534
335
- _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_start = 11536
336
- _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_end = 11609
337
- _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_start = 11611
338
- _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_end = 11655
339
- _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_start = 11657
340
- _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_end = 11748
341
- _globals['_UPDATEROBOTPARTREQUEST']._serialized_start = 11750
342
- _globals['_UPDATEROBOTPARTREQUEST']._serialized_end = 11870
343
- _globals['_UPDATEROBOTPARTRESPONSE']._serialized_start = 11872
344
- _globals['_UPDATEROBOTPARTRESPONSE']._serialized_end = 11941
345
- _globals['_NEWROBOTPARTREQUEST']._serialized_start = 11943
346
- _globals['_NEWROBOTPARTREQUEST']._serialized_end = 12020
347
- _globals['_NEWROBOTPARTRESPONSE']._serialized_start = 12022
348
- _globals['_NEWROBOTPARTRESPONSE']._serialized_end = 12069
349
- _globals['_DELETEROBOTPARTREQUEST']._serialized_start = 12071
350
- _globals['_DELETEROBOTPARTREQUEST']._serialized_end = 12120
351
- _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_start = 12122
352
- _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_end = 12167
353
- _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_start = 12170
354
- _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_end = 12352
355
- _globals['_GETROBOTPARTMETADATARESPONSE_DATAENTRY']._serialized_start = 4058
356
- _globals['_GETROBOTPARTMETADATARESPONSE_DATAENTRY']._serialized_end = 4135
357
- _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_start = 12355
358
- _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_end = 12557
359
- _globals['_UPDATEROBOTPARTMETADATAREQUEST_DATAENTRY']._serialized_start = 4058
360
- _globals['_UPDATEROBOTPARTMETADATAREQUEST_DATAENTRY']._serialized_end = 4135
361
- _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_start = 12559
362
- _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_end = 12592
363
- _globals['_GETROBOTAPIKEYSREQUEST']._serialized_start = 12594
364
- _globals['_GETROBOTAPIKEYSREQUEST']._serialized_end = 12645
365
- _globals['_APIKEY']._serialized_start = 12647
366
- _globals['_APIKEY']._serialized_end = 12768
367
- _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_start = 12770
368
- _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_end = 12861
369
- _globals['_DELETEROBOTPARTRESPONSE']._serialized_start = 12863
370
- _globals['_DELETEROBOTPARTRESPONSE']._serialized_end = 12888
371
- _globals['_FRAGMENT']._serialized_start = 12891
372
- _globals['_FRAGMENT']._serialized_end = 13692
373
- _globals['_FRAGMENTHISTORYENTRY']._serialized_start = 13695
374
- _globals['_FRAGMENTHISTORYENTRY']._serialized_end = 14199
375
- _globals['_FRAGMENTREVISION']._serialized_start = 14201
376
- _globals['_FRAGMENTREVISION']._serialized_end = 14306
377
- _globals['_FRAGMENTTAG']._serialized_start = 14308
378
- _globals['_FRAGMENTTAG']._serialized_end = 14367
379
- _globals['_FRAGMENTERROR']._serialized_start = 14370
380
- _globals['_FRAGMENTERROR']._serialized_end = 14505
381
- _globals['_FRAGMENTUSAGE']._serialized_start = 14508
382
- _globals['_FRAGMENTUSAGE']._serialized_end = 14720
383
- _globals['_RESOLVEDFRAGMENT']._serialized_start = 14723
384
- _globals['_RESOLVEDFRAGMENT']._serialized_end = 14918
385
- _globals['_LISTFRAGMENTSREQUEST']._serialized_start = 14921
386
- _globals['_LISTFRAGMENTSREQUEST']._serialized_end = 15099
387
- _globals['_LISTFRAGMENTSRESPONSE']._serialized_start = 15102
388
- _globals['_LISTFRAGMENTSRESPONSE']._serialized_end = 15247
389
- _globals['_GETFRAGMENTREQUEST']._serialized_start = 15250
390
- _globals['_GETFRAGMENTREQUEST']._serialized_end = 15385
391
- _globals['_GETFRAGMENTRESPONSE']._serialized_start = 15388
392
- _globals['_GETFRAGMENTRESPONSE']._serialized_end = 15634
393
- _globals['_CREATEFRAGMENTREQUEST']._serialized_start = 15637
394
- _globals['_CREATEFRAGMENTREQUEST']._serialized_end = 15855
395
- _globals['_CREATEFRAGMENTRESPONSE']._serialized_start = 15857
396
- _globals['_CREATEFRAGMENTRESPONSE']._serialized_end = 15932
397
- _globals['_UPDATEFRAGMENTREQUEST']._serialized_start = 15935
398
- _globals['_UPDATEFRAGMENTREQUEST']._serialized_end = 16168
399
- _globals['_UPDATEFRAGMENTRESPONSE']._serialized_start = 16170
400
- _globals['_UPDATEFRAGMENTRESPONSE']._serialized_end = 16245
401
- _globals['_DELETEFRAGMENTREQUEST']._serialized_start = 16247
402
- _globals['_DELETEFRAGMENTREQUEST']._serialized_end = 16286
403
- _globals['_DELETEFRAGMENTRESPONSE']._serialized_start = 16288
404
- _globals['_DELETEFRAGMENTRESPONSE']._serialized_end = 16312
405
- _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_start = 16315
406
- _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_end = 16460
407
- _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_start = 16463
408
- _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_end = 16592
409
- _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_start = 16594
410
- _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_end = 16652
411
- _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_start = 16654
412
- _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_end = 16747
413
- _globals['_SETFRAGMENTTAGREQUEST']._serialized_start = 16749
414
- _globals['_SETFRAGMENTTAGREQUEST']._serialized_end = 16851
415
- _globals['_SETFRAGMENTTAGRESPONSE']._serialized_start = 16853
416
- _globals['_SETFRAGMENTTAGRESPONSE']._serialized_end = 16923
417
- _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_start = 16925
418
- _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_end = 17002
419
- _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_start = 17004
420
- _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_end = 17077
421
- _globals['_LISTROBOTSREQUEST']._serialized_start = 17079
422
- _globals['_LISTROBOTSREQUEST']._serialized_end = 17131
423
- _globals['_ADDITIONALFRAGMENT']._serialized_start = 17133
424
- _globals['_ADDITIONALFRAGMENT']._serialized_end = 17229
425
- _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_start = 17232
426
- _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_end = 17432
427
- _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_start = 17435
428
- _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_end = 17596
429
- _globals['_LISTROBOTSRESPONSE']._serialized_start = 17598
430
- _globals['_LISTROBOTSRESPONSE']._serialized_end = 17662
431
- _globals['_NEWROBOTREQUEST']._serialized_start = 17664
432
- _globals['_NEWROBOTREQUEST']._serialized_end = 17729
433
- _globals['_NEWROBOTRESPONSE']._serialized_start = 17731
434
- _globals['_NEWROBOTRESPONSE']._serialized_end = 17765
435
- _globals['_UPDATEROBOTREQUEST']._serialized_start = 17767
436
- _globals['_UPDATEROBOTREQUEST']._serialized_end = 17851
437
- _globals['_UPDATEROBOTRESPONSE']._serialized_start = 17853
438
- _globals['_UPDATEROBOTRESPONSE']._serialized_end = 17916
439
- _globals['_DELETEROBOTREQUEST']._serialized_start = 17918
440
- _globals['_DELETEROBOTREQUEST']._serialized_end = 17954
441
- _globals['_DELETEROBOTRESPONSE']._serialized_start = 17956
442
- _globals['_DELETEROBOTRESPONSE']._serialized_end = 17977
443
- _globals['_GETROBOTMETADATAREQUEST']._serialized_start = 17979
444
- _globals['_GETROBOTMETADATAREQUEST']._serialized_end = 18020
445
- _globals['_GETROBOTMETADATARESPONSE']._serialized_start = 18023
446
- _globals['_GETROBOTMETADATARESPONSE']._serialized_end = 18197
447
- _globals['_GETROBOTMETADATARESPONSE_DATAENTRY']._serialized_start = 4058
448
- _globals['_GETROBOTMETADATARESPONSE_DATAENTRY']._serialized_end = 4135
449
- _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_start = 18200
450
- _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_end = 18394
451
- _globals['_UPDATEROBOTMETADATAREQUEST_DATAENTRY']._serialized_start = 4058
452
- _globals['_UPDATEROBOTMETADATAREQUEST_DATAENTRY']._serialized_end = 4135
453
- _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_start = 18396
454
- _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_end = 18425
455
- _globals['_MARKPARTASMAINREQUEST']._serialized_start = 18427
456
- _globals['_MARKPARTASMAINREQUEST']._serialized_end = 18475
457
- _globals['_MARKPARTASMAINRESPONSE']._serialized_start = 18477
458
- _globals['_MARKPARTASMAINRESPONSE']._serialized_end = 18501
459
- _globals['_MARKPARTFORRESTARTREQUEST']._serialized_start = 18503
460
- _globals['_MARKPARTFORRESTARTREQUEST']._serialized_end = 18555
461
- _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_start = 18557
462
- _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_end = 18585
463
- _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_start = 18587
464
- _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_end = 18642
465
- _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_start = 18644
466
- _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_end = 18719
467
- _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_start = 18721
468
- _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_end = 18805
469
- _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_start = 18807
470
- _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_end = 18838
471
- _globals['_AUTHORIZATION']._serialized_start = 18841
472
- _globals['_AUTHORIZATION']._serialized_end = 19127
473
- _globals['_ADDROLEREQUEST']._serialized_start = 19129
474
- _globals['_ADDROLEREQUEST']._serialized_end = 19211
475
- _globals['_ADDROLERESPONSE']._serialized_start = 19213
476
- _globals['_ADDROLERESPONSE']._serialized_end = 19230
477
- _globals['_REMOVEROLEREQUEST']._serialized_start = 19232
478
- _globals['_REMOVEROLEREQUEST']._serialized_end = 19317
479
- _globals['_REMOVEROLERESPONSE']._serialized_start = 19319
480
- _globals['_REMOVEROLERESPONSE']._serialized_end = 19339
481
- _globals['_CHANGEROLEREQUEST']._serialized_start = 19342
482
- _globals['_CHANGEROLEREQUEST']._serialized_end = 19507
483
- _globals['_CHANGEROLERESPONSE']._serialized_start = 19509
484
- _globals['_CHANGEROLERESPONSE']._serialized_end = 19529
485
- _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_start = 19531
486
- _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_end = 19634
487
- _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_start = 19636
488
- _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_end = 19732
489
- _globals['_CHECKPERMISSIONSREQUEST']._serialized_start = 19734
490
- _globals['_CHECKPERMISSIONSREQUEST']._serialized_end = 19829
491
- _globals['_AUTHORIZEDPERMISSIONS']._serialized_start = 19831
492
- _globals['_AUTHORIZEDPERMISSIONS']._serialized_end = 19958
493
- _globals['_CHECKPERMISSIONSRESPONSE']._serialized_start = 19960
494
- _globals['_CHECKPERMISSIONSRESPONSE']._serialized_end = 20077
495
- _globals['_MODULEVERSION']._serialized_start = 20080
496
- _globals['_MODULEVERSION']._serialized_end = 20289
497
- _globals['_MODULEMETADATA']._serialized_start = 20292
498
- _globals['_MODULEMETADATA']._serialized_end = 20488
499
- _globals['_MLMODELMETADATA']._serialized_start = 20491
500
- _globals['_MLMODELMETADATA']._serialized_end = 20683
501
- _globals['_MLTRAININGVERSION']._serialized_start = 20685
502
- _globals['_MLTRAININGVERSION']._serialized_end = 20789
503
- _globals['_MLTRAININGMETADATA']._serialized_start = 20792
504
- _globals['_MLTRAININGMETADATA']._serialized_end = 21047
505
- _globals['_REGISTRYITEM']._serialized_start = 21050
506
- _globals['_REGISTRYITEM']._serialized_end = 21958
507
- _globals['_GETREGISTRYITEMREQUEST']._serialized_start = 21961
508
- _globals['_GETREGISTRYITEMREQUEST']._serialized_end = 22120
509
- _globals['_GETREGISTRYITEMRESPONSE']._serialized_start = 22122
510
- _globals['_GETREGISTRYITEMRESPONSE']._serialized_end = 22194
511
- _globals['_CREATEREGISTRYITEMREQUEST']._serialized_start = 22197
512
- _globals['_CREATEREGISTRYITEMREQUEST']._serialized_end = 22340
513
- _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_start = 22342
514
- _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_end = 22370
515
- _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_start = 22373
516
- _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_end = 22904
517
- _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_start = 22906
518
- _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_end = 22934
519
- _globals['_LISTREGISTRYITEMSREQUEST']._serialized_start = 22937
520
- _globals['_LISTREGISTRYITEMSREQUEST']._serialized_end = 23498
521
- _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_start = 23500
522
- _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_end = 23576
523
- _globals['_DELETEREGISTRYITEMREQUEST']._serialized_start = 23578
524
- _globals['_DELETEREGISTRYITEMREQUEST']._serialized_end = 23630
525
- _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_start = 23632
526
- _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_end = 23660
527
- _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_start = 23662
528
- _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_end = 23766
529
- _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_start = 23768
530
- _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_end = 23798
531
- _globals['_CREATEMODULEREQUEST']._serialized_start = 23800
532
- _globals['_CREATEMODULEREQUEST']._serialized_end = 23882
533
- _globals['_CREATEMODULERESPONSE']._serialized_start = 23884
534
- _globals['_CREATEMODULERESPONSE']._serialized_end = 23953
535
- _globals['_UPDATEMODULEREQUEST']._serialized_start = 23956
536
- _globals['_UPDATEMODULEREQUEST']._serialized_end = 24239
537
- _globals['_UPDATEMODULERESPONSE']._serialized_start = 24241
538
- _globals['_UPDATEMODULERESPONSE']._serialized_end = 24281
539
- _globals['_UPDATEMODULEMETADATA']._serialized_start = 24283
540
- _globals['_UPDATEMODULEMETADATA']._serialized_end = 24381
541
- _globals['_UPDATEMLMODELMETADATA']._serialized_start = 24384
542
- _globals['_UPDATEMLMODELMETADATA']._serialized_end = 24554
543
- _globals['_UPDATEMLTRAININGMETADATA']._serialized_start = 24557
544
- _globals['_UPDATEMLTRAININGMETADATA']._serialized_end = 24752
545
- _globals['_MODEL']._serialized_start = 24755
546
- _globals['_MODEL']._serialized_end = 24944
547
- _globals['_MODULEFILEINFO']._serialized_start = 24947
548
- _globals['_MODULEFILEINFO']._serialized_end = 25083
549
- _globals['_UPLOADMODULEFILEREQUEST']._serialized_start = 25086
550
- _globals['_UPLOADMODULEFILEREQUEST']._serialized_end = 25221
551
- _globals['_UPLOADMODULEFILERESPONSE']._serialized_start = 25223
552
- _globals['_UPLOADMODULEFILERESPONSE']._serialized_end = 25267
553
- _globals['_GETMODULEREQUEST']._serialized_start = 25270
554
- _globals['_GETMODULEREQUEST']._serialized_end = 25427
555
- _globals['_GETMODULERESPONSE']._serialized_start = 25429
556
- _globals['_GETMODULERESPONSE']._serialized_end = 25493
557
- _globals['_MODULE']._serialized_start = 25496
558
- _globals['_MODULE']._serialized_end = 26029
559
- _globals['_VERSIONHISTORY']._serialized_start = 26032
560
- _globals['_VERSIONHISTORY']._serialized_end = 26242
561
- _globals['_UPLOADS']._serialized_start = 26244
562
- _globals['_UPLOADS']._serialized_end = 26342
563
- _globals['_LISTMODULESREQUEST']._serialized_start = 26345
564
- _globals['_LISTMODULESREQUEST']._serialized_end = 26541
565
- _globals['_LISTMODULESRESPONSE']._serialized_start = 26543
566
- _globals['_LISTMODULESRESPONSE']._serialized_end = 26611
567
- _globals['_GETUSERIDBYEMAILREQUEST']._serialized_start = 26613
568
- _globals['_GETUSERIDBYEMAILREQUEST']._serialized_end = 26660
569
- _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_start = 26662
570
- _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_end = 26713
571
- _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_start = 26715
572
- _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_end = 26772
573
- _globals['_ORGDETAILS']._serialized_start = 26775
574
- _globals['_ORGDETAILS']._serialized_end = 26948
575
- _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_start = 26950
576
- _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_end = 27028
577
- _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_start = 27031
578
- _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_end = 27243
579
- _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_start = 27245
580
- _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_end = 27337
581
- _globals['_CREATEKEYREQUEST']._serialized_start = 27339
582
- _globals['_CREATEKEYREQUEST']._serialized_end = 27445
583
- _globals['_CREATEKEYRESPONSE']._serialized_start = 27447
584
- _globals['_CREATEKEYRESPONSE']._serialized_end = 27500
585
- _globals['_DELETEKEYREQUEST']._serialized_start = 27502
586
- _globals['_DELETEKEYREQUEST']._serialized_end = 27536
587
- _globals['_DELETEKEYRESPONSE']._serialized_start = 27538
588
- _globals['_DELETEKEYRESPONSE']._serialized_end = 27557
589
- _globals['_RENAMEKEYREQUEST']._serialized_start = 27559
590
- _globals['_RENAMEKEYREQUEST']._serialized_end = 27613
591
- _globals['_RENAMEKEYRESPONSE']._serialized_start = 27615
592
- _globals['_RENAMEKEYRESPONSE']._serialized_end = 27670
593
- _globals['_AUTHORIZATIONDETAILS']._serialized_start = 27673
594
- _globals['_AUTHORIZATIONDETAILS']._serialized_end = 27878
595
- _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_start = 27881
596
- _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_end = 28028
597
- _globals['_LISTKEYSREQUEST']._serialized_start = 28030
598
- _globals['_LISTKEYSREQUEST']._serialized_end = 28070
599
- _globals['_LISTKEYSRESPONSE']._serialized_start = 28072
600
- _globals['_LISTKEYSRESPONSE']._serialized_end = 28156
601
- _globals['_ROTATEKEYREQUEST']._serialized_start = 28158
602
- _globals['_ROTATEKEYREQUEST']._serialized_end = 28192
603
- _globals['_ROTATEKEYRESPONSE']._serialized_start = 28194
604
- _globals['_ROTATEKEYRESPONSE']._serialized_end = 28247
605
- _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_start = 28249
606
- _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_end = 28312
607
- _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_start = 28314
608
- _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_end = 28396
609
- _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_start = 28398
610
- _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_end = 28469
611
- _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_start = 28471
612
- _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_end = 28500
613
- _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_start = 28502
614
- _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_end = 28553
615
- _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_start = 28555
616
- _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_end = 28602
617
- _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_start = 28604
618
- _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_end = 28653
619
- _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_start = 28655
620
- _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_end = 28682
621
- _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_start = 28684
622
- _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_end = 28734
623
- _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_start = 28736
624
- _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_end = 28764
625
- _globals['_CREATEOAUTHAPPREQUEST']._serialized_start = 28767
626
- _globals['_CREATEOAUTHAPPREQUEST']._serialized_end = 28907
627
- _globals['_CREATEOAUTHAPPRESPONSE']._serialized_start = 28909
628
- _globals['_CREATEOAUTHAPPRESPONSE']._serialized_end = 28999
629
- _globals['_READOAUTHAPPREQUEST']._serialized_start = 29001
630
- _globals['_READOAUTHAPPREQUEST']._serialized_end = 29074
631
- _globals['_READOAUTHAPPRESPONSE']._serialized_start = 29077
632
- _globals['_READOAUTHAPPRESPONSE']._serialized_end = 29230
633
- _globals['_UPDATEOAUTHAPPREQUEST']._serialized_start = 29233
634
- _globals['_UPDATEOAUTHAPPREQUEST']._serialized_end = 29402
635
- _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_start = 29404
636
- _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_end = 29428
637
- _globals['_DELETEOAUTHAPPREQUEST']._serialized_start = 29430
638
- _globals['_DELETEOAUTHAPPREQUEST']._serialized_end = 29505
639
- _globals['_DELETEOAUTHAPPRESPONSE']._serialized_start = 29507
640
- _globals['_DELETEOAUTHAPPRESPONSE']._serialized_end = 29531
641
- _globals['_LISTOAUTHAPPSREQUEST']._serialized_start = 29533
642
- _globals['_LISTOAUTHAPPSREQUEST']._serialized_end = 29578
643
- _globals['_LISTOAUTHAPPSRESPONSE']._serialized_start = 29580
644
- _globals['_LISTOAUTHAPPSRESPONSE']._serialized_end = 29634
645
- _globals['_OAUTHCONFIG']._serialized_start = 29637
646
- _globals['_OAUTHCONFIG']._serialized_end = 30011
647
- _globals['_APPSERVICE']._serialized_start = 31522
648
- _globals['_APPSERVICE']._serialized_end = 41547
114
+ _globals['_FRAGMENTIMPORT_VARIABLESENTRY']._loaded_options = None
115
+ _globals['_FRAGMENTIMPORT_VARIABLESENTRY']._serialized_options = b'8\x01'
116
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._loaded_options = None
117
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_options = b'8\x01'
118
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._loaded_options = None
119
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_options = b'8\x01'
120
+ _globals['_ONLINESTATE']._serialized_start = 35964
121
+ _globals['_ONLINESTATE']._serialized_end = 36091
122
+ _globals['_AUTHENTICATIONTYPE']._serialized_start = 36094
123
+ _globals['_AUTHENTICATIONTYPE']._serialized_end = 36303
124
+ _globals['_FRAGMENTVISIBILITY']._serialized_start = 36306
125
+ _globals['_FRAGMENTVISIBILITY']._serialized_end = 36469
126
+ _globals['_FRAGMENTERRORTYPE']._serialized_start = 36472
127
+ _globals['_FRAGMENTERRORTYPE']._serialized_end = 36693
128
+ _globals['_MODULESOURCETYPE']._serialized_start = 36695
129
+ _globals['_MODULESOURCETYPE']._serialized_end = 36818
130
+ _globals['_MODULELANGUAGE']._serialized_start = 36821
131
+ _globals['_MODULELANGUAGE']._serialized_end = 36951
132
+ _globals['_REGISTRYITEMSTATUS']._serialized_start = 36954
133
+ _globals['_REGISTRYITEMSTATUS']._serialized_end = 37089
134
+ _globals['_VISIBILITY']._serialized_start = 37091
135
+ _globals['_VISIBILITY']._serialized_end = 37210
136
+ _globals['_APPTYPE']._serialized_start = 37212
137
+ _globals['_APPTYPE']._serialized_end = 37304
138
+ _globals['_CLIENTAUTHENTICATION']._serialized_start = 37307
139
+ _globals['_CLIENTAUTHENTICATION']._serialized_end = 37500
140
+ _globals['_PKCE']._serialized_start = 37502
141
+ _globals['_PKCE']._serialized_end = 37628
142
+ _globals['_URLVALIDATION']._serialized_start = 37630
143
+ _globals['_URLVALIDATION']._serialized_end = 37745
144
+ _globals['_ENABLEDGRANT']._serialized_start = 37748
145
+ _globals['_ENABLEDGRANT']._serialized_end = 37951
146
+ _globals['_ROBOT']._serialized_start = 214
147
+ _globals['_ROBOT']._serialized_end = 817
148
+ _globals['_ROBOTPART']._serialized_start = 820
149
+ _globals['_ROBOTPART']._serialized_end = 2130
150
+ _globals['_ROBOTPARTHISTORYENTRY']._serialized_start = 2133
151
+ _globals['_ROBOTPARTHISTORYENTRY']._serialized_end = 2509
152
+ _globals['_AUTHENTICATORINFO']._serialized_start = 2512
153
+ _globals['_AUTHENTICATORINFO']._serialized_end = 2645
154
+ _globals['_LISTORGANIZATIONSREQUEST']._serialized_start = 2647
155
+ _globals['_LISTORGANIZATIONSREQUEST']._serialized_end = 2673
156
+ _globals['_ORGANIZATION']._serialized_start = 2676
157
+ _globals['_ORGANIZATION']._serialized_end = 2898
158
+ _globals['_ORGANIZATIONMEMBER']._serialized_start = 2901
159
+ _globals['_ORGANIZATIONMEMBER']._serialized_end = 3190
160
+ _globals['_LISTORGANIZATIONSRESPONSE']._serialized_start = 3192
161
+ _globals['_LISTORGANIZATIONSRESPONSE']._serialized_end = 3284
162
+ _globals['_ORGANIZATIONINVITE']._serialized_start = 3287
163
+ _globals['_ORGANIZATIONINVITE']._serialized_end = 3497
164
+ _globals['_CREATEORGANIZATIONREQUEST']._serialized_start = 3499
165
+ _globals['_CREATEORGANIZATIONREQUEST']._serialized_end = 3546
166
+ _globals['_CREATEORGANIZATIONRESPONSE']._serialized_start = 3548
167
+ _globals['_CREATEORGANIZATIONRESPONSE']._serialized_end = 3639
168
+ _globals['_GETORGANIZATIONREQUEST']._serialized_start = 3641
169
+ _globals['_GETORGANIZATIONREQUEST']._serialized_end = 3706
170
+ _globals['_GETORGANIZATIONRESPONSE']._serialized_start = 3708
171
+ _globals['_GETORGANIZATIONRESPONSE']._serialized_end = 3796
172
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_start = 3799
173
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYREQUEST']._serialized_end = 3928
174
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_start = 3930
175
+ _globals['_GETORGANIZATIONNAMESPACEAVAILABILITYRESPONSE']._serialized_end = 4006
176
+ _globals['_FRAGMENTIMPORTLIST']._serialized_start = 4008
177
+ _globals['_FRAGMENTIMPORTLIST']._serialized_end = 4083
178
+ _globals['_UPDATEORGANIZATIONREQUEST']._serialized_start = 4086
179
+ _globals['_UPDATEORGANIZATIONREQUEST']._serialized_end = 4430
180
+ _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_start = 4432
181
+ _globals['_UPDATEORGANIZATIONRESPONSE']._serialized_end = 4523
182
+ _globals['_UPDATEORGANIZATIONNAMESPACEREQUEST']._serialized_start = 4525
183
+ _globals['_UPDATEORGANIZATIONNAMESPACEREQUEST']._serialized_end = 4652
184
+ _globals['_UPDATEORGANIZATIONNAMESPACERESPONSE']._serialized_start = 4654
185
+ _globals['_UPDATEORGANIZATIONNAMESPACERESPONSE']._serialized_end = 4754
186
+ _globals['_DELETEORGANIZATIONREQUEST']._serialized_start = 4756
187
+ _globals['_DELETEORGANIZATIONREQUEST']._serialized_end = 4824
188
+ _globals['_DELETEORGANIZATIONRESPONSE']._serialized_start = 4826
189
+ _globals['_DELETEORGANIZATIONRESPONSE']._serialized_end = 4854
190
+ _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_start = 4856
191
+ _globals['_GETORGANIZATIONMETADATAREQUEST']._serialized_end = 4929
192
+ _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_start = 4931
193
+ _globals['_GETORGANIZATIONMETADATARESPONSE']._serialized_end = 5009
194
+ _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_start = 5011
195
+ _globals['_UPDATEORGANIZATIONMETADATAREQUEST']._serialized_end = 5132
196
+ _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_start = 5134
197
+ _globals['_UPDATEORGANIZATIONMETADATARESPONSE']._serialized_end = 5170
198
+ _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_start = 5172
199
+ _globals['_LISTORGANIZATIONMEMBERSREQUEST']._serialized_end = 5245
200
+ _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_start = 5248
201
+ _globals['_LISTORGANIZATIONMEMBERSRESPONSE']._serialized_end = 5440
202
+ _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_start = 5443
203
+ _globals['_CREATEORGANIZATIONINVITEREQUEST']._serialized_end = 5678
204
+ _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_start = 5680
205
+ _globals['_CREATEORGANIZATIONINVITERESPONSE']._serialized_end = 5771
206
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_start = 5774
207
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSREQUEST']._serialized_end = 6040
208
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_start = 6042
209
+ _globals['_UPDATEORGANIZATIONINVITEAUTHORIZATIONSRESPONSE']._serialized_end = 6147
210
+ _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_start = 6149
211
+ _globals['_DELETEORGANIZATIONINVITEREQUEST']._serialized_end = 6245
212
+ _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_start = 6247
213
+ _globals['_DELETEORGANIZATIONINVITERESPONSE']._serialized_end = 6281
214
+ _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_start = 6284
215
+ _globals['_RESENDORGANIZATIONINVITEREQUEST']._serialized_end = 6451
216
+ _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_start = 6453
217
+ _globals['_RESENDORGANIZATIONINVITERESPONSE']._serialized_end = 6544
218
+ _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_start = 6546
219
+ _globals['_DELETEORGANIZATIONMEMBERREQUEST']._serialized_end = 6645
220
+ _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_start = 6647
221
+ _globals['_DELETEORGANIZATIONMEMBERRESPONSE']._serialized_end = 6681
222
+ _globals['_BILLINGADDRESS']._serialized_start = 6684
223
+ _globals['_BILLINGADDRESS']._serialized_end = 6894
224
+ _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_start = 6896
225
+ _globals['_ENABLEBILLINGSERVICEREQUEST']._serialized_end = 7018
226
+ _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_start = 7020
227
+ _globals['_ENABLEBILLINGSERVICERESPONSE']._serialized_end = 7050
228
+ _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_start = 7052
229
+ _globals['_UPDATEBILLINGSERVICEREQUEST']._serialized_end = 7174
230
+ _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_start = 7176
231
+ _globals['_UPDATEBILLINGSERVICERESPONSE']._serialized_end = 7206
232
+ _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_start = 7208
233
+ _globals['_GETBILLINGSERVICECONFIGREQUEST']._serialized_end = 7263
234
+ _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_start = 7266
235
+ _globals['_GETBILLINGSERVICECONFIGRESPONSE']._serialized_end = 7485
236
+ _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_start = 7487
237
+ _globals['_DISABLEBILLINGSERVICEREQUEST']._serialized_end = 7540
238
+ _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_start = 7542
239
+ _globals['_DISABLEBILLINGSERVICERESPONSE']._serialized_end = 7573
240
+ _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_start = 7575
241
+ _globals['_ORGANIZATIONSETSUPPORTEMAILREQUEST']._serialized_end = 7656
242
+ _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_start = 7658
243
+ _globals['_ORGANIZATIONSETSUPPORTEMAILRESPONSE']._serialized_end = 7695
244
+ _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_start = 7697
245
+ _globals['_ORGANIZATIONGETSUPPORTEMAILREQUEST']._serialized_end = 7756
246
+ _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_start = 7758
247
+ _globals['_ORGANIZATIONGETSUPPORTEMAILRESPONSE']._serialized_end = 7817
248
+ _globals['_ORGANIZATIONIDENTITY']._serialized_start = 7819
249
+ _globals['_ORGANIZATIONIDENTITY']._serialized_end = 7877
250
+ _globals['_LOCATIONORGANIZATION']._serialized_start = 7879
251
+ _globals['_LOCATIONORGANIZATION']._serialized_end = 7968
252
+ _globals['_LOCATIONAUTH']._serialized_start = 7971
253
+ _globals['_LOCATIONAUTH']._serialized_end = 8099
254
+ _globals['_STORAGECONFIG']._serialized_start = 8101
255
+ _globals['_STORAGECONFIG']._serialized_end = 8140
256
+ _globals['_LOCATION']._serialized_start = 8143
257
+ _globals['_LOCATION']._serialized_end = 8614
258
+ _globals['_SHAREDSECRET']._serialized_start = 8617
259
+ _globals['_SHAREDSECRET']._serialized_end = 8953
260
+ _globals['_SHAREDSECRET_STATE']._serialized_start = 8884
261
+ _globals['_SHAREDSECRET_STATE']._serialized_end = 8953
262
+ _globals['_CREATELOCATIONREQUEST']._serialized_start = 8956
263
+ _globals['_CREATELOCATIONREQUEST']._serialized_end = 9114
264
+ _globals['_CREATELOCATIONRESPONSE']._serialized_start = 9116
265
+ _globals['_CREATELOCATIONRESPONSE']._serialized_end = 9191
266
+ _globals['_GETLOCATIONREQUEST']._serialized_start = 9193
267
+ _globals['_GETLOCATIONREQUEST']._serialized_end = 9246
268
+ _globals['_GETLOCATIONRESPONSE']._serialized_start = 9248
269
+ _globals['_GETLOCATIONRESPONSE']._serialized_end = 9320
270
+ _globals['_UPDATELOCATIONREQUEST']._serialized_start = 9323
271
+ _globals['_UPDATELOCATIONREQUEST']._serialized_end = 9527
272
+ _globals['_UPDATELOCATIONRESPONSE']._serialized_start = 9529
273
+ _globals['_UPDATELOCATIONRESPONSE']._serialized_end = 9604
274
+ _globals['_DELETELOCATIONREQUEST']._serialized_start = 9606
275
+ _globals['_DELETELOCATIONREQUEST']._serialized_end = 9662
276
+ _globals['_DELETELOCATIONRESPONSE']._serialized_start = 9664
277
+ _globals['_DELETELOCATIONRESPONSE']._serialized_end = 9688
278
+ _globals['_GETLOCATIONMETADATAREQUEST']._serialized_start = 9690
279
+ _globals['_GETLOCATIONMETADATAREQUEST']._serialized_end = 9751
280
+ _globals['_GETLOCATIONMETADATARESPONSE']._serialized_start = 9753
281
+ _globals['_GETLOCATIONMETADATARESPONSE']._serialized_end = 9827
282
+ _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_start = 9829
283
+ _globals['_UPDATELOCATIONMETADATAREQUEST']._serialized_end = 9938
284
+ _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_start = 9940
285
+ _globals['_UPDATELOCATIONMETADATARESPONSE']._serialized_end = 9972
286
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_start = 9974
287
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONREQUEST']._serialized_end = 10052
288
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_start = 10055
289
+ _globals['_GETORGANIZATIONSWITHACCESSTOLOCATIONRESPONSE']._serialized_end = 10193
290
+ _globals['_LISTLOCATIONSREQUEST']._serialized_start = 10195
291
+ _globals['_LISTLOCATIONSREQUEST']._serialized_end = 10258
292
+ _globals['_SHARELOCATIONREQUEST']._serialized_start = 10260
293
+ _globals['_SHARELOCATIONREQUEST']._serialized_end = 10356
294
+ _globals['_SHARELOCATIONRESPONSE']._serialized_start = 10358
295
+ _globals['_SHARELOCATIONRESPONSE']._serialized_end = 10381
296
+ _globals['_UNSHARELOCATIONREQUEST']._serialized_start = 10383
297
+ _globals['_UNSHARELOCATIONREQUEST']._serialized_end = 10481
298
+ _globals['_UNSHARELOCATIONRESPONSE']._serialized_start = 10483
299
+ _globals['_UNSHARELOCATIONRESPONSE']._serialized_end = 10508
300
+ _globals['_LISTLOCATIONSRESPONSE']._serialized_start = 10510
301
+ _globals['_LISTLOCATIONSRESPONSE']._serialized_end = 10586
302
+ _globals['_CREATELOCATIONSECRETREQUEST']._serialized_start = 10588
303
+ _globals['_CREATELOCATIONSECRETREQUEST']._serialized_end = 10650
304
+ _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_start = 10652
305
+ _globals['_CREATELOCATIONSECRETRESPONSE']._serialized_end = 10729
306
+ _globals['_DELETELOCATIONSECRETREQUEST']._serialized_start = 10731
307
+ _globals['_DELETELOCATIONSECRETREQUEST']._serialized_end = 10822
308
+ _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_start = 10824
309
+ _globals['_DELETELOCATIONSECRETRESPONSE']._serialized_end = 10854
310
+ _globals['_LOCATIONAUTHREQUEST']._serialized_start = 10856
311
+ _globals['_LOCATIONAUTHREQUEST']._serialized_end = 10910
312
+ _globals['_LOCATIONAUTHRESPONSE']._serialized_start = 10912
313
+ _globals['_LOCATIONAUTHRESPONSE']._serialized_end = 10981
314
+ _globals['_GETROBOTREQUEST']._serialized_start = 10983
315
+ _globals['_GETROBOTREQUEST']._serialized_end = 11016
316
+ _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_start = 11018
317
+ _globals['_GETROVERRENTALROBOTSREQUEST']._serialized_end = 11070
318
+ _globals['_ROVERRENTALROBOT']._serialized_start = 11073
319
+ _globals['_ROVERRENTALROBOT']._serialized_end = 11227
320
+ _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_start = 11229
321
+ _globals['_GETROVERRENTALROBOTSRESPONSE']._serialized_end = 11314
322
+ _globals['_GETROBOTRESPONSE']._serialized_start = 11316
323
+ _globals['_GETROBOTRESPONSE']._serialized_end = 11376
324
+ _globals['_GETROBOTPARTSREQUEST']._serialized_start = 11378
325
+ _globals['_GETROBOTPARTSREQUEST']._serialized_end = 11427
326
+ _globals['_GETROBOTPARTSRESPONSE']._serialized_start = 11429
327
+ _globals['_GETROBOTPARTSRESPONSE']._serialized_end = 11498
328
+ _globals['_GETROBOTPARTREQUEST']._serialized_start = 11500
329
+ _globals['_GETROBOTPARTREQUEST']._serialized_end = 11537
330
+ _globals['_GETROBOTPARTRESPONSE']._serialized_start = 11539
331
+ _globals['_GETROBOTPARTRESPONSE']._serialized_end = 11638
332
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONREQUEST']._serialized_start = 11640
333
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONREQUEST']._serialized_end = 11731
334
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONRESPONSE']._serialized_start = 11733
335
+ _globals['_GETROBOTPARTBYNAMEANDLOCATIONRESPONSE']._serialized_end = 11816
336
+ _globals['_GETROBOTPARTLOGSREQUEST']._serialized_start = 11819
337
+ _globals['_GETROBOTPARTLOGSREQUEST']._serialized_end = 12281
338
+ _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_start = 12283
339
+ _globals['_GETROBOTPARTLOGSRESPONSE']._serialized_end = 12395
340
+ _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_start = 12397
341
+ _globals['_TAILROBOTPARTLOGSREQUEST']._serialized_end = 12512
342
+ _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_start = 12514
343
+ _globals['_TAILROBOTPARTLOGSRESPONSE']._serialized_end = 12587
344
+ _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_start = 12589
345
+ _globals['_GETROBOTPARTHISTORYREQUEST']._serialized_end = 12633
346
+ _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_start = 12635
347
+ _globals['_GETROBOTPARTHISTORYRESPONSE']._serialized_end = 12726
348
+ _globals['_UPDATEROBOTPARTREQUEST']._serialized_start = 12729
349
+ _globals['_UPDATEROBOTPARTREQUEST']._serialized_end = 12948
350
+ _globals['_UPDATEROBOTPARTRESPONSE']._serialized_start = 12950
351
+ _globals['_UPDATEROBOTPARTRESPONSE']._serialized_end = 13019
352
+ _globals['_NEWROBOTPARTREQUEST']._serialized_start = 13021
353
+ _globals['_NEWROBOTPARTREQUEST']._serialized_end = 13098
354
+ _globals['_NEWROBOTPARTRESPONSE']._serialized_start = 13100
355
+ _globals['_NEWROBOTPARTRESPONSE']._serialized_end = 13147
356
+ _globals['_DELETEROBOTPARTREQUEST']._serialized_start = 13149
357
+ _globals['_DELETEROBOTPARTREQUEST']._serialized_end = 13198
358
+ _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_start = 13200
359
+ _globals['_GETROBOTPARTMETADATAREQUEST']._serialized_end = 13245
360
+ _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_start = 13247
361
+ _globals['_GETROBOTPARTMETADATARESPONSE']._serialized_end = 13322
362
+ _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_start = 13324
363
+ _globals['_UPDATEROBOTPARTMETADATAREQUEST']._serialized_end = 13417
364
+ _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_start = 13419
365
+ _globals['_UPDATEROBOTPARTMETADATARESPONSE']._serialized_end = 13452
366
+ _globals['_GETROBOTAPIKEYSREQUEST']._serialized_start = 13454
367
+ _globals['_GETROBOTAPIKEYSREQUEST']._serialized_end = 13505
368
+ _globals['_APIKEY']._serialized_start = 13507
369
+ _globals['_APIKEY']._serialized_end = 13628
370
+ _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_start = 13630
371
+ _globals['_GETROBOTAPIKEYSRESPONSE']._serialized_end = 13721
372
+ _globals['_DELETEROBOTPARTRESPONSE']._serialized_start = 13723
373
+ _globals['_DELETEROBOTPARTRESPONSE']._serialized_end = 13748
374
+ _globals['_FRAGMENT']._serialized_start = 13751
375
+ _globals['_FRAGMENT']._serialized_end = 14552
376
+ _globals['_FRAGMENTHISTORYENTRY']._serialized_start = 14555
377
+ _globals['_FRAGMENTHISTORYENTRY']._serialized_end = 15059
378
+ _globals['_FRAGMENTREVISION']._serialized_start = 15061
379
+ _globals['_FRAGMENTREVISION']._serialized_end = 15166
380
+ _globals['_FRAGMENTTAG']._serialized_start = 15168
381
+ _globals['_FRAGMENTTAG']._serialized_end = 15227
382
+ _globals['_FRAGMENTERROR']._serialized_start = 15230
383
+ _globals['_FRAGMENTERROR']._serialized_end = 15365
384
+ _globals['_FRAGMENTUSAGE']._serialized_start = 15368
385
+ _globals['_FRAGMENTUSAGE']._serialized_end = 15580
386
+ _globals['_FRAGMENTIMPORT']._serialized_start = 15583
387
+ _globals['_FRAGMENTIMPORT']._serialized_end = 15834
388
+ _globals['_FRAGMENTIMPORT_VARIABLESENTRY']._serialized_start = 15763
389
+ _globals['_FRAGMENTIMPORT_VARIABLESENTRY']._serialized_end = 15823
390
+ _globals['_RESOLVEDFRAGMENT']._serialized_start = 15837
391
+ _globals['_RESOLVEDFRAGMENT']._serialized_end = 16032
392
+ _globals['_LISTFRAGMENTSREQUEST']._serialized_start = 16035
393
+ _globals['_LISTFRAGMENTSREQUEST']._serialized_end = 16213
394
+ _globals['_LISTFRAGMENTSRESPONSE']._serialized_start = 16216
395
+ _globals['_LISTFRAGMENTSRESPONSE']._serialized_end = 16361
396
+ _globals['_GETFRAGMENTREQUEST']._serialized_start = 16364
397
+ _globals['_GETFRAGMENTREQUEST']._serialized_end = 16499
398
+ _globals['_GETFRAGMENTRESPONSE']._serialized_start = 16502
399
+ _globals['_GETFRAGMENTRESPONSE']._serialized_end = 16748
400
+ _globals['_CREATEFRAGMENTREQUEST']._serialized_start = 16751
401
+ _globals['_CREATEFRAGMENTREQUEST']._serialized_end = 16969
402
+ _globals['_CREATEFRAGMENTRESPONSE']._serialized_start = 16971
403
+ _globals['_CREATEFRAGMENTRESPONSE']._serialized_end = 17046
404
+ _globals['_UPDATEFRAGMENTREQUEST']._serialized_start = 17049
405
+ _globals['_UPDATEFRAGMENTREQUEST']._serialized_end = 17381
406
+ _globals['_UPDATEFRAGMENTRESPONSE']._serialized_start = 17383
407
+ _globals['_UPDATEFRAGMENTRESPONSE']._serialized_end = 17458
408
+ _globals['_DELETEFRAGMENTREQUEST']._serialized_start = 17460
409
+ _globals['_DELETEFRAGMENTREQUEST']._serialized_end = 17499
410
+ _globals['_DELETEFRAGMENTRESPONSE']._serialized_start = 17501
411
+ _globals['_DELETEFRAGMENTRESPONSE']._serialized_end = 17525
412
+ _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_start = 17528
413
+ _globals['_GETFRAGMENTHISTORYREQUEST']._serialized_end = 17673
414
+ _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_start = 17676
415
+ _globals['_GETFRAGMENTHISTORYRESPONSE']._serialized_end = 17805
416
+ _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_start = 17807
417
+ _globals['_GETFRAGMENTUSAGEREQUEST']._serialized_end = 17865
418
+ _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_start = 17867
419
+ _globals['_GETFRAGMENTUSAGERESPONSE']._serialized_end = 17960
420
+ _globals['_SETFRAGMENTTAGREQUEST']._serialized_start = 17962
421
+ _globals['_SETFRAGMENTTAGREQUEST']._serialized_end = 18064
422
+ _globals['_SETFRAGMENTTAGRESPONSE']._serialized_start = 18066
423
+ _globals['_SETFRAGMENTTAGRESPONSE']._serialized_end = 18136
424
+ _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_start = 18138
425
+ _globals['_DELETEFRAGMENTTAGREQUEST']._serialized_end = 18215
426
+ _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_start = 18217
427
+ _globals['_DELETEFRAGMENTTAGRESPONSE']._serialized_end = 18290
428
+ _globals['_LISTROBOTSREQUEST']._serialized_start = 18292
429
+ _globals['_LISTROBOTSREQUEST']._serialized_end = 18344
430
+ _globals['_LISTROBOTSFORLOCATIONSREQUEST']._serialized_start = 18346
431
+ _globals['_LISTROBOTSFORLOCATIONSREQUEST']._serialized_end = 18412
432
+ _globals['_LISTROBOTSFORORGREQUEST']._serialized_start = 18414
433
+ _globals['_LISTROBOTSFORORGREQUEST']._serialized_end = 18462
434
+ _globals['_ADDITIONALFRAGMENT']._serialized_start = 18464
435
+ _globals['_ADDITIONALFRAGMENT']._serialized_end = 18560
436
+ _globals['_LISTNESTEDFRAGMENTSREQUEST']._serialized_start = 18563
437
+ _globals['_LISTNESTEDFRAGMENTSREQUEST']._serialized_end = 18729
438
+ _globals['_LISTNESTEDFRAGMENTSRESPONSE']._serialized_start = 18732
439
+ _globals['_LISTNESTEDFRAGMENTSRESPONSE']._serialized_end = 18892
440
+ _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_start = 18895
441
+ _globals['_LISTMACHINEFRAGMENTSREQUEST']._serialized_end = 19095
442
+ _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_start = 19098
443
+ _globals['_LISTMACHINEFRAGMENTSRESPONSE']._serialized_end = 19259
444
+ _globals['_LISTMACHINESUMMARIESREQUEST']._serialized_start = 19262
445
+ _globals['_LISTMACHINESUMMARIESREQUEST']._serialized_end = 19439
446
+ _globals['_LISTMACHINESUMMARIESRESPONSE']._serialized_start = 19441
447
+ _globals['_LISTMACHINESUMMARIESRESPONSE']._serialized_end = 19548
448
+ _globals['_LOCATIONSUMMARY']._serialized_start = 19551
449
+ _globals['_LOCATIONSUMMARY']._serialized_end = 19712
450
+ _globals['_MACHINESUMMARY']._serialized_start = 19715
451
+ _globals['_MACHINESUMMARY']._serialized_end = 19862
452
+ _globals['_FRAGMENTSUMMARY']._serialized_start = 19864
453
+ _globals['_FRAGMENTSUMMARY']._serialized_end = 19923
454
+ _globals['_VIAMSERVERVERSION']._serialized_start = 19925
455
+ _globals['_VIAMSERVERVERSION']._serialized_end = 20003
456
+ _globals['_VIAMAGENTVERSION']._serialized_start = 20005
457
+ _globals['_VIAMAGENTVERSION']._serialized_end = 20082
458
+ _globals['_PARTSUMMARY']._serialized_start = 20085
459
+ _globals['_PARTSUMMARY']._serialized_end = 20925
460
+ _globals['_LISTROBOTSRESPONSE']._serialized_start = 20927
461
+ _globals['_LISTROBOTSRESPONSE']._serialized_end = 20991
462
+ _globals['_LISTROBOTSFORLOCATIONSRESPONSE']._serialized_start = 20993
463
+ _globals['_LISTROBOTSFORLOCATIONSRESPONSE']._serialized_end = 21069
464
+ _globals['_LISTROBOTSFORORGRESPONSE']._serialized_start = 21071
465
+ _globals['_LISTROBOTSFORORGRESPONSE']._serialized_end = 21141
466
+ _globals['_NEWROBOTREQUEST']._serialized_start = 21143
467
+ _globals['_NEWROBOTREQUEST']._serialized_end = 21208
468
+ _globals['_NEWROBOTRESPONSE']._serialized_start = 21210
469
+ _globals['_NEWROBOTRESPONSE']._serialized_end = 21244
470
+ _globals['_UPDATEROBOTREQUEST']._serialized_start = 21246
471
+ _globals['_UPDATEROBOTREQUEST']._serialized_end = 21330
472
+ _globals['_UPDATEROBOTRESPONSE']._serialized_start = 21332
473
+ _globals['_UPDATEROBOTRESPONSE']._serialized_end = 21395
474
+ _globals['_DELETEROBOTREQUEST']._serialized_start = 21397
475
+ _globals['_DELETEROBOTREQUEST']._serialized_end = 21433
476
+ _globals['_DELETEROBOTRESPONSE']._serialized_start = 21435
477
+ _globals['_DELETEROBOTRESPONSE']._serialized_end = 21456
478
+ _globals['_GETROBOTMETADATAREQUEST']._serialized_start = 21458
479
+ _globals['_GETROBOTMETADATAREQUEST']._serialized_end = 21499
480
+ _globals['_GETROBOTMETADATARESPONSE']._serialized_start = 21501
481
+ _globals['_GETROBOTMETADATARESPONSE']._serialized_end = 21572
482
+ _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_start = 21574
483
+ _globals['_UPDATEROBOTMETADATAREQUEST']._serialized_end = 21663
484
+ _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_start = 21665
485
+ _globals['_UPDATEROBOTMETADATARESPONSE']._serialized_end = 21694
486
+ _globals['_MARKPARTASMAINREQUEST']._serialized_start = 21696
487
+ _globals['_MARKPARTASMAINREQUEST']._serialized_end = 21744
488
+ _globals['_MARKPARTASMAINRESPONSE']._serialized_start = 21746
489
+ _globals['_MARKPARTASMAINRESPONSE']._serialized_end = 21770
490
+ _globals['_MARKPARTFORRESTARTREQUEST']._serialized_start = 21772
491
+ _globals['_MARKPARTFORRESTARTREQUEST']._serialized_end = 21824
492
+ _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_start = 21826
493
+ _globals['_MARKPARTFORRESTARTRESPONSE']._serialized_end = 21854
494
+ _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_start = 21856
495
+ _globals['_CREATEROBOTPARTSECRETREQUEST']._serialized_end = 21911
496
+ _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_start = 21913
497
+ _globals['_CREATEROBOTPARTSECRETRESPONSE']._serialized_end = 21988
498
+ _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_start = 21990
499
+ _globals['_DELETEROBOTPARTSECRETREQUEST']._serialized_end = 22074
500
+ _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_start = 22076
501
+ _globals['_DELETEROBOTPARTSECRETRESPONSE']._serialized_end = 22107
502
+ _globals['_AUTHORIZATION']._serialized_start = 22110
503
+ _globals['_AUTHORIZATION']._serialized_end = 22396
504
+ _globals['_ADDROLEREQUEST']._serialized_start = 22398
505
+ _globals['_ADDROLEREQUEST']._serialized_end = 22480
506
+ _globals['_ADDROLERESPONSE']._serialized_start = 22482
507
+ _globals['_ADDROLERESPONSE']._serialized_end = 22499
508
+ _globals['_REMOVEROLEREQUEST']._serialized_start = 22501
509
+ _globals['_REMOVEROLEREQUEST']._serialized_end = 22586
510
+ _globals['_REMOVEROLERESPONSE']._serialized_start = 22588
511
+ _globals['_REMOVEROLERESPONSE']._serialized_end = 22608
512
+ _globals['_CHANGEROLEREQUEST']._serialized_start = 22611
513
+ _globals['_CHANGEROLEREQUEST']._serialized_end = 22776
514
+ _globals['_CHANGEROLERESPONSE']._serialized_start = 22778
515
+ _globals['_CHANGEROLERESPONSE']._serialized_end = 22798
516
+ _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_start = 22800
517
+ _globals['_LISTAUTHORIZATIONSREQUEST']._serialized_end = 22903
518
+ _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_start = 22905
519
+ _globals['_LISTAUTHORIZATIONSRESPONSE']._serialized_end = 23001
520
+ _globals['_CHECKPERMISSIONSREQUEST']._serialized_start = 23003
521
+ _globals['_CHECKPERMISSIONSREQUEST']._serialized_end = 23098
522
+ _globals['_AUTHORIZEDPERMISSIONS']._serialized_start = 23100
523
+ _globals['_AUTHORIZEDPERMISSIONS']._serialized_end = 23227
524
+ _globals['_CHECKPERMISSIONSRESPONSE']._serialized_start = 23229
525
+ _globals['_CHECKPERMISSIONSRESPONSE']._serialized_end = 23346
526
+ _globals['_MODULEVERSION']._serialized_start = 23349
527
+ _globals['_MODULEVERSION']._serialized_end = 23677
528
+ _globals['_MODULEMETADATA']._serialized_start = 23680
529
+ _globals['_MODULEMETADATA']._serialized_end = 24155
530
+ _globals['_MLMODELMETADATA']._serialized_start = 24158
531
+ _globals['_MLMODELMETADATA']._serialized_end = 24350
532
+ _globals['_MLTRAININGVERSION']._serialized_start = 24352
533
+ _globals['_MLTRAININGVERSION']._serialized_end = 24456
534
+ _globals['_MLTRAININGMETADATA']._serialized_start = 24459
535
+ _globals['_MLTRAININGMETADATA']._serialized_end = 24714
536
+ _globals['_REGISTRYITEM']._serialized_start = 24717
537
+ _globals['_REGISTRYITEM']._serialized_end = 25625
538
+ _globals['_GETREGISTRYITEMREQUEST']._serialized_start = 25628
539
+ _globals['_GETREGISTRYITEMREQUEST']._serialized_end = 25787
540
+ _globals['_GETREGISTRYITEMRESPONSE']._serialized_start = 25789
541
+ _globals['_GETREGISTRYITEMRESPONSE']._serialized_end = 25861
542
+ _globals['_CREATEREGISTRYITEMREQUEST']._serialized_start = 25864
543
+ _globals['_CREATEREGISTRYITEMREQUEST']._serialized_end = 26007
544
+ _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_start = 26009
545
+ _globals['_CREATEREGISTRYITEMRESPONSE']._serialized_end = 26037
546
+ _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_start = 26040
547
+ _globals['_UPDATEREGISTRYITEMREQUEST']._serialized_end = 26652
548
+ _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_start = 26654
549
+ _globals['_UPDATEREGISTRYITEMRESPONSE']._serialized_end = 26682
550
+ _globals['_LISTREGISTRYITEMSREQUEST']._serialized_start = 26685
551
+ _globals['_LISTREGISTRYITEMSREQUEST']._serialized_end = 27397
552
+ _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_start = 27399
553
+ _globals['_LISTREGISTRYITEMSRESPONSE']._serialized_end = 27475
554
+ _globals['_DELETEREGISTRYITEMREQUEST']._serialized_start = 27477
555
+ _globals['_DELETEREGISTRYITEMREQUEST']._serialized_end = 27529
556
+ _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_start = 27531
557
+ _globals['_DELETEREGISTRYITEMRESPONSE']._serialized_end = 27559
558
+ _globals['_RENAMEREGISTRYITEMREQUEST']._serialized_start = 27561
559
+ _globals['_RENAMEREGISTRYITEMREQUEST']._serialized_end = 27640
560
+ _globals['_RENAMEREGISTRYITEMRESPONSE']._serialized_start = 27642
561
+ _globals['_RENAMEREGISTRYITEMRESPONSE']._serialized_end = 27717
562
+ _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_start = 27719
563
+ _globals['_TRANSFERREGISTRYITEMREQUEST']._serialized_end = 27823
564
+ _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_start = 27825
565
+ _globals['_TRANSFERREGISTRYITEMRESPONSE']._serialized_end = 27855
566
+ _globals['_CREATEMODULEREQUEST']._serialized_start = 27857
567
+ _globals['_CREATEMODULEREQUEST']._serialized_end = 27939
568
+ _globals['_CREATEMODULERESPONSE']._serialized_start = 27941
569
+ _globals['_CREATEMODULERESPONSE']._serialized_end = 28010
570
+ _globals['_UPDATEMODULEREQUEST']._serialized_start = 28013
571
+ _globals['_UPDATEMODULEREQUEST']._serialized_end = 28415
572
+ _globals['_APP']._serialized_start = 28418
573
+ _globals['_APP']._serialized_end = 28650
574
+ _globals['_UPDATEMODULERESPONSE']._serialized_start = 28652
575
+ _globals['_UPDATEMODULERESPONSE']._serialized_end = 28692
576
+ _globals['_UPDATEMODULEMETADATA']._serialized_start = 28695
577
+ _globals['_UPDATEMODULEMETADATA']._serialized_end = 28991
578
+ _globals['_UPDATEMLMODELMETADATA']._serialized_start = 28994
579
+ _globals['_UPDATEMLMODELMETADATA']._serialized_end = 29164
580
+ _globals['_UPDATEMLTRAININGMETADATA']._serialized_start = 29167
581
+ _globals['_UPDATEMLTRAININGMETADATA']._serialized_end = 29362
582
+ _globals['_MODEL']._serialized_start = 29365
583
+ _globals['_MODEL']._serialized_end = 29601
584
+ _globals['_MODULEFILEINFO']._serialized_start = 29604
585
+ _globals['_MODULEFILEINFO']._serialized_end = 29740
586
+ _globals['_UPLOADMODULEFILEREQUEST']._serialized_start = 29743
587
+ _globals['_UPLOADMODULEFILEREQUEST']._serialized_end = 29878
588
+ _globals['_UPLOADMODULEFILERESPONSE']._serialized_start = 29880
589
+ _globals['_UPLOADMODULEFILERESPONSE']._serialized_end = 29924
590
+ _globals['_GETMODULEREQUEST']._serialized_start = 29927
591
+ _globals['_GETMODULEREQUEST']._serialized_end = 30084
592
+ _globals['_GETMODULERESPONSE']._serialized_start = 30086
593
+ _globals['_GETMODULERESPONSE']._serialized_end = 30150
594
+ _globals['_MODULE']._serialized_start = 30153
595
+ _globals['_MODULE']._serialized_end = 30805
596
+ _globals['_VERSIONHISTORY']._serialized_start = 30808
597
+ _globals['_VERSIONHISTORY']._serialized_end = 31137
598
+ _globals['_UPLOADS']._serialized_start = 31139
599
+ _globals['_UPLOADS']._serialized_end = 31237
600
+ _globals['_LISTMODULESREQUEST']._serialized_start = 31240
601
+ _globals['_LISTMODULESREQUEST']._serialized_end = 31436
602
+ _globals['_LISTMODULESRESPONSE']._serialized_start = 31438
603
+ _globals['_LISTMODULESRESPONSE']._serialized_end = 31506
604
+ _globals['_GETUSERIDBYEMAILREQUEST']._serialized_start = 31508
605
+ _globals['_GETUSERIDBYEMAILREQUEST']._serialized_end = 31555
606
+ _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_start = 31557
607
+ _globals['_GETUSERIDBYEMAILRESPONSE']._serialized_end = 31608
608
+ _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_start = 31610
609
+ _globals['_LISTORGANIZATIONSBYUSERREQUEST']._serialized_end = 31667
610
+ _globals['_ORGDETAILS']._serialized_start = 31670
611
+ _globals['_ORGDETAILS']._serialized_end = 31900
612
+ _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_start = 31902
613
+ _globals['_LISTORGANIZATIONSBYUSERRESPONSE']._serialized_end = 31980
614
+ _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_start = 31983
615
+ _globals['_SEARCHORGANIZATIONSREQUEST']._serialized_end = 32195
616
+ _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_start = 32197
617
+ _globals['_SEARCHORGANIZATIONSRESPONSE']._serialized_end = 32289
618
+ _globals['_CREATEKEYREQUEST']._serialized_start = 32291
619
+ _globals['_CREATEKEYREQUEST']._serialized_end = 32397
620
+ _globals['_CREATEKEYRESPONSE']._serialized_start = 32399
621
+ _globals['_CREATEKEYRESPONSE']._serialized_end = 32452
622
+ _globals['_DELETEKEYREQUEST']._serialized_start = 32454
623
+ _globals['_DELETEKEYREQUEST']._serialized_end = 32488
624
+ _globals['_DELETEKEYRESPONSE']._serialized_start = 32490
625
+ _globals['_DELETEKEYRESPONSE']._serialized_end = 32509
626
+ _globals['_RENAMEKEYREQUEST']._serialized_start = 32511
627
+ _globals['_RENAMEKEYREQUEST']._serialized_end = 32565
628
+ _globals['_RENAMEKEYRESPONSE']._serialized_start = 32567
629
+ _globals['_RENAMEKEYRESPONSE']._serialized_end = 32622
630
+ _globals['_AUTHORIZATIONDETAILS']._serialized_start = 32625
631
+ _globals['_AUTHORIZATIONDETAILS']._serialized_end = 32830
632
+ _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_start = 32833
633
+ _globals['_APIKEYWITHAUTHORIZATIONS']._serialized_end = 32980
634
+ _globals['_LISTKEYSREQUEST']._serialized_start = 32982
635
+ _globals['_LISTKEYSREQUEST']._serialized_end = 33022
636
+ _globals['_LISTKEYSRESPONSE']._serialized_start = 33024
637
+ _globals['_LISTKEYSRESPONSE']._serialized_end = 33108
638
+ _globals['_ROTATEKEYREQUEST']._serialized_start = 33110
639
+ _globals['_ROTATEKEYREQUEST']._serialized_end = 33144
640
+ _globals['_ROTATEKEYRESPONSE']._serialized_start = 33146
641
+ _globals['_ROTATEKEYRESPONSE']._serialized_end = 33199
642
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_start = 33201
643
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSREQUEST']._serialized_end = 33264
644
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_start = 33266
645
+ _globals['_CREATEKEYFROMEXISTINGKEYAUTHORIZATIONSRESPONSE']._serialized_end = 33348
646
+ _globals['_GETAPPCONTENTREQUEST']._serialized_start = 33350
647
+ _globals['_GETAPPCONTENTREQUEST']._serialized_end = 33435
648
+ _globals['_GETAPPCONTENTRESPONSE']._serialized_start = 33438
649
+ _globals['_GETAPPCONTENTRESPONSE']._serialized_end = 33571
650
+ _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_start = 33573
651
+ _globals['_ORGANIZATIONSETLOGOREQUEST']._serialized_end = 33644
652
+ _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_start = 33646
653
+ _globals['_ORGANIZATIONSETLOGORESPONSE']._serialized_end = 33675
654
+ _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_start = 33677
655
+ _globals['_ORGANIZATIONGETLOGOREQUEST']._serialized_end = 33728
656
+ _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_start = 33730
657
+ _globals['_ORGANIZATIONGETLOGORESPONSE']._serialized_end = 33777
658
+ _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_start = 33779
659
+ _globals['_ENABLEAUTHSERVICEREQUEST']._serialized_end = 33828
660
+ _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_start = 33830
661
+ _globals['_ENABLEAUTHSERVICERESPONSE']._serialized_end = 33857
662
+ _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_start = 33859
663
+ _globals['_DISABLEAUTHSERVICEREQUEST']._serialized_end = 33909
664
+ _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_start = 33911
665
+ _globals['_DISABLEAUTHSERVICERESPONSE']._serialized_end = 33939
666
+ _globals['_CREATEOAUTHAPPREQUEST']._serialized_start = 33942
667
+ _globals['_CREATEOAUTHAPPREQUEST']._serialized_end = 34082
668
+ _globals['_CREATEOAUTHAPPRESPONSE']._serialized_start = 34084
669
+ _globals['_CREATEOAUTHAPPRESPONSE']._serialized_end = 34174
670
+ _globals['_READOAUTHAPPREQUEST']._serialized_start = 34176
671
+ _globals['_READOAUTHAPPREQUEST']._serialized_end = 34249
672
+ _globals['_READOAUTHAPPRESPONSE']._serialized_start = 34252
673
+ _globals['_READOAUTHAPPRESPONSE']._serialized_end = 34405
674
+ _globals['_UPDATEOAUTHAPPREQUEST']._serialized_start = 34408
675
+ _globals['_UPDATEOAUTHAPPREQUEST']._serialized_end = 34577
676
+ _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_start = 34579
677
+ _globals['_UPDATEOAUTHAPPRESPONSE']._serialized_end = 34603
678
+ _globals['_DELETEOAUTHAPPREQUEST']._serialized_start = 34605
679
+ _globals['_DELETEOAUTHAPPREQUEST']._serialized_end = 34680
680
+ _globals['_DELETEOAUTHAPPRESPONSE']._serialized_start = 34682
681
+ _globals['_DELETEOAUTHAPPRESPONSE']._serialized_end = 34706
682
+ _globals['_LISTOAUTHAPPSREQUEST']._serialized_start = 34708
683
+ _globals['_LISTOAUTHAPPSREQUEST']._serialized_end = 34753
684
+ _globals['_LISTOAUTHAPPSRESPONSE']._serialized_start = 34755
685
+ _globals['_LISTOAUTHAPPSRESPONSE']._serialized_end = 34809
686
+ _globals['_OAUTHCONFIG']._serialized_start = 34812
687
+ _globals['_OAUTHCONFIG']._serialized_end = 35186
688
+ _globals['_GETAPPBRANDINGREQUEST']._serialized_start = 35188
689
+ _globals['_GETAPPBRANDINGREQUEST']._serialized_end = 35274
690
+ _globals['_TEXTOVERRIDES']._serialized_start = 35277
691
+ _globals['_TEXTOVERRIDES']._serialized_end = 35415
692
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_start = 35358
693
+ _globals['_TEXTOVERRIDES_FIELDSENTRY']._serialized_end = 35415
694
+ _globals['_GETAPPBRANDINGRESPONSE']._serialized_start = 35418
695
+ _globals['_GETAPPBRANDINGRESPONSE']._serialized_end = 35734
696
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_start = 35623
697
+ _globals['_GETAPPBRANDINGRESPONSE_TEXTCUSTOMIZATIONSENTRY']._serialized_end = 35720
698
+ _globals['_APPCUSTOMIZATIONS']._serialized_start = 35736
699
+ _globals['_APPCUSTOMIZATIONS']._serialized_end = 35836
700
+ _globals['_MACHINEPICKERCUSTOMIZATIONS']._serialized_start = 35838
701
+ _globals['_MACHINEPICKERCUSTOMIZATIONS']._serialized_end = 35962
702
+ _globals['_APPSERVICE']._serialized_start = 37954
703
+ _globals['_APPSERVICE']._serialized_end = 48956