wandelbots_api_client 26.3.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.
- wandelbots_api_client/__init__.py +48 -0
- wandelbots_api_client/api/__init__.py +63 -0
- wandelbots_api_client/api/application_api.py +1514 -0
- wandelbots_api_client/api/cell_api.py +1424 -0
- wandelbots_api_client/api/controller_api.py +2951 -0
- wandelbots_api_client/api/controller_ios_api.py +1205 -0
- wandelbots_api_client/api/coordinate_systems_api.py +1267 -0
- wandelbots_api_client/api/device_configuration_api.py +1193 -0
- wandelbots_api_client/api/library_program_api.py +1326 -0
- wandelbots_api_client/api/library_program_metadata_api.py +1090 -0
- wandelbots_api_client/api/library_recipe_api.py +1351 -0
- wandelbots_api_client/api/library_recipe_metadata_api.py +1050 -0
- wandelbots_api_client/api/license_api.py +865 -0
- wandelbots_api_client/api/motion_api.py +3596 -0
- wandelbots_api_client/api/motion_group_api.py +956 -0
- wandelbots_api_client/api/motion_group_infos_api.py +2611 -0
- wandelbots_api_client/api/motion_group_jogging_api.py +685 -0
- wandelbots_api_client/api/motion_group_kinematic_api.py +1055 -0
- wandelbots_api_client/api/program_api.py +1987 -0
- wandelbots_api_client/api/program_operator_api.py +1881 -0
- wandelbots_api_client/api/program_values_api.py +1444 -0
- wandelbots_api_client/api/store_collision_components_api.py +3074 -0
- wandelbots_api_client/api/store_collision_scenes_api.py +951 -0
- wandelbots_api_client/api/store_object_api.py +1387 -0
- wandelbots_api_client/api/system_api.py +1075 -0
- wandelbots_api_client/api/version_api.py +237 -0
- wandelbots_api_client/api/virtual_robot_api.py +1583 -0
- wandelbots_api_client/api/virtual_robot_behavior_api.py +649 -0
- wandelbots_api_client/api/virtual_robot_mode_api.py +1467 -0
- wandelbots_api_client/api/virtual_robot_setup_api.py +2116 -0
- wandelbots_api_client/api_client.py +688 -0
- wandelbots_api_client/api_response.py +20 -0
- wandelbots_api_client/authorization.py +243 -0
- wandelbots_api_client/configuration.py +579 -0
- wandelbots_api_client/exceptions.py +216 -0
- wandelbots_api_client/models/__init__.py +316 -0
- wandelbots_api_client/models/abb_controller.py +112 -0
- wandelbots_api_client/models/abb_controller_egm_server.py +87 -0
- wandelbots_api_client/models/activate_license_request.py +86 -0
- wandelbots_api_client/models/add_request.py +95 -0
- wandelbots_api_client/models/all_joint_positions_request.py +96 -0
- wandelbots_api_client/models/all_joint_positions_response.py +109 -0
- wandelbots_api_client/models/api_version.py +86 -0
- wandelbots_api_client/models/app.py +148 -0
- wandelbots_api_client/models/array_input.py +114 -0
- wandelbots_api_client/models/array_output.py +116 -0
- wandelbots_api_client/models/behavior.py +35 -0
- wandelbots_api_client/models/blending_auto.py +99 -0
- wandelbots_api_client/models/blending_position.py +97 -0
- wandelbots_api_client/models/box.py +98 -0
- wandelbots_api_client/models/box2.py +112 -0
- wandelbots_api_client/models/box3.py +112 -0
- wandelbots_api_client/models/capsule.py +87 -0
- wandelbots_api_client/models/capsule2.py +97 -0
- wandelbots_api_client/models/capsule3.py +101 -0
- wandelbots_api_client/models/capture.py +86 -0
- wandelbots_api_client/models/cell.py +142 -0
- wandelbots_api_client/models/circle.py +99 -0
- wandelbots_api_client/models/code_with_arguments.py +108 -0
- wandelbots_api_client/models/collection_value.py +322 -0
- wandelbots_api_client/models/collider.py +105 -0
- wandelbots_api_client/models/collider_input.py +105 -0
- wandelbots_api_client/models/collider_output.py +105 -0
- wandelbots_api_client/models/collider_output_shape.py +242 -0
- wandelbots_api_client/models/collider_shape.py +280 -0
- wandelbots_api_client/models/collision.py +110 -0
- wandelbots_api_client/models/collision_contact.py +92 -0
- wandelbots_api_client/models/collision_motion_group.py +124 -0
- wandelbots_api_client/models/collision_motion_group_assembly.py +128 -0
- wandelbots_api_client/models/collision_robot_configuration_input.py +121 -0
- wandelbots_api_client/models/collision_robot_configuration_output.py +121 -0
- wandelbots_api_client/models/collision_scene.py +117 -0
- wandelbots_api_client/models/collision_scene_assembly.py +133 -0
- wandelbots_api_client/models/command.py +140 -0
- wandelbots_api_client/models/command_settings.py +104 -0
- wandelbots_api_client/models/comparator.py +39 -0
- wandelbots_api_client/models/compound.py +114 -0
- wandelbots_api_client/models/container_environment_inner.py +87 -0
- wandelbots_api_client/models/container_image.py +122 -0
- wandelbots_api_client/models/container_image_secrets_inner.py +86 -0
- wandelbots_api_client/models/container_resources.py +89 -0
- wandelbots_api_client/models/container_storage.py +97 -0
- wandelbots_api_client/models/controller_capabilities.py +89 -0
- wandelbots_api_client/models/controller_instance.py +148 -0
- wandelbots_api_client/models/controller_instance_list.py +109 -0
- wandelbots_api_client/models/convex_hull.py +109 -0
- wandelbots_api_client/models/convex_hull2.py +97 -0
- wandelbots_api_client/models/convex_hull3.py +97 -0
- wandelbots_api_client/models/coordinate_system.py +108 -0
- wandelbots_api_client/models/coordinate_systems.py +109 -0
- wandelbots_api_client/models/create_program_run200_response.py +88 -0
- wandelbots_api_client/models/create_program_run_request.py +86 -0
- wandelbots_api_client/models/create_trigger200_response.py +86 -0
- wandelbots_api_client/models/create_trigger_request.py +101 -0
- wandelbots_api_client/models/cubic_spline.py +109 -0
- wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cycle_time.py +86 -0
- wandelbots_api_client/models/cylinder.py +87 -0
- wandelbots_api_client/models/cylinder2.py +95 -0
- wandelbots_api_client/models/cylinder3.py +101 -0
- wandelbots_api_client/models/devices_inner.py +321 -0
- wandelbots_api_client/models/dh_parameter.py +98 -0
- wandelbots_api_client/models/direction.py +34 -0
- wandelbots_api_client/models/direction_jogging_request.py +136 -0
- wandelbots_api_client/models/error.py +87 -0
- wandelbots_api_client/models/execute_trajectory_request.py +182 -0
- wandelbots_api_client/models/execute_trajectory_response.py +223 -0
- wandelbots_api_client/models/execution_result.py +113 -0
- wandelbots_api_client/models/external_joint_stream_datapoint.py +96 -0
- wandelbots_api_client/models/external_joint_stream_datapoint_value.py +96 -0
- wandelbots_api_client/models/fanuc_controller.py +99 -0
- wandelbots_api_client/models/feedback_collision.py +126 -0
- wandelbots_api_client/models/feedback_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/models/feedback_out_of_workspace.py +103 -0
- wandelbots_api_client/models/feedback_singularity.py +102 -0
- wandelbots_api_client/models/flag.py +86 -0
- wandelbots_api_client/models/force_vector.py +103 -0
- wandelbots_api_client/models/geometry.py +167 -0
- wandelbots_api_client/models/get_all_program_runs200_response.py +109 -0
- wandelbots_api_client/models/get_all_triggers200_response.py +109 -0
- wandelbots_api_client/models/get_mode_response.py +87 -0
- wandelbots_api_client/models/get_trajectory_response.py +112 -0
- wandelbots_api_client/models/get_trajectory_sample_response.py +90 -0
- wandelbots_api_client/models/google_protobuf_any.py +102 -0
- wandelbots_api_client/models/http_exception_response.py +86 -0
- wandelbots_api_client/models/http_validation_error.py +109 -0
- wandelbots_api_client/models/http_validation_error2.py +109 -0
- wandelbots_api_client/models/image_credentials.py +88 -0
- wandelbots_api_client/models/info_service_capabilities.py +110 -0
- wandelbots_api_client/models/initialize_movement_request.py +111 -0
- wandelbots_api_client/models/initialize_movement_response.py +96 -0
- wandelbots_api_client/models/initialize_movement_response_init_response.py +89 -0
- wandelbots_api_client/models/io.py +105 -0
- wandelbots_api_client/models/io_description.py +156 -0
- wandelbots_api_client/models/io_value.py +104 -0
- wandelbots_api_client/models/ios.py +109 -0
- wandelbots_api_client/models/jogging_response.py +117 -0
- wandelbots_api_client/models/jogging_service_capabilities.py +87 -0
- wandelbots_api_client/models/joint_jogging_request.py +108 -0
- wandelbots_api_client/models/joint_limit.py +123 -0
- wandelbots_api_client/models/joint_limit_exceeded.py +96 -0
- wandelbots_api_client/models/joint_position_request.py +104 -0
- wandelbots_api_client/models/joint_trajectory.py +117 -0
- wandelbots_api_client/models/joints.py +86 -0
- wandelbots_api_client/models/kinematic_service_capabilities.py +96 -0
- wandelbots_api_client/models/kuka_controller.py +112 -0
- wandelbots_api_client/models/kuka_controller_rsi_server.py +92 -0
- wandelbots_api_client/models/license.py +124 -0
- wandelbots_api_client/models/license_status.py +88 -0
- wandelbots_api_client/models/license_status_enum.py +37 -0
- wandelbots_api_client/models/limit_settings.py +223 -0
- wandelbots_api_client/models/limits_override.py +132 -0
- wandelbots_api_client/models/list_io_descriptions_response.py +109 -0
- wandelbots_api_client/models/list_io_values_response.py +109 -0
- wandelbots_api_client/models/list_payloads_response.py +109 -0
- wandelbots_api_client/models/list_program_metadata_response.py +109 -0
- wandelbots_api_client/models/list_recipe_metadata_response.py +109 -0
- wandelbots_api_client/models/list_response.py +109 -0
- wandelbots_api_client/models/list_tcps_response.py +112 -0
- wandelbots_api_client/models/location_inner.py +153 -0
- wandelbots_api_client/models/location_inner1.py +142 -0
- wandelbots_api_client/models/manufacturer.py +37 -0
- wandelbots_api_client/models/mode_change_response.py +97 -0
- wandelbots_api_client/models/motion_command.py +109 -0
- wandelbots_api_client/models/motion_command_blending.py +164 -0
- wandelbots_api_client/models/motion_command_path.py +221 -0
- wandelbots_api_client/models/motion_group_behavior_getter.py +87 -0
- wandelbots_api_client/models/motion_group_info.py +88 -0
- wandelbots_api_client/models/motion_group_infos.py +109 -0
- wandelbots_api_client/models/motion_group_instance.py +101 -0
- wandelbots_api_client/models/motion_group_instance_list.py +109 -0
- wandelbots_api_client/models/motion_group_joints.py +100 -0
- wandelbots_api_client/models/motion_group_physical.py +105 -0
- wandelbots_api_client/models/motion_group_specification.py +136 -0
- wandelbots_api_client/models/motion_group_state.py +180 -0
- wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +86 -0
- wandelbots_api_client/models/motion_group_state_response.py +103 -0
- wandelbots_api_client/models/motion_id.py +88 -0
- wandelbots_api_client/models/motion_ids_list_response.py +89 -0
- wandelbots_api_client/models/motion_vector.py +103 -0
- wandelbots_api_client/models/mounting.py +98 -0
- wandelbots_api_client/models/move_request.py +162 -0
- wandelbots_api_client/models/move_response.py +91 -0
- wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +107 -0
- wandelbots_api_client/models/movement.py +90 -0
- wandelbots_api_client/models/movement_error.py +90 -0
- wandelbots_api_client/models/movement_error_error.py +86 -0
- wandelbots_api_client/models/movement_movement.py +98 -0
- wandelbots_api_client/models/op_mode.py +93 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config.py +100 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +159 -0
- wandelbots_api_client/models/optimizer_setup.py +145 -0
- wandelbots_api_client/models/out_of_workspace.py +92 -0
- wandelbots_api_client/models/path.py +109 -0
- wandelbots_api_client/models/path_cartesian_ptp.py +103 -0
- wandelbots_api_client/models/path_circle.py +108 -0
- wandelbots_api_client/models/path_cubic_spline.py +118 -0
- wandelbots_api_client/models/path_joint_ptp.py +96 -0
- wandelbots_api_client/models/path_line.py +103 -0
- wandelbots_api_client/models/pause_movement_request.py +95 -0
- wandelbots_api_client/models/pause_movement_response.py +96 -0
- wandelbots_api_client/models/pause_movement_response_pause_response.py +89 -0
- wandelbots_api_client/models/pause_on_io.py +96 -0
- wandelbots_api_client/models/payload.py +103 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request.py +131 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +150 -0
- wandelbots_api_client/models/plan_failed_on_trajectory_response.py +149 -0
- wandelbots_api_client/models/plan_failed_response.py +136 -0
- wandelbots_api_client/models/plan_request.py +127 -0
- wandelbots_api_client/models/plan_response.py +112 -0
- wandelbots_api_client/models/plan_successful_response.py +100 -0
- wandelbots_api_client/models/plan_trajectory_failed_response.py +106 -0
- wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +209 -0
- wandelbots_api_client/models/plan_trajectory_request.py +154 -0
- wandelbots_api_client/models/plan_trajectory_response.py +92 -0
- wandelbots_api_client/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/models/plane2.py +93 -0
- wandelbots_api_client/models/plane3.py +93 -0
- wandelbots_api_client/models/planned_motion.py +125 -0
- wandelbots_api_client/models/planner_pose.py +100 -0
- wandelbots_api_client/models/planning_limits.py +168 -0
- wandelbots_api_client/models/planning_limits_limit_range.py +87 -0
- wandelbots_api_client/models/playback_speed_request.py +94 -0
- wandelbots_api_client/models/playback_speed_response.py +96 -0
- wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +86 -0
- wandelbots_api_client/models/point_cloud.py +86 -0
- wandelbots_api_client/models/pose.py +107 -0
- wandelbots_api_client/models/pose2.py +93 -0
- wandelbots_api_client/models/program_metadata.py +100 -0
- wandelbots_api_client/models/program_run.py +168 -0
- wandelbots_api_client/models/program_run_object.py +103 -0
- wandelbots_api_client/models/program_run_state.py +37 -0
- wandelbots_api_client/models/program_runner_reference.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +87 -0
- wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +107 -0
- wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +119 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +102 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +94 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +94 -0
- wandelbots_api_client/models/quaternion.py +89 -0
- wandelbots_api_client/models/recipe_metadata.py +102 -0
- wandelbots_api_client/models/rectangle.py +87 -0
- wandelbots_api_client/models/rectangle2.py +95 -0
- wandelbots_api_client/models/rectangle3.py +101 -0
- wandelbots_api_client/models/rectangular_capsule.py +94 -0
- wandelbots_api_client/models/rectangular_capsule2.py +103 -0
- wandelbots_api_client/models/rectangular_capsule3.py +103 -0
- wandelbots_api_client/models/release_channel.py +34 -0
- wandelbots_api_client/models/request.py +142 -0
- wandelbots_api_client/models/request1.py +140 -0
- wandelbots_api_client/models/response_get_devices_devices_get_inner.py +321 -0
- wandelbots_api_client/models/response_get_value_programs_values_key_get.py +317 -0
- wandelbots_api_client/models/response_get_values_programs_values_get_value.py +322 -0
- wandelbots_api_client/models/robot_controller.py +108 -0
- wandelbots_api_client/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/models/robot_controller_state.py +191 -0
- wandelbots_api_client/models/robot_link_geometry.py +98 -0
- wandelbots_api_client/models/robot_state.py +101 -0
- wandelbots_api_client/models/robot_system_mode.py +37 -0
- wandelbots_api_client/models/robot_tcp.py +104 -0
- wandelbots_api_client/models/robot_tcps.py +109 -0
- wandelbots_api_client/models/rotation_angle_types.py +58 -0
- wandelbots_api_client/models/rotation_angles.py +91 -0
- wandelbots_api_client/models/safety_configuration.py +182 -0
- wandelbots_api_client/models/safety_setup.py +172 -0
- wandelbots_api_client/models/safety_setup_safety_settings.py +106 -0
- wandelbots_api_client/models/safety_setup_safety_zone.py +103 -0
- wandelbots_api_client/models/safety_zone.py +98 -0
- wandelbots_api_client/models/safety_zone_limits.py +96 -0
- wandelbots_api_client/models/safety_zone_violation.py +86 -0
- wandelbots_api_client/models/service_status.py +96 -0
- wandelbots_api_client/models/service_status_phase.py +46 -0
- wandelbots_api_client/models/service_status_severity.py +35 -0
- wandelbots_api_client/models/service_status_status.py +90 -0
- wandelbots_api_client/models/set_io.py +93 -0
- wandelbots_api_client/models/set_playback_speed.py +91 -0
- wandelbots_api_client/models/single_joint_limit.py +112 -0
- wandelbots_api_client/models/singularity.py +110 -0
- wandelbots_api_client/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/models/sphere.py +86 -0
- wandelbots_api_client/models/sphere2.py +94 -0
- wandelbots_api_client/models/sphere3.py +96 -0
- wandelbots_api_client/models/standstill.py +92 -0
- wandelbots_api_client/models/standstill_reason.py +36 -0
- wandelbots_api_client/models/standstill_standstill.py +99 -0
- wandelbots_api_client/models/start_movement_request.py +135 -0
- wandelbots_api_client/models/start_on_io.py +96 -0
- wandelbots_api_client/models/status.py +119 -0
- wandelbots_api_client/models/stop_response.py +109 -0
- wandelbots_api_client/models/store_value.py +349 -0
- wandelbots_api_client/models/stream_move_backward.py +90 -0
- wandelbots_api_client/models/stream_move_forward.py +90 -0
- wandelbots_api_client/models/stream_move_playback_speed.py +92 -0
- wandelbots_api_client/models/stream_move_request.py +207 -0
- wandelbots_api_client/models/stream_move_response.py +110 -0
- wandelbots_api_client/models/stream_move_to_trajectory.py +96 -0
- wandelbots_api_client/models/stream_stop.py +90 -0
- wandelbots_api_client/models/tcp_pose.py +105 -0
- wandelbots_api_client/models/tcp_pose_request.py +106 -0
- wandelbots_api_client/models/tool_geometry.py +111 -0
- wandelbots_api_client/models/trajectory_sample.py +139 -0
- wandelbots_api_client/models/trigger_object.py +110 -0
- wandelbots_api_client/models/trigger_type.py +33 -0
- wandelbots_api_client/models/universalrobots_controller.py +102 -0
- wandelbots_api_client/models/update_nova_version_request.py +87 -0
- wandelbots_api_client/models/update_program_metadata_request.py +88 -0
- wandelbots_api_client/models/update_recipe_metadata_request.py +88 -0
- wandelbots_api_client/models/update_trigger_request.py +100 -0
- wandelbots_api_client/models/validation_error.py +113 -0
- wandelbots_api_client/models/validation_error2.py +113 -0
- wandelbots_api_client/models/value.py +317 -0
- wandelbots_api_client/models/vector3d.py +88 -0
- wandelbots_api_client/models/version_number.py +113 -0
- wandelbots_api_client/models/virtual_controller.py +117 -0
- wandelbots_api_client/models/virtual_controller_types.py +153 -0
- wandelbots_api_client/models/virtual_robot_configuration.py +91 -0
- wandelbots_api_client/models/yaskawa_controller.py +99 -0
- wandelbots_api_client/py.typed +0 -0
- wandelbots_api_client/rest.py +188 -0
- wandelbots_api_client/v2/__init__.py +49 -0
- wandelbots_api_client/v2/api/__init__.py +55 -0
- wandelbots_api_client/v2/api/application_api.py +1532 -0
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2/api/cell_api.py +2163 -0
- wandelbots_api_client/v2/api/controller_api.py +3238 -0
- wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2/api/jogging_api.py +113 -0
- wandelbots_api_client/v2/api/kinematics_api.py +815 -0
- wandelbots_api_client/v2/api/license_api.py +877 -0
- wandelbots_api_client/v2/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2/api/program_api.py +988 -0
- wandelbots_api_client/v2/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2/api/system_api.py +2696 -0
- wandelbots_api_client/v2/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2/api/version_api.py +240 -0
- wandelbots_api_client/v2/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2/api_client.py +692 -0
- wandelbots_api_client/v2/api_response.py +20 -0
- wandelbots_api_client/v2/configuration.py +579 -0
- wandelbots_api_client/v2/exceptions.py +216 -0
- wandelbots_api_client/v2/models/__init__.py +376 -0
- wandelbots_api_client/v2/models/abb_controller.py +104 -0
- wandelbots_api_client/v2/models/abb_controller_egm_server.py +84 -0
- wandelbots_api_client/v2/models/activate_license_request.py +83 -0
- wandelbots_api_client/v2/models/add_trajectory_error.py +95 -0
- wandelbots_api_client/v2/models/add_trajectory_error_data.py +298 -0
- wandelbots_api_client/v2/models/add_trajectory_request.py +97 -0
- wandelbots_api_client/v2/models/add_trajectory_response.py +99 -0
- wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py +147 -0
- wandelbots_api_client/v2/models/api_version.py +83 -0
- wandelbots_api_client/v2/models/app.py +156 -0
- wandelbots_api_client/v2/models/behavior.py +35 -0
- wandelbots_api_client/v2/models/blending_auto.py +97 -0
- wandelbots_api_client/v2/models/blending_position.py +143 -0
- wandelbots_api_client/v2/models/blending_space.py +34 -0
- wandelbots_api_client/v2/models/boolean_value.py +91 -0
- wandelbots_api_client/v2/models/box.py +109 -0
- wandelbots_api_client/v2/models/bus_io_description.py +111 -0
- wandelbots_api_client/v2/models/bus_io_modbus_client.py +100 -0
- wandelbots_api_client/v2/models/bus_io_modbus_server.py +127 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +98 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +97 -0
- wandelbots_api_client/v2/models/bus_io_modbus_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_profinet.py +131 -0
- wandelbots_api_client/v2/models/bus_io_profinet_default_route.py +84 -0
- wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +85 -0
- wandelbots_api_client/v2/models/bus_io_profinet_network.py +101 -0
- wandelbots_api_client/v2/models/bus_io_profinet_slot.py +92 -0
- wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_type.py +223 -0
- wandelbots_api_client/v2/models/bus_ios_state.py +88 -0
- wandelbots_api_client/v2/models/bus_ios_state_enum.py +36 -0
- wandelbots_api_client/v2/models/capsule.py +94 -0
- wandelbots_api_client/v2/models/cartesian_limits.py +108 -0
- wandelbots_api_client/v2/models/cell.py +127 -0
- wandelbots_api_client/v2/models/cloud_config_status.py +164 -0
- wandelbots_api_client/v2/models/cloud_config_status_configured.py +97 -0
- wandelbots_api_client/v2/models/cloud_config_status_not_configured.py +90 -0
- wandelbots_api_client/v2/models/cloud_configuration.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error.py +87 -0
- wandelbots_api_client/v2/models/cloud_connection_error_error.py +275 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details_cloud_response.py +90 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error.py +106 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error_details.py +83 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_restart_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed_details.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response.py +104 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details_cloud_response.py +85 -0
- wandelbots_api_client/v2/models/cloud_connection_request.py +98 -0
- wandelbots_api_client/v2/models/cloud_disconnection_error.py +89 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py +90 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py +90 -0
- wandelbots_api_client/v2/models/cloud_registration_success_response.py +83 -0
- wandelbots_api_client/v2/models/collider.py +102 -0
- wandelbots_api_client/v2/models/collider_shape.py +278 -0
- wandelbots_api_client/v2/models/collision.py +107 -0
- wandelbots_api_client/v2/models/collision_contact.py +89 -0
- wandelbots_api_client/v2/models/collision_error.py +100 -0
- wandelbots_api_client/v2/models/collision_free_algorithm.py +164 -0
- wandelbots_api_client/v2/models/collision_motion_group.py +119 -0
- wandelbots_api_client/v2/models/collision_setup.py +130 -0
- wandelbots_api_client/v2/models/comparator.py +38 -0
- wandelbots_api_client/v2/models/configuration_archive_status.py +197 -0
- wandelbots_api_client/v2/models/configuration_archive_status_creating.py +94 -0
- wandelbots_api_client/v2/models/configuration_archive_status_error.py +91 -0
- wandelbots_api_client/v2/models/configuration_archive_status_success.py +90 -0
- wandelbots_api_client/v2/models/configuration_resource.py +104 -0
- wandelbots_api_client/v2/models/constrained_pose.py +87 -0
- wandelbots_api_client/v2/models/container_environment_inner.py +84 -0
- wandelbots_api_client/v2/models/container_image.py +110 -0
- wandelbots_api_client/v2/models/container_image_secrets_inner.py +83 -0
- wandelbots_api_client/v2/models/container_resources.py +87 -0
- wandelbots_api_client/v2/models/container_storage.py +94 -0
- wandelbots_api_client/v2/models/controller_description.py +97 -0
- wandelbots_api_client/v2/models/convex_hull.py +94 -0
- wandelbots_api_client/v2/models/coordinate_system.py +115 -0
- wandelbots_api_client/v2/models/coordinate_system_data.py +106 -0
- wandelbots_api_client/v2/models/cubic_spline_parameter.py +90 -0
- wandelbots_api_client/v2/models/cycle_time.py +86 -0
- wandelbots_api_client/v2/models/cylinder.py +92 -0
- wandelbots_api_client/v2/models/dh_parameter.py +98 -0
- wandelbots_api_client/v2/models/direction.py +34 -0
- wandelbots_api_client/v2/models/direction_constraint.py +107 -0
- wandelbots_api_client/v2/models/error.py +84 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/error_invalid_joint_count.py +98 -0
- wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
- wandelbots_api_client/v2/models/error_joint_position_collision.py +106 -0
- wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +91 -0
- wandelbots_api_client/v2/models/error_motion_group_key_mismatch.py +85 -0
- wandelbots_api_client/v2/models/error_unsupported_operation.py +90 -0
- wandelbots_api_client/v2/models/execute.py +95 -0
- wandelbots_api_client/v2/models/execute_details.py +164 -0
- wandelbots_api_client/v2/models/execute_jogging_request.py +204 -0
- wandelbots_api_client/v2/models/execute_jogging_response.py +246 -0
- wandelbots_api_client/v2/models/execute_trajectory_request.py +209 -0
- wandelbots_api_client/v2/models/execute_trajectory_response.py +246 -0
- wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +93 -0
- wandelbots_api_client/v2/models/external_joint_stream_request.py +97 -0
- wandelbots_api_client/v2/models/fanuc_controller.py +91 -0
- wandelbots_api_client/v2/models/feedback_collision.py +112 -0
- wandelbots_api_client/v2/models/feedback_commands_missing.py +90 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_is_not_increasing.py +100 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_not_at_start_pose.py +105 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_no_solution_exists.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/feedback_invalid_dof.py +101 -0
- wandelbots_api_client/v2/models/feedback_invalid_nan_value.py +91 -0
- wandelbots_api_client/v2/models/feedback_invalid_sampling_time.py +91 -0
- wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +99 -0
- wandelbots_api_client/v2/models/feedback_no_solution_in_current_configuration.py +100 -0
- wandelbots_api_client/v2/models/feedback_out_of_workspace.py +100 -0
- wandelbots_api_client/v2/models/feedback_singularity.py +99 -0
- wandelbots_api_client/v2/models/feedback_start_joints_missing.py +98 -0
- wandelbots_api_client/v2/models/feedback_torque_exceeded.py +98 -0
- wandelbots_api_client/v2/models/flag.py +83 -0
- wandelbots_api_client/v2/models/flange_payload.py +98 -0
- wandelbots_api_client/v2/models/float_value.py +91 -0
- wandelbots_api_client/v2/models/forward_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
- wandelbots_api_client/v2/models/forward_kinematics_response.py +93 -0
- wandelbots_api_client/v2/models/forward_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/get_trajectory_response.py +97 -0
- wandelbots_api_client/v2/models/http_validation_error.py +93 -0
- wandelbots_api_client/v2/models/image_credentials.py +85 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error.py +106 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error_inconsistent_trajectory_size.py +91 -0
- wandelbots_api_client/v2/models/initialize_jogging_request.py +95 -0
- wandelbots_api_client/v2/models/initialize_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/initialize_movement_request.py +112 -0
- wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +164 -0
- wandelbots_api_client/v2/models/initialize_movement_response.py +107 -0
- wandelbots_api_client/v2/models/integer_value.py +91 -0
- wandelbots_api_client/v2/models/invalid_dof_error.py +100 -0
- wandelbots_api_client/v2/models/invalid_dof_error_invalid_dof.py +86 -0
- wandelbots_api_client/v2/models/inverse_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/inverse_kinematics_request.py +152 -0
- wandelbots_api_client/v2/models/inverse_kinematics_response.py +83 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +164 -0
- wandelbots_api_client/v2/models/io_boolean_value.py +92 -0
- wandelbots_api_client/v2/models/io_boundary.py +183 -0
- wandelbots_api_client/v2/models/io_description.py +116 -0
- wandelbots_api_client/v2/models/io_direction.py +34 -0
- wandelbots_api_client/v2/models/io_float_value.py +92 -0
- wandelbots_api_client/v2/models/io_integer_value.py +94 -0
- wandelbots_api_client/v2/models/io_origin.py +34 -0
- wandelbots_api_client/v2/models/io_value.py +183 -0
- wandelbots_api_client/v2/models/io_value_type.py +35 -0
- wandelbots_api_client/v2/models/jogging_details.py +97 -0
- wandelbots_api_client/v2/models/jogging_details_state.py +275 -0
- wandelbots_api_client/v2/models/jogging_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/jogging_paused_near_collision.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_near_joint_limit.py +92 -0
- wandelbots_api_client/v2/models/jogging_paused_near_singularity.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/jogging_running.py +90 -0
- wandelbots_api_client/v2/models/joint_limit_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/joint_limits.py +101 -0
- wandelbots_api_client/v2/models/joint_ptp_motion.py +99 -0
- wandelbots_api_client/v2/models/joint_trajectory.py +89 -0
- wandelbots_api_client/v2/models/joint_type_enum.py +34 -0
- wandelbots_api_client/v2/models/joint_velocity_request.py +91 -0
- wandelbots_api_client/v2/models/joint_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/kinematic_model.py +118 -0
- wandelbots_api_client/v2/models/kuka_controller.py +106 -0
- wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +89 -0
- wandelbots_api_client/v2/models/license.py +121 -0
- wandelbots_api_client/v2/models/license_status.py +85 -0
- wandelbots_api_client/v2/models/license_status_enum.py +37 -0
- wandelbots_api_client/v2/models/limit_range.py +84 -0
- wandelbots_api_client/v2/models/limit_set.py +118 -0
- wandelbots_api_client/v2/models/limits_override.py +136 -0
- wandelbots_api_client/v2/models/list_trajectories_response.py +86 -0
- wandelbots_api_client/v2/models/location1_inner.py +153 -0
- wandelbots_api_client/v2/models/manufacturer.py +37 -0
- wandelbots_api_client/v2/models/merge_trajectories422_response.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error_error_feedback.py +209 -0
- wandelbots_api_client/v2/models/merge_trajectories_request.py +107 -0
- wandelbots_api_client/v2/models/merge_trajectories_response.py +109 -0
- wandelbots_api_client/v2/models/merge_trajectories_response_feedback_inner.py +147 -0
- wandelbots_api_client/v2/models/merge_trajectories_segment.py +126 -0
- wandelbots_api_client/v2/models/merge_trajectories_validation_error.py +109 -0
- wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +102 -0
- wandelbots_api_client/v2/models/modbus_io.py +109 -0
- wandelbots_api_client/v2/models/modbus_io_area.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_byte_order.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_data.py +105 -0
- wandelbots_api_client/v2/models/modbus_io_type_enum.py +36 -0
- wandelbots_api_client/v2/models/motion_command.py +106 -0
- wandelbots_api_client/v2/models/motion_command_blending.py +164 -0
- wandelbots_api_client/v2/models/motion_command_path.py +298 -0
- wandelbots_api_client/v2/models/motion_group_description.py +241 -0
- wandelbots_api_client/v2/models/motion_group_from_json.py +100 -0
- wandelbots_api_client/v2/models/motion_group_from_type.py +96 -0
- wandelbots_api_client/v2/models/motion_group_info.py +90 -0
- wandelbots_api_client/v2/models/motion_group_joints.py +97 -0
- wandelbots_api_client/v2/models/motion_group_setup.py +140 -0
- wandelbots_api_client/v2/models/motion_group_state.py +187 -0
- wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +83 -0
- wandelbots_api_client/v2/models/movement_error_response.py +91 -0
- wandelbots_api_client/v2/models/multi_collision_setup.py +115 -0
- wandelbots_api_client/v2/models/multi_error_invalid_joint_count.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_position_collision.py +99 -0
- wandelbots_api_client/v2/models/multi_joint_trajectory.py +93 -0
- wandelbots_api_client/v2/models/multi_search_collision_free422_response.py +97 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_request.py +149 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error.py +109 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error_all_of_data.py +197 -0
- wandelbots_api_client/v2/models/nan_value_error.py +100 -0
- wandelbots_api_client/v2/models/nan_value_error_nan_value.py +85 -0
- wandelbots_api_client/v2/models/network_device.py +85 -0
- wandelbots_api_client/v2/models/network_interface.py +86 -0
- wandelbots_api_client/v2/models/network_state.py +125 -0
- wandelbots_api_client/v2/models/op_mode.py +84 -0
- wandelbots_api_client/v2/models/operating_state.py +34 -0
- wandelbots_api_client/v2/models/operation_limits.py +106 -0
- wandelbots_api_client/v2/models/operation_mode.py +42 -0
- wandelbots_api_client/v2/models/orientation_type.py +58 -0
- wandelbots_api_client/v2/models/path_cartesian_ptp.py +100 -0
- wandelbots_api_client/v2/models/path_circle.py +105 -0
- wandelbots_api_client/v2/models/path_cubic_spline.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_cartesian_ptp.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_joint_ptp.py +102 -0
- wandelbots_api_client/v2/models/path_joint_ptp.py +93 -0
- wandelbots_api_client/v2/models/path_line.py +100 -0
- wandelbots_api_client/v2/models/pause_jogging_request.py +90 -0
- wandelbots_api_client/v2/models/pause_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/pause_movement_request.py +90 -0
- wandelbots_api_client/v2/models/pause_movement_response.py +91 -0
- wandelbots_api_client/v2/models/pause_on_io.py +99 -0
- wandelbots_api_client/v2/models/payload.py +98 -0
- wandelbots_api_client/v2/models/plan422_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_failed_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_request.py +118 -0
- wandelbots_api_client/v2/models/plan_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/plan_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +105 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +505 -0
- wandelbots_api_client/v2/models/plan_trajectory_request.py +113 -0
- wandelbots_api_client/v2/models/plan_trajectory_response.py +89 -0
- wandelbots_api_client/v2/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_validation_error.py +107 -0
- wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +275 -0
- wandelbots_api_client/v2/models/plane.py +90 -0
- wandelbots_api_client/v2/models/playback_speed_request.py +96 -0
- wandelbots_api_client/v2/models/playback_speed_response.py +91 -0
- wandelbots_api_client/v2/models/pose.py +90 -0
- wandelbots_api_client/v2/models/profinet_description.py +112 -0
- wandelbots_api_client/v2/models/profinet_input_output_config.py +98 -0
- wandelbots_api_client/v2/models/profinet_io.py +109 -0
- wandelbots_api_client/v2/models/profinet_io_data.py +105 -0
- wandelbots_api_client/v2/models/profinet_io_direction.py +35 -0
- wandelbots_api_client/v2/models/profinet_io_type_enum.py +42 -0
- wandelbots_api_client/v2/models/profinet_slot_description.py +106 -0
- wandelbots_api_client/v2/models/profinet_sub_slot_description.py +92 -0
- wandelbots_api_client/v2/models/program.py +105 -0
- wandelbots_api_client/v2/models/program_run.py +124 -0
- wandelbots_api_client/v2/models/program_run_state.py +37 -0
- wandelbots_api_client/v2/models/program_start_request.py +83 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint422_response.py +99 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_request.py +148 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_response.py +85 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error.py +111 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error_all_of_data.py +189 -0
- wandelbots_api_client/v2/models/rectangle.py +92 -0
- wandelbots_api_client/v2/models/rectangular_capsule.py +100 -0
- wandelbots_api_client/v2/models/release_channel.py +34 -0
- wandelbots_api_client/v2/models/robot_controller.py +105 -0
- wandelbots_api_client/v2/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/v2/models/robot_controller_configuration_request.py +99 -0
- wandelbots_api_client/v2/models/robot_controller_state.py +138 -0
- wandelbots_api_client/v2/models/robot_system_mode.py +37 -0
- wandelbots_api_client/v2/models/robot_tcp.py +110 -0
- wandelbots_api_client/v2/models/robot_tcp_data.py +108 -0
- wandelbots_api_client/v2/models/rrt_connect_algorithm.py +127 -0
- wandelbots_api_client/v2/models/safety_geometry.py +125 -0
- wandelbots_api_client/v2/models/safety_geometry_box.py +89 -0
- wandelbots_api_client/v2/models/safety_geometry_capsule.py +90 -0
- wandelbots_api_client/v2/models/safety_geometry_lozenge.py +97 -0
- wandelbots_api_client/v2/models/safety_geometry_plane.py +86 -0
- wandelbots_api_client/v2/models/safety_geometry_prism.py +88 -0
- wandelbots_api_client/v2/models/safety_geometry_sphere.py +87 -0
- wandelbots_api_client/v2/models/safety_state_type.py +48 -0
- wandelbots_api_client/v2/models/safety_zone.py +111 -0
- wandelbots_api_client/v2/models/safety_zone_pose.py +99 -0
- wandelbots_api_client/v2/models/safety_zones.py +97 -0
- wandelbots_api_client/v2/models/service_group.py +36 -0
- wandelbots_api_client/v2/models/service_status.py +96 -0
- wandelbots_api_client/v2/models/service_status_phase.py +46 -0
- wandelbots_api_client/v2/models/service_status_response.py +100 -0
- wandelbots_api_client/v2/models/service_status_severity.py +35 -0
- wandelbots_api_client/v2/models/service_status_status.py +87 -0
- wandelbots_api_client/v2/models/set_io.py +96 -0
- wandelbots_api_client/v2/models/settable_robot_system_mode.py +36 -0
- wandelbots_api_client/v2/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/v2/models/sphere.py +91 -0
- wandelbots_api_client/v2/models/start_movement_request.py +133 -0
- wandelbots_api_client/v2/models/start_movement_response.py +91 -0
- wandelbots_api_client/v2/models/start_on_io.py +99 -0
- wandelbots_api_client/v2/models/stream_io_values_response.py +103 -0
- wandelbots_api_client/v2/models/tcp_offset.py +88 -0
- wandelbots_api_client/v2/models/tcp_required_error.py +96 -0
- wandelbots_api_client/v2/models/tcp_velocity_request.py +110 -0
- wandelbots_api_client/v2/models/tcp_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/torque_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/torque_exceeded_error_torque_exceeded.py +86 -0
- wandelbots_api_client/v2/models/trajectory_data.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details_state.py +239 -0
- wandelbots_api_client/v2/models/trajectory_ended.py +90 -0
- wandelbots_api_client/v2/models/trajectory_id.py +93 -0
- wandelbots_api_client/v2/models/trajectory_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/trajectory_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/trajectory_running.py +94 -0
- wandelbots_api_client/v2/models/trajectory_section.py +84 -0
- wandelbots_api_client/v2/models/trajectory_wait_for_io.py +90 -0
- wandelbots_api_client/v2/models/unit_type.py +42 -0
- wandelbots_api_client/v2/models/universalrobots_controller.py +91 -0
- wandelbots_api_client/v2/models/update_cell_version_request.py +84 -0
- wandelbots_api_client/v2/models/update_nova_version_request.py +90 -0
- wandelbots_api_client/v2/models/validation_error.py +101 -0
- wandelbots_api_client/v2/models/validation_error2.py +85 -0
- wandelbots_api_client/v2/models/virtual_controller.py +113 -0
- wandelbots_api_client/v2/models/virtual_robot_configuration.py +88 -0
- wandelbots_api_client/v2/models/wait_for_io_event_request.py +93 -0
- wandelbots_api_client/v2/models/yaskawa_controller.py +91 -0
- wandelbots_api_client/v2/models/zod_validation_error.py +87 -0
- wandelbots_api_client/v2/models/zod_validation_error_error.py +108 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py +101 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py +153 -0
- wandelbots_api_client/v2/py.typed +0 -0
- wandelbots_api_client/v2/rest.py +188 -0
- wandelbots_api_client/v2_pydantic/__init__.py +49 -0
- wandelbots_api_client/v2_pydantic/api/__init__.py +55 -0
- wandelbots_api_client/v2_pydantic/api/application_api.py +1532 -0
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2_pydantic/api/cell_api.py +2163 -0
- wandelbots_api_client/v2_pydantic/api/controller_api.py +3238 -0
- wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2_pydantic/api/jogging_api.py +113 -0
- wandelbots_api_client/v2_pydantic/api/kinematics_api.py +811 -0
- wandelbots_api_client/v2_pydantic/api/license_api.py +877 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2_pydantic/api/program_api.py +988 -0
- wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2_pydantic/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2_pydantic/api/system_api.py +2696 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2_pydantic/api/version_api.py +240 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2_pydantic/api_client.py +692 -0
- wandelbots_api_client/v2_pydantic/api_response.py +20 -0
- wandelbots_api_client/v2_pydantic/configuration.py +579 -0
- wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
- wandelbots_api_client/v2_pydantic/models/__init__.py +748 -0
- wandelbots_api_client/v2_pydantic/models/models.py +5909 -0
- wandelbots_api_client/v2_pydantic/py.typed +0 -0
- wandelbots_api_client/v2_pydantic/rest.py +188 -0
- wandelbots_api_client-26.3.0.dist-info/METADATA +241 -0
- wandelbots_api_client-26.3.0.dist-info/RECORD +740 -0
- wandelbots_api_client-26.3.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,1467 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Wandelbots NOVA API
|
|
5
|
+
|
|
6
|
+
Interact with robots in an easy and intuitive way.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.4.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from furl import furl
|
|
15
|
+
import json
|
|
16
|
+
import humps
|
|
17
|
+
import re
|
|
18
|
+
import warnings
|
|
19
|
+
import websockets
|
|
20
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
21
|
+
from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, Union
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from urllib.parse import quote
|
|
24
|
+
|
|
25
|
+
from pydantic import Field, StrictStr, field_validator
|
|
26
|
+
from typing import Any, Dict
|
|
27
|
+
from typing_extensions import Annotated
|
|
28
|
+
from wandelbots_api_client.models.cycle_time import CycleTime
|
|
29
|
+
from wandelbots_api_client.models.flag import Flag
|
|
30
|
+
from wandelbots_api_client.models.op_mode import OpMode
|
|
31
|
+
|
|
32
|
+
from wandelbots_api_client.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from wandelbots_api_client.api_response import ApiResponse
|
|
34
|
+
from wandelbots_api_client.rest import RESTResponseType
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class VirtualRobotModeApi:
|
|
38
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
39
|
+
Ref: https://openapi-generator.tech
|
|
40
|
+
|
|
41
|
+
Do not edit the class manually.
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
def __init__(self, api_client=None) -> None:
|
|
45
|
+
if api_client is None:
|
|
46
|
+
api_client = ApiClient.get_default()
|
|
47
|
+
self.api_client = api_client
|
|
48
|
+
|
|
49
|
+
@validate_call
|
|
50
|
+
async def get_cycle_time(
|
|
51
|
+
self,
|
|
52
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
53
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
54
|
+
_request_timeout: Union[
|
|
55
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
56
|
+
] = None,
|
|
57
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
58
|
+
_content_type: Optional[StrictStr] = None,
|
|
59
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
60
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
61
|
+
) -> CycleTime:
|
|
62
|
+
"""Cycle Time
|
|
63
|
+
|
|
64
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
|
|
65
|
+
|
|
66
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
67
|
+
:type cell: str
|
|
68
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
69
|
+
:type controller: str
|
|
70
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
71
|
+
number provided, it will be total request
|
|
72
|
+
timeout. It can also be a pair (tuple) of
|
|
73
|
+
(connection, read) timeouts.
|
|
74
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
75
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
76
|
+
request; this effectively ignores the
|
|
77
|
+
authentication in the spec for a single request.
|
|
78
|
+
:type _request_auth: dict, optional
|
|
79
|
+
:param _content_type: force content-type for the request.
|
|
80
|
+
:type _content_type: str, Optional
|
|
81
|
+
:param _headers: set to override the headers for a single
|
|
82
|
+
request; this effectively ignores the headers
|
|
83
|
+
in the spec for a single request.
|
|
84
|
+
:type _headers: dict, optional
|
|
85
|
+
:param _host_index: set to override the host_index for a single
|
|
86
|
+
request; this effectively ignores the host_index
|
|
87
|
+
in the spec for a single request.
|
|
88
|
+
:type _host_index: int, optional
|
|
89
|
+
:return: Returns the result object.
|
|
90
|
+
""" # noqa: E501
|
|
91
|
+
|
|
92
|
+
_param = self._get_cycle_time_serialize(
|
|
93
|
+
cell=cell,
|
|
94
|
+
controller=controller,
|
|
95
|
+
_request_auth=_request_auth,
|
|
96
|
+
_content_type=_content_type,
|
|
97
|
+
_headers=_headers,
|
|
98
|
+
_host_index=_host_index,
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
102
|
+
"200": "CycleTime",
|
|
103
|
+
}
|
|
104
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
105
|
+
await response_data.read()
|
|
106
|
+
return self.api_client.response_deserialize(
|
|
107
|
+
response_data=response_data,
|
|
108
|
+
response_types_map=_response_types_map,
|
|
109
|
+
).data
|
|
110
|
+
|
|
111
|
+
@validate_call
|
|
112
|
+
async def get_cycle_time_with_http_info(
|
|
113
|
+
self,
|
|
114
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
115
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
116
|
+
_request_timeout: Union[
|
|
117
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
118
|
+
] = None,
|
|
119
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
120
|
+
_content_type: Optional[StrictStr] = None,
|
|
121
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
122
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
123
|
+
) -> ApiResponse[CycleTime]:
|
|
124
|
+
"""Cycle Time
|
|
125
|
+
|
|
126
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
|
|
127
|
+
|
|
128
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
129
|
+
:type cell: str
|
|
130
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
131
|
+
:type controller: str
|
|
132
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
133
|
+
number provided, it will be total request
|
|
134
|
+
timeout. It can also be a pair (tuple) of
|
|
135
|
+
(connection, read) timeouts.
|
|
136
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
137
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
138
|
+
request; this effectively ignores the
|
|
139
|
+
authentication in the spec for a single request.
|
|
140
|
+
:type _request_auth: dict, optional
|
|
141
|
+
:param _content_type: force content-type for the request.
|
|
142
|
+
:type _content_type: str, Optional
|
|
143
|
+
:param _headers: set to override the headers for a single
|
|
144
|
+
request; this effectively ignores the headers
|
|
145
|
+
in the spec for a single request.
|
|
146
|
+
:type _headers: dict, optional
|
|
147
|
+
:param _host_index: set to override the host_index for a single
|
|
148
|
+
request; this effectively ignores the host_index
|
|
149
|
+
in the spec for a single request.
|
|
150
|
+
:type _host_index: int, optional
|
|
151
|
+
:return: Returns the result object.
|
|
152
|
+
""" # noqa: E501
|
|
153
|
+
|
|
154
|
+
_param = self._get_cycle_time_serialize(
|
|
155
|
+
cell=cell,
|
|
156
|
+
controller=controller,
|
|
157
|
+
_request_auth=_request_auth,
|
|
158
|
+
_content_type=_content_type,
|
|
159
|
+
_headers=_headers,
|
|
160
|
+
_host_index=_host_index,
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
|
+
"200": "CycleTime",
|
|
165
|
+
}
|
|
166
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
167
|
+
await response_data.read()
|
|
168
|
+
return self.api_client.response_deserialize(
|
|
169
|
+
response_data=response_data,
|
|
170
|
+
response_types_map=_response_types_map,
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
@validate_call
|
|
174
|
+
async def get_cycle_time_without_preload_content(
|
|
175
|
+
self,
|
|
176
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
177
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
178
|
+
_request_timeout: Union[
|
|
179
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
180
|
+
] = None,
|
|
181
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
182
|
+
_content_type: Optional[StrictStr] = None,
|
|
183
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
184
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
185
|
+
) -> RESTResponseType:
|
|
186
|
+
"""Cycle Time
|
|
187
|
+
|
|
188
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Get the cycle time of controller communication in [ms].
|
|
189
|
+
|
|
190
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
191
|
+
:type cell: str
|
|
192
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
193
|
+
:type controller: str
|
|
194
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
195
|
+
number provided, it will be total request
|
|
196
|
+
timeout. It can also be a pair (tuple) of
|
|
197
|
+
(connection, read) timeouts.
|
|
198
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
199
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
200
|
+
request; this effectively ignores the
|
|
201
|
+
authentication in the spec for a single request.
|
|
202
|
+
:type _request_auth: dict, optional
|
|
203
|
+
:param _content_type: force content-type for the request.
|
|
204
|
+
:type _content_type: str, Optional
|
|
205
|
+
:param _headers: set to override the headers for a single
|
|
206
|
+
request; this effectively ignores the headers
|
|
207
|
+
in the spec for a single request.
|
|
208
|
+
:type _headers: dict, optional
|
|
209
|
+
:param _host_index: set to override the host_index for a single
|
|
210
|
+
request; this effectively ignores the host_index
|
|
211
|
+
in the spec for a single request.
|
|
212
|
+
:type _host_index: int, optional
|
|
213
|
+
:return: Returns the result object.
|
|
214
|
+
""" # noqa: E501
|
|
215
|
+
|
|
216
|
+
_param = self._get_cycle_time_serialize(
|
|
217
|
+
cell=cell,
|
|
218
|
+
controller=controller,
|
|
219
|
+
_request_auth=_request_auth,
|
|
220
|
+
_content_type=_content_type,
|
|
221
|
+
_headers=_headers,
|
|
222
|
+
_host_index=_host_index,
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
226
|
+
"200": "CycleTime",
|
|
227
|
+
}
|
|
228
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
229
|
+
return response_data.response
|
|
230
|
+
|
|
231
|
+
def _get_cycle_time_serialize(
|
|
232
|
+
self,
|
|
233
|
+
cell,
|
|
234
|
+
controller,
|
|
235
|
+
_request_auth,
|
|
236
|
+
_content_type,
|
|
237
|
+
_headers,
|
|
238
|
+
_host_index,
|
|
239
|
+
) -> RequestSerialized:
|
|
240
|
+
|
|
241
|
+
_host = None
|
|
242
|
+
|
|
243
|
+
_collection_formats: Dict[str, str] = {}
|
|
244
|
+
|
|
245
|
+
_path_params: Dict[str, str] = {}
|
|
246
|
+
_query_params: List[Tuple[str, str]] = []
|
|
247
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
248
|
+
_form_params: List[Tuple[str, str]] = []
|
|
249
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
250
|
+
_body_params: Optional[bytes] = None
|
|
251
|
+
|
|
252
|
+
# process the path parameters
|
|
253
|
+
if cell is not None:
|
|
254
|
+
_path_params["cell"] = cell
|
|
255
|
+
if controller is not None:
|
|
256
|
+
_path_params["controller"] = controller
|
|
257
|
+
# process the query parameters
|
|
258
|
+
# process the header parameters
|
|
259
|
+
# process the form parameters
|
|
260
|
+
# process the body parameter
|
|
261
|
+
|
|
262
|
+
# set the HTTP header `Accept`
|
|
263
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
264
|
+
|
|
265
|
+
# authentication setting
|
|
266
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
267
|
+
|
|
268
|
+
return self.api_client.param_serialize(
|
|
269
|
+
method="GET",
|
|
270
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/cycle-time",
|
|
271
|
+
path_params=_path_params,
|
|
272
|
+
query_params=_query_params,
|
|
273
|
+
header_params=_header_params,
|
|
274
|
+
body=_body_params,
|
|
275
|
+
post_params=_form_params,
|
|
276
|
+
files=_files,
|
|
277
|
+
auth_settings=_auth_settings,
|
|
278
|
+
collection_formats=_collection_formats,
|
|
279
|
+
_host=_host,
|
|
280
|
+
_request_auth=_request_auth,
|
|
281
|
+
)
|
|
282
|
+
|
|
283
|
+
@validate_call
|
|
284
|
+
async def get_e_stop(
|
|
285
|
+
self,
|
|
286
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
287
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
288
|
+
_request_timeout: Union[
|
|
289
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
290
|
+
] = None,
|
|
291
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
292
|
+
_content_type: Optional[StrictStr] = None,
|
|
293
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
294
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
295
|
+
) -> Flag:
|
|
296
|
+
"""Get E-Stop State
|
|
297
|
+
|
|
298
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
299
|
+
|
|
300
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
301
|
+
:type cell: str
|
|
302
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
303
|
+
:type controller: str
|
|
304
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
305
|
+
number provided, it will be total request
|
|
306
|
+
timeout. It can also be a pair (tuple) of
|
|
307
|
+
(connection, read) timeouts.
|
|
308
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
309
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
310
|
+
request; this effectively ignores the
|
|
311
|
+
authentication in the spec for a single request.
|
|
312
|
+
:type _request_auth: dict, optional
|
|
313
|
+
:param _content_type: force content-type for the request.
|
|
314
|
+
:type _content_type: str, Optional
|
|
315
|
+
:param _headers: set to override the headers for a single
|
|
316
|
+
request; this effectively ignores the headers
|
|
317
|
+
in the spec for a single request.
|
|
318
|
+
:type _headers: dict, optional
|
|
319
|
+
:param _host_index: set to override the host_index for a single
|
|
320
|
+
request; this effectively ignores the host_index
|
|
321
|
+
in the spec for a single request.
|
|
322
|
+
:type _host_index: int, optional
|
|
323
|
+
:return: Returns the result object.
|
|
324
|
+
""" # noqa: E501
|
|
325
|
+
|
|
326
|
+
_param = self._get_e_stop_serialize(
|
|
327
|
+
cell=cell,
|
|
328
|
+
controller=controller,
|
|
329
|
+
_request_auth=_request_auth,
|
|
330
|
+
_content_type=_content_type,
|
|
331
|
+
_headers=_headers,
|
|
332
|
+
_host_index=_host_index,
|
|
333
|
+
)
|
|
334
|
+
|
|
335
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
336
|
+
"200": "Flag",
|
|
337
|
+
}
|
|
338
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
339
|
+
await response_data.read()
|
|
340
|
+
return self.api_client.response_deserialize(
|
|
341
|
+
response_data=response_data,
|
|
342
|
+
response_types_map=_response_types_map,
|
|
343
|
+
).data
|
|
344
|
+
|
|
345
|
+
@validate_call
|
|
346
|
+
async def get_e_stop_with_http_info(
|
|
347
|
+
self,
|
|
348
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
349
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
350
|
+
_request_timeout: Union[
|
|
351
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
352
|
+
] = None,
|
|
353
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
354
|
+
_content_type: Optional[StrictStr] = None,
|
|
355
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
356
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
357
|
+
) -> ApiResponse[Flag]:
|
|
358
|
+
"""Get E-Stop State
|
|
359
|
+
|
|
360
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
361
|
+
|
|
362
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
363
|
+
:type cell: str
|
|
364
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
365
|
+
:type controller: str
|
|
366
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
367
|
+
number provided, it will be total request
|
|
368
|
+
timeout. It can also be a pair (tuple) of
|
|
369
|
+
(connection, read) timeouts.
|
|
370
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
371
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
372
|
+
request; this effectively ignores the
|
|
373
|
+
authentication in the spec for a single request.
|
|
374
|
+
:type _request_auth: dict, optional
|
|
375
|
+
:param _content_type: force content-type for the request.
|
|
376
|
+
:type _content_type: str, Optional
|
|
377
|
+
:param _headers: set to override the headers for a single
|
|
378
|
+
request; this effectively ignores the headers
|
|
379
|
+
in the spec for a single request.
|
|
380
|
+
:type _headers: dict, optional
|
|
381
|
+
:param _host_index: set to override the host_index for a single
|
|
382
|
+
request; this effectively ignores the host_index
|
|
383
|
+
in the spec for a single request.
|
|
384
|
+
:type _host_index: int, optional
|
|
385
|
+
:return: Returns the result object.
|
|
386
|
+
""" # noqa: E501
|
|
387
|
+
|
|
388
|
+
_param = self._get_e_stop_serialize(
|
|
389
|
+
cell=cell,
|
|
390
|
+
controller=controller,
|
|
391
|
+
_request_auth=_request_auth,
|
|
392
|
+
_content_type=_content_type,
|
|
393
|
+
_headers=_headers,
|
|
394
|
+
_host_index=_host_index,
|
|
395
|
+
)
|
|
396
|
+
|
|
397
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
398
|
+
"200": "Flag",
|
|
399
|
+
}
|
|
400
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
401
|
+
await response_data.read()
|
|
402
|
+
return self.api_client.response_deserialize(
|
|
403
|
+
response_data=response_data,
|
|
404
|
+
response_types_map=_response_types_map,
|
|
405
|
+
)
|
|
406
|
+
|
|
407
|
+
@validate_call
|
|
408
|
+
async def get_e_stop_without_preload_content(
|
|
409
|
+
self,
|
|
410
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
411
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
412
|
+
_request_timeout: Union[
|
|
413
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
414
|
+
] = None,
|
|
415
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
416
|
+
_content_type: Optional[StrictStr] = None,
|
|
417
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
418
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
419
|
+
) -> RESTResponseType:
|
|
420
|
+
"""Get E-Stop State
|
|
421
|
+
|
|
422
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
423
|
+
|
|
424
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
425
|
+
:type cell: str
|
|
426
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
427
|
+
:type controller: str
|
|
428
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
429
|
+
number provided, it will be total request
|
|
430
|
+
timeout. It can also be a pair (tuple) of
|
|
431
|
+
(connection, read) timeouts.
|
|
432
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
433
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
434
|
+
request; this effectively ignores the
|
|
435
|
+
authentication in the spec for a single request.
|
|
436
|
+
:type _request_auth: dict, optional
|
|
437
|
+
:param _content_type: force content-type for the request.
|
|
438
|
+
:type _content_type: str, Optional
|
|
439
|
+
:param _headers: set to override the headers for a single
|
|
440
|
+
request; this effectively ignores the headers
|
|
441
|
+
in the spec for a single request.
|
|
442
|
+
:type _headers: dict, optional
|
|
443
|
+
:param _host_index: set to override the host_index for a single
|
|
444
|
+
request; this effectively ignores the host_index
|
|
445
|
+
in the spec for a single request.
|
|
446
|
+
:type _host_index: int, optional
|
|
447
|
+
:return: Returns the result object.
|
|
448
|
+
""" # noqa: E501
|
|
449
|
+
|
|
450
|
+
_param = self._get_e_stop_serialize(
|
|
451
|
+
cell=cell,
|
|
452
|
+
controller=controller,
|
|
453
|
+
_request_auth=_request_auth,
|
|
454
|
+
_content_type=_content_type,
|
|
455
|
+
_headers=_headers,
|
|
456
|
+
_host_index=_host_index,
|
|
457
|
+
)
|
|
458
|
+
|
|
459
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
460
|
+
"200": "Flag",
|
|
461
|
+
}
|
|
462
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
463
|
+
return response_data.response
|
|
464
|
+
|
|
465
|
+
def _get_e_stop_serialize(
|
|
466
|
+
self,
|
|
467
|
+
cell,
|
|
468
|
+
controller,
|
|
469
|
+
_request_auth,
|
|
470
|
+
_content_type,
|
|
471
|
+
_headers,
|
|
472
|
+
_host_index,
|
|
473
|
+
) -> RequestSerialized:
|
|
474
|
+
|
|
475
|
+
_host = None
|
|
476
|
+
|
|
477
|
+
_collection_formats: Dict[str, str] = {}
|
|
478
|
+
|
|
479
|
+
_path_params: Dict[str, str] = {}
|
|
480
|
+
_query_params: List[Tuple[str, str]] = []
|
|
481
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
482
|
+
_form_params: List[Tuple[str, str]] = []
|
|
483
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
484
|
+
_body_params: Optional[bytes] = None
|
|
485
|
+
|
|
486
|
+
# process the path parameters
|
|
487
|
+
if cell is not None:
|
|
488
|
+
_path_params["cell"] = cell
|
|
489
|
+
if controller is not None:
|
|
490
|
+
_path_params["controller"] = controller
|
|
491
|
+
# process the query parameters
|
|
492
|
+
# process the header parameters
|
|
493
|
+
# process the form parameters
|
|
494
|
+
# process the body parameter
|
|
495
|
+
|
|
496
|
+
# set the HTTP header `Accept`
|
|
497
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
498
|
+
|
|
499
|
+
# authentication setting
|
|
500
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
501
|
+
|
|
502
|
+
return self.api_client.param_serialize(
|
|
503
|
+
method="GET",
|
|
504
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/estop",
|
|
505
|
+
path_params=_path_params,
|
|
506
|
+
query_params=_query_params,
|
|
507
|
+
header_params=_header_params,
|
|
508
|
+
body=_body_params,
|
|
509
|
+
post_params=_form_params,
|
|
510
|
+
files=_files,
|
|
511
|
+
auth_settings=_auth_settings,
|
|
512
|
+
collection_formats=_collection_formats,
|
|
513
|
+
_host=_host,
|
|
514
|
+
_request_auth=_request_auth,
|
|
515
|
+
)
|
|
516
|
+
|
|
517
|
+
@validate_call
|
|
518
|
+
async def get_operation_mode(
|
|
519
|
+
self,
|
|
520
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
521
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
522
|
+
_request_timeout: Union[
|
|
523
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
524
|
+
] = None,
|
|
525
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
526
|
+
_content_type: Optional[StrictStr] = None,
|
|
527
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
528
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
529
|
+
) -> OpMode:
|
|
530
|
+
"""Get Operation Mode
|
|
531
|
+
|
|
532
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
533
|
+
|
|
534
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
535
|
+
:type cell: str
|
|
536
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
537
|
+
:type controller: str
|
|
538
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
539
|
+
number provided, it will be total request
|
|
540
|
+
timeout. It can also be a pair (tuple) of
|
|
541
|
+
(connection, read) timeouts.
|
|
542
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
543
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
544
|
+
request; this effectively ignores the
|
|
545
|
+
authentication in the spec for a single request.
|
|
546
|
+
:type _request_auth: dict, optional
|
|
547
|
+
:param _content_type: force content-type for the request.
|
|
548
|
+
:type _content_type: str, Optional
|
|
549
|
+
:param _headers: set to override the headers for a single
|
|
550
|
+
request; this effectively ignores the headers
|
|
551
|
+
in the spec for a single request.
|
|
552
|
+
:type _headers: dict, optional
|
|
553
|
+
:param _host_index: set to override the host_index for a single
|
|
554
|
+
request; this effectively ignores the host_index
|
|
555
|
+
in the spec for a single request.
|
|
556
|
+
:type _host_index: int, optional
|
|
557
|
+
:return: Returns the result object.
|
|
558
|
+
""" # noqa: E501
|
|
559
|
+
|
|
560
|
+
_param = self._get_operation_mode_serialize(
|
|
561
|
+
cell=cell,
|
|
562
|
+
controller=controller,
|
|
563
|
+
_request_auth=_request_auth,
|
|
564
|
+
_content_type=_content_type,
|
|
565
|
+
_headers=_headers,
|
|
566
|
+
_host_index=_host_index,
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
570
|
+
"200": "OpMode",
|
|
571
|
+
}
|
|
572
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
573
|
+
await response_data.read()
|
|
574
|
+
return self.api_client.response_deserialize(
|
|
575
|
+
response_data=response_data,
|
|
576
|
+
response_types_map=_response_types_map,
|
|
577
|
+
).data
|
|
578
|
+
|
|
579
|
+
@validate_call
|
|
580
|
+
async def get_operation_mode_with_http_info(
|
|
581
|
+
self,
|
|
582
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
583
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
584
|
+
_request_timeout: Union[
|
|
585
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
586
|
+
] = None,
|
|
587
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
588
|
+
_content_type: Optional[StrictStr] = None,
|
|
589
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
590
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
591
|
+
) -> ApiResponse[OpMode]:
|
|
592
|
+
"""Get Operation Mode
|
|
593
|
+
|
|
594
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
595
|
+
|
|
596
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
597
|
+
:type cell: str
|
|
598
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
599
|
+
:type controller: str
|
|
600
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
601
|
+
number provided, it will be total request
|
|
602
|
+
timeout. It can also be a pair (tuple) of
|
|
603
|
+
(connection, read) timeouts.
|
|
604
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
605
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
606
|
+
request; this effectively ignores the
|
|
607
|
+
authentication in the spec for a single request.
|
|
608
|
+
:type _request_auth: dict, optional
|
|
609
|
+
:param _content_type: force content-type for the request.
|
|
610
|
+
:type _content_type: str, Optional
|
|
611
|
+
:param _headers: set to override the headers for a single
|
|
612
|
+
request; this effectively ignores the headers
|
|
613
|
+
in the spec for a single request.
|
|
614
|
+
:type _headers: dict, optional
|
|
615
|
+
:param _host_index: set to override the host_index for a single
|
|
616
|
+
request; this effectively ignores the host_index
|
|
617
|
+
in the spec for a single request.
|
|
618
|
+
:type _host_index: int, optional
|
|
619
|
+
:return: Returns the result object.
|
|
620
|
+
""" # noqa: E501
|
|
621
|
+
|
|
622
|
+
_param = self._get_operation_mode_serialize(
|
|
623
|
+
cell=cell,
|
|
624
|
+
controller=controller,
|
|
625
|
+
_request_auth=_request_auth,
|
|
626
|
+
_content_type=_content_type,
|
|
627
|
+
_headers=_headers,
|
|
628
|
+
_host_index=_host_index,
|
|
629
|
+
)
|
|
630
|
+
|
|
631
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
632
|
+
"200": "OpMode",
|
|
633
|
+
}
|
|
634
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
635
|
+
await response_data.read()
|
|
636
|
+
return self.api_client.response_deserialize(
|
|
637
|
+
response_data=response_data,
|
|
638
|
+
response_types_map=_response_types_map,
|
|
639
|
+
)
|
|
640
|
+
|
|
641
|
+
@validate_call
|
|
642
|
+
async def get_operation_mode_without_preload_content(
|
|
643
|
+
self,
|
|
644
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
645
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
646
|
+
_request_timeout: Union[
|
|
647
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
648
|
+
] = None,
|
|
649
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
650
|
+
_content_type: Optional[StrictStr] = None,
|
|
651
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
652
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
653
|
+
) -> RESTResponseType:
|
|
654
|
+
"""Get Operation Mode
|
|
655
|
+
|
|
656
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Requests the Operation Mode of the virtual robot controller. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
657
|
+
|
|
658
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
659
|
+
:type cell: str
|
|
660
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
661
|
+
:type controller: str
|
|
662
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
663
|
+
number provided, it will be total request
|
|
664
|
+
timeout. It can also be a pair (tuple) of
|
|
665
|
+
(connection, read) timeouts.
|
|
666
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
667
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
668
|
+
request; this effectively ignores the
|
|
669
|
+
authentication in the spec for a single request.
|
|
670
|
+
:type _request_auth: dict, optional
|
|
671
|
+
:param _content_type: force content-type for the request.
|
|
672
|
+
:type _content_type: str, Optional
|
|
673
|
+
:param _headers: set to override the headers for a single
|
|
674
|
+
request; this effectively ignores the headers
|
|
675
|
+
in the spec for a single request.
|
|
676
|
+
:type _headers: dict, optional
|
|
677
|
+
:param _host_index: set to override the host_index for a single
|
|
678
|
+
request; this effectively ignores the host_index
|
|
679
|
+
in the spec for a single request.
|
|
680
|
+
:type _host_index: int, optional
|
|
681
|
+
:return: Returns the result object.
|
|
682
|
+
""" # noqa: E501
|
|
683
|
+
|
|
684
|
+
_param = self._get_operation_mode_serialize(
|
|
685
|
+
cell=cell,
|
|
686
|
+
controller=controller,
|
|
687
|
+
_request_auth=_request_auth,
|
|
688
|
+
_content_type=_content_type,
|
|
689
|
+
_headers=_headers,
|
|
690
|
+
_host_index=_host_index,
|
|
691
|
+
)
|
|
692
|
+
|
|
693
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
694
|
+
"200": "OpMode",
|
|
695
|
+
}
|
|
696
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
697
|
+
return response_data.response
|
|
698
|
+
|
|
699
|
+
def _get_operation_mode_serialize(
|
|
700
|
+
self,
|
|
701
|
+
cell,
|
|
702
|
+
controller,
|
|
703
|
+
_request_auth,
|
|
704
|
+
_content_type,
|
|
705
|
+
_headers,
|
|
706
|
+
_host_index,
|
|
707
|
+
) -> RequestSerialized:
|
|
708
|
+
|
|
709
|
+
_host = None
|
|
710
|
+
|
|
711
|
+
_collection_formats: Dict[str, str] = {}
|
|
712
|
+
|
|
713
|
+
_path_params: Dict[str, str] = {}
|
|
714
|
+
_query_params: List[Tuple[str, str]] = []
|
|
715
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
716
|
+
_form_params: List[Tuple[str, str]] = []
|
|
717
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
718
|
+
_body_params: Optional[bytes] = None
|
|
719
|
+
|
|
720
|
+
# process the path parameters
|
|
721
|
+
if cell is not None:
|
|
722
|
+
_path_params["cell"] = cell
|
|
723
|
+
if controller is not None:
|
|
724
|
+
_path_params["controller"] = controller
|
|
725
|
+
# process the query parameters
|
|
726
|
+
# process the header parameters
|
|
727
|
+
# process the form parameters
|
|
728
|
+
# process the body parameter
|
|
729
|
+
|
|
730
|
+
# set the HTTP header `Accept`
|
|
731
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
732
|
+
|
|
733
|
+
# authentication setting
|
|
734
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
735
|
+
|
|
736
|
+
return self.api_client.param_serialize(
|
|
737
|
+
method="GET",
|
|
738
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/operationmode",
|
|
739
|
+
path_params=_path_params,
|
|
740
|
+
query_params=_query_params,
|
|
741
|
+
header_params=_header_params,
|
|
742
|
+
body=_body_params,
|
|
743
|
+
post_params=_form_params,
|
|
744
|
+
files=_files,
|
|
745
|
+
auth_settings=_auth_settings,
|
|
746
|
+
collection_formats=_collection_formats,
|
|
747
|
+
_host=_host,
|
|
748
|
+
_request_auth=_request_auth,
|
|
749
|
+
)
|
|
750
|
+
|
|
751
|
+
@validate_call
|
|
752
|
+
async def push_e_stop(
|
|
753
|
+
self,
|
|
754
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
755
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
756
|
+
_request_timeout: Union[
|
|
757
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
758
|
+
] = None,
|
|
759
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
760
|
+
_content_type: Optional[StrictStr] = None,
|
|
761
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
762
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
763
|
+
) -> object:
|
|
764
|
+
"""Push E-Stop
|
|
765
|
+
|
|
766
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
767
|
+
|
|
768
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
769
|
+
:type cell: str
|
|
770
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
771
|
+
:type controller: str
|
|
772
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
773
|
+
number provided, it will be total request
|
|
774
|
+
timeout. It can also be a pair (tuple) of
|
|
775
|
+
(connection, read) timeouts.
|
|
776
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
777
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
778
|
+
request; this effectively ignores the
|
|
779
|
+
authentication in the spec for a single request.
|
|
780
|
+
:type _request_auth: dict, optional
|
|
781
|
+
:param _content_type: force content-type for the request.
|
|
782
|
+
:type _content_type: str, Optional
|
|
783
|
+
:param _headers: set to override the headers for a single
|
|
784
|
+
request; this effectively ignores the headers
|
|
785
|
+
in the spec for a single request.
|
|
786
|
+
:type _headers: dict, optional
|
|
787
|
+
:param _host_index: set to override the host_index for a single
|
|
788
|
+
request; this effectively ignores the host_index
|
|
789
|
+
in the spec for a single request.
|
|
790
|
+
:type _host_index: int, optional
|
|
791
|
+
:return: Returns the result object.
|
|
792
|
+
""" # noqa: E501
|
|
793
|
+
|
|
794
|
+
_param = self._push_e_stop_serialize(
|
|
795
|
+
cell=cell,
|
|
796
|
+
controller=controller,
|
|
797
|
+
_request_auth=_request_auth,
|
|
798
|
+
_content_type=_content_type,
|
|
799
|
+
_headers=_headers,
|
|
800
|
+
_host_index=_host_index,
|
|
801
|
+
)
|
|
802
|
+
|
|
803
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
804
|
+
"200": "object",
|
|
805
|
+
}
|
|
806
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
807
|
+
await response_data.read()
|
|
808
|
+
return self.api_client.response_deserialize(
|
|
809
|
+
response_data=response_data,
|
|
810
|
+
response_types_map=_response_types_map,
|
|
811
|
+
).data
|
|
812
|
+
|
|
813
|
+
@validate_call
|
|
814
|
+
async def push_e_stop_with_http_info(
|
|
815
|
+
self,
|
|
816
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
817
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
818
|
+
_request_timeout: Union[
|
|
819
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
820
|
+
] = None,
|
|
821
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
822
|
+
_content_type: Optional[StrictStr] = None,
|
|
823
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
824
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
825
|
+
) -> ApiResponse[object]:
|
|
826
|
+
"""Push E-Stop
|
|
827
|
+
|
|
828
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
829
|
+
|
|
830
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
831
|
+
:type cell: str
|
|
832
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
833
|
+
:type controller: str
|
|
834
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
835
|
+
number provided, it will be total request
|
|
836
|
+
timeout. It can also be a pair (tuple) of
|
|
837
|
+
(connection, read) timeouts.
|
|
838
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
839
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
840
|
+
request; this effectively ignores the
|
|
841
|
+
authentication in the spec for a single request.
|
|
842
|
+
:type _request_auth: dict, optional
|
|
843
|
+
:param _content_type: force content-type for the request.
|
|
844
|
+
:type _content_type: str, Optional
|
|
845
|
+
:param _headers: set to override the headers for a single
|
|
846
|
+
request; this effectively ignores the headers
|
|
847
|
+
in the spec for a single request.
|
|
848
|
+
:type _headers: dict, optional
|
|
849
|
+
:param _host_index: set to override the host_index for a single
|
|
850
|
+
request; this effectively ignores the host_index
|
|
851
|
+
in the spec for a single request.
|
|
852
|
+
:type _host_index: int, optional
|
|
853
|
+
:return: Returns the result object.
|
|
854
|
+
""" # noqa: E501
|
|
855
|
+
|
|
856
|
+
_param = self._push_e_stop_serialize(
|
|
857
|
+
cell=cell,
|
|
858
|
+
controller=controller,
|
|
859
|
+
_request_auth=_request_auth,
|
|
860
|
+
_content_type=_content_type,
|
|
861
|
+
_headers=_headers,
|
|
862
|
+
_host_index=_host_index,
|
|
863
|
+
)
|
|
864
|
+
|
|
865
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
866
|
+
"200": "object",
|
|
867
|
+
}
|
|
868
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
869
|
+
await response_data.read()
|
|
870
|
+
return self.api_client.response_deserialize(
|
|
871
|
+
response_data=response_data,
|
|
872
|
+
response_types_map=_response_types_map,
|
|
873
|
+
)
|
|
874
|
+
|
|
875
|
+
@validate_call
|
|
876
|
+
async def push_e_stop_without_preload_content(
|
|
877
|
+
self,
|
|
878
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
879
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
880
|
+
_request_timeout: Union[
|
|
881
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
882
|
+
] = None,
|
|
883
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
884
|
+
_content_type: Optional[StrictStr] = None,
|
|
885
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
886
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
887
|
+
) -> RESTResponseType:
|
|
888
|
+
"""Push E-Stop
|
|
889
|
+
|
|
890
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Activates the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
891
|
+
|
|
892
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
893
|
+
:type cell: str
|
|
894
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
895
|
+
:type controller: str
|
|
896
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
897
|
+
number provided, it will be total request
|
|
898
|
+
timeout. It can also be a pair (tuple) of
|
|
899
|
+
(connection, read) timeouts.
|
|
900
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
901
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
902
|
+
request; this effectively ignores the
|
|
903
|
+
authentication in the spec for a single request.
|
|
904
|
+
:type _request_auth: dict, optional
|
|
905
|
+
:param _content_type: force content-type for the request.
|
|
906
|
+
:type _content_type: str, Optional
|
|
907
|
+
:param _headers: set to override the headers for a single
|
|
908
|
+
request; this effectively ignores the headers
|
|
909
|
+
in the spec for a single request.
|
|
910
|
+
:type _headers: dict, optional
|
|
911
|
+
:param _host_index: set to override the host_index for a single
|
|
912
|
+
request; this effectively ignores the host_index
|
|
913
|
+
in the spec for a single request.
|
|
914
|
+
:type _host_index: int, optional
|
|
915
|
+
:return: Returns the result object.
|
|
916
|
+
""" # noqa: E501
|
|
917
|
+
|
|
918
|
+
_param = self._push_e_stop_serialize(
|
|
919
|
+
cell=cell,
|
|
920
|
+
controller=controller,
|
|
921
|
+
_request_auth=_request_auth,
|
|
922
|
+
_content_type=_content_type,
|
|
923
|
+
_headers=_headers,
|
|
924
|
+
_host_index=_host_index,
|
|
925
|
+
)
|
|
926
|
+
|
|
927
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
928
|
+
"200": "object",
|
|
929
|
+
}
|
|
930
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
931
|
+
return response_data.response
|
|
932
|
+
|
|
933
|
+
def _push_e_stop_serialize(
|
|
934
|
+
self,
|
|
935
|
+
cell,
|
|
936
|
+
controller,
|
|
937
|
+
_request_auth,
|
|
938
|
+
_content_type,
|
|
939
|
+
_headers,
|
|
940
|
+
_host_index,
|
|
941
|
+
) -> RequestSerialized:
|
|
942
|
+
|
|
943
|
+
_host = None
|
|
944
|
+
|
|
945
|
+
_collection_formats: Dict[str, str] = {}
|
|
946
|
+
|
|
947
|
+
_path_params: Dict[str, str] = {}
|
|
948
|
+
_query_params: List[Tuple[str, str]] = []
|
|
949
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
950
|
+
_form_params: List[Tuple[str, str]] = []
|
|
951
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
952
|
+
_body_params: Optional[bytes] = None
|
|
953
|
+
|
|
954
|
+
# process the path parameters
|
|
955
|
+
if cell is not None:
|
|
956
|
+
_path_params["cell"] = cell
|
|
957
|
+
if controller is not None:
|
|
958
|
+
_path_params["controller"] = controller
|
|
959
|
+
# process the query parameters
|
|
960
|
+
# process the header parameters
|
|
961
|
+
# process the form parameters
|
|
962
|
+
# process the body parameter
|
|
963
|
+
|
|
964
|
+
# set the HTTP header `Accept`
|
|
965
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
966
|
+
|
|
967
|
+
# authentication setting
|
|
968
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
969
|
+
|
|
970
|
+
return self.api_client.param_serialize(
|
|
971
|
+
method="PUT",
|
|
972
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/estop/push",
|
|
973
|
+
path_params=_path_params,
|
|
974
|
+
query_params=_query_params,
|
|
975
|
+
header_params=_header_params,
|
|
976
|
+
body=_body_params,
|
|
977
|
+
post_params=_form_params,
|
|
978
|
+
files=_files,
|
|
979
|
+
auth_settings=_auth_settings,
|
|
980
|
+
collection_formats=_collection_formats,
|
|
981
|
+
_host=_host,
|
|
982
|
+
_request_auth=_request_auth,
|
|
983
|
+
)
|
|
984
|
+
|
|
985
|
+
@validate_call
|
|
986
|
+
async def release_e_stop(
|
|
987
|
+
self,
|
|
988
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
989
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
990
|
+
_request_timeout: Union[
|
|
991
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
992
|
+
] = None,
|
|
993
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
994
|
+
_content_type: Optional[StrictStr] = None,
|
|
995
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
996
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
997
|
+
) -> object:
|
|
998
|
+
"""Release E-Stop
|
|
999
|
+
|
|
1000
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
1001
|
+
|
|
1002
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1003
|
+
:type cell: str
|
|
1004
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1005
|
+
:type controller: str
|
|
1006
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1007
|
+
number provided, it will be total request
|
|
1008
|
+
timeout. It can also be a pair (tuple) of
|
|
1009
|
+
(connection, read) timeouts.
|
|
1010
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1011
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1012
|
+
request; this effectively ignores the
|
|
1013
|
+
authentication in the spec for a single request.
|
|
1014
|
+
:type _request_auth: dict, optional
|
|
1015
|
+
:param _content_type: force content-type for the request.
|
|
1016
|
+
:type _content_type: str, Optional
|
|
1017
|
+
:param _headers: set to override the headers for a single
|
|
1018
|
+
request; this effectively ignores the headers
|
|
1019
|
+
in the spec for a single request.
|
|
1020
|
+
:type _headers: dict, optional
|
|
1021
|
+
:param _host_index: set to override the host_index for a single
|
|
1022
|
+
request; this effectively ignores the host_index
|
|
1023
|
+
in the spec for a single request.
|
|
1024
|
+
:type _host_index: int, optional
|
|
1025
|
+
:return: Returns the result object.
|
|
1026
|
+
""" # noqa: E501
|
|
1027
|
+
|
|
1028
|
+
_param = self._release_e_stop_serialize(
|
|
1029
|
+
cell=cell,
|
|
1030
|
+
controller=controller,
|
|
1031
|
+
_request_auth=_request_auth,
|
|
1032
|
+
_content_type=_content_type,
|
|
1033
|
+
_headers=_headers,
|
|
1034
|
+
_host_index=_host_index,
|
|
1035
|
+
)
|
|
1036
|
+
|
|
1037
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1038
|
+
"200": "object",
|
|
1039
|
+
}
|
|
1040
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1041
|
+
await response_data.read()
|
|
1042
|
+
return self.api_client.response_deserialize(
|
|
1043
|
+
response_data=response_data,
|
|
1044
|
+
response_types_map=_response_types_map,
|
|
1045
|
+
).data
|
|
1046
|
+
|
|
1047
|
+
@validate_call
|
|
1048
|
+
async def release_e_stop_with_http_info(
|
|
1049
|
+
self,
|
|
1050
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1051
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1052
|
+
_request_timeout: Union[
|
|
1053
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1054
|
+
] = None,
|
|
1055
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1056
|
+
_content_type: Optional[StrictStr] = None,
|
|
1057
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1058
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1059
|
+
) -> ApiResponse[object]:
|
|
1060
|
+
"""Release E-Stop
|
|
1061
|
+
|
|
1062
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
1063
|
+
|
|
1064
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1065
|
+
:type cell: str
|
|
1066
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1067
|
+
:type controller: str
|
|
1068
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1069
|
+
number provided, it will be total request
|
|
1070
|
+
timeout. It can also be a pair (tuple) of
|
|
1071
|
+
(connection, read) timeouts.
|
|
1072
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1073
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1074
|
+
request; this effectively ignores the
|
|
1075
|
+
authentication in the spec for a single request.
|
|
1076
|
+
:type _request_auth: dict, optional
|
|
1077
|
+
:param _content_type: force content-type for the request.
|
|
1078
|
+
:type _content_type: str, Optional
|
|
1079
|
+
:param _headers: set to override the headers for a single
|
|
1080
|
+
request; this effectively ignores the headers
|
|
1081
|
+
in the spec for a single request.
|
|
1082
|
+
:type _headers: dict, optional
|
|
1083
|
+
:param _host_index: set to override the host_index for a single
|
|
1084
|
+
request; this effectively ignores the host_index
|
|
1085
|
+
in the spec for a single request.
|
|
1086
|
+
:type _host_index: int, optional
|
|
1087
|
+
:return: Returns the result object.
|
|
1088
|
+
""" # noqa: E501
|
|
1089
|
+
|
|
1090
|
+
_param = self._release_e_stop_serialize(
|
|
1091
|
+
cell=cell,
|
|
1092
|
+
controller=controller,
|
|
1093
|
+
_request_auth=_request_auth,
|
|
1094
|
+
_content_type=_content_type,
|
|
1095
|
+
_headers=_headers,
|
|
1096
|
+
_host_index=_host_index,
|
|
1097
|
+
)
|
|
1098
|
+
|
|
1099
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1100
|
+
"200": "object",
|
|
1101
|
+
}
|
|
1102
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1103
|
+
await response_data.read()
|
|
1104
|
+
return self.api_client.response_deserialize(
|
|
1105
|
+
response_data=response_data,
|
|
1106
|
+
response_types_map=_response_types_map,
|
|
1107
|
+
)
|
|
1108
|
+
|
|
1109
|
+
@validate_call
|
|
1110
|
+
async def release_e_stop_without_preload_content(
|
|
1111
|
+
self,
|
|
1112
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1113
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1114
|
+
_request_timeout: Union[
|
|
1115
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1116
|
+
] = None,
|
|
1117
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1118
|
+
_content_type: Optional[StrictStr] = None,
|
|
1119
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1120
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1121
|
+
) -> RESTResponseType:
|
|
1122
|
+
"""Release E-Stop
|
|
1123
|
+
|
|
1124
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions on virtual and physical robot controllers. To return to normal operation, the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There, the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
1125
|
+
|
|
1126
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1127
|
+
:type cell: str
|
|
1128
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1129
|
+
:type controller: str
|
|
1130
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1131
|
+
number provided, it will be total request
|
|
1132
|
+
timeout. It can also be a pair (tuple) of
|
|
1133
|
+
(connection, read) timeouts.
|
|
1134
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1135
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1136
|
+
request; this effectively ignores the
|
|
1137
|
+
authentication in the spec for a single request.
|
|
1138
|
+
:type _request_auth: dict, optional
|
|
1139
|
+
:param _content_type: force content-type for the request.
|
|
1140
|
+
:type _content_type: str, Optional
|
|
1141
|
+
:param _headers: set to override the headers for a single
|
|
1142
|
+
request; this effectively ignores the headers
|
|
1143
|
+
in the spec for a single request.
|
|
1144
|
+
:type _headers: dict, optional
|
|
1145
|
+
:param _host_index: set to override the host_index for a single
|
|
1146
|
+
request; this effectively ignores the host_index
|
|
1147
|
+
in the spec for a single request.
|
|
1148
|
+
:type _host_index: int, optional
|
|
1149
|
+
:return: Returns the result object.
|
|
1150
|
+
""" # noqa: E501
|
|
1151
|
+
|
|
1152
|
+
_param = self._release_e_stop_serialize(
|
|
1153
|
+
cell=cell,
|
|
1154
|
+
controller=controller,
|
|
1155
|
+
_request_auth=_request_auth,
|
|
1156
|
+
_content_type=_content_type,
|
|
1157
|
+
_headers=_headers,
|
|
1158
|
+
_host_index=_host_index,
|
|
1159
|
+
)
|
|
1160
|
+
|
|
1161
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1162
|
+
"200": "object",
|
|
1163
|
+
}
|
|
1164
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1165
|
+
return response_data.response
|
|
1166
|
+
|
|
1167
|
+
def _release_e_stop_serialize(
|
|
1168
|
+
self,
|
|
1169
|
+
cell,
|
|
1170
|
+
controller,
|
|
1171
|
+
_request_auth,
|
|
1172
|
+
_content_type,
|
|
1173
|
+
_headers,
|
|
1174
|
+
_host_index,
|
|
1175
|
+
) -> RequestSerialized:
|
|
1176
|
+
|
|
1177
|
+
_host = None
|
|
1178
|
+
|
|
1179
|
+
_collection_formats: Dict[str, str] = {}
|
|
1180
|
+
|
|
1181
|
+
_path_params: Dict[str, str] = {}
|
|
1182
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1183
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1184
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1185
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1186
|
+
_body_params: Optional[bytes] = None
|
|
1187
|
+
|
|
1188
|
+
# process the path parameters
|
|
1189
|
+
if cell is not None:
|
|
1190
|
+
_path_params["cell"] = cell
|
|
1191
|
+
if controller is not None:
|
|
1192
|
+
_path_params["controller"] = controller
|
|
1193
|
+
# process the query parameters
|
|
1194
|
+
# process the header parameters
|
|
1195
|
+
# process the form parameters
|
|
1196
|
+
# process the body parameter
|
|
1197
|
+
|
|
1198
|
+
# set the HTTP header `Accept`
|
|
1199
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1200
|
+
|
|
1201
|
+
# authentication setting
|
|
1202
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1203
|
+
|
|
1204
|
+
return self.api_client.param_serialize(
|
|
1205
|
+
method="PUT",
|
|
1206
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/estop/release",
|
|
1207
|
+
path_params=_path_params,
|
|
1208
|
+
query_params=_query_params,
|
|
1209
|
+
header_params=_header_params,
|
|
1210
|
+
body=_body_params,
|
|
1211
|
+
post_params=_form_params,
|
|
1212
|
+
files=_files,
|
|
1213
|
+
auth_settings=_auth_settings,
|
|
1214
|
+
collection_formats=_collection_formats,
|
|
1215
|
+
_host=_host,
|
|
1216
|
+
_request_auth=_request_auth,
|
|
1217
|
+
)
|
|
1218
|
+
|
|
1219
|
+
@validate_call
|
|
1220
|
+
async def set_operation_mode(
|
|
1221
|
+
self,
|
|
1222
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1223
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1224
|
+
mode: StrictStr,
|
|
1225
|
+
_request_timeout: Union[
|
|
1226
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1227
|
+
] = None,
|
|
1228
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1229
|
+
_content_type: Optional[StrictStr] = None,
|
|
1230
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1231
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1232
|
+
) -> object:
|
|
1233
|
+
"""Set Operation Mode
|
|
1234
|
+
|
|
1235
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode, regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
1236
|
+
|
|
1237
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1238
|
+
:type cell: str
|
|
1239
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1240
|
+
:type controller: str
|
|
1241
|
+
:param mode: (required)
|
|
1242
|
+
:type mode: str
|
|
1243
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1244
|
+
number provided, it will be total request
|
|
1245
|
+
timeout. It can also be a pair (tuple) of
|
|
1246
|
+
(connection, read) timeouts.
|
|
1247
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1248
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1249
|
+
request; this effectively ignores the
|
|
1250
|
+
authentication in the spec for a single request.
|
|
1251
|
+
:type _request_auth: dict, optional
|
|
1252
|
+
:param _content_type: force content-type for the request.
|
|
1253
|
+
:type _content_type: str, Optional
|
|
1254
|
+
:param _headers: set to override the headers for a single
|
|
1255
|
+
request; this effectively ignores the headers
|
|
1256
|
+
in the spec for a single request.
|
|
1257
|
+
:type _headers: dict, optional
|
|
1258
|
+
:param _host_index: set to override the host_index for a single
|
|
1259
|
+
request; this effectively ignores the host_index
|
|
1260
|
+
in the spec for a single request.
|
|
1261
|
+
:type _host_index: int, optional
|
|
1262
|
+
:return: Returns the result object.
|
|
1263
|
+
""" # noqa: E501
|
|
1264
|
+
|
|
1265
|
+
_param = self._set_operation_mode_serialize(
|
|
1266
|
+
cell=cell,
|
|
1267
|
+
controller=controller,
|
|
1268
|
+
mode=mode,
|
|
1269
|
+
_request_auth=_request_auth,
|
|
1270
|
+
_content_type=_content_type,
|
|
1271
|
+
_headers=_headers,
|
|
1272
|
+
_host_index=_host_index,
|
|
1273
|
+
)
|
|
1274
|
+
|
|
1275
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1276
|
+
"200": "object",
|
|
1277
|
+
}
|
|
1278
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1279
|
+
await response_data.read()
|
|
1280
|
+
return self.api_client.response_deserialize(
|
|
1281
|
+
response_data=response_data,
|
|
1282
|
+
response_types_map=_response_types_map,
|
|
1283
|
+
).data
|
|
1284
|
+
|
|
1285
|
+
@validate_call
|
|
1286
|
+
async def set_operation_mode_with_http_info(
|
|
1287
|
+
self,
|
|
1288
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1289
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1290
|
+
mode: StrictStr,
|
|
1291
|
+
_request_timeout: Union[
|
|
1292
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1293
|
+
] = None,
|
|
1294
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1295
|
+
_content_type: Optional[StrictStr] = None,
|
|
1296
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1297
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1298
|
+
) -> ApiResponse[object]:
|
|
1299
|
+
"""Set Operation Mode
|
|
1300
|
+
|
|
1301
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode, regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
1302
|
+
|
|
1303
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1304
|
+
:type cell: str
|
|
1305
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1306
|
+
:type controller: str
|
|
1307
|
+
:param mode: (required)
|
|
1308
|
+
:type mode: str
|
|
1309
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1310
|
+
number provided, it will be total request
|
|
1311
|
+
timeout. It can also be a pair (tuple) of
|
|
1312
|
+
(connection, read) timeouts.
|
|
1313
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1314
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1315
|
+
request; this effectively ignores the
|
|
1316
|
+
authentication in the spec for a single request.
|
|
1317
|
+
:type _request_auth: dict, optional
|
|
1318
|
+
:param _content_type: force content-type for the request.
|
|
1319
|
+
:type _content_type: str, Optional
|
|
1320
|
+
:param _headers: set to override the headers for a single
|
|
1321
|
+
request; this effectively ignores the headers
|
|
1322
|
+
in the spec for a single request.
|
|
1323
|
+
:type _headers: dict, optional
|
|
1324
|
+
:param _host_index: set to override the host_index for a single
|
|
1325
|
+
request; this effectively ignores the host_index
|
|
1326
|
+
in the spec for a single request.
|
|
1327
|
+
:type _host_index: int, optional
|
|
1328
|
+
:return: Returns the result object.
|
|
1329
|
+
""" # noqa: E501
|
|
1330
|
+
|
|
1331
|
+
_param = self._set_operation_mode_serialize(
|
|
1332
|
+
cell=cell,
|
|
1333
|
+
controller=controller,
|
|
1334
|
+
mode=mode,
|
|
1335
|
+
_request_auth=_request_auth,
|
|
1336
|
+
_content_type=_content_type,
|
|
1337
|
+
_headers=_headers,
|
|
1338
|
+
_host_index=_host_index,
|
|
1339
|
+
)
|
|
1340
|
+
|
|
1341
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1342
|
+
"200": "object",
|
|
1343
|
+
}
|
|
1344
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1345
|
+
await response_data.read()
|
|
1346
|
+
return self.api_client.response_deserialize(
|
|
1347
|
+
response_data=response_data,
|
|
1348
|
+
response_types_map=_response_types_map,
|
|
1349
|
+
)
|
|
1350
|
+
|
|
1351
|
+
@validate_call
|
|
1352
|
+
async def set_operation_mode_without_preload_content(
|
|
1353
|
+
self,
|
|
1354
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1355
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1356
|
+
mode: StrictStr,
|
|
1357
|
+
_request_timeout: Union[
|
|
1358
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1359
|
+
] = None,
|
|
1360
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1361
|
+
_content_type: Optional[StrictStr] = None,
|
|
1362
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1363
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1364
|
+
) -> RESTResponseType:
|
|
1365
|
+
"""Set Operation Mode
|
|
1366
|
+
|
|
1367
|
+
**Required permissions:** `can_operate_virtual_controllers` - Operate and configure virtual controllers ___ Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode, regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only be changed via API when using virtual robot controllers.
|
|
1368
|
+
|
|
1369
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1370
|
+
:type cell: str
|
|
1371
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1372
|
+
:type controller: str
|
|
1373
|
+
:param mode: (required)
|
|
1374
|
+
:type mode: str
|
|
1375
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1376
|
+
number provided, it will be total request
|
|
1377
|
+
timeout. It can also be a pair (tuple) of
|
|
1378
|
+
(connection, read) timeouts.
|
|
1379
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1380
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1381
|
+
request; this effectively ignores the
|
|
1382
|
+
authentication in the spec for a single request.
|
|
1383
|
+
:type _request_auth: dict, optional
|
|
1384
|
+
:param _content_type: force content-type for the request.
|
|
1385
|
+
:type _content_type: str, Optional
|
|
1386
|
+
:param _headers: set to override the headers for a single
|
|
1387
|
+
request; this effectively ignores the headers
|
|
1388
|
+
in the spec for a single request.
|
|
1389
|
+
:type _headers: dict, optional
|
|
1390
|
+
:param _host_index: set to override the host_index for a single
|
|
1391
|
+
request; this effectively ignores the host_index
|
|
1392
|
+
in the spec for a single request.
|
|
1393
|
+
:type _host_index: int, optional
|
|
1394
|
+
:return: Returns the result object.
|
|
1395
|
+
""" # noqa: E501
|
|
1396
|
+
|
|
1397
|
+
_param = self._set_operation_mode_serialize(
|
|
1398
|
+
cell=cell,
|
|
1399
|
+
controller=controller,
|
|
1400
|
+
mode=mode,
|
|
1401
|
+
_request_auth=_request_auth,
|
|
1402
|
+
_content_type=_content_type,
|
|
1403
|
+
_headers=_headers,
|
|
1404
|
+
_host_index=_host_index,
|
|
1405
|
+
)
|
|
1406
|
+
|
|
1407
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1408
|
+
"200": "object",
|
|
1409
|
+
}
|
|
1410
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1411
|
+
return response_data.response
|
|
1412
|
+
|
|
1413
|
+
def _set_operation_mode_serialize(
|
|
1414
|
+
self,
|
|
1415
|
+
cell,
|
|
1416
|
+
controller,
|
|
1417
|
+
mode,
|
|
1418
|
+
_request_auth,
|
|
1419
|
+
_content_type,
|
|
1420
|
+
_headers,
|
|
1421
|
+
_host_index,
|
|
1422
|
+
) -> RequestSerialized:
|
|
1423
|
+
|
|
1424
|
+
_host = None
|
|
1425
|
+
|
|
1426
|
+
_collection_formats: Dict[str, str] = {}
|
|
1427
|
+
|
|
1428
|
+
_path_params: Dict[str, str] = {}
|
|
1429
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1430
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1431
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1432
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1433
|
+
_body_params: Optional[bytes] = None
|
|
1434
|
+
|
|
1435
|
+
# process the path parameters
|
|
1436
|
+
if cell is not None:
|
|
1437
|
+
_path_params["cell"] = cell
|
|
1438
|
+
if controller is not None:
|
|
1439
|
+
_path_params["controller"] = controller
|
|
1440
|
+
# process the query parameters
|
|
1441
|
+
if mode is not None:
|
|
1442
|
+
_query_params.append(("mode", mode))
|
|
1443
|
+
|
|
1444
|
+
# process the header parameters
|
|
1445
|
+
# process the form parameters
|
|
1446
|
+
# process the body parameter
|
|
1447
|
+
|
|
1448
|
+
# set the HTTP header `Accept`
|
|
1449
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1450
|
+
|
|
1451
|
+
# authentication setting
|
|
1452
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1453
|
+
|
|
1454
|
+
return self.api_client.param_serialize(
|
|
1455
|
+
method="PUT",
|
|
1456
|
+
resource_path="/cells/{cell}/controllers/{controller}/teach-pendant/operationmode",
|
|
1457
|
+
path_params=_path_params,
|
|
1458
|
+
query_params=_query_params,
|
|
1459
|
+
header_params=_header_params,
|
|
1460
|
+
body=_body_params,
|
|
1461
|
+
post_params=_form_params,
|
|
1462
|
+
files=_files,
|
|
1463
|
+
auth_settings=_auth_settings,
|
|
1464
|
+
collection_formats=_collection_formats,
|
|
1465
|
+
_host=_host,
|
|
1466
|
+
_request_auth=_request_auth,
|
|
1467
|
+
)
|