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,1267 @@
|
|
|
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
|
|
26
|
+
from typing import Optional
|
|
27
|
+
from typing_extensions import Annotated
|
|
28
|
+
from wandelbots_api_client.models.add_request import AddRequest
|
|
29
|
+
from wandelbots_api_client.models.coordinate_system import CoordinateSystem
|
|
30
|
+
from wandelbots_api_client.models.list_response import ListResponse
|
|
31
|
+
from wandelbots_api_client.models.pose import Pose
|
|
32
|
+
from wandelbots_api_client.models.rotation_angle_types import RotationAngleTypes
|
|
33
|
+
|
|
34
|
+
from wandelbots_api_client.api_client import ApiClient, RequestSerialized
|
|
35
|
+
from wandelbots_api_client.api_response import ApiResponse
|
|
36
|
+
from wandelbots_api_client.rest import RESTResponseType
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class CoordinateSystemsApi:
|
|
40
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
41
|
+
Ref: https://openapi-generator.tech
|
|
42
|
+
|
|
43
|
+
Do not edit the class manually.
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def __init__(self, api_client=None) -> None:
|
|
47
|
+
if api_client is None:
|
|
48
|
+
api_client = ApiClient.get_default()
|
|
49
|
+
self.api_client = api_client
|
|
50
|
+
|
|
51
|
+
@validate_call
|
|
52
|
+
async def add_coordinate_system(
|
|
53
|
+
self,
|
|
54
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
55
|
+
add_request: AddRequest,
|
|
56
|
+
_request_timeout: Union[
|
|
57
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
58
|
+
] = None,
|
|
59
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
60
|
+
_content_type: Optional[StrictStr] = None,
|
|
61
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
62
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
63
|
+
) -> CoordinateSystem:
|
|
64
|
+
"""Add
|
|
65
|
+
|
|
66
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Add a user coordinate system to the list of coordinate systems but not on a robot controller. The coordinate system is defined by a name and an offset in another coordinate system referenced by the unique identifier of the reference coordinate system. Will return the specification of the added coordinate systems which includes the unique identifier of the added coordinate system. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
67
|
+
|
|
68
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
69
|
+
:type cell: str
|
|
70
|
+
:param add_request: (required)
|
|
71
|
+
:type add_request: AddRequest
|
|
72
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
73
|
+
number provided, it will be total request
|
|
74
|
+
timeout. It can also be a pair (tuple) of
|
|
75
|
+
(connection, read) timeouts.
|
|
76
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
77
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
78
|
+
request; this effectively ignores the
|
|
79
|
+
authentication in the spec for a single request.
|
|
80
|
+
:type _request_auth: dict, optional
|
|
81
|
+
:param _content_type: force content-type for the request.
|
|
82
|
+
:type _content_type: str, Optional
|
|
83
|
+
:param _headers: set to override the headers for a single
|
|
84
|
+
request; this effectively ignores the headers
|
|
85
|
+
in the spec for a single request.
|
|
86
|
+
:type _headers: dict, optional
|
|
87
|
+
:param _host_index: set to override the host_index for a single
|
|
88
|
+
request; this effectively ignores the host_index
|
|
89
|
+
in the spec for a single request.
|
|
90
|
+
:type _host_index: int, optional
|
|
91
|
+
:return: Returns the result object.
|
|
92
|
+
""" # noqa: E501
|
|
93
|
+
|
|
94
|
+
_param = self._add_coordinate_system_serialize(
|
|
95
|
+
cell=cell,
|
|
96
|
+
add_request=add_request,
|
|
97
|
+
_request_auth=_request_auth,
|
|
98
|
+
_content_type=_content_type,
|
|
99
|
+
_headers=_headers,
|
|
100
|
+
_host_index=_host_index,
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
104
|
+
"200": "CoordinateSystem",
|
|
105
|
+
}
|
|
106
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
107
|
+
await response_data.read()
|
|
108
|
+
return self.api_client.response_deserialize(
|
|
109
|
+
response_data=response_data,
|
|
110
|
+
response_types_map=_response_types_map,
|
|
111
|
+
).data
|
|
112
|
+
|
|
113
|
+
@validate_call
|
|
114
|
+
async def add_coordinate_system_with_http_info(
|
|
115
|
+
self,
|
|
116
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
117
|
+
add_request: AddRequest,
|
|
118
|
+
_request_timeout: Union[
|
|
119
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
120
|
+
] = None,
|
|
121
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
122
|
+
_content_type: Optional[StrictStr] = None,
|
|
123
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
124
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
125
|
+
) -> ApiResponse[CoordinateSystem]:
|
|
126
|
+
"""Add
|
|
127
|
+
|
|
128
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Add a user coordinate system to the list of coordinate systems but not on a robot controller. The coordinate system is defined by a name and an offset in another coordinate system referenced by the unique identifier of the reference coordinate system. Will return the specification of the added coordinate systems which includes the unique identifier of the added coordinate system. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
129
|
+
|
|
130
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
131
|
+
:type cell: str
|
|
132
|
+
:param add_request: (required)
|
|
133
|
+
:type add_request: AddRequest
|
|
134
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
135
|
+
number provided, it will be total request
|
|
136
|
+
timeout. It can also be a pair (tuple) of
|
|
137
|
+
(connection, read) timeouts.
|
|
138
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
139
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
140
|
+
request; this effectively ignores the
|
|
141
|
+
authentication in the spec for a single request.
|
|
142
|
+
:type _request_auth: dict, optional
|
|
143
|
+
:param _content_type: force content-type for the request.
|
|
144
|
+
:type _content_type: str, Optional
|
|
145
|
+
:param _headers: set to override the headers for a single
|
|
146
|
+
request; this effectively ignores the headers
|
|
147
|
+
in the spec for a single request.
|
|
148
|
+
:type _headers: dict, optional
|
|
149
|
+
:param _host_index: set to override the host_index for a single
|
|
150
|
+
request; this effectively ignores the host_index
|
|
151
|
+
in the spec for a single request.
|
|
152
|
+
:type _host_index: int, optional
|
|
153
|
+
:return: Returns the result object.
|
|
154
|
+
""" # noqa: E501
|
|
155
|
+
|
|
156
|
+
_param = self._add_coordinate_system_serialize(
|
|
157
|
+
cell=cell,
|
|
158
|
+
add_request=add_request,
|
|
159
|
+
_request_auth=_request_auth,
|
|
160
|
+
_content_type=_content_type,
|
|
161
|
+
_headers=_headers,
|
|
162
|
+
_host_index=_host_index,
|
|
163
|
+
)
|
|
164
|
+
|
|
165
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
166
|
+
"200": "CoordinateSystem",
|
|
167
|
+
}
|
|
168
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
169
|
+
await response_data.read()
|
|
170
|
+
return self.api_client.response_deserialize(
|
|
171
|
+
response_data=response_data,
|
|
172
|
+
response_types_map=_response_types_map,
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
@validate_call
|
|
176
|
+
async def add_coordinate_system_without_preload_content(
|
|
177
|
+
self,
|
|
178
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
179
|
+
add_request: AddRequest,
|
|
180
|
+
_request_timeout: Union[
|
|
181
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
182
|
+
] = None,
|
|
183
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
184
|
+
_content_type: Optional[StrictStr] = None,
|
|
185
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
186
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
187
|
+
) -> RESTResponseType:
|
|
188
|
+
"""Add
|
|
189
|
+
|
|
190
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Add a user coordinate system to the list of coordinate systems but not on a robot controller. The coordinate system is defined by a name and an offset in another coordinate system referenced by the unique identifier of the reference coordinate system. Will return the specification of the added coordinate systems which includes the unique identifier of the added coordinate system. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
191
|
+
|
|
192
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
193
|
+
:type cell: str
|
|
194
|
+
:param add_request: (required)
|
|
195
|
+
:type add_request: AddRequest
|
|
196
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
197
|
+
number provided, it will be total request
|
|
198
|
+
timeout. It can also be a pair (tuple) of
|
|
199
|
+
(connection, read) timeouts.
|
|
200
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
201
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
202
|
+
request; this effectively ignores the
|
|
203
|
+
authentication in the spec for a single request.
|
|
204
|
+
:type _request_auth: dict, optional
|
|
205
|
+
:param _content_type: force content-type for the request.
|
|
206
|
+
:type _content_type: str, Optional
|
|
207
|
+
:param _headers: set to override the headers for a single
|
|
208
|
+
request; this effectively ignores the headers
|
|
209
|
+
in the spec for a single request.
|
|
210
|
+
:type _headers: dict, optional
|
|
211
|
+
:param _host_index: set to override the host_index for a single
|
|
212
|
+
request; this effectively ignores the host_index
|
|
213
|
+
in the spec for a single request.
|
|
214
|
+
:type _host_index: int, optional
|
|
215
|
+
:return: Returns the result object.
|
|
216
|
+
""" # noqa: E501
|
|
217
|
+
|
|
218
|
+
_param = self._add_coordinate_system_serialize(
|
|
219
|
+
cell=cell,
|
|
220
|
+
add_request=add_request,
|
|
221
|
+
_request_auth=_request_auth,
|
|
222
|
+
_content_type=_content_type,
|
|
223
|
+
_headers=_headers,
|
|
224
|
+
_host_index=_host_index,
|
|
225
|
+
)
|
|
226
|
+
|
|
227
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
228
|
+
"200": "CoordinateSystem",
|
|
229
|
+
}
|
|
230
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
231
|
+
return response_data.response
|
|
232
|
+
|
|
233
|
+
def _add_coordinate_system_serialize(
|
|
234
|
+
self,
|
|
235
|
+
cell,
|
|
236
|
+
add_request,
|
|
237
|
+
_request_auth,
|
|
238
|
+
_content_type,
|
|
239
|
+
_headers,
|
|
240
|
+
_host_index,
|
|
241
|
+
) -> RequestSerialized:
|
|
242
|
+
|
|
243
|
+
_host = None
|
|
244
|
+
|
|
245
|
+
_collection_formats: Dict[str, str] = {}
|
|
246
|
+
|
|
247
|
+
_path_params: Dict[str, str] = {}
|
|
248
|
+
_query_params: List[Tuple[str, str]] = []
|
|
249
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
250
|
+
_form_params: List[Tuple[str, str]] = []
|
|
251
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
252
|
+
_body_params: Optional[bytes] = None
|
|
253
|
+
|
|
254
|
+
# process the path parameters
|
|
255
|
+
if cell is not None:
|
|
256
|
+
_path_params["cell"] = cell
|
|
257
|
+
# process the query parameters
|
|
258
|
+
# process the header parameters
|
|
259
|
+
# process the form parameters
|
|
260
|
+
# process the body parameter
|
|
261
|
+
if add_request is not None:
|
|
262
|
+
_body_params = add_request
|
|
263
|
+
|
|
264
|
+
# set the HTTP header `Accept`
|
|
265
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
266
|
+
|
|
267
|
+
# set the HTTP header `Content-Type`
|
|
268
|
+
if _content_type:
|
|
269
|
+
_header_params["Content-Type"] = _content_type
|
|
270
|
+
else:
|
|
271
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
272
|
+
if _default_content_type is not None:
|
|
273
|
+
_header_params["Content-Type"] = _default_content_type
|
|
274
|
+
|
|
275
|
+
# authentication setting
|
|
276
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
277
|
+
|
|
278
|
+
return self.api_client.param_serialize(
|
|
279
|
+
method="PUT",
|
|
280
|
+
resource_path="/cells/{cell}/coordinate-systems",
|
|
281
|
+
path_params=_path_params,
|
|
282
|
+
query_params=_query_params,
|
|
283
|
+
header_params=_header_params,
|
|
284
|
+
body=_body_params,
|
|
285
|
+
post_params=_form_params,
|
|
286
|
+
files=_files,
|
|
287
|
+
auth_settings=_auth_settings,
|
|
288
|
+
collection_formats=_collection_formats,
|
|
289
|
+
_host=_host,
|
|
290
|
+
_request_auth=_request_auth,
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
@validate_call
|
|
294
|
+
async def delete_coordinate_system(
|
|
295
|
+
self,
|
|
296
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
297
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
298
|
+
_request_timeout: Union[
|
|
299
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
300
|
+
] = None,
|
|
301
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
302
|
+
_content_type: Optional[StrictStr] = None,
|
|
303
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
304
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
305
|
+
) -> None:
|
|
306
|
+
"""Delete
|
|
307
|
+
|
|
308
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](#/operations/deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
309
|
+
|
|
310
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
311
|
+
:type cell: str
|
|
312
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
313
|
+
:type coordinate_system: str
|
|
314
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
315
|
+
number provided, it will be total request
|
|
316
|
+
timeout. It can also be a pair (tuple) of
|
|
317
|
+
(connection, read) timeouts.
|
|
318
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
319
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
320
|
+
request; this effectively ignores the
|
|
321
|
+
authentication in the spec for a single request.
|
|
322
|
+
:type _request_auth: dict, optional
|
|
323
|
+
:param _content_type: force content-type for the request.
|
|
324
|
+
:type _content_type: str, Optional
|
|
325
|
+
:param _headers: set to override the headers for a single
|
|
326
|
+
request; this effectively ignores the headers
|
|
327
|
+
in the spec for a single request.
|
|
328
|
+
:type _headers: dict, optional
|
|
329
|
+
:param _host_index: set to override the host_index for a single
|
|
330
|
+
request; this effectively ignores the host_index
|
|
331
|
+
in the spec for a single request.
|
|
332
|
+
:type _host_index: int, optional
|
|
333
|
+
:return: Returns the result object.
|
|
334
|
+
""" # noqa: E501
|
|
335
|
+
|
|
336
|
+
_param = self._delete_coordinate_system_serialize(
|
|
337
|
+
cell=cell,
|
|
338
|
+
coordinate_system=coordinate_system,
|
|
339
|
+
_request_auth=_request_auth,
|
|
340
|
+
_content_type=_content_type,
|
|
341
|
+
_headers=_headers,
|
|
342
|
+
_host_index=_host_index,
|
|
343
|
+
)
|
|
344
|
+
|
|
345
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
346
|
+
"200": None,
|
|
347
|
+
}
|
|
348
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
349
|
+
await response_data.read()
|
|
350
|
+
return self.api_client.response_deserialize(
|
|
351
|
+
response_data=response_data,
|
|
352
|
+
response_types_map=_response_types_map,
|
|
353
|
+
).data
|
|
354
|
+
|
|
355
|
+
@validate_call
|
|
356
|
+
async def delete_coordinate_system_with_http_info(
|
|
357
|
+
self,
|
|
358
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
359
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
360
|
+
_request_timeout: Union[
|
|
361
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
362
|
+
] = None,
|
|
363
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
364
|
+
_content_type: Optional[StrictStr] = None,
|
|
365
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
366
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
367
|
+
) -> ApiResponse[None]:
|
|
368
|
+
"""Delete
|
|
369
|
+
|
|
370
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](#/operations/deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
371
|
+
|
|
372
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
373
|
+
:type cell: str
|
|
374
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
375
|
+
:type coordinate_system: str
|
|
376
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
377
|
+
number provided, it will be total request
|
|
378
|
+
timeout. It can also be a pair (tuple) of
|
|
379
|
+
(connection, read) timeouts.
|
|
380
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
381
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
382
|
+
request; this effectively ignores the
|
|
383
|
+
authentication in the spec for a single request.
|
|
384
|
+
:type _request_auth: dict, optional
|
|
385
|
+
:param _content_type: force content-type for the request.
|
|
386
|
+
:type _content_type: str, Optional
|
|
387
|
+
:param _headers: set to override the headers for a single
|
|
388
|
+
request; this effectively ignores the headers
|
|
389
|
+
in the spec for a single request.
|
|
390
|
+
:type _headers: dict, optional
|
|
391
|
+
:param _host_index: set to override the host_index for a single
|
|
392
|
+
request; this effectively ignores the host_index
|
|
393
|
+
in the spec for a single request.
|
|
394
|
+
:type _host_index: int, optional
|
|
395
|
+
:return: Returns the result object.
|
|
396
|
+
""" # noqa: E501
|
|
397
|
+
|
|
398
|
+
_param = self._delete_coordinate_system_serialize(
|
|
399
|
+
cell=cell,
|
|
400
|
+
coordinate_system=coordinate_system,
|
|
401
|
+
_request_auth=_request_auth,
|
|
402
|
+
_content_type=_content_type,
|
|
403
|
+
_headers=_headers,
|
|
404
|
+
_host_index=_host_index,
|
|
405
|
+
)
|
|
406
|
+
|
|
407
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
408
|
+
"200": None,
|
|
409
|
+
}
|
|
410
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
411
|
+
await response_data.read()
|
|
412
|
+
return self.api_client.response_deserialize(
|
|
413
|
+
response_data=response_data,
|
|
414
|
+
response_types_map=_response_types_map,
|
|
415
|
+
)
|
|
416
|
+
|
|
417
|
+
@validate_call
|
|
418
|
+
async def delete_coordinate_system_without_preload_content(
|
|
419
|
+
self,
|
|
420
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
421
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
422
|
+
_request_timeout: Union[
|
|
423
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
424
|
+
] = None,
|
|
425
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
426
|
+
_content_type: Optional[StrictStr] = None,
|
|
427
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
428
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
429
|
+
) -> RESTResponseType:
|
|
430
|
+
"""Delete
|
|
431
|
+
|
|
432
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Removes a user coordinate system specified by the given identifier. > **NOTE** > > If the coordinate system has originally been configured on the robot controller, it will remain on the controller even after this endpoint has been executed successfully.. This will remove the user coordinate system from the list of user coordinate systems but keep all dependent coordinate systems which use the deleted coordinate system as reference. Coordinate systems on the robot controller are not affected by this operation. They can be removed via the robot control panel only and will be removed in NOVA when the controller is removed. On virtual controllers, use the [deleteVirtualRobotCoordinateSystem](#/operations/deleteVirtualRobotCoordinateSystem) endpoint to remove coordinate systems from NOVA and the virtual controller. All available coordinate systems can be listed via the [listCoordinateSystems](#/operations/listCoordinateSystems) endpoint.
|
|
433
|
+
|
|
434
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
435
|
+
:type cell: str
|
|
436
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
437
|
+
:type coordinate_system: str
|
|
438
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
439
|
+
number provided, it will be total request
|
|
440
|
+
timeout. It can also be a pair (tuple) of
|
|
441
|
+
(connection, read) timeouts.
|
|
442
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
443
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
444
|
+
request; this effectively ignores the
|
|
445
|
+
authentication in the spec for a single request.
|
|
446
|
+
:type _request_auth: dict, optional
|
|
447
|
+
:param _content_type: force content-type for the request.
|
|
448
|
+
:type _content_type: str, Optional
|
|
449
|
+
:param _headers: set to override the headers for a single
|
|
450
|
+
request; this effectively ignores the headers
|
|
451
|
+
in the spec for a single request.
|
|
452
|
+
:type _headers: dict, optional
|
|
453
|
+
:param _host_index: set to override the host_index for a single
|
|
454
|
+
request; this effectively ignores the host_index
|
|
455
|
+
in the spec for a single request.
|
|
456
|
+
:type _host_index: int, optional
|
|
457
|
+
:return: Returns the result object.
|
|
458
|
+
""" # noqa: E501
|
|
459
|
+
|
|
460
|
+
_param = self._delete_coordinate_system_serialize(
|
|
461
|
+
cell=cell,
|
|
462
|
+
coordinate_system=coordinate_system,
|
|
463
|
+
_request_auth=_request_auth,
|
|
464
|
+
_content_type=_content_type,
|
|
465
|
+
_headers=_headers,
|
|
466
|
+
_host_index=_host_index,
|
|
467
|
+
)
|
|
468
|
+
|
|
469
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
470
|
+
"200": None,
|
|
471
|
+
}
|
|
472
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
473
|
+
return response_data.response
|
|
474
|
+
|
|
475
|
+
def _delete_coordinate_system_serialize(
|
|
476
|
+
self,
|
|
477
|
+
cell,
|
|
478
|
+
coordinate_system,
|
|
479
|
+
_request_auth,
|
|
480
|
+
_content_type,
|
|
481
|
+
_headers,
|
|
482
|
+
_host_index,
|
|
483
|
+
) -> RequestSerialized:
|
|
484
|
+
|
|
485
|
+
_host = None
|
|
486
|
+
|
|
487
|
+
_collection_formats: Dict[str, str] = {}
|
|
488
|
+
|
|
489
|
+
_path_params: Dict[str, str] = {}
|
|
490
|
+
_query_params: List[Tuple[str, str]] = []
|
|
491
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
492
|
+
_form_params: List[Tuple[str, str]] = []
|
|
493
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
494
|
+
_body_params: Optional[bytes] = None
|
|
495
|
+
|
|
496
|
+
# process the path parameters
|
|
497
|
+
if cell is not None:
|
|
498
|
+
_path_params["cell"] = cell
|
|
499
|
+
if coordinate_system is not None:
|
|
500
|
+
_path_params["coordinate-system"] = coordinate_system
|
|
501
|
+
# process the query parameters
|
|
502
|
+
# process the header parameters
|
|
503
|
+
# process the form parameters
|
|
504
|
+
# process the body parameter
|
|
505
|
+
|
|
506
|
+
# set the HTTP header `Accept`
|
|
507
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
508
|
+
|
|
509
|
+
# authentication setting
|
|
510
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
511
|
+
|
|
512
|
+
return self.api_client.param_serialize(
|
|
513
|
+
method="DELETE",
|
|
514
|
+
resource_path="/cells/{cell}/coordinate-systems/{coordinate-system}",
|
|
515
|
+
path_params=_path_params,
|
|
516
|
+
query_params=_query_params,
|
|
517
|
+
header_params=_header_params,
|
|
518
|
+
body=_body_params,
|
|
519
|
+
post_params=_form_params,
|
|
520
|
+
files=_files,
|
|
521
|
+
auth_settings=_auth_settings,
|
|
522
|
+
collection_formats=_collection_formats,
|
|
523
|
+
_host=_host,
|
|
524
|
+
_request_auth=_request_auth,
|
|
525
|
+
)
|
|
526
|
+
|
|
527
|
+
@validate_call
|
|
528
|
+
async def get_coordinate_system(
|
|
529
|
+
self,
|
|
530
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
531
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
532
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
533
|
+
_request_timeout: Union[
|
|
534
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
535
|
+
] = None,
|
|
536
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
537
|
+
_content_type: Optional[StrictStr] = None,
|
|
538
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
539
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
540
|
+
) -> CoordinateSystem:
|
|
541
|
+
"""Description
|
|
542
|
+
|
|
543
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
544
|
+
|
|
545
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
546
|
+
:type cell: str
|
|
547
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
548
|
+
:type coordinate_system: str
|
|
549
|
+
:param rotation_type:
|
|
550
|
+
:type rotation_type: RotationAngleTypes
|
|
551
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
552
|
+
number provided, it will be total request
|
|
553
|
+
timeout. It can also be a pair (tuple) of
|
|
554
|
+
(connection, read) timeouts.
|
|
555
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
556
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
557
|
+
request; this effectively ignores the
|
|
558
|
+
authentication in the spec for a single request.
|
|
559
|
+
:type _request_auth: dict, optional
|
|
560
|
+
:param _content_type: force content-type for the request.
|
|
561
|
+
:type _content_type: str, Optional
|
|
562
|
+
:param _headers: set to override the headers for a single
|
|
563
|
+
request; this effectively ignores the headers
|
|
564
|
+
in the spec for a single request.
|
|
565
|
+
:type _headers: dict, optional
|
|
566
|
+
:param _host_index: set to override the host_index for a single
|
|
567
|
+
request; this effectively ignores the host_index
|
|
568
|
+
in the spec for a single request.
|
|
569
|
+
:type _host_index: int, optional
|
|
570
|
+
:return: Returns the result object.
|
|
571
|
+
""" # noqa: E501
|
|
572
|
+
|
|
573
|
+
_param = self._get_coordinate_system_serialize(
|
|
574
|
+
cell=cell,
|
|
575
|
+
coordinate_system=coordinate_system,
|
|
576
|
+
rotation_type=rotation_type,
|
|
577
|
+
_request_auth=_request_auth,
|
|
578
|
+
_content_type=_content_type,
|
|
579
|
+
_headers=_headers,
|
|
580
|
+
_host_index=_host_index,
|
|
581
|
+
)
|
|
582
|
+
|
|
583
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
584
|
+
"200": "CoordinateSystem",
|
|
585
|
+
}
|
|
586
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
587
|
+
await response_data.read()
|
|
588
|
+
return self.api_client.response_deserialize(
|
|
589
|
+
response_data=response_data,
|
|
590
|
+
response_types_map=_response_types_map,
|
|
591
|
+
).data
|
|
592
|
+
|
|
593
|
+
@validate_call
|
|
594
|
+
async def get_coordinate_system_with_http_info(
|
|
595
|
+
self,
|
|
596
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
597
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
598
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
599
|
+
_request_timeout: Union[
|
|
600
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
601
|
+
] = None,
|
|
602
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
603
|
+
_content_type: Optional[StrictStr] = None,
|
|
604
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
605
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
606
|
+
) -> ApiResponse[CoordinateSystem]:
|
|
607
|
+
"""Description
|
|
608
|
+
|
|
609
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
610
|
+
|
|
611
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
612
|
+
:type cell: str
|
|
613
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
614
|
+
:type coordinate_system: str
|
|
615
|
+
:param rotation_type:
|
|
616
|
+
:type rotation_type: RotationAngleTypes
|
|
617
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
618
|
+
number provided, it will be total request
|
|
619
|
+
timeout. It can also be a pair (tuple) of
|
|
620
|
+
(connection, read) timeouts.
|
|
621
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
622
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
623
|
+
request; this effectively ignores the
|
|
624
|
+
authentication in the spec for a single request.
|
|
625
|
+
:type _request_auth: dict, optional
|
|
626
|
+
:param _content_type: force content-type for the request.
|
|
627
|
+
:type _content_type: str, Optional
|
|
628
|
+
:param _headers: set to override the headers for a single
|
|
629
|
+
request; this effectively ignores the headers
|
|
630
|
+
in the spec for a single request.
|
|
631
|
+
:type _headers: dict, optional
|
|
632
|
+
:param _host_index: set to override the host_index for a single
|
|
633
|
+
request; this effectively ignores the host_index
|
|
634
|
+
in the spec for a single request.
|
|
635
|
+
:type _host_index: int, optional
|
|
636
|
+
:return: Returns the result object.
|
|
637
|
+
""" # noqa: E501
|
|
638
|
+
|
|
639
|
+
_param = self._get_coordinate_system_serialize(
|
|
640
|
+
cell=cell,
|
|
641
|
+
coordinate_system=coordinate_system,
|
|
642
|
+
rotation_type=rotation_type,
|
|
643
|
+
_request_auth=_request_auth,
|
|
644
|
+
_content_type=_content_type,
|
|
645
|
+
_headers=_headers,
|
|
646
|
+
_host_index=_host_index,
|
|
647
|
+
)
|
|
648
|
+
|
|
649
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
650
|
+
"200": "CoordinateSystem",
|
|
651
|
+
}
|
|
652
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
653
|
+
await response_data.read()
|
|
654
|
+
return self.api_client.response_deserialize(
|
|
655
|
+
response_data=response_data,
|
|
656
|
+
response_types_map=_response_types_map,
|
|
657
|
+
)
|
|
658
|
+
|
|
659
|
+
@validate_call
|
|
660
|
+
async def get_coordinate_system_without_preload_content(
|
|
661
|
+
self,
|
|
662
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
663
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
664
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
665
|
+
_request_timeout: Union[
|
|
666
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
667
|
+
] = None,
|
|
668
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
669
|
+
_content_type: Optional[StrictStr] = None,
|
|
670
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
671
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
672
|
+
) -> RESTResponseType:
|
|
673
|
+
"""Description
|
|
674
|
+
|
|
675
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Request a coordinate system specification for a given identifier. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. User coordinate systems can be configured on a robot controller during setup or added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
676
|
+
|
|
677
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
678
|
+
:type cell: str
|
|
679
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
680
|
+
:type coordinate_system: str
|
|
681
|
+
:param rotation_type:
|
|
682
|
+
:type rotation_type: RotationAngleTypes
|
|
683
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
684
|
+
number provided, it will be total request
|
|
685
|
+
timeout. It can also be a pair (tuple) of
|
|
686
|
+
(connection, read) timeouts.
|
|
687
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
688
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
689
|
+
request; this effectively ignores the
|
|
690
|
+
authentication in the spec for a single request.
|
|
691
|
+
:type _request_auth: dict, optional
|
|
692
|
+
:param _content_type: force content-type for the request.
|
|
693
|
+
:type _content_type: str, Optional
|
|
694
|
+
:param _headers: set to override the headers for a single
|
|
695
|
+
request; this effectively ignores the headers
|
|
696
|
+
in the spec for a single request.
|
|
697
|
+
:type _headers: dict, optional
|
|
698
|
+
:param _host_index: set to override the host_index for a single
|
|
699
|
+
request; this effectively ignores the host_index
|
|
700
|
+
in the spec for a single request.
|
|
701
|
+
:type _host_index: int, optional
|
|
702
|
+
:return: Returns the result object.
|
|
703
|
+
""" # noqa: E501
|
|
704
|
+
|
|
705
|
+
_param = self._get_coordinate_system_serialize(
|
|
706
|
+
cell=cell,
|
|
707
|
+
coordinate_system=coordinate_system,
|
|
708
|
+
rotation_type=rotation_type,
|
|
709
|
+
_request_auth=_request_auth,
|
|
710
|
+
_content_type=_content_type,
|
|
711
|
+
_headers=_headers,
|
|
712
|
+
_host_index=_host_index,
|
|
713
|
+
)
|
|
714
|
+
|
|
715
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
716
|
+
"200": "CoordinateSystem",
|
|
717
|
+
}
|
|
718
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
719
|
+
return response_data.response
|
|
720
|
+
|
|
721
|
+
def _get_coordinate_system_serialize(
|
|
722
|
+
self,
|
|
723
|
+
cell,
|
|
724
|
+
coordinate_system,
|
|
725
|
+
rotation_type,
|
|
726
|
+
_request_auth,
|
|
727
|
+
_content_type,
|
|
728
|
+
_headers,
|
|
729
|
+
_host_index,
|
|
730
|
+
) -> RequestSerialized:
|
|
731
|
+
|
|
732
|
+
_host = None
|
|
733
|
+
|
|
734
|
+
_collection_formats: Dict[str, str] = {}
|
|
735
|
+
|
|
736
|
+
_path_params: Dict[str, str] = {}
|
|
737
|
+
_query_params: List[Tuple[str, str]] = []
|
|
738
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
739
|
+
_form_params: List[Tuple[str, str]] = []
|
|
740
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
741
|
+
_body_params: Optional[bytes] = None
|
|
742
|
+
|
|
743
|
+
# process the path parameters
|
|
744
|
+
if cell is not None:
|
|
745
|
+
_path_params["cell"] = cell
|
|
746
|
+
if coordinate_system is not None:
|
|
747
|
+
_path_params["coordinate-system"] = coordinate_system
|
|
748
|
+
# process the query parameters
|
|
749
|
+
if rotation_type is not None:
|
|
750
|
+
_query_params.append(("rotation_type", rotation_type.value))
|
|
751
|
+
|
|
752
|
+
# process the header parameters
|
|
753
|
+
# process the form parameters
|
|
754
|
+
# process the body parameter
|
|
755
|
+
|
|
756
|
+
# set the HTTP header `Accept`
|
|
757
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
758
|
+
|
|
759
|
+
# authentication setting
|
|
760
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
761
|
+
|
|
762
|
+
return self.api_client.param_serialize(
|
|
763
|
+
method="GET",
|
|
764
|
+
resource_path="/cells/{cell}/coordinate-systems/{coordinate-system}",
|
|
765
|
+
path_params=_path_params,
|
|
766
|
+
query_params=_query_params,
|
|
767
|
+
header_params=_header_params,
|
|
768
|
+
body=_body_params,
|
|
769
|
+
post_params=_form_params,
|
|
770
|
+
files=_files,
|
|
771
|
+
auth_settings=_auth_settings,
|
|
772
|
+
collection_formats=_collection_formats,
|
|
773
|
+
_host=_host,
|
|
774
|
+
_request_auth=_request_auth,
|
|
775
|
+
)
|
|
776
|
+
|
|
777
|
+
@validate_call
|
|
778
|
+
async def list_coordinate_systems(
|
|
779
|
+
self,
|
|
780
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
781
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
782
|
+
_request_timeout: Union[
|
|
783
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
784
|
+
] = None,
|
|
785
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
786
|
+
_content_type: Optional[StrictStr] = None,
|
|
787
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
788
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
789
|
+
) -> ListResponse:
|
|
790
|
+
"""List
|
|
791
|
+
|
|
792
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
793
|
+
|
|
794
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
795
|
+
:type cell: str
|
|
796
|
+
:param rotation_type:
|
|
797
|
+
:type rotation_type: RotationAngleTypes
|
|
798
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
799
|
+
number provided, it will be total request
|
|
800
|
+
timeout. It can also be a pair (tuple) of
|
|
801
|
+
(connection, read) timeouts.
|
|
802
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
803
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
804
|
+
request; this effectively ignores the
|
|
805
|
+
authentication in the spec for a single request.
|
|
806
|
+
:type _request_auth: dict, optional
|
|
807
|
+
:param _content_type: force content-type for the request.
|
|
808
|
+
:type _content_type: str, Optional
|
|
809
|
+
:param _headers: set to override the headers for a single
|
|
810
|
+
request; this effectively ignores the headers
|
|
811
|
+
in the spec for a single request.
|
|
812
|
+
:type _headers: dict, optional
|
|
813
|
+
:param _host_index: set to override the host_index for a single
|
|
814
|
+
request; this effectively ignores the host_index
|
|
815
|
+
in the spec for a single request.
|
|
816
|
+
:type _host_index: int, optional
|
|
817
|
+
:return: Returns the result object.
|
|
818
|
+
""" # noqa: E501
|
|
819
|
+
|
|
820
|
+
_param = self._list_coordinate_systems_serialize(
|
|
821
|
+
cell=cell,
|
|
822
|
+
rotation_type=rotation_type,
|
|
823
|
+
_request_auth=_request_auth,
|
|
824
|
+
_content_type=_content_type,
|
|
825
|
+
_headers=_headers,
|
|
826
|
+
_host_index=_host_index,
|
|
827
|
+
)
|
|
828
|
+
|
|
829
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
830
|
+
"200": "ListResponse",
|
|
831
|
+
}
|
|
832
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
833
|
+
await response_data.read()
|
|
834
|
+
return self.api_client.response_deserialize(
|
|
835
|
+
response_data=response_data,
|
|
836
|
+
response_types_map=_response_types_map,
|
|
837
|
+
).data
|
|
838
|
+
|
|
839
|
+
@validate_call
|
|
840
|
+
async def list_coordinate_systems_with_http_info(
|
|
841
|
+
self,
|
|
842
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
843
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
844
|
+
_request_timeout: Union[
|
|
845
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
846
|
+
] = None,
|
|
847
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
848
|
+
_content_type: Optional[StrictStr] = None,
|
|
849
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
850
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
851
|
+
) -> ApiResponse[ListResponse]:
|
|
852
|
+
"""List
|
|
853
|
+
|
|
854
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
855
|
+
|
|
856
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
857
|
+
:type cell: str
|
|
858
|
+
:param rotation_type:
|
|
859
|
+
:type rotation_type: RotationAngleTypes
|
|
860
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
861
|
+
number provided, it will be total request
|
|
862
|
+
timeout. It can also be a pair (tuple) of
|
|
863
|
+
(connection, read) timeouts.
|
|
864
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
865
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
866
|
+
request; this effectively ignores the
|
|
867
|
+
authentication in the spec for a single request.
|
|
868
|
+
:type _request_auth: dict, optional
|
|
869
|
+
:param _content_type: force content-type for the request.
|
|
870
|
+
:type _content_type: str, Optional
|
|
871
|
+
:param _headers: set to override the headers for a single
|
|
872
|
+
request; this effectively ignores the headers
|
|
873
|
+
in the spec for a single request.
|
|
874
|
+
:type _headers: dict, optional
|
|
875
|
+
:param _host_index: set to override the host_index for a single
|
|
876
|
+
request; this effectively ignores the host_index
|
|
877
|
+
in the spec for a single request.
|
|
878
|
+
:type _host_index: int, optional
|
|
879
|
+
:return: Returns the result object.
|
|
880
|
+
""" # noqa: E501
|
|
881
|
+
|
|
882
|
+
_param = self._list_coordinate_systems_serialize(
|
|
883
|
+
cell=cell,
|
|
884
|
+
rotation_type=rotation_type,
|
|
885
|
+
_request_auth=_request_auth,
|
|
886
|
+
_content_type=_content_type,
|
|
887
|
+
_headers=_headers,
|
|
888
|
+
_host_index=_host_index,
|
|
889
|
+
)
|
|
890
|
+
|
|
891
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
892
|
+
"200": "ListResponse",
|
|
893
|
+
}
|
|
894
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
895
|
+
await response_data.read()
|
|
896
|
+
return self.api_client.response_deserialize(
|
|
897
|
+
response_data=response_data,
|
|
898
|
+
response_types_map=_response_types_map,
|
|
899
|
+
)
|
|
900
|
+
|
|
901
|
+
@validate_call
|
|
902
|
+
async def list_coordinate_systems_without_preload_content(
|
|
903
|
+
self,
|
|
904
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
905
|
+
rotation_type: Optional[RotationAngleTypes] = None,
|
|
906
|
+
_request_timeout: Union[
|
|
907
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
908
|
+
] = None,
|
|
909
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
910
|
+
_content_type: Optional[StrictStr] = None,
|
|
911
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
912
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
913
|
+
) -> RESTResponseType:
|
|
914
|
+
"""List
|
|
915
|
+
|
|
916
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists all specifications of coordinate systems from robot controllers and user coordinate systems added to the system via the [addCoordinateSystem](#/operations/addCoordinateSystem) endpoint. Use parameter rotation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested rotation angle type. If parameter rotation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in the rotation angle type used on the robot controller. This can be useful for visualization purposes in the client application due to equivalent numbers with robot control panel visualization. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller. Updating the robot controller's configuration either requires credentials or is not possible. With the endpoint [addCoordinateSystem](#/operations/addCoordinateSystem) you can create a coordinate system without changing the robot controller's configuration.
|
|
917
|
+
|
|
918
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
919
|
+
:type cell: str
|
|
920
|
+
:param rotation_type:
|
|
921
|
+
:type rotation_type: RotationAngleTypes
|
|
922
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
923
|
+
number provided, it will be total request
|
|
924
|
+
timeout. It can also be a pair (tuple) of
|
|
925
|
+
(connection, read) timeouts.
|
|
926
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
927
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
928
|
+
request; this effectively ignores the
|
|
929
|
+
authentication in the spec for a single request.
|
|
930
|
+
:type _request_auth: dict, optional
|
|
931
|
+
:param _content_type: force content-type for the request.
|
|
932
|
+
:type _content_type: str, Optional
|
|
933
|
+
:param _headers: set to override the headers for a single
|
|
934
|
+
request; this effectively ignores the headers
|
|
935
|
+
in the spec for a single request.
|
|
936
|
+
:type _headers: dict, optional
|
|
937
|
+
:param _host_index: set to override the host_index for a single
|
|
938
|
+
request; this effectively ignores the host_index
|
|
939
|
+
in the spec for a single request.
|
|
940
|
+
:type _host_index: int, optional
|
|
941
|
+
:return: Returns the result object.
|
|
942
|
+
""" # noqa: E501
|
|
943
|
+
|
|
944
|
+
_param = self._list_coordinate_systems_serialize(
|
|
945
|
+
cell=cell,
|
|
946
|
+
rotation_type=rotation_type,
|
|
947
|
+
_request_auth=_request_auth,
|
|
948
|
+
_content_type=_content_type,
|
|
949
|
+
_headers=_headers,
|
|
950
|
+
_host_index=_host_index,
|
|
951
|
+
)
|
|
952
|
+
|
|
953
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
954
|
+
"200": "ListResponse",
|
|
955
|
+
}
|
|
956
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
957
|
+
return response_data.response
|
|
958
|
+
|
|
959
|
+
def _list_coordinate_systems_serialize(
|
|
960
|
+
self,
|
|
961
|
+
cell,
|
|
962
|
+
rotation_type,
|
|
963
|
+
_request_auth,
|
|
964
|
+
_content_type,
|
|
965
|
+
_headers,
|
|
966
|
+
_host_index,
|
|
967
|
+
) -> RequestSerialized:
|
|
968
|
+
|
|
969
|
+
_host = None
|
|
970
|
+
|
|
971
|
+
_collection_formats: Dict[str, str] = {}
|
|
972
|
+
|
|
973
|
+
_path_params: Dict[str, str] = {}
|
|
974
|
+
_query_params: List[Tuple[str, str]] = []
|
|
975
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
976
|
+
_form_params: List[Tuple[str, str]] = []
|
|
977
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
978
|
+
_body_params: Optional[bytes] = None
|
|
979
|
+
|
|
980
|
+
# process the path parameters
|
|
981
|
+
if cell is not None:
|
|
982
|
+
_path_params["cell"] = cell
|
|
983
|
+
# process the query parameters
|
|
984
|
+
if rotation_type is not None:
|
|
985
|
+
_query_params.append(("rotation_type", rotation_type.value))
|
|
986
|
+
|
|
987
|
+
# process the header parameters
|
|
988
|
+
# process the form parameters
|
|
989
|
+
# process the body parameter
|
|
990
|
+
|
|
991
|
+
# set the HTTP header `Accept`
|
|
992
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
993
|
+
|
|
994
|
+
# authentication setting
|
|
995
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
996
|
+
|
|
997
|
+
return self.api_client.param_serialize(
|
|
998
|
+
method="GET",
|
|
999
|
+
resource_path="/cells/{cell}/coordinate-systems",
|
|
1000
|
+
path_params=_path_params,
|
|
1001
|
+
query_params=_query_params,
|
|
1002
|
+
header_params=_header_params,
|
|
1003
|
+
body=_body_params,
|
|
1004
|
+
post_params=_form_params,
|
|
1005
|
+
files=_files,
|
|
1006
|
+
auth_settings=_auth_settings,
|
|
1007
|
+
collection_formats=_collection_formats,
|
|
1008
|
+
_host=_host,
|
|
1009
|
+
_request_auth=_request_auth,
|
|
1010
|
+
)
|
|
1011
|
+
|
|
1012
|
+
@validate_call
|
|
1013
|
+
async def transform_in_coordinate_system(
|
|
1014
|
+
self,
|
|
1015
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1016
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
1017
|
+
pose: Pose,
|
|
1018
|
+
_request_timeout: Union[
|
|
1019
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1020
|
+
] = None,
|
|
1021
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1022
|
+
_content_type: Optional[StrictStr] = None,
|
|
1023
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1024
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1025
|
+
) -> Pose:
|
|
1026
|
+
"""Transform
|
|
1027
|
+
|
|
1028
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Transform a pose to another base.
|
|
1029
|
+
|
|
1030
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1031
|
+
:type cell: str
|
|
1032
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
1033
|
+
:type coordinate_system: str
|
|
1034
|
+
:param pose: (required)
|
|
1035
|
+
:type pose: Pose
|
|
1036
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1037
|
+
number provided, it will be total request
|
|
1038
|
+
timeout. It can also be a pair (tuple) of
|
|
1039
|
+
(connection, read) timeouts.
|
|
1040
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1041
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1042
|
+
request; this effectively ignores the
|
|
1043
|
+
authentication in the spec for a single request.
|
|
1044
|
+
:type _request_auth: dict, optional
|
|
1045
|
+
:param _content_type: force content-type for the request.
|
|
1046
|
+
:type _content_type: str, Optional
|
|
1047
|
+
:param _headers: set to override the headers for a single
|
|
1048
|
+
request; this effectively ignores the headers
|
|
1049
|
+
in the spec for a single request.
|
|
1050
|
+
:type _headers: dict, optional
|
|
1051
|
+
:param _host_index: set to override the host_index for a single
|
|
1052
|
+
request; this effectively ignores the host_index
|
|
1053
|
+
in the spec for a single request.
|
|
1054
|
+
:type _host_index: int, optional
|
|
1055
|
+
:return: Returns the result object.
|
|
1056
|
+
""" # noqa: E501
|
|
1057
|
+
|
|
1058
|
+
_param = self._transform_in_coordinate_system_serialize(
|
|
1059
|
+
cell=cell,
|
|
1060
|
+
coordinate_system=coordinate_system,
|
|
1061
|
+
pose=pose,
|
|
1062
|
+
_request_auth=_request_auth,
|
|
1063
|
+
_content_type=_content_type,
|
|
1064
|
+
_headers=_headers,
|
|
1065
|
+
_host_index=_host_index,
|
|
1066
|
+
)
|
|
1067
|
+
|
|
1068
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1069
|
+
"200": "Pose",
|
|
1070
|
+
}
|
|
1071
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1072
|
+
await response_data.read()
|
|
1073
|
+
return self.api_client.response_deserialize(
|
|
1074
|
+
response_data=response_data,
|
|
1075
|
+
response_types_map=_response_types_map,
|
|
1076
|
+
).data
|
|
1077
|
+
|
|
1078
|
+
@validate_call
|
|
1079
|
+
async def transform_in_coordinate_system_with_http_info(
|
|
1080
|
+
self,
|
|
1081
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1082
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
1083
|
+
pose: Pose,
|
|
1084
|
+
_request_timeout: Union[
|
|
1085
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1086
|
+
] = None,
|
|
1087
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1088
|
+
_content_type: Optional[StrictStr] = None,
|
|
1089
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1090
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1091
|
+
) -> ApiResponse[Pose]:
|
|
1092
|
+
"""Transform
|
|
1093
|
+
|
|
1094
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Transform a pose to another base.
|
|
1095
|
+
|
|
1096
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1097
|
+
:type cell: str
|
|
1098
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
1099
|
+
:type coordinate_system: str
|
|
1100
|
+
:param pose: (required)
|
|
1101
|
+
:type pose: Pose
|
|
1102
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1103
|
+
number provided, it will be total request
|
|
1104
|
+
timeout. It can also be a pair (tuple) of
|
|
1105
|
+
(connection, read) timeouts.
|
|
1106
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1107
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1108
|
+
request; this effectively ignores the
|
|
1109
|
+
authentication in the spec for a single request.
|
|
1110
|
+
:type _request_auth: dict, optional
|
|
1111
|
+
:param _content_type: force content-type for the request.
|
|
1112
|
+
:type _content_type: str, Optional
|
|
1113
|
+
:param _headers: set to override the headers for a single
|
|
1114
|
+
request; this effectively ignores the headers
|
|
1115
|
+
in the spec for a single request.
|
|
1116
|
+
:type _headers: dict, optional
|
|
1117
|
+
:param _host_index: set to override the host_index for a single
|
|
1118
|
+
request; this effectively ignores the host_index
|
|
1119
|
+
in the spec for a single request.
|
|
1120
|
+
:type _host_index: int, optional
|
|
1121
|
+
:return: Returns the result object.
|
|
1122
|
+
""" # noqa: E501
|
|
1123
|
+
|
|
1124
|
+
_param = self._transform_in_coordinate_system_serialize(
|
|
1125
|
+
cell=cell,
|
|
1126
|
+
coordinate_system=coordinate_system,
|
|
1127
|
+
pose=pose,
|
|
1128
|
+
_request_auth=_request_auth,
|
|
1129
|
+
_content_type=_content_type,
|
|
1130
|
+
_headers=_headers,
|
|
1131
|
+
_host_index=_host_index,
|
|
1132
|
+
)
|
|
1133
|
+
|
|
1134
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1135
|
+
"200": "Pose",
|
|
1136
|
+
}
|
|
1137
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1138
|
+
await response_data.read()
|
|
1139
|
+
return self.api_client.response_deserialize(
|
|
1140
|
+
response_data=response_data,
|
|
1141
|
+
response_types_map=_response_types_map,
|
|
1142
|
+
)
|
|
1143
|
+
|
|
1144
|
+
@validate_call
|
|
1145
|
+
async def transform_in_coordinate_system_without_preload_content(
|
|
1146
|
+
self,
|
|
1147
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1148
|
+
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
1149
|
+
pose: Pose,
|
|
1150
|
+
_request_timeout: Union[
|
|
1151
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1152
|
+
] = None,
|
|
1153
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1154
|
+
_content_type: Optional[StrictStr] = None,
|
|
1155
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1156
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1157
|
+
) -> RESTResponseType:
|
|
1158
|
+
"""Transform
|
|
1159
|
+
|
|
1160
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Transform a pose to another base.
|
|
1161
|
+
|
|
1162
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1163
|
+
:type cell: str
|
|
1164
|
+
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
1165
|
+
:type coordinate_system: str
|
|
1166
|
+
:param pose: (required)
|
|
1167
|
+
:type pose: Pose
|
|
1168
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1169
|
+
number provided, it will be total request
|
|
1170
|
+
timeout. It can also be a pair (tuple) of
|
|
1171
|
+
(connection, read) timeouts.
|
|
1172
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1173
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1174
|
+
request; this effectively ignores the
|
|
1175
|
+
authentication in the spec for a single request.
|
|
1176
|
+
:type _request_auth: dict, optional
|
|
1177
|
+
:param _content_type: force content-type for the request.
|
|
1178
|
+
:type _content_type: str, Optional
|
|
1179
|
+
:param _headers: set to override the headers for a single
|
|
1180
|
+
request; this effectively ignores the headers
|
|
1181
|
+
in the spec for a single request.
|
|
1182
|
+
:type _headers: dict, optional
|
|
1183
|
+
:param _host_index: set to override the host_index for a single
|
|
1184
|
+
request; this effectively ignores the host_index
|
|
1185
|
+
in the spec for a single request.
|
|
1186
|
+
:type _host_index: int, optional
|
|
1187
|
+
:return: Returns the result object.
|
|
1188
|
+
""" # noqa: E501
|
|
1189
|
+
|
|
1190
|
+
_param = self._transform_in_coordinate_system_serialize(
|
|
1191
|
+
cell=cell,
|
|
1192
|
+
coordinate_system=coordinate_system,
|
|
1193
|
+
pose=pose,
|
|
1194
|
+
_request_auth=_request_auth,
|
|
1195
|
+
_content_type=_content_type,
|
|
1196
|
+
_headers=_headers,
|
|
1197
|
+
_host_index=_host_index,
|
|
1198
|
+
)
|
|
1199
|
+
|
|
1200
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1201
|
+
"200": "Pose",
|
|
1202
|
+
}
|
|
1203
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1204
|
+
return response_data.response
|
|
1205
|
+
|
|
1206
|
+
def _transform_in_coordinate_system_serialize(
|
|
1207
|
+
self,
|
|
1208
|
+
cell,
|
|
1209
|
+
coordinate_system,
|
|
1210
|
+
pose,
|
|
1211
|
+
_request_auth,
|
|
1212
|
+
_content_type,
|
|
1213
|
+
_headers,
|
|
1214
|
+
_host_index,
|
|
1215
|
+
) -> RequestSerialized:
|
|
1216
|
+
|
|
1217
|
+
_host = None
|
|
1218
|
+
|
|
1219
|
+
_collection_formats: Dict[str, str] = {}
|
|
1220
|
+
|
|
1221
|
+
_path_params: Dict[str, str] = {}
|
|
1222
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1223
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1224
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1225
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1226
|
+
_body_params: Optional[bytes] = None
|
|
1227
|
+
|
|
1228
|
+
# process the path parameters
|
|
1229
|
+
if cell is not None:
|
|
1230
|
+
_path_params["cell"] = cell
|
|
1231
|
+
if coordinate_system is not None:
|
|
1232
|
+
_path_params["coordinate-system"] = coordinate_system
|
|
1233
|
+
# process the query parameters
|
|
1234
|
+
# process the header parameters
|
|
1235
|
+
# process the form parameters
|
|
1236
|
+
# process the body parameter
|
|
1237
|
+
if pose is not None:
|
|
1238
|
+
_body_params = pose
|
|
1239
|
+
|
|
1240
|
+
# set the HTTP header `Accept`
|
|
1241
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1242
|
+
|
|
1243
|
+
# set the HTTP header `Content-Type`
|
|
1244
|
+
if _content_type:
|
|
1245
|
+
_header_params["Content-Type"] = _content_type
|
|
1246
|
+
else:
|
|
1247
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
1248
|
+
if _default_content_type is not None:
|
|
1249
|
+
_header_params["Content-Type"] = _default_content_type
|
|
1250
|
+
|
|
1251
|
+
# authentication setting
|
|
1252
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1253
|
+
|
|
1254
|
+
return self.api_client.param_serialize(
|
|
1255
|
+
method="POST",
|
|
1256
|
+
resource_path="/cells/{cell}/coordinate-systems/{coordinate-system}/transform",
|
|
1257
|
+
path_params=_path_params,
|
|
1258
|
+
query_params=_query_params,
|
|
1259
|
+
header_params=_header_params,
|
|
1260
|
+
body=_body_params,
|
|
1261
|
+
post_params=_form_params,
|
|
1262
|
+
files=_files,
|
|
1263
|
+
auth_settings=_auth_settings,
|
|
1264
|
+
collection_formats=_collection_formats,
|
|
1265
|
+
_host=_host,
|
|
1266
|
+
_request_auth=_request_auth,
|
|
1267
|
+
)
|