bosdyn-api 4.0.3__py3-none-any.whl → 4.1.0__py3-none-any.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.
- bosdyn/api/autowalk/walks_pb2.py +82 -70
- bosdyn/api/data_acquisition_store_pb2.py +88 -57
- bosdyn/api/data_acquisition_store_service_pb2.py +2 -2
- bosdyn/api/data_acquisition_store_service_pb2_grpc.py +35 -0
- bosdyn/api/estop_service_pb2_grpc.py +6 -3
- bosdyn/api/geometry_pb2.py +57 -37
- bosdyn/api/gps/registration_service_pb2_grpc.py +6 -6
- bosdyn/api/graph_nav/area_callback_data_pb2.py +4 -2
- bosdyn/api/graph_nav/area_callback_pb2.py +72 -69
- bosdyn/api/graph_nav/graph_nav_pb2.py +168 -133
- bosdyn/api/graph_nav/graph_nav_service_pb2.py +2 -2
- bosdyn/api/graph_nav/graph_nav_service_pb2_grpc.py +90 -11
- bosdyn/api/graph_nav/lost_detection_pb2.py +35 -0
- bosdyn/api/graph_nav/lost_detection_pb2_grpc.py +4 -0
- bosdyn/api/graph_nav/map_pb2.py +90 -65
- bosdyn/api/graph_nav/map_processing_pb2.py +53 -42
- bosdyn/api/graph_nav/recording_service_pb2_grpc.py +6 -6
- bosdyn/api/graph_nav/visual_features_pb2.py +129 -0
- bosdyn/api/graph_nav/visual_features_pb2_grpc.py +4 -0
- bosdyn/api/image_pb2.py +68 -24
- bosdyn/api/license_service_pb2_grpc.py +2 -2
- bosdyn/api/local_grid_pb2.py +18 -18
- bosdyn/api/log_status/log_status_service_pb2_grpc.py +3 -3
- bosdyn/api/mission/mission_pb2.py +72 -71
- bosdyn/api/mission/mission_service_pb2_grpc.py +16 -12
- bosdyn/api/mission/nodes_pb2.py +141 -109
- bosdyn/api/mission/util_pb2.py +26 -15
- bosdyn/api/network_compute_bridge_service_pb2_grpc.py +3 -3
- bosdyn/api/point_cloud_service_pb2_grpc.py +2 -2
- bosdyn/api/robot_state_pb2.py +121 -108
- bosdyn/api/robot_state_service_pb2_grpc.py +1 -1
- bosdyn/api/spot/choreography_params_pb2.py +115 -82
- bosdyn/api/spot/choreography_sequence_pb2.py +62 -62
- bosdyn/api/spot/choreography_service_pb2_grpc.py +2 -2
- bosdyn/api/spot/robot_command_pb2.py +29 -26
- bosdyn/api/spot/spot_check_pb2.py +1 -47
- bosdyn/api/spot/spot_check_service_pb2.py +2 -2
- bosdyn/api/spot/spot_check_service_pb2_grpc.py +0 -68
- bosdyn/api/spot_cam/service_pb2_grpc.py +3 -3
- bosdyn/api/world_object_pb2.py +40 -40
- {bosdyn_api-4.0.3.dist-info → bosdyn_api-4.1.0.dist-info}/METADATA +6 -6
- {bosdyn_api-4.0.3.dist-info → bosdyn_api-4.1.0.dist-info}/RECORD +44 -40
- {bosdyn_api-4.0.3.dist-info → bosdyn_api-4.1.0.dist-info}/WHEEL +0 -0
- {bosdyn_api-4.0.3.dist-info → bosdyn_api-4.1.0.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,8 @@ from bosdyn.api.mission import mission_pb2 as bosdyn_dot_api_dot_mission_dot_mis
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class MissionServiceStub(object):
|
|
10
|
-
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
10
|
+
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
11
|
+
trees.
|
|
11
12
|
"""
|
|
12
13
|
|
|
13
14
|
def __init__(self, channel):
|
|
@@ -84,7 +85,8 @@ class MissionServiceStub(object):
|
|
|
84
85
|
|
|
85
86
|
|
|
86
87
|
class MissionServiceServicer(object):
|
|
87
|
-
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
88
|
+
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
89
|
+
trees.
|
|
88
90
|
"""
|
|
89
91
|
|
|
90
92
|
def LoadMission(self, request, context):
|
|
@@ -97,10 +99,11 @@ class MissionServiceServicer(object):
|
|
|
97
99
|
raise NotImplementedError('Method not implemented!')
|
|
98
100
|
|
|
99
101
|
def LoadMissionAsChunks(self, request_iterator, context):
|
|
100
|
-
"""This RPC may be deprecated in the future, please use LoadMissionAsChunks2 instead.
|
|
101
|
-
method for loading large missions to the robot because only the request is a
|
|
102
|
-
chunks are deserialized into a LoadMissionRequest. NOTE:
|
|
103
|
-
because the response may exceed the maximum
|
|
102
|
+
"""This RPC may be deprecated in the future, please use LoadMissionAsChunks2 instead.
|
|
103
|
+
Non-preferred method for loading large missions to the robot because only the request is a
|
|
104
|
+
streaming RPC. The data chunks are deserialized into a LoadMissionRequest. NOTE:
|
|
105
|
+
LoadMissionAsChunks may fail for large missions because the response may exceed the maximum
|
|
106
|
+
message size.
|
|
104
107
|
"""
|
|
105
108
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
106
109
|
context.set_details('Method not implemented!')
|
|
@@ -155,17 +158,17 @@ class MissionServiceServicer(object):
|
|
|
155
158
|
|
|
156
159
|
def GetInfo(self, request, context):
|
|
157
160
|
"""RPCs for getting static information regarding the mission. Used to interpret mission state.
|
|
158
|
-
NOTE: GetInfo may fail for large missions because the response may exceed the maximum message
|
|
159
|
-
Use GetInfoAsChunks instead.
|
|
161
|
+
NOTE: GetInfo may fail for large missions because the response may exceed the maximum message
|
|
162
|
+
size. Use GetInfoAsChunks instead.
|
|
160
163
|
"""
|
|
161
164
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
162
165
|
context.set_details('Method not implemented!')
|
|
163
166
|
raise NotImplementedError('Method not implemented!')
|
|
164
167
|
|
|
165
168
|
def GetInfoAsChunks(self, request, context):
|
|
166
|
-
"""Preferred RPC for getting the status of large missions from the robot because the response is
|
|
167
|
-
streaming RPC, allowing you to break the message up into multiple streamed
|
|
168
|
-
deserialized into a GetInfoResponse.
|
|
169
|
+
"""Preferred RPC for getting the status of large missions from the robot because the response is
|
|
170
|
+
a streaming streaming RPC, allowing you to break the message up into multiple streamed
|
|
171
|
+
messages. THe data chunks are deserialized into a GetInfoResponse.
|
|
169
172
|
"""
|
|
170
173
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
171
174
|
context.set_details('Method not implemented!')
|
|
@@ -270,7 +273,8 @@ def add_MissionServiceServicer_to_server(servicer, server):
|
|
|
270
273
|
|
|
271
274
|
# This class is part of an EXPERIMENTAL API.
|
|
272
275
|
class MissionService(object):
|
|
273
|
-
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
276
|
+
"""The MissionService can be used to specify high level autonomous behaviors for Spot using behavior
|
|
277
|
+
trees.
|
|
274
278
|
"""
|
|
275
279
|
|
|
276
280
|
@staticmethod
|
bosdyn/api/mission/nodes_pb2.py
CHANGED
|
@@ -26,6 +26,7 @@ from bosdyn.api.spot_cam import ptz_pb2 as bosdyn_dot_api_dot_spot__cam_dot_ptz_
|
|
|
26
26
|
from bosdyn.api import robot_command_pb2 as bosdyn_dot_api_dot_robot__command__pb2
|
|
27
27
|
from bosdyn.api import power_pb2 as bosdyn_dot_api_dot_power__pb2
|
|
28
28
|
from bosdyn.api import data_acquisition_pb2 as bosdyn_dot_api_dot_data__acquisition__pb2
|
|
29
|
+
from bosdyn.api import data_acquisition_store_pb2 as bosdyn_dot_api_dot_data__acquisition__store__pb2
|
|
29
30
|
from bosdyn.api import data_buffer_pb2 as bosdyn_dot_api_dot_data__buffer__pb2
|
|
30
31
|
from bosdyn.api.graph_nav import graph_nav_pb2 as bosdyn_dot_api_dot_graph__nav_dot_graph__nav__pb2
|
|
31
32
|
from bosdyn.api.graph_nav import nav_pb2 as bosdyn_dot_api_dot_graph__nav_dot_nav__pb2
|
|
@@ -34,7 +35,7 @@ from bosdyn.api.mission import util_pb2 as bosdyn_dot_api_dot_mission_dot_util__
|
|
|
34
35
|
from bosdyn.api import service_customization_pb2 as bosdyn_dot_api_dot_service__customization__pb2
|
|
35
36
|
|
|
36
37
|
|
|
37
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x62osdyn/api/mission/nodes.proto\x12\x12\x62osdyn.api.mission\x1a\x19google/protobuf/any.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x17\x62osdyn/api/alerts.proto\x1a bosdyn/api/docking/docking.proto\x1a\x19\x62osdyn/api/geometry.proto\x1a%bosdyn/api/gripper_camera_param.proto\x1a+bosdyn/api/spot/choreography_sequence.proto\x1a bosdyn/api/spot_cam/camera.proto\x1a!bosdyn/api/spot_cam/logging.proto\x1a\x1d\x62osdyn/api/spot_cam/ptz.proto\x1a\x1e\x62osdyn/api/robot_command.proto\x1a\x16\x62osdyn/api/power.proto\x1a!bosdyn/api/data_acquisition.proto\x1a\x1c\x62osdyn/api/data_buffer.proto\x1a$bosdyn/api/graph_nav/graph_nav.proto\x1a\x1e\x62osdyn/api/graph_nav/nav.proto\x1a!bosdyn/api/manipulation_api.proto\x1a\x1d\x62osdyn/api/mission/util.proto\x1a&bosdyn/api/service_customization.proto\"\xae\x18\n\x04Node\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\tuser_data\x18\x02 \x01(\x0b\x32\x1c.bosdyn.api.mission.UserData\x12\x14\n\x0creference_id\x18\x03 \x01(\t\x12(\n\x04impl\x18\x04 \x01(\x0b\x32\x14.google.protobuf.AnyB\x02\x18\x01H\x00\x12\x18\n\x0enode_reference\x18\x05 \x01(\tH\x00\x12\x32\n\tcondition\x18\t \x01(\x0b\x32\x1d.bosdyn.api.mission.ConditionH\x00\x12\x30\n\x08sequence\x18\n \x01(\x0b\x32\x1c.bosdyn.api.mission.SequenceH\x00\x12\x30\n\x08selector\x18\x0b \x01(\x0b\x32\x1c.bosdyn.api.mission.SelectorH\x00\x12,\n\x06repeat\x18\x0c \x01(\x0b\x32\x1a.bosdyn.api.mission.RepeatH\x00\x12\x37\n\x0cretain_lease\x18\r \x01(\x0b\x32\x1f.bosdyn.api.mission.RetainLeaseH\x00\x12*\n\x05retry\x18\x0e \x01(\x0b\x32\x19.bosdyn.api.mission.RetryH\x00\x12\x37\n\x0c\x66or_duration\x18\x0f \x01(\x0b\x32\x1f.bosdyn.api.mission.ForDurationH\x00\x12@\n\x11\x62osdyn_dock_state\x18\x10 \x01(\x0b\x32#.bosdyn.api.mission.BosdynDockStateH\x00\x12\x46\n\x14\x62osdyn_power_request\x18\x11 \x01(\x0b\x32&.bosdyn.api.mission.BosdynPowerRequestH\x00\x12\x42\n\x12\x62osdyn_robot_state\x18\x12 \x01(\x0b\x32$.bosdyn.api.mission.BosdynRobotStateH\x00\x12\x46\n\x14\x62osdyn_robot_command\x18\x13 \x01(\x0b\x32&.bosdyn.api.mission.BosdynRobotCommandH\x00\x12\x35\n\x0bremote_grpc\x18\x14 \x01(\x0b\x32\x1e.bosdyn.api.mission.RemoteGrpcH\x00\x12*\n\x05sleep\x18\x15 \x01(\x0b\x32\x19.bosdyn.api.mission.SleepH\x00\x12,\n\x06prompt\x18\x16 \x01(\x0b\x32\x1a.bosdyn.api.mission.PromptH\x00\x12;\n\x0eset_blackboard\x18\x17 \x01(\x0b\x32!.bosdyn.api.mission.SetBlackboardH\x00\x12\x42\n\x12\x64\x61te_to_blackboard\x18\x18 \x01(\x0b\x32$.bosdyn.api.mission.DateToBlackboardH\x00\x12\x41\n\x11\x64\x65\x66ine_blackboard\x18\x19 \x01(\x0b\x32$.bosdyn.api.mission.DefineBlackboardH\x00\x12\x41\n\x11\x66ormat_blackboard\x18\x1a \x01(\x0b\x32$.bosdyn.api.mission.FormatBlackboardH\x00\x12=\n\x0f\x63onstant_result\x18\x1b \x01(\x0b\x32\".bosdyn.api.mission.ConstantResultH\x00\x12H\n\x15\x62osdyn_navigate_route\x18\x1d \x01(\x0b\x32\'.bosdyn.api.mission.BosdynNavigateRouteH\x00\x12\x42\n\x12\x62osdyn_navigate_to\x18\x1e \x01(\x0b\x32$.bosdyn.api.mission.BosdynNavigateToH\x00\x12I\n\x16\x62osdyn_graph_nav_state\x18\x1f \x01(\x0b\x32\'.bosdyn.api.mission.BosdynGraphNavStateH\x00\x12O\n\x19\x62osdyn_graph_nav_localize\x18 \x01(\x0b\x32*.bosdyn.api.mission.BosdynGraphNavLocalizeH\x00\x12\x44\n\x13\x62osdyn_record_event\x18! \x01(\x0b\x32%.bosdyn.api.mission.BosdynRecordEventH\x00\x12=\n\x0fsimple_parallel\x18\" \x01(\x0b\x32\".bosdyn.api.mission.SimpleParallelH\x00\x12\x36\n\x0cspot_cam_ptz\x18# \x01(\x0b\x32\x1e.bosdyn.api.mission.SpotCamPtzH\x00\x12\x45\n\x14spot_cam_store_media\x18$ \x01(\x0b\x32%.bosdyn.api.mission.SpotCamStoreMediaH\x00\x12\x36\n\x0cspot_cam_led\x18% \x01(\x0b\x32\x1e.bosdyn.api.mission.SpotCamLedH\x00\x12\x45\n\x14spot_cam_focus_state\x18: \x01(\x0b\x32%.bosdyn.api.mission.SpotCamFocusStateH\x00\x12M\n\x18spot_cam_reset_autofocus\x18& \x01(\x0b\x32).bosdyn.api.mission.SpotCamResetAutofocusH\x00\x12;\n\x0estore_metadata\x18\' \x01(\x0b\x32!.bosdyn.api.mission.StoreMetadataH\x00\x12,\n\x06switch\x18( \x01(\x0b\x32\x1a.bosdyn.api.mission.SwitchH\x00\x12?\n\x10\x64\x61ta_acquisition\x18) \x01(\x0b\x32#.bosdyn.api.mission.DataAcquisitionH\x00\x12]\n data_acquisition_on_interruption\x18* \x01(\x0b\x32\x31.bosdyn.api.mission.DataAcquisitionOnInterruptionH\x00\x12(\n\x04\x64ock\x18+ \x01(\x0b\x32\x18.bosdyn.api.mission.DockH\x00\x12\x44\n\x13restart_when_paused\x18\x31 \x01(\x0b\x32%.bosdyn.api.mission.RestartWhenPausedH\x00\x12H\n\x15\x63lear_behavior_faults\x18\x32 \x01(\x0b\x32\'.bosdyn.api.mission.ClearBehaviorFaultsH\x00\x12`\n\"bosdyn_gripper_camera_params_state\x18\x33 \x01(\x0b\x32\x32.bosdyn.api.mission.BosdynGripperCameraParamsStateH\x00\x12O\n\x19set_gripper_camera_params\x18\x34 \x01(\x0b\x32*.bosdyn.api.mission.SetGripperCameraParamsH\x00\x12\x37\n\x0cparallel_and\x18\x36 \x01(\x0b\x32\x1f.bosdyn.api.mission.ParallelAndH\x00\x12\x42\n\x12set_grasp_override\x18\x37 \x01(\x0b\x32$.bosdyn.api.mission.SetGraspOverrideH\x00\x12G\n\x14\x65xecute_choreography\x18\x38 \x01(\x0b\x32\'.bosdyn.api.mission.ExecuteChoreographyH\x00\x12T\n\x1bmission_upload_choreography\x18\x39 \x01(\x0b\x32-.bosdyn.api.mission.MissionUploadChoreographyH\x00\x12\x36\n\x10parameter_values\x18\x06 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12/\n\toverrides\x18\x07 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12;\n\nparameters\x18\x08 \x03(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationB\x06\n\x04type\"N\n\x08Sequence\x12\x16\n\x0e\x61lways_restart\x18\x01 \x01(\x08\x12*\n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\"N\n\x08Selector\x12\x16\n\x0e\x61lways_restart\x18\x01 \x01(\x08\x12*\n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\"\x92\x02\n\x06Switch\x12.\n\x0bpivot_value\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.mission.Value\x12\x16\n\x0e\x61lways_restart\x18\x02 \x01(\x08\x12\x41\n\x0cint_children\x18\x03 \x03(\x0b\x32+.bosdyn.api.mission.Switch.IntChildrenEntry\x12/\n\rdefault_child\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x1aL\n\x10IntChildrenEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node:\x02\x38\x01\"\x86\x01\n\x06Repeat\x12\x12\n\nmax_starts\x18\x01 \x01(\x05\x12\'\n\x05\x63hild\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12 \n\x18start_counter_state_name\x18\x05 \x01(\t\x12\x1d\n\x15respect_child_failure\x18\x06 \x01(\x08\"j\n\x05Retry\x12\x14\n\x0cmax_attempts\x18\x01 \x01(\x05\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\"\n\x1a\x61ttempt_counter_state_name\x18\x05 \x01(\t\"\xb1\x01\n\x0b\x46orDuration\x12+\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x1b\n\x13time_remaining_name\x18\x03 \x01(\t\x12/\n\rtimeout_child\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\"\x89\x01\n\x0eSimpleParallel\x12)\n\x07primary\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12+\n\tsecondary\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x1f\n\x17run_secondary_node_once\x18\x03 \x01(\x08\"T\n\x0bParallelAnd\x12*\n\x08\x63hildren\x18\x01 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x19\n\x11\x66inish_every_node\x18\x02 \x01(\x08\"\xfa\x04\n\tCondition\x12\x32\n\x03lhs\x18\x01 \x01(\x0b\x32%.bosdyn.api.mission.Condition.Operand\x12\x32\n\x03rhs\x18\x02 \x01(\x0b\x32%.bosdyn.api.mission.Condition.Operand\x12\x38\n\toperation\x18\x05 \x01(\x0e\x32%.bosdyn.api.mission.Condition.Compare\x12G\n\x10handle_staleness\x18\x06 \x01(\x0e\x32-.bosdyn.api.mission.Condition.HandleStaleness\x1a}\n\x07Operand\x12\x36\n\x03var\x18\x01 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x12\x32\n\x05\x63onst\x18\x02 \x01(\x0b\x32!.bosdyn.api.mission.ConstantValueH\x00\x42\x06\n\x04type\"~\n\x07\x43ompare\x12\x13\n\x0f\x43OMPARE_UNKNOWN\x10\x00\x12\x0e\n\nCOMPARE_EQ\x10\x01\x12\x0e\n\nCOMPARE_NE\x10\x02\x12\x0e\n\nCOMPARE_LT\x10\x03\x12\x0e\n\nCOMPARE_GT\x10\x04\x12\x0e\n\nCOMPARE_LE\x10\x05\x12\x0e\n\nCOMPARE_GE\x10\x06\"\x82\x01\n\x0fHandleStaleness\x12\x18\n\x14HANDLE_STALE_UNKNOWN\x10\x00\x12\x1c\n\x18HANDLE_STALE_READ_ANYWAY\x10\x01\x12 \n\x1cHANDLE_STALE_RUN_UNTIL_FRESH\x10\x02\x12\x15\n\x11HANDLE_STALE_FAIL\x10\x03\"s\n\x10\x42osdynRobotState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"r\n\x0f\x42osdynDockState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"c\n\x12\x42osdynRobotCommand\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12)\n\x07\x63ommand\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.RobotCommand\"r\n\x12\x42osdynPowerRequest\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x38\n\x07request\x18\x04 \x01(\x0e\x32\'.bosdyn.api.PowerCommandRequest.Request\"\x95\x03\n\x10\x42osdynNavigateTo\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x1f\n\x17\x64\x65stination_waypoint_id\x18\x03 \x01(\t\x12>\n\x10route_gen_params\x18\x04 \x01(\x0b\x32$.bosdyn.api.graph_nav.RouteGenParams\x12\x39\n\rtravel_params\x18\x05 \x01(\x0b\x32\".bosdyn.api.graph_nav.TravelParams\x12\x33\n+navigation_feedback_response_blackboard_key\x18\x06 \x01(\t\x12+\n#navigate_to_response_blackboard_key\x18\x07 \x01(\t\x12_\n\x16route_blocked_behavior\x18\x08 \x01(\x0e\x32?.bosdyn.api.graph_nav.RouteFollowingParams.RouteBlockedBehavior\"\xce\x02\n\x13\x42osdynNavigateRoute\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12*\n\x05route\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.graph_nav.Route\x12G\n\x13route_follow_params\x18\x04 \x01(\x0b\x32*.bosdyn.api.graph_nav.RouteFollowingParams\x12\x39\n\rtravel_params\x18\x05 \x01(\x0b\x32\".bosdyn.api.graph_nav.TravelParams\x12\x33\n+navigation_feedback_response_blackboard_key\x18\x06 \x01(\t\x12.\n&navigate_route_response_blackboard_key\x18\x07 \x01(\t\"\x8b\x01\n\x13\x42osdynGraphNavState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\x12\x13\n\x0bwaypoint_id\x18\x05 \x01(\t\"\xbc\x01\n\x16\x42osdynGraphNavLocalize\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12J\n\x14localization_request\x18\x03 \x01(\x0b\x32,.bosdyn.api.graph_nav.SetLocalizationRequest\x12\x19\n\x11\x61llow_bad_quality\x18\x04 \x01(\x08\x12\x17\n\x0fresponse_bb_key\x18\x05 \x01(\t\"\xa8\x02\n\x11\x42osdynRecordEvent\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12 \n\x05\x65vent\x18\x03 \x01(\x0b\x32\x11.bosdyn.api.Event\x12\x15\n\rsucceed_early\x18\x04 \x01(\x08\x12^\n\x15\x61\x64\x64itional_parameters\x18\x05 \x03(\x0b\x32?.bosdyn.api.mission.BosdynRecordEvent.AdditionalParametersEntry\x1aV\n\x19\x41\x64\x64itionalParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.mission.Value:\x02\x38\x01\"\xca\x01\n\nRemoteGrpc\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x14\n\x0cservice_name\x18\x03 \x01(\t\x12\x0f\n\x07timeout\x18\x04 \x01(\x02\x12\x17\n\x0flease_resources\x18\x05 \x03(\t\x12,\n\x06inputs\x18\x06 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12\x19\n\x11group_name_format\x18\x08 \x01(\t\x12%\n\x06params\x18\t \x01(\x0b\x32\x15.bosdyn.api.DictParam\"4\n\x05Sleep\x12\x0f\n\x07seconds\x18\x01 \x01(\x02\x12\x1a\n\x12restart_after_stop\x18\x02 \x01(\x08\"P\n\x13\x45xecuteChoreography\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x15\n\rsequence_name\x18\x03 \x01(\t\"\xba\x01\n\x19MissionUploadChoreography\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x45\n\x16\x63horeography_sequences\x18\x03 \x03(\x0b\x32%.bosdyn.api.spot.ChoreographySequence\x12\x32\n\x0e\x61nimated_moves\x18\x04 \x03(\x0b\x32\x1a.bosdyn.api.spot.Animation\"\x93\x04\n\x06Prompt\x12\x17\n\x0f\x61lways_reprompt\x18\x01 \x01(\x08\x12\x0c\n\x04text\x18\x02 \x01(\t\x12\x0e\n\x06source\x18\x03 \x01(\t\x12\x36\n\x07options\x18\x04 \x03(\x0b\x32!.bosdyn.api.mission.Prompt.OptionB\x02\x18\x01\x12>\n\x0coptions_list\x18\t \x01(\x0b\x32&.bosdyn.api.mission.Prompt.OptionsListH\x00\x12\x33\n\rcustom_params\x18\n \x01(\x0b\x32\x1a.bosdyn.api.DictParam.SpecH\x00\x12\'\n\x05\x63hild\x18\x05 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12!\n\x19\x66or_autonomous_processing\x18\x06 \x01(\x08\x12\x35\n\x08severity\x18\x07 \x01(\x0e\x32#.bosdyn.api.AlertData.SeverityLevel\x12#\n\x1bquestion_name_in_blackboard\x18\x08 \x01(\t\x1a+\n\x06Option\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\x13\n\x0b\x61nswer_code\x18\x02 \x01(\x03\x1a\x41\n\x0bOptionsList\x12\x32\n\x07options\x18\x01 \x03(\x0b\x32!.bosdyn.api.mission.Prompt.OptionB\r\n\x0b\x61nswer_spec\"\x81\x01\n\x1e\x42osdynGripperCameraParamsState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"\xa1\x01\n\x16SetGripperCameraParams\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\"\n\x18params_in_blackboard_key\x18\x03 \x01(\tH\x00\x12\x35\n\nnew_params\x18\x04 \x01(\x0b\x32\x1f.bosdyn.api.GripperCameraParamsH\x00\x42\x08\n\x06params\"{\n\x10SetGraspOverride\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x43\n\x16grasp_override_request\x18\x03 \x01(\x0b\x32#.bosdyn.api.ApiGraspOverrideRequest\"\xad\x02\n\nSpotCamPtz\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x36\n\x0cptz_position\x18\x03 \x01(\x0b\x32 .bosdyn.api.spot_cam.PtzPosition\x12J\n\x11\x61\x64just_parameters\x18\x04 \x01(\x0b\x32/.bosdyn.api.mission.SpotCamPtz.AdjustParameters\x1aw\n\x10\x41\x64justParameters\x12\x1c\n\x14localization_varname\x18\x04 \x01(\t\x12\x13\n\x0bwaypoint_id\x18\x05 \x01(\t\x12\x30\n\x13waypoint_tform_body\x18\x06 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"\xa9\x01\n\x11SpotCamStoreMedia\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12+\n\x06\x63\x61mera\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.spot_cam.Camera\x12\x36\n\x04type\x18\x04 \x01(\x0e\x32(.bosdyn.api.spot_cam.Logpoint.RecordType\x12\x0b\n\x03tag\x18\x05 \x01(\t\"\xad\x01\n\nSpotCamLed\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x46\n\x0c\x62rightnesses\x18\x03 \x03(\x0b\x32\x30.bosdyn.api.mission.SpotCamLed.BrightnessesEntry\x1a\x33\n\x11\x42rightnessesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x02:\x02\x38\x01\"p\n\x11SpotCamFocusState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x37\n\x0b\x66ocus_state\x18\x03 \x01(\x0b\x32\".bosdyn.api.spot_cam.PtzFocusState\";\n\x15SpotCamResetAutofocus\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\"\xfd\x02\n\x04\x44ock\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x1a\n\x12\x64ocking_station_id\x18\x03 \x01(\r\x12+\n\x05\x63hild\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.NodeB\x02\x18\x01\x12\x1f\n\x13\x63ommand_status_name\x18\x05 \x01(\tB\x02\x18\x01\x12 \n\x14\x66\x65\x65\x64\x62\x61\x63k_status_name\x18\x06 \x01(\tB\x02\x18\x01\x12@\n\x12prep_pose_behavior\x18\x07 \x01(\x0e\x32$.bosdyn.api.docking.PrepPoseBehavior\x12\x38\n0docking_command_feedback_response_blackboard_key\x18\x08 \x01(\t\x12/\n\'docking_command_response_blackboard_key\x18\t \x01(\t\x12\x18\n\x10require_fiducial\x18\n \x01(\x08\"\xc3\x01\n\rStoreMetadata\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12!\n\x19\x61\x63quire_data_request_name\x18\x03 \x01(\t\x12\x17\n\rmetadata_name\x18\x05 \x01(\tH\x00\x12\x30\n\rmetadata_json\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x12\x18\n\x10metadata_channel\x18\x06 \x01(\tB\x06\n\x04\x64\x61ta\"\xe0\x03\n\x0f\x44\x61taAcquisition\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12/\n\x07request\x18\x03 \x01(\x0b\x32\x1e.bosdyn.api.AcquireDataRequest\x12S\n\x13\x63ompletion_behavior\x18\x04 \x01(\x0e\x32\x36.bosdyn.api.mission.DataAcquisition.CompletionBehavior\x12\x19\n\x11group_name_format\x18\x05 \x01(\t\x12\"\n\x1arequest_name_in_blackboard\x18\x06 \x01(\t\x12#\n\x1bmetadata_name_in_blackboard\x18\t \x01(\t\x12\x1a\n\x12\x61\x63tion_name_format\x18\x07 \x01(\t\x12\'\n\x1f\x64isable_cancel_on_pause_or_stop\x18\x08 \x01(\x08\x12\x17\n\x0f\x66ormat_metadata\x18\n \x01(\x08\"a\n\x12\x43ompletionBehavior\x12\x14\n\x10\x43OMPLETE_UNKNOWN\x10\x00\x12\x18\n\x14\x43OMPLETE_AFTER_SAVED\x10\x01\x12\x1b\n\x17\x43OMPLETE_AFTER_ACQUIRED\x10\x02\"1\n\x0bRetainLease\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\"w\n\x10\x44\x65\x66ineBlackboard\x12:\n\x14\x62lackboard_variables\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\"K\n\rSetBlackboard\x12:\n\x14\x62lackboard_variables\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\"/\n\x10\x46ormatBlackboard\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x0e\n\x06\x66ormat\x18\x02 \x01(\t\"\x1f\n\x10\x44\x61teToBlackboard\x12\x0b\n\x03key\x18\x01 \x01(\t\"<\n\x0e\x43onstantResult\x12*\n\x06result\x18\x01 \x01(\x0e\x32\x1a.bosdyn.api.mission.Result\"<\n\x11RestartWhenPaused\x12\'\n\x05\x63hild\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\"\xb2\x05\n\x1d\x44\x61taAcquisitionOnInterruption\x12\'\n\x05\x63hild\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x45\n\x18request_when_interrupted\x18\x02 \x01(\x0b\x32#.bosdyn.api.mission.DataAcquisition\x12\x34\n\x16pause_mission_metadata\x18\x04 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x36\n\x18restart_mission_metadata\x18\x05 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x33\n\x15load_mission_metadata\x18\x06 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x33\n\x15stop_mission_metadata\x18\x07 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x36\n\x18lease_use_error_metadata\x18\x08 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12;\n\x1dplay_mission_timeout_metadata\x18\t \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x37\n\x19\x63hild_node_error_metadata\x18\n \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12;\n\x1d\x63hild_node_exception_metadata\x18\x0b \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12.\n\x10\x64\x65\x66\x61ult_metadata\x18\x0c \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12(\n keys_for_lease_use_error_message\x18\r \x03(\tJ\x04\x08\x03\x10\x04\"\xef\x01\n\x13\x43learBehaviorFaults\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12#\n\x1brobot_state_blackboard_name\x18\x03 \x01(\t\x12*\n\"cleared_cause_fall_blackboard_name\x18\x04 \x01(\t\x12.\n&cleared_cause_hardware_blackboard_name\x18\x05 \x01(\t\x12\x33\n+cleared_cause_lease_timeout_blackboard_name\x18\x06 \x01(\tB\x0c\x42\nNodesProtob\x06proto3')
|
|
38
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x62osdyn/api/mission/nodes.proto\x12\x12\x62osdyn.api.mission\x1a\x19google/protobuf/any.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x17\x62osdyn/api/alerts.proto\x1a bosdyn/api/docking/docking.proto\x1a\x19\x62osdyn/api/geometry.proto\x1a%bosdyn/api/gripper_camera_param.proto\x1a+bosdyn/api/spot/choreography_sequence.proto\x1a bosdyn/api/spot_cam/camera.proto\x1a!bosdyn/api/spot_cam/logging.proto\x1a\x1d\x62osdyn/api/spot_cam/ptz.proto\x1a\x1e\x62osdyn/api/robot_command.proto\x1a\x16\x62osdyn/api/power.proto\x1a!bosdyn/api/data_acquisition.proto\x1a\'bosdyn/api/data_acquisition_store.proto\x1a\x1c\x62osdyn/api/data_buffer.proto\x1a$bosdyn/api/graph_nav/graph_nav.proto\x1a\x1e\x62osdyn/api/graph_nav/nav.proto\x1a!bosdyn/api/manipulation_api.proto\x1a\x1d\x62osdyn/api/mission/util.proto\x1a&bosdyn/api/service_customization.proto\"\xcb\x19\n\x04Node\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\tuser_data\x18\x02 \x01(\x0b\x32\x1c.bosdyn.api.mission.UserData\x12\x14\n\x0creference_id\x18\x03 \x01(\t\x12(\n\x04impl\x18\x04 \x01(\x0b\x32\x14.google.protobuf.AnyB\x02\x18\x01H\x00\x12\x18\n\x0enode_reference\x18\x05 \x01(\tH\x00\x12\x32\n\tcondition\x18\t \x01(\x0b\x32\x1d.bosdyn.api.mission.ConditionH\x00\x12\x30\n\x08sequence\x18\n \x01(\x0b\x32\x1c.bosdyn.api.mission.SequenceH\x00\x12\x30\n\x08selector\x18\x0b \x01(\x0b\x32\x1c.bosdyn.api.mission.SelectorH\x00\x12,\n\x06repeat\x18\x0c \x01(\x0b\x32\x1a.bosdyn.api.mission.RepeatH\x00\x12\x37\n\x0cretain_lease\x18\r \x01(\x0b\x32\x1f.bosdyn.api.mission.RetainLeaseH\x00\x12*\n\x05retry\x18\x0e \x01(\x0b\x32\x19.bosdyn.api.mission.RetryH\x00\x12\x37\n\x0c\x66or_duration\x18\x0f \x01(\x0b\x32\x1f.bosdyn.api.mission.ForDurationH\x00\x12@\n\x11\x62osdyn_dock_state\x18\x10 \x01(\x0b\x32#.bosdyn.api.mission.BosdynDockStateH\x00\x12\x46\n\x14\x62osdyn_power_request\x18\x11 \x01(\x0b\x32&.bosdyn.api.mission.BosdynPowerRequestH\x00\x12\x42\n\x12\x62osdyn_robot_state\x18\x12 \x01(\x0b\x32$.bosdyn.api.mission.BosdynRobotStateH\x00\x12\x46\n\x14\x62osdyn_robot_command\x18\x13 \x01(\x0b\x32&.bosdyn.api.mission.BosdynRobotCommandH\x00\x12\x35\n\x0bremote_grpc\x18\x14 \x01(\x0b\x32\x1e.bosdyn.api.mission.RemoteGrpcH\x00\x12*\n\x05sleep\x18\x15 \x01(\x0b\x32\x19.bosdyn.api.mission.SleepH\x00\x12,\n\x06prompt\x18\x16 \x01(\x0b\x32\x1a.bosdyn.api.mission.PromptH\x00\x12;\n\x0eset_blackboard\x18\x17 \x01(\x0b\x32!.bosdyn.api.mission.SetBlackboardH\x00\x12\x42\n\x12\x64\x61te_to_blackboard\x18\x18 \x01(\x0b\x32$.bosdyn.api.mission.DateToBlackboardH\x00\x12\x41\n\x11\x64\x65\x66ine_blackboard\x18\x19 \x01(\x0b\x32$.bosdyn.api.mission.DefineBlackboardH\x00\x12\x41\n\x11\x66ormat_blackboard\x18\x1a \x01(\x0b\x32$.bosdyn.api.mission.FormatBlackboardH\x00\x12=\n\x0f\x63onstant_result\x18\x1b \x01(\x0b\x32\".bosdyn.api.mission.ConstantResultH\x00\x12H\n\x15\x62osdyn_navigate_route\x18\x1d \x01(\x0b\x32\'.bosdyn.api.mission.BosdynNavigateRouteH\x00\x12\x42\n\x12\x62osdyn_navigate_to\x18\x1e \x01(\x0b\x32$.bosdyn.api.mission.BosdynNavigateToH\x00\x12I\n\x16\x62osdyn_graph_nav_state\x18\x1f \x01(\x0b\x32\'.bosdyn.api.mission.BosdynGraphNavStateH\x00\x12O\n\x19\x62osdyn_graph_nav_localize\x18 \x01(\x0b\x32*.bosdyn.api.mission.BosdynGraphNavLocalizeH\x00\x12\x44\n\x13\x62osdyn_record_event\x18! \x01(\x0b\x32%.bosdyn.api.mission.BosdynRecordEventH\x00\x12=\n\x0fsimple_parallel\x18\" \x01(\x0b\x32\".bosdyn.api.mission.SimpleParallelH\x00\x12\x36\n\x0cspot_cam_ptz\x18# \x01(\x0b\x32\x1e.bosdyn.api.mission.SpotCamPtzH\x00\x12\x45\n\x14spot_cam_store_media\x18$ \x01(\x0b\x32%.bosdyn.api.mission.SpotCamStoreMediaH\x00\x12\x36\n\x0cspot_cam_led\x18% \x01(\x0b\x32\x1e.bosdyn.api.mission.SpotCamLedH\x00\x12\x45\n\x14spot_cam_focus_state\x18: \x01(\x0b\x32%.bosdyn.api.mission.SpotCamFocusStateH\x00\x12M\n\x18spot_cam_reset_autofocus\x18& \x01(\x0b\x32).bosdyn.api.mission.SpotCamResetAutofocusH\x00\x12;\n\x0estore_metadata\x18\' \x01(\x0b\x32!.bosdyn.api.mission.StoreMetadataH\x00\x12,\n\x06switch\x18( \x01(\x0b\x32\x1a.bosdyn.api.mission.SwitchH\x00\x12?\n\x10\x64\x61ta_acquisition\x18) \x01(\x0b\x32#.bosdyn.api.mission.DataAcquisitionH\x00\x12]\n data_acquisition_on_interruption\x18* \x01(\x0b\x32\x31.bosdyn.api.mission.DataAcquisitionOnInterruptionH\x00\x12(\n\x04\x64ock\x18+ \x01(\x0b\x32\x18.bosdyn.api.mission.DockH\x00\x12\x44\n\x13restart_when_paused\x18\x31 \x01(\x0b\x32%.bosdyn.api.mission.RestartWhenPausedH\x00\x12H\n\x15\x63lear_behavior_faults\x18\x32 \x01(\x0b\x32\'.bosdyn.api.mission.ClearBehaviorFaultsH\x00\x12`\n\"bosdyn_gripper_camera_params_state\x18\x33 \x01(\x0b\x32\x32.bosdyn.api.mission.BosdynGripperCameraParamsStateH\x00\x12O\n\x19set_gripper_camera_params\x18\x34 \x01(\x0b\x32*.bosdyn.api.mission.SetGripperCameraParamsH\x00\x12\x37\n\x0cparallel_and\x18\x36 \x01(\x0b\x32\x1f.bosdyn.api.mission.ParallelAndH\x00\x12\x42\n\x12set_grasp_override\x18\x37 \x01(\x0b\x32$.bosdyn.api.mission.SetGraspOverrideH\x00\x12G\n\x14\x65xecute_choreography\x18\x38 \x01(\x0b\x32\'.bosdyn.api.mission.ExecuteChoreographyH\x00\x12T\n\x1bmission_upload_choreography\x18\x39 \x01(\x0b\x32-.bosdyn.api.mission.MissionUploadChoreographyH\x00\x12\x44\n\x13\x63reate_mission_text\x18; \x01(\x0b\x32%.bosdyn.api.mission.CreateMissionTextH\x00\x12U\n\x1c\x62osdyn_query_stored_captures\x18< \x01(\x0b\x32-.bosdyn.api.mission.BosdynQueryStoredCapturesH\x00\x12\x36\n\x10parameter_values\x18\x06 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12/\n\toverrides\x18\x07 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12;\n\nparameters\x18\x08 \x03(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationB\x06\n\x04type\"N\n\x08Sequence\x12\x16\n\x0e\x61lways_restart\x18\x01 \x01(\x08\x12*\n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\"N\n\x08Selector\x12\x16\n\x0e\x61lways_restart\x18\x01 \x01(\x08\x12*\n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\"\x92\x02\n\x06Switch\x12.\n\x0bpivot_value\x18\x01 \x01(\x0b\x32\x19.bosdyn.api.mission.Value\x12\x16\n\x0e\x61lways_restart\x18\x02 \x01(\x08\x12\x41\n\x0cint_children\x18\x03 \x03(\x0b\x32+.bosdyn.api.mission.Switch.IntChildrenEntry\x12/\n\rdefault_child\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x1aL\n\x10IntChildrenEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node:\x02\x38\x01\"\x86\x01\n\x06Repeat\x12\x12\n\nmax_starts\x18\x01 \x01(\x05\x12\'\n\x05\x63hild\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12 \n\x18start_counter_state_name\x18\x05 \x01(\t\x12\x1d\n\x15respect_child_failure\x18\x06 \x01(\x08\"j\n\x05Retry\x12\x14\n\x0cmax_attempts\x18\x01 \x01(\x05\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\"\n\x1a\x61ttempt_counter_state_name\x18\x05 \x01(\t\"\xeb\x01\n\x0b\x46orDuration\x12-\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00\x12%\n\x1b\x64uration_name_in_blackboard\x18\x05 \x01(\tH\x00\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x1b\n\x13time_remaining_name\x18\x03 \x01(\t\x12/\n\rtimeout_child\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.NodeB\x0f\n\rduration_type\"\x89\x01\n\x0eSimpleParallel\x12)\n\x07primary\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12+\n\tsecondary\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x1f\n\x17run_secondary_node_once\x18\x03 \x01(\x08\"T\n\x0bParallelAnd\x12*\n\x08\x63hildren\x18\x01 \x03(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x19\n\x11\x66inish_every_node\x18\x02 \x01(\x08\"\xfa\x04\n\tCondition\x12\x32\n\x03lhs\x18\x01 \x01(\x0b\x32%.bosdyn.api.mission.Condition.Operand\x12\x32\n\x03rhs\x18\x02 \x01(\x0b\x32%.bosdyn.api.mission.Condition.Operand\x12\x38\n\toperation\x18\x05 \x01(\x0e\x32%.bosdyn.api.mission.Condition.Compare\x12G\n\x10handle_staleness\x18\x06 \x01(\x0e\x32-.bosdyn.api.mission.Condition.HandleStaleness\x1a}\n\x07Operand\x12\x36\n\x03var\x18\x01 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x12\x32\n\x05\x63onst\x18\x02 \x01(\x0b\x32!.bosdyn.api.mission.ConstantValueH\x00\x42\x06\n\x04type\"~\n\x07\x43ompare\x12\x13\n\x0f\x43OMPARE_UNKNOWN\x10\x00\x12\x0e\n\nCOMPARE_EQ\x10\x01\x12\x0e\n\nCOMPARE_NE\x10\x02\x12\x0e\n\nCOMPARE_LT\x10\x03\x12\x0e\n\nCOMPARE_GT\x10\x04\x12\x0e\n\nCOMPARE_LE\x10\x05\x12\x0e\n\nCOMPARE_GE\x10\x06\"\x82\x01\n\x0fHandleStaleness\x12\x18\n\x14HANDLE_STALE_UNKNOWN\x10\x00\x12\x1c\n\x18HANDLE_STALE_READ_ANYWAY\x10\x01\x12 \n\x1cHANDLE_STALE_RUN_UNTIL_FRESH\x10\x02\x12\x15\n\x11HANDLE_STALE_FAIL\x10\x03\"s\n\x10\x42osdynRobotState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"r\n\x0f\x42osdynDockState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"c\n\x12\x42osdynRobotCommand\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12)\n\x07\x63ommand\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.RobotCommand\"r\n\x12\x42osdynPowerRequest\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x38\n\x07request\x18\x04 \x01(\x0e\x32\'.bosdyn.api.PowerCommandRequest.Request\"\x95\x03\n\x10\x42osdynNavigateTo\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x1f\n\x17\x64\x65stination_waypoint_id\x18\x03 \x01(\t\x12>\n\x10route_gen_params\x18\x04 \x01(\x0b\x32$.bosdyn.api.graph_nav.RouteGenParams\x12\x39\n\rtravel_params\x18\x05 \x01(\x0b\x32\".bosdyn.api.graph_nav.TravelParams\x12\x33\n+navigation_feedback_response_blackboard_key\x18\x06 \x01(\t\x12+\n#navigate_to_response_blackboard_key\x18\x07 \x01(\t\x12_\n\x16route_blocked_behavior\x18\x08 \x01(\x0e\x32?.bosdyn.api.graph_nav.RouteFollowingParams.RouteBlockedBehavior\"\xfd\x02\n\x13\x42osdynNavigateRoute\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12*\n\x05route\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.graph_nav.Route\x12G\n\x13route_follow_params\x18\x04 \x01(\x0b\x32*.bosdyn.api.graph_nav.RouteFollowingParams\x12\x39\n\rtravel_params\x18\x05 \x01(\x0b\x32\".bosdyn.api.graph_nav.TravelParams\x12\x33\n+navigation_feedback_response_blackboard_key\x18\x06 \x01(\t\x12.\n&navigate_route_response_blackboard_key\x18\x07 \x01(\t\x12-\n%navigate_route_request_blackboard_key\x18\x08 \x01(\t\"\x8b\x01\n\x13\x42osdynGraphNavState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\x12\x13\n\x0bwaypoint_id\x18\x05 \x01(\t\"\xe1\x01\n\x16\x42osdynGraphNavLocalize\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12J\n\x14localization_request\x18\x03 \x01(\x0b\x32,.bosdyn.api.graph_nav.SetLocalizationRequest\x12\x19\n\x11\x61llow_bad_quality\x18\x04 \x01(\x08\x12\x17\n\x0fresponse_bb_key\x18\x05 \x01(\t\x12#\n\x1blocalization_request_bb_key\x18\x06 \x01(\t\"\xa8\x02\n\x11\x42osdynRecordEvent\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12 \n\x05\x65vent\x18\x03 \x01(\x0b\x32\x11.bosdyn.api.Event\x12\x15\n\rsucceed_early\x18\x04 \x01(\x08\x12^\n\x15\x61\x64\x64itional_parameters\x18\x05 \x03(\x0b\x32?.bosdyn.api.mission.BosdynRecordEvent.AdditionalParametersEntry\x1aV\n\x19\x41\x64\x64itionalParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.mission.Value:\x02\x38\x01\"\xca\x01\n\nRemoteGrpc\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x14\n\x0cservice_name\x18\x03 \x01(\t\x12\x0f\n\x07timeout\x18\x04 \x01(\x02\x12\x17\n\x0flease_resources\x18\x05 \x03(\t\x12,\n\x06inputs\x18\x06 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12\x19\n\x11group_name_format\x18\x08 \x01(\t\x12%\n\x06params\x18\t \x01(\x0b\x32\x15.bosdyn.api.DictParam\"i\n\x05Sleep\x12\x11\n\x07seconds\x18\x01 \x01(\x02H\x00\x12%\n\x1b\x64uration_name_in_blackboard\x18\x05 \x01(\tH\x00\x12\x1a\n\x12restart_after_stop\x18\x02 \x01(\x08\x42\n\n\x08\x64uration\"P\n\x13\x45xecuteChoreography\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x15\n\rsequence_name\x18\x03 \x01(\t\"\xba\x01\n\x19MissionUploadChoreography\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x45\n\x16\x63horeography_sequences\x18\x03 \x03(\x0b\x32%.bosdyn.api.spot.ChoreographySequence\x12\x32\n\x0e\x61nimated_moves\x18\x04 \x03(\x0b\x32\x1a.bosdyn.api.spot.Animation\"\xb9\x04\n\x06Prompt\x12\x17\n\x0f\x61lways_reprompt\x18\x01 \x01(\x08\x12\x0c\n\x04text\x18\x02 \x01(\t\x12\x0e\n\x06source\x18\x03 \x01(\t\x12\x36\n\x07options\x18\x04 \x03(\x0b\x32!.bosdyn.api.mission.Prompt.OptionB\x02\x18\x01\x12>\n\x0coptions_list\x18\t \x01(\x0b\x32&.bosdyn.api.mission.Prompt.OptionsListH\x00\x12$\n\x1aoptions_list_in_blackboard\x18\x0b \x01(\tH\x00\x12\x33\n\rcustom_params\x18\n \x01(\x0b\x32\x1a.bosdyn.api.DictParam.SpecH\x00\x12\'\n\x05\x63hild\x18\x05 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12!\n\x19\x66or_autonomous_processing\x18\x06 \x01(\x08\x12\x35\n\x08severity\x18\x07 \x01(\x0e\x32#.bosdyn.api.AlertData.SeverityLevel\x12#\n\x1bquestion_name_in_blackboard\x18\x08 \x01(\t\x1a+\n\x06Option\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\x13\n\x0b\x61nswer_code\x18\x02 \x01(\x03\x1a\x41\n\x0bOptionsList\x12\x32\n\x07options\x18\x01 \x03(\x0b\x32!.bosdyn.api.mission.Prompt.OptionB\r\n\x0b\x61nswer_spec\"\x81\x01\n\x1e\x42osdynGripperCameraParamsState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x12\n\nstate_name\x18\x04 \x01(\t\"\xa1\x01\n\x16SetGripperCameraParams\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\"\n\x18params_in_blackboard_key\x18\x03 \x01(\tH\x00\x12\x35\n\nnew_params\x18\x04 \x01(\x0b\x32\x1f.bosdyn.api.GripperCameraParamsH\x00\x42\x08\n\x06params\"{\n\x10SetGraspOverride\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x43\n\x16grasp_override_request\x18\x03 \x01(\x0b\x32#.bosdyn.api.ApiGraspOverrideRequest\"\xad\x02\n\nSpotCamPtz\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x36\n\x0cptz_position\x18\x03 \x01(\x0b\x32 .bosdyn.api.spot_cam.PtzPosition\x12J\n\x11\x61\x64just_parameters\x18\x04 \x01(\x0b\x32/.bosdyn.api.mission.SpotCamPtz.AdjustParameters\x1aw\n\x10\x41\x64justParameters\x12\x1c\n\x14localization_varname\x18\x04 \x01(\t\x12\x13\n\x0bwaypoint_id\x18\x05 \x01(\t\x12\x30\n\x13waypoint_tform_body\x18\x06 \x01(\x0b\x32\x13.bosdyn.api.SE3Pose\"\xa9\x01\n\x11SpotCamStoreMedia\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12+\n\x06\x63\x61mera\x18\x03 \x01(\x0b\x32\x1b.bosdyn.api.spot_cam.Camera\x12\x36\n\x04type\x18\x04 \x01(\x0e\x32(.bosdyn.api.spot_cam.Logpoint.RecordType\x12\x0b\n\x03tag\x18\x05 \x01(\t\"\xad\x01\n\nSpotCamLed\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x46\n\x0c\x62rightnesses\x18\x03 \x03(\x0b\x32\x30.bosdyn.api.mission.SpotCamLed.BrightnessesEntry\x1a\x33\n\x11\x42rightnessesEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\r\n\x05value\x18\x02 \x01(\x02:\x02\x38\x01\"p\n\x11SpotCamFocusState\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x37\n\x0b\x66ocus_state\x18\x03 \x01(\x0b\x32\".bosdyn.api.spot_cam.PtzFocusState\";\n\x15SpotCamResetAutofocus\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\"\xb2\x03\n\x04\x44ock\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x1c\n\x12\x64ocking_station_id\x18\x03 \x01(\rH\x00\x12+\n!docking_station_id_blackboard_key\x18\x0b \x01(\tH\x00\x12+\n\x05\x63hild\x18\x04 \x01(\x0b\x32\x18.bosdyn.api.mission.NodeB\x02\x18\x01\x12\x1f\n\x13\x63ommand_status_name\x18\x05 \x01(\tB\x02\x18\x01\x12 \n\x14\x66\x65\x65\x64\x62\x61\x63k_status_name\x18\x06 \x01(\tB\x02\x18\x01\x12@\n\x12prep_pose_behavior\x18\x07 \x01(\x0e\x32$.bosdyn.api.docking.PrepPoseBehavior\x12\x38\n0docking_command_feedback_response_blackboard_key\x18\x08 \x01(\t\x12/\n\'docking_command_response_blackboard_key\x18\t \x01(\t\x12\x18\n\x10require_fiducial\x18\n \x01(\x08\x42\x04\n\x02id\"\xc3\x01\n\rStoreMetadata\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12!\n\x19\x61\x63quire_data_request_name\x18\x03 \x01(\t\x12\x17\n\rmetadata_name\x18\x05 \x01(\tH\x00\x12\x30\n\rmetadata_json\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x12\x18\n\x10metadata_channel\x18\x06 \x01(\tB\x06\n\x04\x64\x61ta\"\xe0\x03\n\x0f\x44\x61taAcquisition\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12/\n\x07request\x18\x03 \x01(\x0b\x32\x1e.bosdyn.api.AcquireDataRequest\x12S\n\x13\x63ompletion_behavior\x18\x04 \x01(\x0e\x32\x36.bosdyn.api.mission.DataAcquisition.CompletionBehavior\x12\x19\n\x11group_name_format\x18\x05 \x01(\t\x12\"\n\x1arequest_name_in_blackboard\x18\x06 \x01(\t\x12#\n\x1bmetadata_name_in_blackboard\x18\t \x01(\t\x12\x1a\n\x12\x61\x63tion_name_format\x18\x07 \x01(\t\x12\'\n\x1f\x64isable_cancel_on_pause_or_stop\x18\x08 \x01(\x08\x12\x17\n\x0f\x66ormat_metadata\x18\n \x01(\x08\"a\n\x12\x43ompletionBehavior\x12\x14\n\x10\x43OMPLETE_UNKNOWN\x10\x00\x12\x18\n\x14\x43OMPLETE_AFTER_SAVED\x10\x01\x12\x1b\n\x17\x43OMPLETE_AFTER_ACQUIRED\x10\x02\"1\n\x0bRetainLease\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\"w\n\x10\x44\x65\x66ineBlackboard\x12:\n\x14\x62lackboard_variables\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\x12\'\n\x05\x63hild\x18\x02 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\"K\n\rSetBlackboard\x12:\n\x14\x62lackboard_variables\x18\x01 \x03(\x0b\x32\x1c.bosdyn.api.mission.KeyValue\"/\n\x10\x46ormatBlackboard\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x0e\n\x06\x66ormat\x18\x02 \x01(\t\"\x1f\n\x10\x44\x61teToBlackboard\x12\x0b\n\x03key\x18\x01 \x01(\t\"\xb7\x02\n\x19\x42osdynQueryStoredCaptures\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x0b\n\x03key\x18\x03 \x01(\t\x12\x31\n\x0cquery_params\x18\x04 \x01(\x0b\x32\x1b.bosdyn.api.QueryParameters\x12\x66\n\x19\x63\x61pture_action_ids_format\x18\x05 \x03(\x0b\x32\x43.bosdyn.api.mission.BosdynQueryStoredCaptures.CaptureActionIdFormat\x1aN\n\x15\x43\x61ptureActionIdFormat\x12\x1a\n\x12\x61\x63tion_name_format\x18\x01 \x01(\t\x12\x19\n\x11group_name_format\x18\x02 \x01(\t\"<\n\x0e\x43onstantResult\x12*\n\x06result\x18\x01 \x01(\x0e\x32\x1a.bosdyn.api.mission.Result\"<\n\x11RestartWhenPaused\x12\'\n\x05\x63hild\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\"\xb2\x05\n\x1d\x44\x61taAcquisitionOnInterruption\x12\'\n\x05\x63hild\x18\x01 \x01(\x0b\x32\x18.bosdyn.api.mission.Node\x12\x45\n\x18request_when_interrupted\x18\x02 \x01(\x0b\x32#.bosdyn.api.mission.DataAcquisition\x12\x34\n\x16pause_mission_metadata\x18\x04 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x36\n\x18restart_mission_metadata\x18\x05 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x33\n\x15load_mission_metadata\x18\x06 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x33\n\x15stop_mission_metadata\x18\x07 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x36\n\x18lease_use_error_metadata\x18\x08 \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12;\n\x1dplay_mission_timeout_metadata\x18\t \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12\x37\n\x19\x63hild_node_error_metadata\x18\n \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12;\n\x1d\x63hild_node_exception_metadata\x18\x0b \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12.\n\x10\x64\x65\x66\x61ult_metadata\x18\x0c \x01(\x0b\x32\x14.bosdyn.api.Metadata\x12(\n keys_for_lease_use_error_message\x18\r \x03(\tJ\x04\x08\x03\x10\x04\"\xef\x01\n\x13\x43learBehaviorFaults\x12\x14\n\x0cservice_name\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12#\n\x1brobot_state_blackboard_name\x18\x03 \x01(\t\x12*\n\"cleared_cause_fall_blackboard_name\x18\x04 \x01(\t\x12.\n&cleared_cause_hardware_blackboard_name\x18\x05 \x01(\t\x12\x33\n+cleared_cause_lease_timeout_blackboard_name\x18\x06 \x01(\t\"\x89\x01\n\x11\x43reateMissionText\x12\x14\n\x0cmission_text\x18\x01 \x01(\t\x12\x35\n\x08severity\x18\x02 \x01(\x0e\x32#.bosdyn.api.AlertData.SeverityLevel\x12\'\n\x05\x63hild\x18\x03 \x01(\x0b\x32\x18.bosdyn.api.mission.NodeB\x0c\x42\nNodesProtob\x06proto3')
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
|
|
@@ -85,10 +86,13 @@ _DEFINEBLACKBOARD = DESCRIPTOR.message_types_by_name['DefineBlackboard']
|
|
|
85
86
|
_SETBLACKBOARD = DESCRIPTOR.message_types_by_name['SetBlackboard']
|
|
86
87
|
_FORMATBLACKBOARD = DESCRIPTOR.message_types_by_name['FormatBlackboard']
|
|
87
88
|
_DATETOBLACKBOARD = DESCRIPTOR.message_types_by_name['DateToBlackboard']
|
|
89
|
+
_BOSDYNQUERYSTOREDCAPTURES = DESCRIPTOR.message_types_by_name['BosdynQueryStoredCaptures']
|
|
90
|
+
_BOSDYNQUERYSTOREDCAPTURES_CAPTUREACTIONIDFORMAT = _BOSDYNQUERYSTOREDCAPTURES.nested_types_by_name['CaptureActionIdFormat']
|
|
88
91
|
_CONSTANTRESULT = DESCRIPTOR.message_types_by_name['ConstantResult']
|
|
89
92
|
_RESTARTWHENPAUSED = DESCRIPTOR.message_types_by_name['RestartWhenPaused']
|
|
90
93
|
_DATAACQUISITIONONINTERRUPTION = DESCRIPTOR.message_types_by_name['DataAcquisitionOnInterruption']
|
|
91
94
|
_CLEARBEHAVIORFAULTS = DESCRIPTOR.message_types_by_name['ClearBehaviorFaults']
|
|
95
|
+
_CREATEMISSIONTEXT = DESCRIPTOR.message_types_by_name['CreateMissionText']
|
|
92
96
|
_CONDITION_COMPARE = _CONDITION.enum_types_by_name['Compare']
|
|
93
97
|
_CONDITION_HANDLESTALENESS = _CONDITION.enum_types_by_name['HandleStaleness']
|
|
94
98
|
_DATAACQUISITION_COMPLETIONBEHAVIOR = _DATAACQUISITION.enum_types_by_name['CompletionBehavior']
|
|
@@ -428,6 +432,21 @@ DateToBlackboard = _reflection.GeneratedProtocolMessageType('DateToBlackboard',
|
|
|
428
432
|
})
|
|
429
433
|
_sym_db.RegisterMessage(DateToBlackboard)
|
|
430
434
|
|
|
435
|
+
BosdynQueryStoredCaptures = _reflection.GeneratedProtocolMessageType('BosdynQueryStoredCaptures', (_message.Message,), {
|
|
436
|
+
|
|
437
|
+
'CaptureActionIdFormat' : _reflection.GeneratedProtocolMessageType('CaptureActionIdFormat', (_message.Message,), {
|
|
438
|
+
'DESCRIPTOR' : _BOSDYNQUERYSTOREDCAPTURES_CAPTUREACTIONIDFORMAT,
|
|
439
|
+
'__module__' : 'bosdyn.api.mission.nodes_pb2'
|
|
440
|
+
# @@protoc_insertion_point(class_scope:bosdyn.api.mission.BosdynQueryStoredCaptures.CaptureActionIdFormat)
|
|
441
|
+
})
|
|
442
|
+
,
|
|
443
|
+
'DESCRIPTOR' : _BOSDYNQUERYSTOREDCAPTURES,
|
|
444
|
+
'__module__' : 'bosdyn.api.mission.nodes_pb2'
|
|
445
|
+
# @@protoc_insertion_point(class_scope:bosdyn.api.mission.BosdynQueryStoredCaptures)
|
|
446
|
+
})
|
|
447
|
+
_sym_db.RegisterMessage(BosdynQueryStoredCaptures)
|
|
448
|
+
_sym_db.RegisterMessage(BosdynQueryStoredCaptures.CaptureActionIdFormat)
|
|
449
|
+
|
|
431
450
|
ConstantResult = _reflection.GeneratedProtocolMessageType('ConstantResult', (_message.Message,), {
|
|
432
451
|
'DESCRIPTOR' : _CONSTANTRESULT,
|
|
433
452
|
'__module__' : 'bosdyn.api.mission.nodes_pb2'
|
|
@@ -456,6 +475,13 @@ ClearBehaviorFaults = _reflection.GeneratedProtocolMessageType('ClearBehaviorFau
|
|
|
456
475
|
})
|
|
457
476
|
_sym_db.RegisterMessage(ClearBehaviorFaults)
|
|
458
477
|
|
|
478
|
+
CreateMissionText = _reflection.GeneratedProtocolMessageType('CreateMissionText', (_message.Message,), {
|
|
479
|
+
'DESCRIPTOR' : _CREATEMISSIONTEXT,
|
|
480
|
+
'__module__' : 'bosdyn.api.mission.nodes_pb2'
|
|
481
|
+
# @@protoc_insertion_point(class_scope:bosdyn.api.mission.CreateMissionText)
|
|
482
|
+
})
|
|
483
|
+
_sym_db.RegisterMessage(CreateMissionText)
|
|
484
|
+
|
|
459
485
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
460
486
|
|
|
461
487
|
DESCRIPTOR._options = None
|
|
@@ -476,112 +502,118 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
476
502
|
_DOCK.fields_by_name['command_status_name']._serialized_options = b'\030\001'
|
|
477
503
|
_DOCK.fields_by_name['feedback_status_name']._options = None
|
|
478
504
|
_DOCK.fields_by_name['feedback_status_name']._serialized_options = b'\030\001'
|
|
479
|
-
_NODE._serialized_start=
|
|
480
|
-
_NODE._serialized_end=
|
|
481
|
-
_SEQUENCE._serialized_start=
|
|
482
|
-
_SEQUENCE._serialized_end=
|
|
483
|
-
_SELECTOR._serialized_start=
|
|
484
|
-
_SELECTOR._serialized_end=
|
|
485
|
-
_SWITCH._serialized_start=
|
|
486
|
-
_SWITCH._serialized_end=
|
|
487
|
-
_SWITCH_INTCHILDRENENTRY._serialized_start=
|
|
488
|
-
_SWITCH_INTCHILDRENENTRY._serialized_end=
|
|
489
|
-
_REPEAT._serialized_start=
|
|
490
|
-
_REPEAT._serialized_end=
|
|
491
|
-
_RETRY._serialized_start=
|
|
492
|
-
_RETRY._serialized_end=
|
|
493
|
-
_FORDURATION._serialized_start=
|
|
494
|
-
_FORDURATION._serialized_end=
|
|
495
|
-
_SIMPLEPARALLEL._serialized_start=
|
|
496
|
-
_SIMPLEPARALLEL._serialized_end=
|
|
497
|
-
_PARALLELAND._serialized_start=
|
|
498
|
-
_PARALLELAND._serialized_end=
|
|
499
|
-
_CONDITION._serialized_start=
|
|
500
|
-
_CONDITION._serialized_end=
|
|
501
|
-
_CONDITION_OPERAND._serialized_start=
|
|
502
|
-
_CONDITION_OPERAND._serialized_end=
|
|
503
|
-
_CONDITION_COMPARE._serialized_start=
|
|
504
|
-
_CONDITION_COMPARE._serialized_end=
|
|
505
|
-
_CONDITION_HANDLESTALENESS._serialized_start=
|
|
506
|
-
_CONDITION_HANDLESTALENESS._serialized_end=
|
|
507
|
-
_BOSDYNROBOTSTATE._serialized_start=
|
|
508
|
-
_BOSDYNROBOTSTATE._serialized_end=
|
|
509
|
-
_BOSDYNDOCKSTATE._serialized_start=
|
|
510
|
-
_BOSDYNDOCKSTATE._serialized_end=
|
|
511
|
-
_BOSDYNROBOTCOMMAND._serialized_start=
|
|
512
|
-
_BOSDYNROBOTCOMMAND._serialized_end=
|
|
513
|
-
_BOSDYNPOWERREQUEST._serialized_start=
|
|
514
|
-
_BOSDYNPOWERREQUEST._serialized_end=
|
|
515
|
-
_BOSDYNNAVIGATETO._serialized_start=
|
|
516
|
-
_BOSDYNNAVIGATETO._serialized_end=
|
|
517
|
-
_BOSDYNNAVIGATEROUTE._serialized_start=
|
|
518
|
-
_BOSDYNNAVIGATEROUTE._serialized_end=
|
|
519
|
-
_BOSDYNGRAPHNAVSTATE._serialized_start=
|
|
520
|
-
_BOSDYNGRAPHNAVSTATE._serialized_end=
|
|
521
|
-
_BOSDYNGRAPHNAVLOCALIZE._serialized_start=
|
|
522
|
-
_BOSDYNGRAPHNAVLOCALIZE._serialized_end=
|
|
523
|
-
_BOSDYNRECORDEVENT._serialized_start=
|
|
524
|
-
_BOSDYNRECORDEVENT._serialized_end=
|
|
525
|
-
_BOSDYNRECORDEVENT_ADDITIONALPARAMETERSENTRY._serialized_start=
|
|
526
|
-
_BOSDYNRECORDEVENT_ADDITIONALPARAMETERSENTRY._serialized_end=
|
|
527
|
-
_REMOTEGRPC._serialized_start=
|
|
528
|
-
_REMOTEGRPC._serialized_end=
|
|
529
|
-
_SLEEP._serialized_start=
|
|
530
|
-
_SLEEP._serialized_end=
|
|
531
|
-
_EXECUTECHOREOGRAPHY._serialized_start=
|
|
532
|
-
_EXECUTECHOREOGRAPHY._serialized_end=
|
|
533
|
-
_MISSIONUPLOADCHOREOGRAPHY._serialized_start=
|
|
534
|
-
_MISSIONUPLOADCHOREOGRAPHY._serialized_end=
|
|
535
|
-
_PROMPT._serialized_start=
|
|
536
|
-
_PROMPT._serialized_end=
|
|
537
|
-
_PROMPT_OPTION._serialized_start=
|
|
538
|
-
_PROMPT_OPTION._serialized_end=
|
|
539
|
-
_PROMPT_OPTIONSLIST._serialized_start=
|
|
540
|
-
_PROMPT_OPTIONSLIST._serialized_end=
|
|
541
|
-
_BOSDYNGRIPPERCAMERAPARAMSSTATE._serialized_start=
|
|
542
|
-
_BOSDYNGRIPPERCAMERAPARAMSSTATE._serialized_end=
|
|
543
|
-
_SETGRIPPERCAMERAPARAMS._serialized_start=
|
|
544
|
-
_SETGRIPPERCAMERAPARAMS._serialized_end=
|
|
545
|
-
_SETGRASPOVERRIDE._serialized_start=
|
|
546
|
-
_SETGRASPOVERRIDE._serialized_end=
|
|
547
|
-
_SPOTCAMPTZ._serialized_start=
|
|
548
|
-
_SPOTCAMPTZ._serialized_end=
|
|
549
|
-
_SPOTCAMPTZ_ADJUSTPARAMETERS._serialized_start=
|
|
550
|
-
_SPOTCAMPTZ_ADJUSTPARAMETERS._serialized_end=
|
|
551
|
-
_SPOTCAMSTOREMEDIA._serialized_start=
|
|
552
|
-
_SPOTCAMSTOREMEDIA._serialized_end=
|
|
553
|
-
_SPOTCAMLED._serialized_start=
|
|
554
|
-
_SPOTCAMLED._serialized_end=
|
|
555
|
-
_SPOTCAMLED_BRIGHTNESSESENTRY._serialized_start=
|
|
556
|
-
_SPOTCAMLED_BRIGHTNESSESENTRY._serialized_end=
|
|
557
|
-
_SPOTCAMFOCUSSTATE._serialized_start=
|
|
558
|
-
_SPOTCAMFOCUSSTATE._serialized_end=
|
|
559
|
-
_SPOTCAMRESETAUTOFOCUS._serialized_start=
|
|
560
|
-
_SPOTCAMRESETAUTOFOCUS._serialized_end=
|
|
561
|
-
_DOCK._serialized_start=
|
|
562
|
-
_DOCK._serialized_end=
|
|
563
|
-
_STOREMETADATA._serialized_start=
|
|
564
|
-
_STOREMETADATA._serialized_end=
|
|
565
|
-
_DATAACQUISITION._serialized_start=
|
|
566
|
-
_DATAACQUISITION._serialized_end=
|
|
567
|
-
_DATAACQUISITION_COMPLETIONBEHAVIOR._serialized_start=
|
|
568
|
-
_DATAACQUISITION_COMPLETIONBEHAVIOR._serialized_end=
|
|
569
|
-
_RETAINLEASE._serialized_start=
|
|
570
|
-
_RETAINLEASE._serialized_end=
|
|
571
|
-
_DEFINEBLACKBOARD._serialized_start=
|
|
572
|
-
_DEFINEBLACKBOARD._serialized_end=
|
|
573
|
-
_SETBLACKBOARD._serialized_start=
|
|
574
|
-
_SETBLACKBOARD._serialized_end=
|
|
575
|
-
_FORMATBLACKBOARD._serialized_start=
|
|
576
|
-
_FORMATBLACKBOARD._serialized_end=
|
|
577
|
-
_DATETOBLACKBOARD._serialized_start=
|
|
578
|
-
_DATETOBLACKBOARD._serialized_end=
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
505
|
+
_NODE._serialized_start=752
|
|
506
|
+
_NODE._serialized_end=4027
|
|
507
|
+
_SEQUENCE._serialized_start=4029
|
|
508
|
+
_SEQUENCE._serialized_end=4107
|
|
509
|
+
_SELECTOR._serialized_start=4109
|
|
510
|
+
_SELECTOR._serialized_end=4187
|
|
511
|
+
_SWITCH._serialized_start=4190
|
|
512
|
+
_SWITCH._serialized_end=4464
|
|
513
|
+
_SWITCH_INTCHILDRENENTRY._serialized_start=4388
|
|
514
|
+
_SWITCH_INTCHILDRENENTRY._serialized_end=4464
|
|
515
|
+
_REPEAT._serialized_start=4467
|
|
516
|
+
_REPEAT._serialized_end=4601
|
|
517
|
+
_RETRY._serialized_start=4603
|
|
518
|
+
_RETRY._serialized_end=4709
|
|
519
|
+
_FORDURATION._serialized_start=4712
|
|
520
|
+
_FORDURATION._serialized_end=4947
|
|
521
|
+
_SIMPLEPARALLEL._serialized_start=4950
|
|
522
|
+
_SIMPLEPARALLEL._serialized_end=5087
|
|
523
|
+
_PARALLELAND._serialized_start=5089
|
|
524
|
+
_PARALLELAND._serialized_end=5173
|
|
525
|
+
_CONDITION._serialized_start=5176
|
|
526
|
+
_CONDITION._serialized_end=5810
|
|
527
|
+
_CONDITION_OPERAND._serialized_start=5424
|
|
528
|
+
_CONDITION_OPERAND._serialized_end=5549
|
|
529
|
+
_CONDITION_COMPARE._serialized_start=5551
|
|
530
|
+
_CONDITION_COMPARE._serialized_end=5677
|
|
531
|
+
_CONDITION_HANDLESTALENESS._serialized_start=5680
|
|
532
|
+
_CONDITION_HANDLESTALENESS._serialized_end=5810
|
|
533
|
+
_BOSDYNROBOTSTATE._serialized_start=5812
|
|
534
|
+
_BOSDYNROBOTSTATE._serialized_end=5927
|
|
535
|
+
_BOSDYNDOCKSTATE._serialized_start=5929
|
|
536
|
+
_BOSDYNDOCKSTATE._serialized_end=6043
|
|
537
|
+
_BOSDYNROBOTCOMMAND._serialized_start=6045
|
|
538
|
+
_BOSDYNROBOTCOMMAND._serialized_end=6144
|
|
539
|
+
_BOSDYNPOWERREQUEST._serialized_start=6146
|
|
540
|
+
_BOSDYNPOWERREQUEST._serialized_end=6260
|
|
541
|
+
_BOSDYNNAVIGATETO._serialized_start=6263
|
|
542
|
+
_BOSDYNNAVIGATETO._serialized_end=6668
|
|
543
|
+
_BOSDYNNAVIGATEROUTE._serialized_start=6671
|
|
544
|
+
_BOSDYNNAVIGATEROUTE._serialized_end=7052
|
|
545
|
+
_BOSDYNGRAPHNAVSTATE._serialized_start=7055
|
|
546
|
+
_BOSDYNGRAPHNAVSTATE._serialized_end=7194
|
|
547
|
+
_BOSDYNGRAPHNAVLOCALIZE._serialized_start=7197
|
|
548
|
+
_BOSDYNGRAPHNAVLOCALIZE._serialized_end=7422
|
|
549
|
+
_BOSDYNRECORDEVENT._serialized_start=7425
|
|
550
|
+
_BOSDYNRECORDEVENT._serialized_end=7721
|
|
551
|
+
_BOSDYNRECORDEVENT_ADDITIONALPARAMETERSENTRY._serialized_start=7635
|
|
552
|
+
_BOSDYNRECORDEVENT_ADDITIONALPARAMETERSENTRY._serialized_end=7721
|
|
553
|
+
_REMOTEGRPC._serialized_start=7724
|
|
554
|
+
_REMOTEGRPC._serialized_end=7926
|
|
555
|
+
_SLEEP._serialized_start=7928
|
|
556
|
+
_SLEEP._serialized_end=8033
|
|
557
|
+
_EXECUTECHOREOGRAPHY._serialized_start=8035
|
|
558
|
+
_EXECUTECHOREOGRAPHY._serialized_end=8115
|
|
559
|
+
_MISSIONUPLOADCHOREOGRAPHY._serialized_start=8118
|
|
560
|
+
_MISSIONUPLOADCHOREOGRAPHY._serialized_end=8304
|
|
561
|
+
_PROMPT._serialized_start=8307
|
|
562
|
+
_PROMPT._serialized_end=8876
|
|
563
|
+
_PROMPT_OPTION._serialized_start=8751
|
|
564
|
+
_PROMPT_OPTION._serialized_end=8794
|
|
565
|
+
_PROMPT_OPTIONSLIST._serialized_start=8796
|
|
566
|
+
_PROMPT_OPTIONSLIST._serialized_end=8861
|
|
567
|
+
_BOSDYNGRIPPERCAMERAPARAMSSTATE._serialized_start=8879
|
|
568
|
+
_BOSDYNGRIPPERCAMERAPARAMSSTATE._serialized_end=9008
|
|
569
|
+
_SETGRIPPERCAMERAPARAMS._serialized_start=9011
|
|
570
|
+
_SETGRIPPERCAMERAPARAMS._serialized_end=9172
|
|
571
|
+
_SETGRASPOVERRIDE._serialized_start=9174
|
|
572
|
+
_SETGRASPOVERRIDE._serialized_end=9297
|
|
573
|
+
_SPOTCAMPTZ._serialized_start=9300
|
|
574
|
+
_SPOTCAMPTZ._serialized_end=9601
|
|
575
|
+
_SPOTCAMPTZ_ADJUSTPARAMETERS._serialized_start=9482
|
|
576
|
+
_SPOTCAMPTZ_ADJUSTPARAMETERS._serialized_end=9601
|
|
577
|
+
_SPOTCAMSTOREMEDIA._serialized_start=9604
|
|
578
|
+
_SPOTCAMSTOREMEDIA._serialized_end=9773
|
|
579
|
+
_SPOTCAMLED._serialized_start=9776
|
|
580
|
+
_SPOTCAMLED._serialized_end=9949
|
|
581
|
+
_SPOTCAMLED_BRIGHTNESSESENTRY._serialized_start=9898
|
|
582
|
+
_SPOTCAMLED_BRIGHTNESSESENTRY._serialized_end=9949
|
|
583
|
+
_SPOTCAMFOCUSSTATE._serialized_start=9951
|
|
584
|
+
_SPOTCAMFOCUSSTATE._serialized_end=10063
|
|
585
|
+
_SPOTCAMRESETAUTOFOCUS._serialized_start=10065
|
|
586
|
+
_SPOTCAMRESETAUTOFOCUS._serialized_end=10124
|
|
587
|
+
_DOCK._serialized_start=10127
|
|
588
|
+
_DOCK._serialized_end=10561
|
|
589
|
+
_STOREMETADATA._serialized_start=10564
|
|
590
|
+
_STOREMETADATA._serialized_end=10759
|
|
591
|
+
_DATAACQUISITION._serialized_start=10762
|
|
592
|
+
_DATAACQUISITION._serialized_end=11242
|
|
593
|
+
_DATAACQUISITION_COMPLETIONBEHAVIOR._serialized_start=11145
|
|
594
|
+
_DATAACQUISITION_COMPLETIONBEHAVIOR._serialized_end=11242
|
|
595
|
+
_RETAINLEASE._serialized_start=11244
|
|
596
|
+
_RETAINLEASE._serialized_end=11293
|
|
597
|
+
_DEFINEBLACKBOARD._serialized_start=11295
|
|
598
|
+
_DEFINEBLACKBOARD._serialized_end=11414
|
|
599
|
+
_SETBLACKBOARD._serialized_start=11416
|
|
600
|
+
_SETBLACKBOARD._serialized_end=11491
|
|
601
|
+
_FORMATBLACKBOARD._serialized_start=11493
|
|
602
|
+
_FORMATBLACKBOARD._serialized_end=11540
|
|
603
|
+
_DATETOBLACKBOARD._serialized_start=11542
|
|
604
|
+
_DATETOBLACKBOARD._serialized_end=11573
|
|
605
|
+
_BOSDYNQUERYSTOREDCAPTURES._serialized_start=11576
|
|
606
|
+
_BOSDYNQUERYSTOREDCAPTURES._serialized_end=11887
|
|
607
|
+
_BOSDYNQUERYSTOREDCAPTURES_CAPTUREACTIONIDFORMAT._serialized_start=11809
|
|
608
|
+
_BOSDYNQUERYSTOREDCAPTURES_CAPTUREACTIONIDFORMAT._serialized_end=11887
|
|
609
|
+
_CONSTANTRESULT._serialized_start=11889
|
|
610
|
+
_CONSTANTRESULT._serialized_end=11949
|
|
611
|
+
_RESTARTWHENPAUSED._serialized_start=11951
|
|
612
|
+
_RESTARTWHENPAUSED._serialized_end=12011
|
|
613
|
+
_DATAACQUISITIONONINTERRUPTION._serialized_start=12014
|
|
614
|
+
_DATAACQUISITIONONINTERRUPTION._serialized_end=12704
|
|
615
|
+
_CLEARBEHAVIORFAULTS._serialized_start=12707
|
|
616
|
+
_CLEARBEHAVIORFAULTS._serialized_end=12946
|
|
617
|
+
_CREATEMISSIONTEXT._serialized_start=12949
|
|
618
|
+
_CREATEMISSIONTEXT._serialized_end=13086
|
|
587
619
|
# @@protoc_insertion_point(module_scope)
|
bosdyn/api/mission/util_pb2.py
CHANGED
|
@@ -14,9 +14,10 @@ _sym_db = _symbol_database.Default()
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
|
17
|
+
from bosdyn.api import alerts_pb2 as bosdyn_dot_api_dot_alerts__pb2
|
|
17
18
|
|
|
18
19
|
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x62osdyn/api/mission/util.proto\x12\x12\x62osdyn.api.mission\x1a\x19google/protobuf/any.proto\"A\n\x08KeyValue\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.mission.Value\"\xc6\x01\n\x05Value\x12\x35\n\x08\x63onstant\x18\x02 \x01(\x0b\x32!.bosdyn.api.mission.ConstantValueH\x00\x12>\n\x0bruntime_var\x18\x03 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x12<\n\tparameter\x18\x04 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x42\x08\n\x06source\"\xc9\x01\n\x13VariableDeclaration\x12\x0c\n\x04name\x18\x01 \x01(\t\x12:\n\x04type\x18\x02 \x01(\x0e\x32,.bosdyn.api.mission.VariableDeclaration.Type\"h\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x0e\n\nTYPE_FLOAT\x10\x01\x12\x0f\n\x0bTYPE_STRING\x10\x02\x12\x0c\n\x08TYPE_INT\x10\x03\x12\r\n\tTYPE_BOOL\x10\x04\x12\x10\n\x0cTYPE_MESSAGE\x10\x05\"\x9d\x01\n\rConstantValue\x12\x15\n\x0b\x66loat_value\x18\x01 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x02 \x01(\tH\x00\x12\x13\n\tint_value\x18\x03 \x01(\x03H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12)\n\tmsg_value\x18\x05 \x01(\x0b\x32\x14.google.protobuf.AnyH\x00\x42\x07\n\x05value\"_\n\x08UserData\x12\n\n\x02id\x18\x01 \x01(\t\x12\x12\n\nbytestring\x18\x03 \x01(\x0c\x12\x33\n\x15source_representation\x18\x04 \x01(\x0b\x32\x14.google.protobuf.Any*j\n\x06Result\x12\x12\n\x0eRESULT_UNKNOWN\x10\x00\x12\x12\n\x0eRESULT_FAILURE\x10\x01\x12\x12\n\x0eRESULT_RUNNING\x10\x02\x12\x12\n\x0eRESULT_SUCCESS\x10\x03\x12\x10\n\x0cRESULT_ERROR\x10\x04\x42\x0b\x42\tUtilProtob\x06proto3')
|
|
20
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x62osdyn/api/mission/util.proto\x12\x12\x62osdyn.api.mission\x1a\x19google/protobuf/any.proto\x1a\x17\x62osdyn/api/alerts.proto\"A\n\x08KeyValue\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.bosdyn.api.mission.Value\"\xc6\x01\n\x05Value\x12\x35\n\x08\x63onstant\x18\x02 \x01(\x0b\x32!.bosdyn.api.mission.ConstantValueH\x00\x12>\n\x0bruntime_var\x18\x03 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x12<\n\tparameter\x18\x04 \x01(\x0b\x32\'.bosdyn.api.mission.VariableDeclarationH\x00\x42\x08\n\x06source\"\xc9\x01\n\x13VariableDeclaration\x12\x0c\n\x04name\x18\x01 \x01(\t\x12:\n\x04type\x18\x02 \x01(\x0e\x32,.bosdyn.api.mission.VariableDeclaration.Type\"h\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x0e\n\nTYPE_FLOAT\x10\x01\x12\x0f\n\x0bTYPE_STRING\x10\x02\x12\x0c\n\x08TYPE_INT\x10\x03\x12\r\n\tTYPE_BOOL\x10\x04\x12\x10\n\x0cTYPE_MESSAGE\x10\x05\"\x9d\x01\n\rConstantValue\x12\x15\n\x0b\x66loat_value\x18\x01 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x02 \x01(\tH\x00\x12\x13\n\tint_value\x18\x03 \x01(\x03H\x00\x12\x14\n\nbool_value\x18\x04 \x01(\x08H\x00\x12)\n\tmsg_value\x18\x05 \x01(\x0b\x32\x14.google.protobuf.AnyH\x00\x42\x07\n\x05value\"c\n\x0bMissionText\x12\x0c\n\x04text\x18\x01 \x01(\t\x12\x35\n\x08severity\x18\x02 \x01(\x0e\x32#.bosdyn.api.AlertData.SeverityLevel\x12\x0f\n\x07node_id\x18\x03 \x01(\x03\"_\n\x08UserData\x12\n\n\x02id\x18\x01 \x01(\t\x12\x12\n\nbytestring\x18\x03 \x01(\x0c\x12\x33\n\x15source_representation\x18\x04 \x01(\x0b\x32\x14.google.protobuf.Any*j\n\x06Result\x12\x12\n\x0eRESULT_UNKNOWN\x10\x00\x12\x12\n\x0eRESULT_FAILURE\x10\x01\x12\x12\n\x0eRESULT_RUNNING\x10\x02\x12\x12\n\x0eRESULT_SUCCESS\x10\x03\x12\x10\n\x0cRESULT_ERROR\x10\x04\x42\x0b\x42\tUtilProtob\x06proto3')
|
|
20
21
|
|
|
21
22
|
_RESULT = DESCRIPTOR.enum_types_by_name['Result']
|
|
22
23
|
Result = enum_type_wrapper.EnumTypeWrapper(_RESULT)
|
|
@@ -31,6 +32,7 @@ _KEYVALUE = DESCRIPTOR.message_types_by_name['KeyValue']
|
|
|
31
32
|
_VALUE = DESCRIPTOR.message_types_by_name['Value']
|
|
32
33
|
_VARIABLEDECLARATION = DESCRIPTOR.message_types_by_name['VariableDeclaration']
|
|
33
34
|
_CONSTANTVALUE = DESCRIPTOR.message_types_by_name['ConstantValue']
|
|
35
|
+
_MISSIONTEXT = DESCRIPTOR.message_types_by_name['MissionText']
|
|
34
36
|
_USERDATA = DESCRIPTOR.message_types_by_name['UserData']
|
|
35
37
|
_VARIABLEDECLARATION_TYPE = _VARIABLEDECLARATION.enum_types_by_name['Type']
|
|
36
38
|
KeyValue = _reflection.GeneratedProtocolMessageType('KeyValue', (_message.Message,), {
|
|
@@ -61,6 +63,13 @@ ConstantValue = _reflection.GeneratedProtocolMessageType('ConstantValue', (_mess
|
|
|
61
63
|
})
|
|
62
64
|
_sym_db.RegisterMessage(ConstantValue)
|
|
63
65
|
|
|
66
|
+
MissionText = _reflection.GeneratedProtocolMessageType('MissionText', (_message.Message,), {
|
|
67
|
+
'DESCRIPTOR' : _MISSIONTEXT,
|
|
68
|
+
'__module__' : 'bosdyn.api.mission.util_pb2'
|
|
69
|
+
# @@protoc_insertion_point(class_scope:bosdyn.api.mission.MissionText)
|
|
70
|
+
})
|
|
71
|
+
_sym_db.RegisterMessage(MissionText)
|
|
72
|
+
|
|
64
73
|
UserData = _reflection.GeneratedProtocolMessageType('UserData', (_message.Message,), {
|
|
65
74
|
'DESCRIPTOR' : _USERDATA,
|
|
66
75
|
'__module__' : 'bosdyn.api.mission.util_pb2'
|
|
@@ -72,18 +81,20 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
72
81
|
|
|
73
82
|
DESCRIPTOR._options = None
|
|
74
83
|
DESCRIPTOR._serialized_options = b'B\tUtilProto'
|
|
75
|
-
_RESULT._serialized_start=
|
|
76
|
-
_RESULT._serialized_end=
|
|
77
|
-
_KEYVALUE._serialized_start=
|
|
78
|
-
_KEYVALUE._serialized_end=
|
|
79
|
-
_VALUE._serialized_start=
|
|
80
|
-
_VALUE._serialized_end=
|
|
81
|
-
_VARIABLEDECLARATION._serialized_start=
|
|
82
|
-
_VARIABLEDECLARATION._serialized_end=
|
|
83
|
-
_VARIABLEDECLARATION_TYPE._serialized_start=
|
|
84
|
-
_VARIABLEDECLARATION_TYPE._serialized_end=
|
|
85
|
-
_CONSTANTVALUE._serialized_start=
|
|
86
|
-
_CONSTANTVALUE._serialized_end=
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
_RESULT._serialized_start=935
|
|
85
|
+
_RESULT._serialized_end=1041
|
|
86
|
+
_KEYVALUE._serialized_start=105
|
|
87
|
+
_KEYVALUE._serialized_end=170
|
|
88
|
+
_VALUE._serialized_start=173
|
|
89
|
+
_VALUE._serialized_end=371
|
|
90
|
+
_VARIABLEDECLARATION._serialized_start=374
|
|
91
|
+
_VARIABLEDECLARATION._serialized_end=575
|
|
92
|
+
_VARIABLEDECLARATION_TYPE._serialized_start=471
|
|
93
|
+
_VARIABLEDECLARATION_TYPE._serialized_end=575
|
|
94
|
+
_CONSTANTVALUE._serialized_start=578
|
|
95
|
+
_CONSTANTVALUE._serialized_end=735
|
|
96
|
+
_MISSIONTEXT._serialized_start=737
|
|
97
|
+
_MISSIONTEXT._serialized_end=836
|
|
98
|
+
_USERDATA._serialized_start=838
|
|
99
|
+
_USERDATA._serialized_end=933
|
|
89
100
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -103,7 +103,7 @@ class NetworkComputeBridge(object):
|
|
|
103
103
|
|
|
104
104
|
|
|
105
105
|
class NetworkComputeBridgeWorkerStub(object):
|
|
106
|
-
"""Set of RPCs for workers of the network compute bridge. This is
|
|
106
|
+
"""Set of RPCs for workers of the network compute bridge. This is separate from the RPCs for the
|
|
107
107
|
on-robot network compute bridge so that if they need to diverge in the future it is possible
|
|
108
108
|
to do so.
|
|
109
109
|
"""
|
|
@@ -132,7 +132,7 @@ class NetworkComputeBridgeWorkerStub(object):
|
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
class NetworkComputeBridgeWorkerServicer(object):
|
|
135
|
-
"""Set of RPCs for workers of the network compute bridge. This is
|
|
135
|
+
"""Set of RPCs for workers of the network compute bridge. This is separate from the RPCs for the
|
|
136
136
|
on-robot network compute bridge so that if they need to diverge in the future it is possible
|
|
137
137
|
to do so.
|
|
138
138
|
"""
|
|
@@ -181,7 +181,7 @@ def add_NetworkComputeBridgeWorkerServicer_to_server(servicer, server):
|
|
|
181
181
|
|
|
182
182
|
# This class is part of an EXPERIMENTAL API.
|
|
183
183
|
class NetworkComputeBridgeWorker(object):
|
|
184
|
-
"""Set of RPCs for workers of the network compute bridge. This is
|
|
184
|
+
"""Set of RPCs for workers of the network compute bridge. This is separate from the RPCs for the
|
|
185
185
|
on-robot network compute bridge so that if they need to diverge in the future it is possible
|
|
186
186
|
to do so.
|
|
187
187
|
"""
|
|
@@ -37,8 +37,8 @@ class PointCloudServiceServicer(object):
|
|
|
37
37
|
|
|
38
38
|
def ListPointCloudSources(self, request, context):
|
|
39
39
|
"""Obtain the list of PointCloudSources for this given service.
|
|
40
|
-
Note that there may be multiple PointCloudServices running, each with their own set of
|
|
41
|
-
The name field keys access to individual point clouds when calling GetPointCloud.
|
|
40
|
+
Note that there may be multiple PointCloudServices running, each with their own set of
|
|
41
|
+
sources The name field keys access to individual point clouds when calling GetPointCloud.
|
|
42
42
|
"""
|
|
43
43
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
44
44
|
context.set_details('Method not implemented!')
|