viam-sdk 0.55.1__py3-none-musllinux_1_2_i686.whl → 0.57.0__py3-none-musllinux_1_2_i686.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 (75) hide show
  1. viam/app/app_client.py +3 -5
  2. viam/app/billing_client.py +3 -5
  3. viam/app/data_client.py +129 -11
  4. viam/app/ml_training_client.py +3 -5
  5. viam/app/provisioning_client.py +3 -5
  6. viam/app/viam_client.py +19 -1
  7. viam/gen/app/agent/v1/agent_pb2.py +1 -1
  8. viam/gen/app/cloudslam/v1/cloud_slam_pb2.py +1 -1
  9. viam/gen/app/data/v1/data_grpc.py +26 -2
  10. viam/gen/app/data/v1/data_pb2.py +123 -105
  11. viam/gen/app/data/v1/data_pb2.pyi +186 -4
  12. viam/gen/app/datapipelines/v1/data_pipelines_pb2.py +1 -1
  13. viam/gen/app/dataset/v1/dataset_pb2.py +1 -1
  14. viam/gen/app/datasync/v1/data_sync_pb2.py +1 -1
  15. viam/gen/app/mlinference/v1/ml_inference_pb2.py +1 -1
  16. viam/gen/app/mltraining/v1/ml_training_pb2.py +1 -1
  17. viam/gen/app/packages/v1/packages_pb2.py +1 -1
  18. viam/gen/app/v1/app_pb2.py +1 -1
  19. viam/gen/app/v1/billing_pb2.py +52 -48
  20. viam/gen/app/v1/billing_pb2.pyi +59 -3
  21. viam/gen/app/v1/end_user_pb2.py +1 -1
  22. viam/gen/app/v1/robot_pb2.py +1 -1
  23. viam/gen/common/v1/common_pb2.py +1 -1
  24. viam/gen/component/arm/v1/arm_pb2.py +1 -1
  25. viam/gen/component/audioinput/v1/audioinput_pb2.py +1 -1
  26. viam/gen/component/base/v1/base_pb2.py +1 -1
  27. viam/gen/component/board/v1/board_pb2.py +1 -1
  28. viam/gen/component/button/v1/button_pb2.py +1 -1
  29. viam/gen/component/camera/v1/camera_pb2.py +1 -1
  30. viam/gen/component/encoder/v1/encoder_pb2.py +1 -1
  31. viam/gen/component/gantry/v1/gantry_pb2.py +1 -1
  32. viam/gen/component/generic/v1/generic_pb2.py +1 -1
  33. viam/gen/component/gripper/v1/gripper_pb2.py +1 -1
  34. viam/gen/component/inputcontroller/v1/input_controller_pb2.py +1 -1
  35. viam/gen/component/motor/v1/motor_pb2.py +1 -1
  36. viam/gen/component/movementsensor/v1/movementsensor_pb2.py +1 -1
  37. viam/gen/component/posetracker/v1/pose_tracker_pb2.py +1 -1
  38. viam/gen/component/powersensor/v1/powersensor_pb2.py +1 -1
  39. viam/gen/component/sensor/v1/sensor_pb2.py +1 -1
  40. viam/gen/component/servo/v1/servo_pb2.py +1 -1
  41. viam/gen/component/switch/v1/switch_pb2.py +1 -1
  42. viam/gen/component/testecho/v1/testecho_pb2.py +1 -1
  43. viam/gen/module/v1/module_pb2.py +1 -1
  44. viam/gen/proto/rpc/examples/echo/v1/echo_pb2.py +1 -1
  45. viam/gen/proto/rpc/examples/echoresource/v1/echoresource_pb2.py +1 -1
  46. viam/gen/proto/rpc/v1/auth_pb2.py +1 -1
  47. viam/gen/proto/rpc/webrtc/v1/grpc_pb2.py +1 -1
  48. viam/gen/proto/rpc/webrtc/v1/signaling_pb2.py +1 -1
  49. viam/gen/provisioning/v1/provisioning_pb2.py +1 -1
  50. viam/gen/robot/v1/robot_pb2.py +1 -1
  51. viam/gen/service/datamanager/v1/data_manager_pb2.py +1 -1
  52. viam/gen/service/discovery/v1/discovery_pb2.py +1 -1
  53. viam/gen/service/generic/v1/generic_pb2.py +1 -1
  54. viam/gen/service/mlmodel/v1/mlmodel_pb2.py +1 -1
  55. viam/gen/service/motion/v1/motion_pb2.py +87 -63
  56. viam/gen/service/motion/v1/motion_pb2.pyi +92 -66
  57. viam/gen/service/navigation/v1/navigation_pb2.py +1 -1
  58. viam/gen/service/sensors/v1/sensors_pb2.py +1 -1
  59. viam/gen/service/shell/v1/shell_pb2.py +1 -1
  60. viam/gen/service/slam/v1/slam_pb2.py +1 -1
  61. viam/gen/service/vision/v1/vision_pb2.py +1 -1
  62. viam/gen/service/worldstatestore/v1/world_state_store_pb2.py +1 -1
  63. viam/gen/stream/v1/stream_pb2.py +1 -1
  64. viam/gen/tagger/v1/tagger_pb2.py +1 -1
  65. viam/proto/app/billing.py +4 -0
  66. viam/proto/app/data/__init__.py +18 -0
  67. viam/services/motion/client.py +8 -9
  68. viam/services/motion/motion.py +37 -43
  69. viam/services/worldstatestore/worldstatestore.py +2 -2
  70. viam/sessions_client.py +34 -25
  71. viam/version_metadata.py +2 -2
  72. {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/METADATA +1 -1
  73. {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/RECORD +75 -75
  74. {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/WHEEL +0 -0
  75. {viam_sdk-0.55.1.dist-info → viam_sdk-0.57.0.dist-info}/licenses/LICENSE +0 -0
@@ -4,7 +4,7 @@ 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, 3, '', 'proto/rpc/webrtc/v1/signaling.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'proto/rpc/webrtc/v1/signaling.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
10
10
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
@@ -4,7 +4,7 @@ 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, 3, '', 'provisioning/v1/provisioning.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'provisioning/v1/provisioning.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n"provisioning/v1/provisioning.proto\x12\x14viam.provisioning.v1"\x19\n\x17ExitProvisioningRequest"\x1a\n\x18ExitProvisioningResponse"\x1e\n\x1cGetSmartMachineStatusRequest"\xf0\x02\n\x1dGetSmartMachineStatusResponse\x12S\n\x11provisioning_info\x18\x01 \x01(\x0b2&.viam.provisioning.v1.ProvisioningInfoR\x10provisioningInfo\x12A\n\x1dhas_smart_machine_credentials\x18\x02 \x01(\x08R\x1ahasSmartMachineCredentials\x12\x1b\n\tis_online\x18\x03 \x01(\x08R\x08isOnline\x12]\n\x19latest_connection_attempt\x18\x04 \x01(\x0b2!.viam.provisioning.v1.NetworkInfoR\x17latestConnectionAttempt\x12\x16\n\x06errors\x18\x05 \x03(\tR\x06errors\x12#\n\ragent_version\x18\x06 \x01(\tR\x0cagentVersion"X\n\x1cSetNetworkCredentialsRequest\x12\x12\n\x04type\x18\x01 \x01(\tR\x04type\x12\x12\n\x04ssid\x18\x02 \x01(\tR\x04ssid\x12\x10\n\x03psk\x18\x03 \x01(\tR\x03psk"\x1f\n\x1dSetNetworkCredentialsResponse"\\\n!SetSmartMachineCredentialsRequest\x127\n\x05cloud\x18\x01 \x01(\x0b2!.viam.provisioning.v1.CloudConfigR\x05cloud"$\n"SetSmartMachineCredentialsResponse"\x17\n\x15GetNetworkListRequest"W\n\x16GetNetworkListResponse\x12=\n\x08networks\x18\x01 \x03(\x0b2!.viam.provisioning.v1.NetworkInfoR\x08networks"m\n\x10ProvisioningInfo\x12\x1f\n\x0bfragment_id\x18\x01 \x01(\tR\nfragmentId\x12\x14\n\x05model\x18\x02 \x01(\tR\x05model\x12"\n\x0cmanufacturer\x18\x03 \x01(\tR\x0cmanufacturer"\xa6\x01\n\x0bNetworkInfo\x12\x12\n\x04type\x18\x01 \x01(\tR\x04type\x12\x12\n\x04ssid\x18\x02 \x01(\tR\x04ssid\x12\x1a\n\x08security\x18\x03 \x01(\tR\x08security\x12\x16\n\x06signal\x18\x04 \x01(\x05R\x06signal\x12\x1c\n\tconnected\x18\x05 \x01(\x08R\tconnected\x12\x1d\n\nlast_error\x18\x06 \x01(\tR\tlastError"V\n\x0bCloudConfig\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n\x06secret\x18\x02 \x01(\tR\x06secret\x12\x1f\n\x0bapp_address\x18\x03 \x01(\tR\nappAddress2\x8d\x05\n\x13ProvisioningService\x12\x80\x01\n\x15GetSmartMachineStatus\x122.viam.provisioning.v1.GetSmartMachineStatusRequest\x1a3.viam.provisioning.v1.GetSmartMachineStatusResponse\x12\x80\x01\n\x15SetNetworkCredentials\x122.viam.provisioning.v1.SetNetworkCredentialsRequest\x1a3.viam.provisioning.v1.SetNetworkCredentialsResponse\x12\x8f\x01\n\x1aSetSmartMachineCredentials\x127.viam.provisioning.v1.SetSmartMachineCredentialsRequest\x1a8.viam.provisioning.v1.SetSmartMachineCredentialsResponse\x12k\n\x0eGetNetworkList\x12+.viam.provisioning.v1.GetNetworkListRequest\x1a,.viam.provisioning.v1.GetNetworkListResponse\x12q\n\x10ExitProvisioning\x12-.viam.provisioning.v1.ExitProvisioningRequest\x1a..viam.provisioning.v1.ExitProvisioningResponseB!Z\x1fgo.viam.com/api/provisioning/v1b\x06proto3')
10
10
  _globals = globals()
@@ -4,7 +4,7 @@ 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, 3, '', 'robot/v1/robot.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'robot/v1/robot.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ...common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
10
10
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
@@ -4,7 +4,7 @@ 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, 3, '', 'service/datamanager/v1/data_manager.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/datamanager/v1/data_manager.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ....app.datasync.v1 import data_sync_pb2 as app_dot_datasync_dot_v1_dot_data__sync__pb2
10
10
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
@@ -4,7 +4,7 @@ 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, 3, '', 'service/discovery/v1/discovery.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/discovery/v1/discovery.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ....app.v1 import robot_pb2 as app_dot_v1_dot_robot__pb2
10
10
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
@@ -4,7 +4,7 @@ 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, 3, '', 'service/generic/v1/generic.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/generic/v1/generic.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
10
10
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
@@ -4,7 +4,7 @@ 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, 3, '', 'service/mlmodel/v1/mlmodel.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/mlmodel/v1/mlmodel.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
10
10
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
@@ -4,23 +4,47 @@ 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, 3, '', 'service/motion/v1/motion.proto')
7
+ _runtime_version.ValidateProtobufRuntimeVersion(_runtime_version.Domain.PUBLIC, 5, 29, 2, '', 'service/motion/v1/motion.proto')
8
8
  _sym_db = _symbol_database.Default()
9
9
  from ....common.v1 import common_pb2 as common_dot_v1_dot_common__pb2
10
10
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
11
11
  from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
12
12
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
13
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eservice/motion/v1/motion.proto\x12\x16viam.service.motion.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\x82\x03\n\x0bMoveRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0bdestination\x18\x02 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x0bdestination\x12C\n\x0ecomponent_name\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12@\n\x0bworld_state\x18\x04 \x01(\x0b2\x1a.viam.common.v1.WorldStateH\x00R\nworldState\x88\x01\x01\x12J\n\x0bconstraints\x18\x05 \x01(\x0b2#.viam.service.motion.v1.ConstraintsH\x01R\x0bconstraints\x88\x01\x01\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0e\n\x0c_world_stateB\x0e\n\x0c_constraints"(\n\x0cMoveResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success"\xd2\x03\n\x10MoveOnMapRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x126\n\x0bdestination\x18\x02 \x01(\x0b2\x14.viam.common.v1.PoseR\x0bdestination\x12C\n\x0ecomponent_name\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12H\n\x11slam_service_name\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x0fslamServiceName\x12c\n\x14motion_configuration\x18\x05 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x00R\x13motionConfiguration\x88\x01\x01\x126\n\tobstacles\x18\x06 \x03(\x0b2\x18.viam.common.v1.GeometryR\tobstacles\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x17\n\x15_motion_configuration"6\n\x11MoveOnMapResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\x8d\x01\n\x10ObstacleDetector\x12C\n\x0evision_service\x18\x01 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rvisionService\x124\n\x06camera\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x06camera"\x98\x04\n\x13MotionConfiguration\x12W\n\x12obstacle_detectors\x18\x01 \x03(\x0b2(.viam.service.motion.v1.ObstacleDetectorR\x11obstacleDetectors\x12F\n\x1dposition_polling_frequency_hz\x18\x02 \x01(\x01H\x00R\x1apositionPollingFrequencyHz\x88\x01\x01\x12F\n\x1dobstacle_polling_frequency_hz\x18\x03 \x01(\x01H\x01R\x1aobstaclePollingFrequencyHz\x88\x01\x01\x12-\n\x10plan_deviation_m\x18\x04 \x01(\x01H\x02R\x0eplanDeviationM\x88\x01\x01\x12,\n\x10linear_m_per_sec\x18\x05 \x01(\x01H\x03R\rlinearMPerSec\x88\x01\x01\x124\n\x14angular_degs_per_sec\x18\x06 \x01(\x01H\x04R\x11angularDegsPerSec\x88\x01\x01B \n\x1e_position_polling_frequency_hzB \n\x1e_obstacle_polling_frequency_hzB\x13\n\x11_plan_deviation_mB\x13\n\x11_linear_m_per_secB\x17\n\x15_angular_degs_per_sec"\xd4\x04\n\x12MoveOnGlobeRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x0bdestination\x18\x02 \x01(\x0b2\x18.viam.common.v1.GeoPointR\x0bdestination\x12\x1d\n\x07heading\x18\x03 \x01(\x01H\x00R\x07heading\x88\x01\x01\x12C\n\x0ecomponent_name\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12N\n\x14movement_sensor_name\x18\x05 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\x12movementSensorName\x129\n\tobstacles\x18\x06 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\tobstacles\x12c\n\x14motion_configuration\x18\x07 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x01R\x13motionConfiguration\x88\x01\x01\x12F\n\x10bounding_regions\x18\x08 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\x0fboundingRegions\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\n\n\x08_headingB\x17\n\x15_motion_configuration"8\n\x13MoveOnGlobeResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\x9d\x02\n\x0eGetPoseRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12+\n\x11destination_frame\x18\x03 \x01(\tR\x10destinationFrame\x12R\n\x17supplemental_transforms\x18\x04 \x03(\x0b2\x19.viam.common.v1.TransformR\x16supplementalTransforms\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra:\x02\x18\x01"F\n\x0fGetPoseResponse\x12/\n\x04pose\x18\x01 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x04pose:\x02\x18\x01"\x99\x01\n\x0fStopPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x12\n\x10StopPlanResponse"\x88\x01\n\x17ListPlanStatusesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x11only_active_plans\x18\x02 \x01(\x08R\x0fonlyActivePlans\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"y\n\x18ListPlanStatusesResponse\x12]\n\x16plan_statuses_with_ids\x18\x01 \x03(\x0b2(.viam.service.motion.v1.PlanStatusWithIDR\x13planStatusesWithIds"\xf7\x01\n\x0eGetPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12$\n\x0elast_plan_only\x18\x03 \x01(\x08R\x0clastPlanOnly\x12&\n\x0cexecution_id\x18\x04 \x01(\tH\x00R\x0bexecutionId\x88\x01\x01\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0f\n\r_execution_id"\xc1\x01\n\x0fGetPlanResponse\x12_\n\x18current_plan_with_status\x18\x01 \x01(\x0b2&.viam.service.motion.v1.PlanWithStatusR\x15currentPlanWithStatus\x12M\n\x0ereplan_history\x18\x02 \x03(\x0b2&.viam.service.motion.v1.PlanWithStatusR\rreplanHistory"\x9c\x03\n\x0bConstraints\x12U\n\x11linear_constraint\x18\x01 \x03(\x0b2(.viam.service.motion.v1.LinearConstraintR\x10linearConstraint\x12d\n\x16orientation_constraint\x18\x02 \x03(\x0b2-.viam.service.motion.v1.OrientationConstraintR\x15orientationConstraint\x12g\n\x17collision_specification\x18\x03 \x03(\x0b2..viam.service.motion.v1.CollisionSpecificationR\x16collisionSpecification\x12g\n\x17pseudolinear_constraint\x18\x04 \x03(\x0b2..viam.service.motion.v1.PseudolinearConstraintR\x16pseudolinearConstraint"\xbb\x01\n\x10LinearConstraint\x12/\n\x11line_tolerance_mm\x18\x01 \x01(\x02H\x00R\x0flineToleranceMm\x88\x01\x01\x12A\n\x1aorientation_tolerance_degs\x18\x02 \x01(\x02H\x01R\x18orientationToleranceDegs\x88\x01\x01B\x14\n\x12_line_tolerance_mmB\x1d\n\x1b_orientation_tolerance_degs"\xd3\x01\n\x16PseudolinearConstraint\x127\n\x15line_tolerance_factor\x18\x01 \x01(\x02H\x00R\x13lineToleranceFactor\x88\x01\x01\x12E\n\x1corientation_tolerance_factor\x18\x02 \x01(\x02H\x01R\x1aorientationToleranceFactor\x88\x01\x01B\x18\n\x16_line_tolerance_factorB\x1f\n\x1d_orientation_tolerance_factor"y\n\x15OrientationConstraint\x12A\n\x1aorientation_tolerance_degs\x18\x01 \x01(\x02H\x00R\x18orientationToleranceDegs\x88\x01\x01B\x1d\n\x1b_orientation_tolerance_degs"\xc1\x01\n\x16CollisionSpecification\x12]\n\x06allows\x18\x01 \x03(\x0b2E.viam.service.motion.v1.CollisionSpecification.AllowedFrameCollisionsR\x06allows\x1aH\n\x16AllowedFrameCollisions\x12\x16\n\x06frame1\x18\x01 \x01(\tR\x06frame1\x12\x16\n\x06frame2\x18\x02 \x01(\tR\x06frame2"\xc9\x01\n\x0ePlanWithStatus\x120\n\x04plan\x18\x01 \x01(\x0b2\x1c.viam.service.motion.v1.PlanR\x04plan\x12:\n\x06status\x18\x02 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12I\n\x0estatus_history\x18\x03 \x03(\x0b2".viam.service.motion.v1.PlanStatusR\rstatusHistory"\xcf\x01\n\x10PlanStatusWithID\x12\x17\n\x07plan_id\x18\x01 \x01(\tR\x06planId\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x12:\n\x06status\x18\x04 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status"\xa7\x01\n\nPlanStatus\x127\n\x05state\x18\x01 \x01(\x0e2!.viam.service.motion.v1.PlanStateR\x05state\x128\n\ttimestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\ttimestamp\x12\x1b\n\x06reason\x18\x03 \x01(\tH\x00R\x06reason\x88\x01\x01B\t\n\x07_reason"\xb6\x01\n\x04Plan\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12C\n\x0ecomponent_name\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameR\rcomponentName\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x126\n\x05steps\x18\x04 \x03(\x0b2 .viam.service.motion.v1.PlanStepR\x05steps"\xab\x01\n\x08PlanStep\x12>\n\x04step\x18\x01 \x03(\x0b2*.viam.service.motion.v1.PlanStep.StepEntryR\x04step\x1a_\n\tStepEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b2&.viam.service.motion.v1.ComponentStateR\x05value:\x028\x01":\n\x0eComponentState\x12(\n\x04pose\x18\x01 \x01(\x0b2\x14.viam.common.v1.PoseR\x04pose*\x8c\x01\n\tPlanState\x12\x1a\n\x16PLAN_STATE_UNSPECIFIED\x10\x00\x12\x1a\n\x16PLAN_STATE_IN_PROGRESS\x10\x01\x12\x16\n\x12PLAN_STATE_STOPPED\x10\x02\x12\x18\n\x14PLAN_STATE_SUCCEEDED\x10\x03\x12\x15\n\x11PLAN_STATE_FAILED\x10\x042\xcc\t\n\rMotionService\x12\x82\x01\n\x04Move\x12#.viam.service.motion.v1.MoveRequest\x1a$.viam.service.motion.v1.MoveResponse"/\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move\x12\x98\x01\n\tMoveOnMap\x12(.viam.service.motion.v1.MoveOnMapRequest\x1a).viam.service.motion.v1.MoveOnMapResponse"6\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map\x12\xa0\x01\n\x0bMoveOnGlobe\x12*.viam.service.motion.v1.MoveOnGlobeRequest\x1a+.viam.service.motion.v1.MoveOnGlobeResponse"8\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe\x12\x8e\x01\n\x07GetPose\x12&.viam.service.motion.v1.GetPoseRequest\x1a\'.viam.service.motion.v1.GetPoseResponse"2\x88\x02\x01\x82\xd3\xe4\x93\x02)\x12\'/viam/api/v1/service/motion/{name}/pose\x12\x93\x01\n\x08StopPlan\x12\'.viam.service.motion.v1.StopPlanRequest\x1a(.viam.service.motion.v1.StopPlanResponse"4\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan\x12\xb4\x01\n\x10ListPlanStatuses\x12/.viam.service.motion.v1.ListPlanStatusesRequest\x1a0.viam.service.motion.v1.ListPlanStatusesResponse"=\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses\x12\x8f\x01\n\x07GetPlan\x12&.viam.service.motion.v1.GetPlanRequest\x1a\'.viam.service.motion.v1.GetPlanResponse"3\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan\x12\x87\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"5\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_commandB?\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1b\x06proto3')
13
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1eservice/motion/v1/motion.proto\x12\x16viam.service.motion.v1\x1a\x16common/v1/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\xc2\x03\n\x0bMoveRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0bdestination\x18\x02 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x0bdestination\x12\\\n\x19component_name_deprecated\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12@\n\x0bworld_state\x18\x04 \x01(\x0b2\x1a.viam.common.v1.WorldStateH\x00R\nworldState\x88\x01\x01\x12J\n\x0bconstraints\x18\x05 \x01(\x0b2#.viam.service.motion.v1.ConstraintsH\x01R\x0bconstraints\x88\x01\x01\x12%\n\x0ecomponent_name\x18\x06 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0e\n\x0c_world_stateB\x0e\n\x0c_constraints"(\n\x0cMoveResponse\x12\x18\n\x07success\x18\x01 \x01(\x08R\x07success"\xd7\x04\n\x10MoveOnMapRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x126\n\x0bdestination\x18\x02 \x01(\x0b2\x14.viam.common.v1.PoseR\x0bdestination\x12\\\n\x19component_name_deprecated\x18\x03 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12a\n\x1cslam_service_name_deprecated\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x19slamServiceNameDeprecated\x12c\n\x14motion_configuration\x18\x05 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x00R\x13motionConfiguration\x88\x01\x01\x126\n\tobstacles\x18\x06 \x03(\x0b2\x18.viam.common.v1.GeometryR\tobstacles\x12%\n\x0ecomponent_name\x18\x07 \x01(\tR\rcomponentName\x12*\n\x11slam_service_name\x18\x08 \x01(\tR\x0fslamServiceName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x17\n\x15_motion_configuration"6\n\x11MoveOnMapResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\xfe\x01\n\x10ObstacleDetector\x12\\\n\x19vision_service_deprecated\x18\x01 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17visionServiceDeprecated\x12M\n\x11camera_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x10cameraDeprecated\x12%\n\x0evision_service\x18\x03 \x01(\tR\rvisionService\x12\x16\n\x06camera\x18\x04 \x01(\tR\x06camera"\x98\x04\n\x13MotionConfiguration\x12W\n\x12obstacle_detectors\x18\x01 \x03(\x0b2(.viam.service.motion.v1.ObstacleDetectorR\x11obstacleDetectors\x12F\n\x1dposition_polling_frequency_hz\x18\x02 \x01(\x01H\x00R\x1apositionPollingFrequencyHz\x88\x01\x01\x12F\n\x1dobstacle_polling_frequency_hz\x18\x03 \x01(\x01H\x01R\x1aobstaclePollingFrequencyHz\x88\x01\x01\x12-\n\x10plan_deviation_m\x18\x04 \x01(\x01H\x02R\x0eplanDeviationM\x88\x01\x01\x12,\n\x10linear_m_per_sec\x18\x05 \x01(\x01H\x03R\rlinearMPerSec\x88\x01\x01\x124\n\x14angular_degs_per_sec\x18\x06 \x01(\x01H\x04R\x11angularDegsPerSec\x88\x01\x01B \n\x1e_position_polling_frequency_hzB \n\x1e_obstacle_polling_frequency_hzB\x13\n\x11_plan_deviation_mB\x13\n\x11_linear_m_per_secB\x17\n\x15_angular_degs_per_sec"\xdf\x05\n\x12MoveOnGlobeRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x0bdestination\x18\x02 \x01(\x0b2\x18.viam.common.v1.GeoPointR\x0bdestination\x12\x1d\n\x07heading\x18\x03 \x01(\x01H\x00R\x07heading\x88\x01\x01\x12\\\n\x19component_name_deprecated\x18\x04 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12g\n\x1fmovement_sensor_name_deprecated\x18\x05 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x1cmovementSensorNameDeprecated\x129\n\tobstacles\x18\x06 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\tobstacles\x12c\n\x14motion_configuration\x18\x07 \x01(\x0b2+.viam.service.motion.v1.MotionConfigurationH\x01R\x13motionConfiguration\x88\x01\x01\x12F\n\x10bounding_regions\x18\x08 \x03(\x0b2\x1b.viam.common.v1.GeoGeometryR\x0fboundingRegions\x12%\n\x0ecomponent_name\x18\t \x01(\tR\rcomponentName\x120\n\x14movement_sensor_name\x18\n \x01(\tR\x12movementSensorName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\n\n\x08_headingB\x17\n\x15_motion_configuration"8\n\x13MoveOnGlobeResponse\x12!\n\x0cexecution_id\x18\x01 \x01(\tR\x0bexecutionId"\xdd\x02\n\x0eGetPoseRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12+\n\x11destination_frame\x18\x03 \x01(\tR\x10destinationFrame\x12R\n\x17supplemental_transforms\x18\x04 \x03(\x0b2\x19.viam.common.v1.TransformR\x16supplementalTransforms\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra:\x02\x18\x01"F\n\x0fGetPoseResponse\x12/\n\x04pose\x18\x01 \x01(\x0b2\x1b.viam.common.v1.PoseInFrameR\x04pose:\x02\x18\x01"\xd9\x01\n\x0fStopPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12%\n\x0ecomponent_name\x18\x03 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"\x12\n\x10StopPlanResponse"\x88\x01\n\x17ListPlanStatusesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12*\n\x11only_active_plans\x18\x02 \x01(\x08R\x0fonlyActivePlans\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extra"y\n\x18ListPlanStatusesResponse\x12]\n\x16plan_statuses_with_ids\x18\x01 \x03(\x0b2(.viam.service.motion.v1.PlanStatusWithIDR\x13planStatusesWithIds"\xb7\x02\n\x0eGetPlanRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12$\n\x0elast_plan_only\x18\x03 \x01(\x08R\x0clastPlanOnly\x12&\n\x0cexecution_id\x18\x04 \x01(\tH\x00R\x0bexecutionId\x88\x01\x01\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName\x12-\n\x05extra\x18c \x01(\x0b2\x17.google.protobuf.StructR\x05extraB\x0f\n\r_execution_id"\xc1\x01\n\x0fGetPlanResponse\x12_\n\x18current_plan_with_status\x18\x01 \x01(\x0b2&.viam.service.motion.v1.PlanWithStatusR\x15currentPlanWithStatus\x12M\n\x0ereplan_history\x18\x02 \x03(\x0b2&.viam.service.motion.v1.PlanWithStatusR\rreplanHistory"\x9c\x03\n\x0bConstraints\x12U\n\x11linear_constraint\x18\x01 \x03(\x0b2(.viam.service.motion.v1.LinearConstraintR\x10linearConstraint\x12d\n\x16orientation_constraint\x18\x02 \x03(\x0b2-.viam.service.motion.v1.OrientationConstraintR\x15orientationConstraint\x12g\n\x17collision_specification\x18\x03 \x03(\x0b2..viam.service.motion.v1.CollisionSpecificationR\x16collisionSpecification\x12g\n\x17pseudolinear_constraint\x18\x04 \x03(\x0b2..viam.service.motion.v1.PseudolinearConstraintR\x16pseudolinearConstraint"\xbb\x01\n\x10LinearConstraint\x12/\n\x11line_tolerance_mm\x18\x01 \x01(\x02H\x00R\x0flineToleranceMm\x88\x01\x01\x12A\n\x1aorientation_tolerance_degs\x18\x02 \x01(\x02H\x01R\x18orientationToleranceDegs\x88\x01\x01B\x14\n\x12_line_tolerance_mmB\x1d\n\x1b_orientation_tolerance_degs"\xd3\x01\n\x16PseudolinearConstraint\x127\n\x15line_tolerance_factor\x18\x01 \x01(\x02H\x00R\x13lineToleranceFactor\x88\x01\x01\x12E\n\x1corientation_tolerance_factor\x18\x02 \x01(\x02H\x01R\x1aorientationToleranceFactor\x88\x01\x01B\x18\n\x16_line_tolerance_factorB\x1f\n\x1d_orientation_tolerance_factor"y\n\x15OrientationConstraint\x12A\n\x1aorientation_tolerance_degs\x18\x01 \x01(\x02H\x00R\x18orientationToleranceDegs\x88\x01\x01B\x1d\n\x1b_orientation_tolerance_degs"\xc1\x01\n\x16CollisionSpecification\x12]\n\x06allows\x18\x01 \x03(\x0b2E.viam.service.motion.v1.CollisionSpecification.AllowedFrameCollisionsR\x06allows\x1aH\n\x16AllowedFrameCollisions\x12\x16\n\x06frame1\x18\x01 \x01(\tR\x06frame1\x12\x16\n\x06frame2\x18\x02 \x01(\tR\x06frame2"\xc9\x01\n\x0ePlanWithStatus\x120\n\x04plan\x18\x01 \x01(\x0b2\x1c.viam.service.motion.v1.PlanR\x04plan\x12:\n\x06status\x18\x02 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12I\n\x0estatus_history\x18\x03 \x03(\x0b2".viam.service.motion.v1.PlanStatusR\rstatusHistory"\x8f\x02\n\x10PlanStatusWithID\x12\x17\n\x07plan_id\x18\x01 \x01(\tR\x06planId\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x12:\n\x06status\x18\x04 \x01(\x0b2".viam.service.motion.v1.PlanStatusR\x06status\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName"\xa7\x01\n\nPlanStatus\x127\n\x05state\x18\x01 \x01(\x0e2!.viam.service.motion.v1.PlanStateR\x05state\x128\n\ttimestamp\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\ttimestamp\x12\x1b\n\x06reason\x18\x03 \x01(\tH\x00R\x06reason\x88\x01\x01B\t\n\x07_reason"\xf6\x01\n\x04Plan\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\\\n\x19component_name_deprecated\x18\x02 \x01(\x0b2\x1c.viam.common.v1.ResourceNameB\x02\x18\x01R\x17componentNameDeprecated\x12!\n\x0cexecution_id\x18\x03 \x01(\tR\x0bexecutionId\x126\n\x05steps\x18\x04 \x03(\x0b2 .viam.service.motion.v1.PlanStepR\x05steps\x12%\n\x0ecomponent_name\x18\x05 \x01(\tR\rcomponentName"\xab\x01\n\x08PlanStep\x12>\n\x04step\x18\x01 \x03(\x0b2*.viam.service.motion.v1.PlanStep.StepEntryR\x04step\x1a_\n\tStepEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b2&.viam.service.motion.v1.ComponentStateR\x05value:\x028\x01":\n\x0eComponentState\x12(\n\x04pose\x18\x01 \x01(\x0b2\x14.viam.common.v1.PoseR\x04pose*\x8c\x01\n\tPlanState\x12\x1a\n\x16PLAN_STATE_UNSPECIFIED\x10\x00\x12\x1a\n\x16PLAN_STATE_IN_PROGRESS\x10\x01\x12\x16\n\x12PLAN_STATE_STOPPED\x10\x02\x12\x18\n\x14PLAN_STATE_SUCCEEDED\x10\x03\x12\x15\n\x11PLAN_STATE_FAILED\x10\x042\xcc\t\n\rMotionService\x12\x82\x01\n\x04Move\x12#.viam.service.motion.v1.MoveRequest\x1a$.viam.service.motion.v1.MoveResponse"/\x82\xd3\xe4\x93\x02)"\'/viam/api/v1/service/motion/{name}/move\x12\x98\x01\n\tMoveOnMap\x12(.viam.service.motion.v1.MoveOnMapRequest\x1a).viam.service.motion.v1.MoveOnMapResponse"6\x82\xd3\xe4\x93\x020"./viam/api/v1/service/motion/{name}/move_on_map\x12\xa0\x01\n\x0bMoveOnGlobe\x12*.viam.service.motion.v1.MoveOnGlobeRequest\x1a+.viam.service.motion.v1.MoveOnGlobeResponse"8\x82\xd3\xe4\x93\x022"0/viam/api/v1/service/motion/{name}/move_on_globe\x12\x8e\x01\n\x07GetPose\x12&.viam.service.motion.v1.GetPoseRequest\x1a\'.viam.service.motion.v1.GetPoseResponse"2\x88\x02\x01\x82\xd3\xe4\x93\x02)\x12\'/viam/api/v1/service/motion/{name}/pose\x12\x93\x01\n\x08StopPlan\x12\'.viam.service.motion.v1.StopPlanRequest\x1a(.viam.service.motion.v1.StopPlanResponse"4\x82\xd3\xe4\x93\x02.\x1a,/viam/api/v1/service/motion/{name}/stop_plan\x12\xb4\x01\n\x10ListPlanStatuses\x12/.viam.service.motion.v1.ListPlanStatusesRequest\x1a0.viam.service.motion.v1.ListPlanStatusesResponse"=\x82\xd3\xe4\x93\x027\x125/viam/api/v1/service/motion/{name}/list_plan_statuses\x12\x8f\x01\n\x07GetPlan\x12&.viam.service.motion.v1.GetPlanRequest\x1a\'.viam.service.motion.v1.GetPlanResponse"3\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan\x12\x87\x01\n\tDoCommand\x12 .viam.common.v1.DoCommandRequest\x1a!.viam.common.v1.DoCommandResponse"5\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_commandB?\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1b\x06proto3')
14
14
  _globals = globals()
15
15
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
16
16
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'service.motion.v1.motion_pb2', _globals)
17
17
  if not _descriptor._USE_C_DESCRIPTORS:
18
18
  _globals['DESCRIPTOR']._loaded_options = None
19
19
  _globals['DESCRIPTOR']._serialized_options = b'\n\x1acom.viam.service.motion.v1Z!go.viam.com/api/service/motion/v1'
20
+ _globals['_MOVEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
21
+ _globals['_MOVEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
22
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
23
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
24
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['slam_service_name_deprecated']._loaded_options = None
25
+ _globals['_MOVEONMAPREQUEST'].fields_by_name['slam_service_name_deprecated']._serialized_options = b'\x18\x01'
26
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['vision_service_deprecated']._loaded_options = None
27
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['vision_service_deprecated']._serialized_options = b'\x18\x01'
28
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['camera_deprecated']._loaded_options = None
29
+ _globals['_OBSTACLEDETECTOR'].fields_by_name['camera_deprecated']._serialized_options = b'\x18\x01'
30
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
31
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
32
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['movement_sensor_name_deprecated']._loaded_options = None
33
+ _globals['_MOVEONGLOBEREQUEST'].fields_by_name['movement_sensor_name_deprecated']._serialized_options = b'\x18\x01'
34
+ _globals['_GETPOSEREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
35
+ _globals['_GETPOSEREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
20
36
  _globals['_GETPOSEREQUEST']._loaded_options = None
21
37
  _globals['_GETPOSEREQUEST']._serialized_options = b'\x18\x01'
22
38
  _globals['_GETPOSERESPONSE']._loaded_options = None
23
39
  _globals['_GETPOSERESPONSE']._serialized_options = b'\x18\x01'
40
+ _globals['_STOPPLANREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
41
+ _globals['_STOPPLANREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
42
+ _globals['_GETPLANREQUEST'].fields_by_name['component_name_deprecated']._loaded_options = None
43
+ _globals['_GETPLANREQUEST'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
44
+ _globals['_PLANSTATUSWITHID'].fields_by_name['component_name_deprecated']._loaded_options = None
45
+ _globals['_PLANSTATUSWITHID'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
46
+ _globals['_PLAN'].fields_by_name['component_name_deprecated']._loaded_options = None
47
+ _globals['_PLAN'].fields_by_name['component_name_deprecated']._serialized_options = b'\x18\x01'
24
48
  _globals['_PLANSTEP_STEPENTRY']._loaded_options = None
25
49
  _globals['_PLANSTEP_STEPENTRY']._serialized_options = b'8\x01'
26
50
  _globals['_MOTIONSERVICE'].methods_by_name['Move']._loaded_options = None
@@ -39,65 +63,65 @@ if not _descriptor._USE_C_DESCRIPTORS:
39
63
  _globals['_MOTIONSERVICE'].methods_by_name['GetPlan']._serialized_options = b'\x82\xd3\xe4\x93\x02-\x12+/viam/api/v1/service/motion/{name}/get_plan'
40
64
  _globals['_MOTIONSERVICE'].methods_by_name['DoCommand']._loaded_options = None
41
65
  _globals['_MOTIONSERVICE'].methods_by_name['DoCommand']._serialized_options = b'\x82\xd3\xe4\x93\x02/"-/viam/api/v1/service/motion/{name}/do_command'
42
- _globals['_PLANSTATE']._serialized_start = 5857
43
- _globals['_PLANSTATE']._serialized_end = 5997
66
+ _globals['_PLANSTATE']._serialized_start = 6626
67
+ _globals['_PLANSTATE']._serialized_end = 6766
44
68
  _globals['_MOVEREQUEST']._serialized_start = 176
45
- _globals['_MOVEREQUEST']._serialized_end = 562
46
- _globals['_MOVERESPONSE']._serialized_start = 564
47
- _globals['_MOVERESPONSE']._serialized_end = 604
48
- _globals['_MOVEONMAPREQUEST']._serialized_start = 607
49
- _globals['_MOVEONMAPREQUEST']._serialized_end = 1073
50
- _globals['_MOVEONMAPRESPONSE']._serialized_start = 1075
51
- _globals['_MOVEONMAPRESPONSE']._serialized_end = 1129
52
- _globals['_OBSTACLEDETECTOR']._serialized_start = 1132
53
- _globals['_OBSTACLEDETECTOR']._serialized_end = 1273
54
- _globals['_MOTIONCONFIGURATION']._serialized_start = 1276
55
- _globals['_MOTIONCONFIGURATION']._serialized_end = 1812
56
- _globals['_MOVEONGLOBEREQUEST']._serialized_start = 1815
57
- _globals['_MOVEONGLOBEREQUEST']._serialized_end = 2411
58
- _globals['_MOVEONGLOBERESPONSE']._serialized_start = 2413
59
- _globals['_MOVEONGLOBERESPONSE']._serialized_end = 2469
60
- _globals['_GETPOSEREQUEST']._serialized_start = 2472
61
- _globals['_GETPOSEREQUEST']._serialized_end = 2757
62
- _globals['_GETPOSERESPONSE']._serialized_start = 2759
63
- _globals['_GETPOSERESPONSE']._serialized_end = 2829
64
- _globals['_STOPPLANREQUEST']._serialized_start = 2832
65
- _globals['_STOPPLANREQUEST']._serialized_end = 2985
66
- _globals['_STOPPLANRESPONSE']._serialized_start = 2987
67
- _globals['_STOPPLANRESPONSE']._serialized_end = 3005
68
- _globals['_LISTPLANSTATUSESREQUEST']._serialized_start = 3008
69
- _globals['_LISTPLANSTATUSESREQUEST']._serialized_end = 3144
70
- _globals['_LISTPLANSTATUSESRESPONSE']._serialized_start = 3146
71
- _globals['_LISTPLANSTATUSESRESPONSE']._serialized_end = 3267
72
- _globals['_GETPLANREQUEST']._serialized_start = 3270
73
- _globals['_GETPLANREQUEST']._serialized_end = 3517
74
- _globals['_GETPLANRESPONSE']._serialized_start = 3520
75
- _globals['_GETPLANRESPONSE']._serialized_end = 3713
76
- _globals['_CONSTRAINTS']._serialized_start = 3716
77
- _globals['_CONSTRAINTS']._serialized_end = 4128
78
- _globals['_LINEARCONSTRAINT']._serialized_start = 4131
79
- _globals['_LINEARCONSTRAINT']._serialized_end = 4318
80
- _globals['_PSEUDOLINEARCONSTRAINT']._serialized_start = 4321
81
- _globals['_PSEUDOLINEARCONSTRAINT']._serialized_end = 4532
82
- _globals['_ORIENTATIONCONSTRAINT']._serialized_start = 4534
83
- _globals['_ORIENTATIONCONSTRAINT']._serialized_end = 4655
84
- _globals['_COLLISIONSPECIFICATION']._serialized_start = 4658
85
- _globals['_COLLISIONSPECIFICATION']._serialized_end = 4851
86
- _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_start = 4779
87
- _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_end = 4851
88
- _globals['_PLANWITHSTATUS']._serialized_start = 4854
89
- _globals['_PLANWITHSTATUS']._serialized_end = 5055
90
- _globals['_PLANSTATUSWITHID']._serialized_start = 5058
91
- _globals['_PLANSTATUSWITHID']._serialized_end = 5265
92
- _globals['_PLANSTATUS']._serialized_start = 5268
93
- _globals['_PLANSTATUS']._serialized_end = 5435
94
- _globals['_PLAN']._serialized_start = 5438
95
- _globals['_PLAN']._serialized_end = 5620
96
- _globals['_PLANSTEP']._serialized_start = 5623
97
- _globals['_PLANSTEP']._serialized_end = 5794
98
- _globals['_PLANSTEP_STEPENTRY']._serialized_start = 5699
99
- _globals['_PLANSTEP_STEPENTRY']._serialized_end = 5794
100
- _globals['_COMPONENTSTATE']._serialized_start = 5796
101
- _globals['_COMPONENTSTATE']._serialized_end = 5854
102
- _globals['_MOTIONSERVICE']._serialized_start = 6000
103
- _globals['_MOTIONSERVICE']._serialized_end = 7228
69
+ _globals['_MOVEREQUEST']._serialized_end = 626
70
+ _globals['_MOVERESPONSE']._serialized_start = 628
71
+ _globals['_MOVERESPONSE']._serialized_end = 668
72
+ _globals['_MOVEONMAPREQUEST']._serialized_start = 671
73
+ _globals['_MOVEONMAPREQUEST']._serialized_end = 1270
74
+ _globals['_MOVEONMAPRESPONSE']._serialized_start = 1272
75
+ _globals['_MOVEONMAPRESPONSE']._serialized_end = 1326
76
+ _globals['_OBSTACLEDETECTOR']._serialized_start = 1329
77
+ _globals['_OBSTACLEDETECTOR']._serialized_end = 1583
78
+ _globals['_MOTIONCONFIGURATION']._serialized_start = 1586
79
+ _globals['_MOTIONCONFIGURATION']._serialized_end = 2122
80
+ _globals['_MOVEONGLOBEREQUEST']._serialized_start = 2125
81
+ _globals['_MOVEONGLOBEREQUEST']._serialized_end = 2860
82
+ _globals['_MOVEONGLOBERESPONSE']._serialized_start = 2862
83
+ _globals['_MOVEONGLOBERESPONSE']._serialized_end = 2918
84
+ _globals['_GETPOSEREQUEST']._serialized_start = 2921
85
+ _globals['_GETPOSEREQUEST']._serialized_end = 3270
86
+ _globals['_GETPOSERESPONSE']._serialized_start = 3272
87
+ _globals['_GETPOSERESPONSE']._serialized_end = 3342
88
+ _globals['_STOPPLANREQUEST']._serialized_start = 3345
89
+ _globals['_STOPPLANREQUEST']._serialized_end = 3562
90
+ _globals['_STOPPLANRESPONSE']._serialized_start = 3564
91
+ _globals['_STOPPLANRESPONSE']._serialized_end = 3582
92
+ _globals['_LISTPLANSTATUSESREQUEST']._serialized_start = 3585
93
+ _globals['_LISTPLANSTATUSESREQUEST']._serialized_end = 3721
94
+ _globals['_LISTPLANSTATUSESRESPONSE']._serialized_start = 3723
95
+ _globals['_LISTPLANSTATUSESRESPONSE']._serialized_end = 3844
96
+ _globals['_GETPLANREQUEST']._serialized_start = 3847
97
+ _globals['_GETPLANREQUEST']._serialized_end = 4158
98
+ _globals['_GETPLANRESPONSE']._serialized_start = 4161
99
+ _globals['_GETPLANRESPONSE']._serialized_end = 4354
100
+ _globals['_CONSTRAINTS']._serialized_start = 4357
101
+ _globals['_CONSTRAINTS']._serialized_end = 4769
102
+ _globals['_LINEARCONSTRAINT']._serialized_start = 4772
103
+ _globals['_LINEARCONSTRAINT']._serialized_end = 4959
104
+ _globals['_PSEUDOLINEARCONSTRAINT']._serialized_start = 4962
105
+ _globals['_PSEUDOLINEARCONSTRAINT']._serialized_end = 5173
106
+ _globals['_ORIENTATIONCONSTRAINT']._serialized_start = 5175
107
+ _globals['_ORIENTATIONCONSTRAINT']._serialized_end = 5296
108
+ _globals['_COLLISIONSPECIFICATION']._serialized_start = 5299
109
+ _globals['_COLLISIONSPECIFICATION']._serialized_end = 5492
110
+ _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_start = 5420
111
+ _globals['_COLLISIONSPECIFICATION_ALLOWEDFRAMECOLLISIONS']._serialized_end = 5492
112
+ _globals['_PLANWITHSTATUS']._serialized_start = 5495
113
+ _globals['_PLANWITHSTATUS']._serialized_end = 5696
114
+ _globals['_PLANSTATUSWITHID']._serialized_start = 5699
115
+ _globals['_PLANSTATUSWITHID']._serialized_end = 5970
116
+ _globals['_PLANSTATUS']._serialized_start = 5973
117
+ _globals['_PLANSTATUS']._serialized_end = 6140
118
+ _globals['_PLAN']._serialized_start = 6143
119
+ _globals['_PLAN']._serialized_end = 6389
120
+ _globals['_PLANSTEP']._serialized_start = 6392
121
+ _globals['_PLANSTEP']._serialized_end = 6563
122
+ _globals['_PLANSTEP_STEPENTRY']._serialized_start = 6468
123
+ _globals['_PLANSTEP_STEPENTRY']._serialized_end = 6563
124
+ _globals['_COMPONENTSTATE']._serialized_start = 6565
125
+ _globals['_COMPONENTSTATE']._serialized_end = 6623
126
+ _globals['_MOTIONSERVICE']._serialized_start = 6769
127
+ _globals['_MOTIONSERVICE']._serialized_end = 7997