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,1205 @@
|
|
|
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, StrictBool, StrictFloat, StrictInt, StrictStr, field_validator
|
|
26
|
+
from typing import List, Optional, Union
|
|
27
|
+
from typing_extensions import Annotated
|
|
28
|
+
from wandelbots_api_client.models.io_value import IOValue
|
|
29
|
+
from wandelbots_api_client.models.list_io_descriptions_response import ListIODescriptionsResponse
|
|
30
|
+
from wandelbots_api_client.models.list_io_values_response import ListIOValuesResponse
|
|
31
|
+
|
|
32
|
+
from wandelbots_api_client.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from wandelbots_api_client.api_response import ApiResponse
|
|
34
|
+
from wandelbots_api_client.rest import RESTResponseType
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class ControllerIOsApi:
|
|
38
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
39
|
+
Ref: https://openapi-generator.tech
|
|
40
|
+
|
|
41
|
+
Do not edit the class manually.
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
def __init__(self, api_client=None) -> None:
|
|
45
|
+
if api_client is None:
|
|
46
|
+
api_client = ApiClient.get_default()
|
|
47
|
+
self.api_client = api_client
|
|
48
|
+
|
|
49
|
+
@validate_call
|
|
50
|
+
async def list_io_descriptions(
|
|
51
|
+
self,
|
|
52
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
53
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
54
|
+
ios: Optional[List[StrictStr]] = None,
|
|
55
|
+
_request_timeout: Union[
|
|
56
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
57
|
+
] = None,
|
|
58
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_content_type: Optional[StrictStr] = None,
|
|
60
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
61
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
62
|
+
) -> ListIODescriptionsResponse:
|
|
63
|
+
"""List Descriptions
|
|
64
|
+
|
|
65
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists the I/O descriptions of the robot controller. The I/O descriptions contain information such as the name of the I/O, the I/O type and the I/O unit. The set of available I/Os is defined by the robot controller. Each I/O has a unique identifier. If no identifiers are specified in the request, retrieve the full list of available I/Os in this endpoint.
|
|
66
|
+
|
|
67
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
68
|
+
:type cell: str
|
|
69
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
70
|
+
:type controller: str
|
|
71
|
+
:param ios:
|
|
72
|
+
:type ios: List[str]
|
|
73
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
74
|
+
number provided, it will be total request
|
|
75
|
+
timeout. It can also be a pair (tuple) of
|
|
76
|
+
(connection, read) timeouts.
|
|
77
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
78
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
79
|
+
request; this effectively ignores the
|
|
80
|
+
authentication in the spec for a single request.
|
|
81
|
+
:type _request_auth: dict, optional
|
|
82
|
+
:param _content_type: force content-type for the request.
|
|
83
|
+
:type _content_type: str, Optional
|
|
84
|
+
:param _headers: set to override the headers for a single
|
|
85
|
+
request; this effectively ignores the headers
|
|
86
|
+
in the spec for a single request.
|
|
87
|
+
:type _headers: dict, optional
|
|
88
|
+
:param _host_index: set to override the host_index for a single
|
|
89
|
+
request; this effectively ignores the host_index
|
|
90
|
+
in the spec for a single request.
|
|
91
|
+
:type _host_index: int, optional
|
|
92
|
+
:return: Returns the result object.
|
|
93
|
+
""" # noqa: E501
|
|
94
|
+
|
|
95
|
+
_param = self._list_io_descriptions_serialize(
|
|
96
|
+
cell=cell,
|
|
97
|
+
controller=controller,
|
|
98
|
+
ios=ios,
|
|
99
|
+
_request_auth=_request_auth,
|
|
100
|
+
_content_type=_content_type,
|
|
101
|
+
_headers=_headers,
|
|
102
|
+
_host_index=_host_index,
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
106
|
+
"200": "ListIODescriptionsResponse",
|
|
107
|
+
}
|
|
108
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
109
|
+
await response_data.read()
|
|
110
|
+
return self.api_client.response_deserialize(
|
|
111
|
+
response_data=response_data,
|
|
112
|
+
response_types_map=_response_types_map,
|
|
113
|
+
).data
|
|
114
|
+
|
|
115
|
+
@validate_call
|
|
116
|
+
async def list_io_descriptions_with_http_info(
|
|
117
|
+
self,
|
|
118
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
119
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
120
|
+
ios: Optional[List[StrictStr]] = None,
|
|
121
|
+
_request_timeout: Union[
|
|
122
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
123
|
+
] = None,
|
|
124
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_content_type: Optional[StrictStr] = None,
|
|
126
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
127
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
128
|
+
) -> ApiResponse[ListIODescriptionsResponse]:
|
|
129
|
+
"""List Descriptions
|
|
130
|
+
|
|
131
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists the I/O descriptions of the robot controller. The I/O descriptions contain information such as the name of the I/O, the I/O type and the I/O unit. The set of available I/Os is defined by the robot controller. Each I/O has a unique identifier. If no identifiers are specified in the request, retrieve the full list of available I/Os in this endpoint.
|
|
132
|
+
|
|
133
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
134
|
+
:type cell: str
|
|
135
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
136
|
+
:type controller: str
|
|
137
|
+
:param ios:
|
|
138
|
+
:type ios: List[str]
|
|
139
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
140
|
+
number provided, it will be total request
|
|
141
|
+
timeout. It can also be a pair (tuple) of
|
|
142
|
+
(connection, read) timeouts.
|
|
143
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
144
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
145
|
+
request; this effectively ignores the
|
|
146
|
+
authentication in the spec for a single request.
|
|
147
|
+
:type _request_auth: dict, optional
|
|
148
|
+
:param _content_type: force content-type for the request.
|
|
149
|
+
:type _content_type: str, Optional
|
|
150
|
+
:param _headers: set to override the headers for a single
|
|
151
|
+
request; this effectively ignores the headers
|
|
152
|
+
in the spec for a single request.
|
|
153
|
+
:type _headers: dict, optional
|
|
154
|
+
:param _host_index: set to override the host_index for a single
|
|
155
|
+
request; this effectively ignores the host_index
|
|
156
|
+
in the spec for a single request.
|
|
157
|
+
:type _host_index: int, optional
|
|
158
|
+
:return: Returns the result object.
|
|
159
|
+
""" # noqa: E501
|
|
160
|
+
|
|
161
|
+
_param = self._list_io_descriptions_serialize(
|
|
162
|
+
cell=cell,
|
|
163
|
+
controller=controller,
|
|
164
|
+
ios=ios,
|
|
165
|
+
_request_auth=_request_auth,
|
|
166
|
+
_content_type=_content_type,
|
|
167
|
+
_headers=_headers,
|
|
168
|
+
_host_index=_host_index,
|
|
169
|
+
)
|
|
170
|
+
|
|
171
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
172
|
+
"200": "ListIODescriptionsResponse",
|
|
173
|
+
}
|
|
174
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
175
|
+
await response_data.read()
|
|
176
|
+
return self.api_client.response_deserialize(
|
|
177
|
+
response_data=response_data,
|
|
178
|
+
response_types_map=_response_types_map,
|
|
179
|
+
)
|
|
180
|
+
|
|
181
|
+
@validate_call
|
|
182
|
+
async def list_io_descriptions_without_preload_content(
|
|
183
|
+
self,
|
|
184
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
185
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
186
|
+
ios: Optional[List[StrictStr]] = None,
|
|
187
|
+
_request_timeout: Union[
|
|
188
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
189
|
+
] = None,
|
|
190
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
191
|
+
_content_type: Optional[StrictStr] = None,
|
|
192
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
193
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
194
|
+
) -> RESTResponseType:
|
|
195
|
+
"""List Descriptions
|
|
196
|
+
|
|
197
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Lists the I/O descriptions of the robot controller. The I/O descriptions contain information such as the name of the I/O, the I/O type and the I/O unit. The set of available I/Os is defined by the robot controller. Each I/O has a unique identifier. If no identifiers are specified in the request, retrieve the full list of available I/Os in this endpoint.
|
|
198
|
+
|
|
199
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
200
|
+
:type cell: str
|
|
201
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
202
|
+
:type controller: str
|
|
203
|
+
:param ios:
|
|
204
|
+
:type ios: List[str]
|
|
205
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
206
|
+
number provided, it will be total request
|
|
207
|
+
timeout. It can also be a pair (tuple) of
|
|
208
|
+
(connection, read) timeouts.
|
|
209
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
210
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
211
|
+
request; this effectively ignores the
|
|
212
|
+
authentication in the spec for a single request.
|
|
213
|
+
:type _request_auth: dict, optional
|
|
214
|
+
:param _content_type: force content-type for the request.
|
|
215
|
+
:type _content_type: str, Optional
|
|
216
|
+
:param _headers: set to override the headers for a single
|
|
217
|
+
request; this effectively ignores the headers
|
|
218
|
+
in the spec for a single request.
|
|
219
|
+
:type _headers: dict, optional
|
|
220
|
+
:param _host_index: set to override the host_index for a single
|
|
221
|
+
request; this effectively ignores the host_index
|
|
222
|
+
in the spec for a single request.
|
|
223
|
+
:type _host_index: int, optional
|
|
224
|
+
:return: Returns the result object.
|
|
225
|
+
""" # noqa: E501
|
|
226
|
+
|
|
227
|
+
_param = self._list_io_descriptions_serialize(
|
|
228
|
+
cell=cell,
|
|
229
|
+
controller=controller,
|
|
230
|
+
ios=ios,
|
|
231
|
+
_request_auth=_request_auth,
|
|
232
|
+
_content_type=_content_type,
|
|
233
|
+
_headers=_headers,
|
|
234
|
+
_host_index=_host_index,
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
238
|
+
"200": "ListIODescriptionsResponse",
|
|
239
|
+
}
|
|
240
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
241
|
+
return response_data.response
|
|
242
|
+
|
|
243
|
+
def _list_io_descriptions_serialize(
|
|
244
|
+
self,
|
|
245
|
+
cell,
|
|
246
|
+
controller,
|
|
247
|
+
ios,
|
|
248
|
+
_request_auth,
|
|
249
|
+
_content_type,
|
|
250
|
+
_headers,
|
|
251
|
+
_host_index,
|
|
252
|
+
) -> RequestSerialized:
|
|
253
|
+
|
|
254
|
+
_host = None
|
|
255
|
+
|
|
256
|
+
_collection_formats: Dict[str, str] = {
|
|
257
|
+
"ios": "multi",
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
_path_params: Dict[str, str] = {}
|
|
261
|
+
_query_params: List[Tuple[str, str]] = []
|
|
262
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
263
|
+
_form_params: List[Tuple[str, str]] = []
|
|
264
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
265
|
+
_body_params: Optional[bytes] = None
|
|
266
|
+
|
|
267
|
+
# process the path parameters
|
|
268
|
+
if cell is not None:
|
|
269
|
+
_path_params["cell"] = cell
|
|
270
|
+
if controller is not None:
|
|
271
|
+
_path_params["controller"] = controller
|
|
272
|
+
# process the query parameters
|
|
273
|
+
if ios is not None:
|
|
274
|
+
_query_params.append(("ios", ios))
|
|
275
|
+
|
|
276
|
+
# process the header parameters
|
|
277
|
+
# process the form parameters
|
|
278
|
+
# process the body parameter
|
|
279
|
+
|
|
280
|
+
# set the HTTP header `Accept`
|
|
281
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
282
|
+
|
|
283
|
+
# authentication setting
|
|
284
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
285
|
+
|
|
286
|
+
return self.api_client.param_serialize(
|
|
287
|
+
method="GET",
|
|
288
|
+
resource_path="/cells/{cell}/controllers/{controller}/ios/description",
|
|
289
|
+
path_params=_path_params,
|
|
290
|
+
query_params=_query_params,
|
|
291
|
+
header_params=_header_params,
|
|
292
|
+
body=_body_params,
|
|
293
|
+
post_params=_form_params,
|
|
294
|
+
files=_files,
|
|
295
|
+
auth_settings=_auth_settings,
|
|
296
|
+
collection_formats=_collection_formats,
|
|
297
|
+
_host=_host,
|
|
298
|
+
_request_auth=_request_auth,
|
|
299
|
+
)
|
|
300
|
+
|
|
301
|
+
@validate_call
|
|
302
|
+
async def list_io_values(
|
|
303
|
+
self,
|
|
304
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
305
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
306
|
+
ios: Optional[List[StrictStr]] = None,
|
|
307
|
+
_request_timeout: Union[
|
|
308
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
309
|
+
] = None,
|
|
310
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
311
|
+
_content_type: Optional[StrictStr] = None,
|
|
312
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
313
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
314
|
+
) -> ListIOValuesResponse:
|
|
315
|
+
"""Values
|
|
316
|
+
|
|
317
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](#/operations/listIODescriptions).
|
|
318
|
+
|
|
319
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
320
|
+
:type cell: str
|
|
321
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
322
|
+
:type controller: str
|
|
323
|
+
:param ios:
|
|
324
|
+
:type ios: List[str]
|
|
325
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
326
|
+
number provided, it will be total request
|
|
327
|
+
timeout. It can also be a pair (tuple) of
|
|
328
|
+
(connection, read) timeouts.
|
|
329
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
330
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
331
|
+
request; this effectively ignores the
|
|
332
|
+
authentication in the spec for a single request.
|
|
333
|
+
:type _request_auth: dict, optional
|
|
334
|
+
:param _content_type: force content-type for the request.
|
|
335
|
+
:type _content_type: str, Optional
|
|
336
|
+
:param _headers: set to override the headers for a single
|
|
337
|
+
request; this effectively ignores the headers
|
|
338
|
+
in the spec for a single request.
|
|
339
|
+
:type _headers: dict, optional
|
|
340
|
+
:param _host_index: set to override the host_index for a single
|
|
341
|
+
request; this effectively ignores the host_index
|
|
342
|
+
in the spec for a single request.
|
|
343
|
+
:type _host_index: int, optional
|
|
344
|
+
:return: Returns the result object.
|
|
345
|
+
""" # noqa: E501
|
|
346
|
+
|
|
347
|
+
_param = self._list_io_values_serialize(
|
|
348
|
+
cell=cell,
|
|
349
|
+
controller=controller,
|
|
350
|
+
ios=ios,
|
|
351
|
+
_request_auth=_request_auth,
|
|
352
|
+
_content_type=_content_type,
|
|
353
|
+
_headers=_headers,
|
|
354
|
+
_host_index=_host_index,
|
|
355
|
+
)
|
|
356
|
+
|
|
357
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
358
|
+
"200": "ListIOValuesResponse",
|
|
359
|
+
}
|
|
360
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
361
|
+
await response_data.read()
|
|
362
|
+
return self.api_client.response_deserialize(
|
|
363
|
+
response_data=response_data,
|
|
364
|
+
response_types_map=_response_types_map,
|
|
365
|
+
).data
|
|
366
|
+
|
|
367
|
+
@validate_call
|
|
368
|
+
async def list_io_values_with_http_info(
|
|
369
|
+
self,
|
|
370
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
371
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
372
|
+
ios: Optional[List[StrictStr]] = None,
|
|
373
|
+
_request_timeout: Union[
|
|
374
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
375
|
+
] = None,
|
|
376
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
377
|
+
_content_type: Optional[StrictStr] = None,
|
|
378
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
379
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
380
|
+
) -> ApiResponse[ListIOValuesResponse]:
|
|
381
|
+
"""Values
|
|
382
|
+
|
|
383
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](#/operations/listIODescriptions).
|
|
384
|
+
|
|
385
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
386
|
+
:type cell: str
|
|
387
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
388
|
+
:type controller: str
|
|
389
|
+
:param ios:
|
|
390
|
+
:type ios: List[str]
|
|
391
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
392
|
+
number provided, it will be total request
|
|
393
|
+
timeout. It can also be a pair (tuple) of
|
|
394
|
+
(connection, read) timeouts.
|
|
395
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
396
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
397
|
+
request; this effectively ignores the
|
|
398
|
+
authentication in the spec for a single request.
|
|
399
|
+
:type _request_auth: dict, optional
|
|
400
|
+
:param _content_type: force content-type for the request.
|
|
401
|
+
:type _content_type: str, Optional
|
|
402
|
+
:param _headers: set to override the headers for a single
|
|
403
|
+
request; this effectively ignores the headers
|
|
404
|
+
in the spec for a single request.
|
|
405
|
+
:type _headers: dict, optional
|
|
406
|
+
:param _host_index: set to override the host_index for a single
|
|
407
|
+
request; this effectively ignores the host_index
|
|
408
|
+
in the spec for a single request.
|
|
409
|
+
:type _host_index: int, optional
|
|
410
|
+
:return: Returns the result object.
|
|
411
|
+
""" # noqa: E501
|
|
412
|
+
|
|
413
|
+
_param = self._list_io_values_serialize(
|
|
414
|
+
cell=cell,
|
|
415
|
+
controller=controller,
|
|
416
|
+
ios=ios,
|
|
417
|
+
_request_auth=_request_auth,
|
|
418
|
+
_content_type=_content_type,
|
|
419
|
+
_headers=_headers,
|
|
420
|
+
_host_index=_host_index,
|
|
421
|
+
)
|
|
422
|
+
|
|
423
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
424
|
+
"200": "ListIOValuesResponse",
|
|
425
|
+
}
|
|
426
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
427
|
+
await response_data.read()
|
|
428
|
+
return self.api_client.response_deserialize(
|
|
429
|
+
response_data=response_data,
|
|
430
|
+
response_types_map=_response_types_map,
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
@validate_call
|
|
434
|
+
async def list_io_values_without_preload_content(
|
|
435
|
+
self,
|
|
436
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
437
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
438
|
+
ios: Optional[List[StrictStr]] = None,
|
|
439
|
+
_request_timeout: Union[
|
|
440
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
441
|
+
] = None,
|
|
442
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
443
|
+
_content_type: Optional[StrictStr] = None,
|
|
444
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
445
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
446
|
+
) -> RESTResponseType:
|
|
447
|
+
"""Values
|
|
448
|
+
|
|
449
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Retrieves the current values of I/Os. The identifiers of the I/Os must be provided in the request. Request all available I/O identifiers via [listIODescriptions](#/operations/listIODescriptions).
|
|
450
|
+
|
|
451
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
452
|
+
:type cell: str
|
|
453
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
454
|
+
:type controller: str
|
|
455
|
+
:param ios:
|
|
456
|
+
:type ios: List[str]
|
|
457
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
458
|
+
number provided, it will be total request
|
|
459
|
+
timeout. It can also be a pair (tuple) of
|
|
460
|
+
(connection, read) timeouts.
|
|
461
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
462
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
463
|
+
request; this effectively ignores the
|
|
464
|
+
authentication in the spec for a single request.
|
|
465
|
+
:type _request_auth: dict, optional
|
|
466
|
+
:param _content_type: force content-type for the request.
|
|
467
|
+
:type _content_type: str, Optional
|
|
468
|
+
:param _headers: set to override the headers for a single
|
|
469
|
+
request; this effectively ignores the headers
|
|
470
|
+
in the spec for a single request.
|
|
471
|
+
:type _headers: dict, optional
|
|
472
|
+
:param _host_index: set to override the host_index for a single
|
|
473
|
+
request; this effectively ignores the host_index
|
|
474
|
+
in the spec for a single request.
|
|
475
|
+
:type _host_index: int, optional
|
|
476
|
+
:return: Returns the result object.
|
|
477
|
+
""" # noqa: E501
|
|
478
|
+
|
|
479
|
+
_param = self._list_io_values_serialize(
|
|
480
|
+
cell=cell,
|
|
481
|
+
controller=controller,
|
|
482
|
+
ios=ios,
|
|
483
|
+
_request_auth=_request_auth,
|
|
484
|
+
_content_type=_content_type,
|
|
485
|
+
_headers=_headers,
|
|
486
|
+
_host_index=_host_index,
|
|
487
|
+
)
|
|
488
|
+
|
|
489
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
490
|
+
"200": "ListIOValuesResponse",
|
|
491
|
+
}
|
|
492
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
493
|
+
return response_data.response
|
|
494
|
+
|
|
495
|
+
def _list_io_values_serialize(
|
|
496
|
+
self,
|
|
497
|
+
cell,
|
|
498
|
+
controller,
|
|
499
|
+
ios,
|
|
500
|
+
_request_auth,
|
|
501
|
+
_content_type,
|
|
502
|
+
_headers,
|
|
503
|
+
_host_index,
|
|
504
|
+
) -> RequestSerialized:
|
|
505
|
+
|
|
506
|
+
_host = None
|
|
507
|
+
|
|
508
|
+
_collection_formats: Dict[str, str] = {
|
|
509
|
+
"ios": "multi",
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
_path_params: Dict[str, str] = {}
|
|
513
|
+
_query_params: List[Tuple[str, str]] = []
|
|
514
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
515
|
+
_form_params: List[Tuple[str, str]] = []
|
|
516
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
517
|
+
_body_params: Optional[bytes] = None
|
|
518
|
+
|
|
519
|
+
# process the path parameters
|
|
520
|
+
if cell is not None:
|
|
521
|
+
_path_params["cell"] = cell
|
|
522
|
+
if controller is not None:
|
|
523
|
+
_path_params["controller"] = controller
|
|
524
|
+
# process the query parameters
|
|
525
|
+
if ios is not None:
|
|
526
|
+
_query_params.append(("ios", ios))
|
|
527
|
+
|
|
528
|
+
# process the header parameters
|
|
529
|
+
# process the form parameters
|
|
530
|
+
# process the body parameter
|
|
531
|
+
|
|
532
|
+
# set the HTTP header `Accept`
|
|
533
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
534
|
+
|
|
535
|
+
# authentication setting
|
|
536
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
537
|
+
|
|
538
|
+
return self.api_client.param_serialize(
|
|
539
|
+
method="GET",
|
|
540
|
+
resource_path="/cells/{cell}/controllers/{controller}/ios/values",
|
|
541
|
+
path_params=_path_params,
|
|
542
|
+
query_params=_query_params,
|
|
543
|
+
header_params=_header_params,
|
|
544
|
+
body=_body_params,
|
|
545
|
+
post_params=_form_params,
|
|
546
|
+
files=_files,
|
|
547
|
+
auth_settings=_auth_settings,
|
|
548
|
+
collection_formats=_collection_formats,
|
|
549
|
+
_host=_host,
|
|
550
|
+
_request_auth=_request_auth,
|
|
551
|
+
)
|
|
552
|
+
|
|
553
|
+
@validate_call
|
|
554
|
+
async def set_output_values(
|
|
555
|
+
self,
|
|
556
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
557
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
558
|
+
io_value: List[IOValue],
|
|
559
|
+
_request_timeout: Union[
|
|
560
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
561
|
+
] = None,
|
|
562
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
563
|
+
_content_type: Optional[StrictStr] = None,
|
|
564
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
565
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
566
|
+
) -> None:
|
|
567
|
+
"""Set Values
|
|
568
|
+
|
|
569
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Set the values of outputs. All available I/O identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/listIODescriptions). The call will return once the values have been set on and accepted by the robot. This might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
570
|
+
|
|
571
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
572
|
+
:type cell: str
|
|
573
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
574
|
+
:type controller: str
|
|
575
|
+
:param io_value: (required)
|
|
576
|
+
:type io_value: List[IOValue]
|
|
577
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
578
|
+
number provided, it will be total request
|
|
579
|
+
timeout. It can also be a pair (tuple) of
|
|
580
|
+
(connection, read) timeouts.
|
|
581
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
582
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
583
|
+
request; this effectively ignores the
|
|
584
|
+
authentication in the spec for a single request.
|
|
585
|
+
:type _request_auth: dict, optional
|
|
586
|
+
:param _content_type: force content-type for the request.
|
|
587
|
+
:type _content_type: str, Optional
|
|
588
|
+
:param _headers: set to override the headers for a single
|
|
589
|
+
request; this effectively ignores the headers
|
|
590
|
+
in the spec for a single request.
|
|
591
|
+
:type _headers: dict, optional
|
|
592
|
+
:param _host_index: set to override the host_index for a single
|
|
593
|
+
request; this effectively ignores the host_index
|
|
594
|
+
in the spec for a single request.
|
|
595
|
+
:type _host_index: int, optional
|
|
596
|
+
:return: Returns the result object.
|
|
597
|
+
""" # noqa: E501
|
|
598
|
+
|
|
599
|
+
_param = self._set_output_values_serialize(
|
|
600
|
+
cell=cell,
|
|
601
|
+
controller=controller,
|
|
602
|
+
io_value=io_value,
|
|
603
|
+
_request_auth=_request_auth,
|
|
604
|
+
_content_type=_content_type,
|
|
605
|
+
_headers=_headers,
|
|
606
|
+
_host_index=_host_index,
|
|
607
|
+
)
|
|
608
|
+
|
|
609
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
610
|
+
"200": None,
|
|
611
|
+
}
|
|
612
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
613
|
+
await response_data.read()
|
|
614
|
+
return self.api_client.response_deserialize(
|
|
615
|
+
response_data=response_data,
|
|
616
|
+
response_types_map=_response_types_map,
|
|
617
|
+
).data
|
|
618
|
+
|
|
619
|
+
@validate_call
|
|
620
|
+
async def set_output_values_with_http_info(
|
|
621
|
+
self,
|
|
622
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
623
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
624
|
+
io_value: List[IOValue],
|
|
625
|
+
_request_timeout: Union[
|
|
626
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
627
|
+
] = None,
|
|
628
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
629
|
+
_content_type: Optional[StrictStr] = None,
|
|
630
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
631
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
632
|
+
) -> ApiResponse[None]:
|
|
633
|
+
"""Set Values
|
|
634
|
+
|
|
635
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Set the values of outputs. All available I/O identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/listIODescriptions). The call will return once the values have been set on and accepted by the robot. This might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
636
|
+
|
|
637
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
638
|
+
:type cell: str
|
|
639
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
640
|
+
:type controller: str
|
|
641
|
+
:param io_value: (required)
|
|
642
|
+
:type io_value: List[IOValue]
|
|
643
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
644
|
+
number provided, it will be total request
|
|
645
|
+
timeout. It can also be a pair (tuple) of
|
|
646
|
+
(connection, read) timeouts.
|
|
647
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
648
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
649
|
+
request; this effectively ignores the
|
|
650
|
+
authentication in the spec for a single request.
|
|
651
|
+
:type _request_auth: dict, optional
|
|
652
|
+
:param _content_type: force content-type for the request.
|
|
653
|
+
:type _content_type: str, Optional
|
|
654
|
+
:param _headers: set to override the headers for a single
|
|
655
|
+
request; this effectively ignores the headers
|
|
656
|
+
in the spec for a single request.
|
|
657
|
+
:type _headers: dict, optional
|
|
658
|
+
:param _host_index: set to override the host_index for a single
|
|
659
|
+
request; this effectively ignores the host_index
|
|
660
|
+
in the spec for a single request.
|
|
661
|
+
:type _host_index: int, optional
|
|
662
|
+
:return: Returns the result object.
|
|
663
|
+
""" # noqa: E501
|
|
664
|
+
|
|
665
|
+
_param = self._set_output_values_serialize(
|
|
666
|
+
cell=cell,
|
|
667
|
+
controller=controller,
|
|
668
|
+
io_value=io_value,
|
|
669
|
+
_request_auth=_request_auth,
|
|
670
|
+
_content_type=_content_type,
|
|
671
|
+
_headers=_headers,
|
|
672
|
+
_host_index=_host_index,
|
|
673
|
+
)
|
|
674
|
+
|
|
675
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
676
|
+
"200": None,
|
|
677
|
+
}
|
|
678
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
679
|
+
await response_data.read()
|
|
680
|
+
return self.api_client.response_deserialize(
|
|
681
|
+
response_data=response_data,
|
|
682
|
+
response_types_map=_response_types_map,
|
|
683
|
+
)
|
|
684
|
+
|
|
685
|
+
@validate_call
|
|
686
|
+
async def set_output_values_without_preload_content(
|
|
687
|
+
self,
|
|
688
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
689
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
690
|
+
io_value: List[IOValue],
|
|
691
|
+
_request_timeout: Union[
|
|
692
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
693
|
+
] = None,
|
|
694
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
695
|
+
_content_type: Optional[StrictStr] = None,
|
|
696
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
697
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
698
|
+
) -> RESTResponseType:
|
|
699
|
+
"""Set Values
|
|
700
|
+
|
|
701
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Set the values of outputs. All available I/O identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/listIODescriptions). The call will return once the values have been set on and accepted by the robot. This might take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
702
|
+
|
|
703
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
704
|
+
:type cell: str
|
|
705
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
706
|
+
:type controller: str
|
|
707
|
+
:param io_value: (required)
|
|
708
|
+
:type io_value: List[IOValue]
|
|
709
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
710
|
+
number provided, it will be total request
|
|
711
|
+
timeout. It can also be a pair (tuple) of
|
|
712
|
+
(connection, read) timeouts.
|
|
713
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
714
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
715
|
+
request; this effectively ignores the
|
|
716
|
+
authentication in the spec for a single request.
|
|
717
|
+
:type _request_auth: dict, optional
|
|
718
|
+
:param _content_type: force content-type for the request.
|
|
719
|
+
:type _content_type: str, Optional
|
|
720
|
+
:param _headers: set to override the headers for a single
|
|
721
|
+
request; this effectively ignores the headers
|
|
722
|
+
in the spec for a single request.
|
|
723
|
+
:type _headers: dict, optional
|
|
724
|
+
:param _host_index: set to override the host_index for a single
|
|
725
|
+
request; this effectively ignores the host_index
|
|
726
|
+
in the spec for a single request.
|
|
727
|
+
:type _host_index: int, optional
|
|
728
|
+
:return: Returns the result object.
|
|
729
|
+
""" # noqa: E501
|
|
730
|
+
|
|
731
|
+
_param = self._set_output_values_serialize(
|
|
732
|
+
cell=cell,
|
|
733
|
+
controller=controller,
|
|
734
|
+
io_value=io_value,
|
|
735
|
+
_request_auth=_request_auth,
|
|
736
|
+
_content_type=_content_type,
|
|
737
|
+
_headers=_headers,
|
|
738
|
+
_host_index=_host_index,
|
|
739
|
+
)
|
|
740
|
+
|
|
741
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
742
|
+
"200": None,
|
|
743
|
+
}
|
|
744
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
745
|
+
return response_data.response
|
|
746
|
+
|
|
747
|
+
def _set_output_values_serialize(
|
|
748
|
+
self,
|
|
749
|
+
cell,
|
|
750
|
+
controller,
|
|
751
|
+
io_value,
|
|
752
|
+
_request_auth,
|
|
753
|
+
_content_type,
|
|
754
|
+
_headers,
|
|
755
|
+
_host_index,
|
|
756
|
+
) -> RequestSerialized:
|
|
757
|
+
|
|
758
|
+
_host = None
|
|
759
|
+
|
|
760
|
+
_collection_formats: Dict[str, str] = {
|
|
761
|
+
"IOValue": "",
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
_path_params: Dict[str, str] = {}
|
|
765
|
+
_query_params: List[Tuple[str, str]] = []
|
|
766
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
767
|
+
_form_params: List[Tuple[str, str]] = []
|
|
768
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
769
|
+
_body_params: Optional[bytes] = None
|
|
770
|
+
|
|
771
|
+
# process the path parameters
|
|
772
|
+
if cell is not None:
|
|
773
|
+
_path_params["cell"] = cell
|
|
774
|
+
if controller is not None:
|
|
775
|
+
_path_params["controller"] = controller
|
|
776
|
+
# process the query parameters
|
|
777
|
+
# process the header parameters
|
|
778
|
+
# process the form parameters
|
|
779
|
+
# process the body parameter
|
|
780
|
+
if io_value is not None:
|
|
781
|
+
_body_params = io_value
|
|
782
|
+
|
|
783
|
+
# set the HTTP header `Accept`
|
|
784
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
785
|
+
|
|
786
|
+
# set the HTTP header `Content-Type`
|
|
787
|
+
if _content_type:
|
|
788
|
+
_header_params["Content-Type"] = _content_type
|
|
789
|
+
else:
|
|
790
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
791
|
+
if _default_content_type is not None:
|
|
792
|
+
_header_params["Content-Type"] = _default_content_type
|
|
793
|
+
|
|
794
|
+
# authentication setting
|
|
795
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
796
|
+
|
|
797
|
+
return self.api_client.param_serialize(
|
|
798
|
+
method="PUT",
|
|
799
|
+
resource_path="/cells/{cell}/controllers/{controller}/ios/values",
|
|
800
|
+
path_params=_path_params,
|
|
801
|
+
query_params=_query_params,
|
|
802
|
+
header_params=_header_params,
|
|
803
|
+
body=_body_params,
|
|
804
|
+
post_params=_form_params,
|
|
805
|
+
files=_files,
|
|
806
|
+
auth_settings=_auth_settings,
|
|
807
|
+
collection_formats=_collection_formats,
|
|
808
|
+
_host=_host,
|
|
809
|
+
_request_auth=_request_auth,
|
|
810
|
+
)
|
|
811
|
+
|
|
812
|
+
@validate_call
|
|
813
|
+
async def stream_io_values(
|
|
814
|
+
self,
|
|
815
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
816
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
817
|
+
ios: Optional[List[StrictStr]] = None,
|
|
818
|
+
) -> AsyncGenerator[ListIOValuesResponse, None]: # noqa: E501
|
|
819
|
+
"""Stream Values # noqa: E501
|
|
820
|
+
|
|
821
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Continuously receive updates of I/O values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > Do not request too many values simultaneously as the request is then likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. Consider that this might lead to a high amount of data transmitted. # noqa: E501
|
|
822
|
+
:param request: A StreamIoValuesRequest
|
|
823
|
+
:info All responses from the server will be yielded
|
|
824
|
+
:type StreamIoValuesRequest
|
|
825
|
+
"""
|
|
826
|
+
|
|
827
|
+
# The quote function replaces the special characters in ios names with their percent-encoded equivalents, ensuring
|
|
828
|
+
# that the identifiers can be safely included in a URL without altering its structure or meaning.
|
|
829
|
+
ios = [quote(param, safe="") for param in ios]
|
|
830
|
+
|
|
831
|
+
def format_path_parameters(path):
|
|
832
|
+
# Find all substrings that are enclosed in brackets
|
|
833
|
+
bracket_contents = re.findall(r"\{(.*?)\}", path)
|
|
834
|
+
|
|
835
|
+
# For each found substring, replace underscores with spaces
|
|
836
|
+
for content in bracket_contents:
|
|
837
|
+
content = "{" + content + "}"
|
|
838
|
+
modified_content = humps.dekebabize(content)
|
|
839
|
+
path = path.replace(content, modified_content)
|
|
840
|
+
|
|
841
|
+
return path
|
|
842
|
+
|
|
843
|
+
def append_parameter_connector(url_schema):
|
|
844
|
+
if not "?" in url_schema:
|
|
845
|
+
url_schema += "?"
|
|
846
|
+
else:
|
|
847
|
+
url_schema += "&"
|
|
848
|
+
return url_schema
|
|
849
|
+
|
|
850
|
+
path = format_path_parameters("/cells/{cell}/controllers/{controller}/ios/stream")
|
|
851
|
+
path = path.format(
|
|
852
|
+
cell=cell,
|
|
853
|
+
controller=controller,
|
|
854
|
+
)
|
|
855
|
+
|
|
856
|
+
headers = websockets.Headers()
|
|
857
|
+
tmp_host = self.api_client.configuration.host
|
|
858
|
+
if self.api_client.configuration.host.startswith("https://"):
|
|
859
|
+
# Basic Auth
|
|
860
|
+
if self.api_client.configuration.username:
|
|
861
|
+
tmp_host = self.api_client.configuration.host.replace("https://", "")
|
|
862
|
+
tmp_host = f"wss://{self.api_client.configuration.username}:{self.api_client.configuration.password}@{tmp_host}"
|
|
863
|
+
|
|
864
|
+
# OAuth2
|
|
865
|
+
elif self.api_client.configuration.access_token:
|
|
866
|
+
tmp_host = self.api_client.configuration.host.replace("https://", "")
|
|
867
|
+
tmp_host = f"wss://{tmp_host}"
|
|
868
|
+
headers = websockets.Headers([("Authorization", f"Bearer {self.api_client.configuration.access_token}")])
|
|
869
|
+
else:
|
|
870
|
+
tmp_host = tmp_host.replace("http://", "ws://")
|
|
871
|
+
|
|
872
|
+
url_schema = tmp_host + path
|
|
873
|
+
if locals().get("ios") is not None:
|
|
874
|
+
url_schema = append_parameter_connector(url_schema)
|
|
875
|
+
if isinstance(ios, list):
|
|
876
|
+
url_schema += "&".join(["ios=" + s for s in ios])
|
|
877
|
+
else:
|
|
878
|
+
url_schema += "ios=" + str(ios)
|
|
879
|
+
full_url = furl(url_schema)
|
|
880
|
+
|
|
881
|
+
async with websockets.connect(full_url.url, open_timeout=10, additional_headers=headers) as websocket:
|
|
882
|
+
try:
|
|
883
|
+
async for response in websocket:
|
|
884
|
+
response_data = json.loads(response)
|
|
885
|
+
if "result" not in response_data:
|
|
886
|
+
raise Exception(response_data)
|
|
887
|
+
yield ListIOValuesResponse.from_dict(response_data["result"])
|
|
888
|
+
except websockets.exceptions.ConnectionClosed:
|
|
889
|
+
return
|
|
890
|
+
finally:
|
|
891
|
+
await websocket.close()
|
|
892
|
+
|
|
893
|
+
@validate_call
|
|
894
|
+
async def wait_for_io_event(
|
|
895
|
+
self,
|
|
896
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
897
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
898
|
+
io: StrictStr,
|
|
899
|
+
comparison_type: StrictStr,
|
|
900
|
+
boolean_value: Optional[StrictBool] = None,
|
|
901
|
+
integer_value: Optional[StrictStr] = None,
|
|
902
|
+
floating_value: Optional[Union[StrictFloat, StrictInt]] = None,
|
|
903
|
+
_request_timeout: Union[
|
|
904
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
905
|
+
] = None,
|
|
906
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
907
|
+
_content_type: Optional[StrictStr] = None,
|
|
908
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
909
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
910
|
+
) -> bool:
|
|
911
|
+
"""Wait For
|
|
912
|
+
|
|
913
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Wait until an I/O reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the I/O is compared with given value. Only set the value that corresponds to the value_type of the I/O, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only integer_value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only floating_value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only boolean_value to true.
|
|
914
|
+
|
|
915
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
916
|
+
:type cell: str
|
|
917
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
918
|
+
:type controller: str
|
|
919
|
+
:param io: (required)
|
|
920
|
+
:type io: str
|
|
921
|
+
:param comparison_type: (required)
|
|
922
|
+
:type comparison_type: str
|
|
923
|
+
:param boolean_value:
|
|
924
|
+
:type boolean_value: bool
|
|
925
|
+
:param integer_value:
|
|
926
|
+
:type integer_value: str
|
|
927
|
+
:param floating_value:
|
|
928
|
+
:type floating_value: float
|
|
929
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
930
|
+
number provided, it will be total request
|
|
931
|
+
timeout. It can also be a pair (tuple) of
|
|
932
|
+
(connection, read) timeouts.
|
|
933
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
934
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
935
|
+
request; this effectively ignores the
|
|
936
|
+
authentication in the spec for a single request.
|
|
937
|
+
:type _request_auth: dict, optional
|
|
938
|
+
:param _content_type: force content-type for the request.
|
|
939
|
+
:type _content_type: str, Optional
|
|
940
|
+
:param _headers: set to override the headers for a single
|
|
941
|
+
request; this effectively ignores the headers
|
|
942
|
+
in the spec for a single request.
|
|
943
|
+
:type _headers: dict, optional
|
|
944
|
+
:param _host_index: set to override the host_index for a single
|
|
945
|
+
request; this effectively ignores the host_index
|
|
946
|
+
in the spec for a single request.
|
|
947
|
+
:type _host_index: int, optional
|
|
948
|
+
:return: Returns the result object.
|
|
949
|
+
""" # noqa: E501
|
|
950
|
+
|
|
951
|
+
_param = self._wait_for_io_event_serialize(
|
|
952
|
+
cell=cell,
|
|
953
|
+
controller=controller,
|
|
954
|
+
io=io,
|
|
955
|
+
comparison_type=comparison_type,
|
|
956
|
+
boolean_value=boolean_value,
|
|
957
|
+
integer_value=integer_value,
|
|
958
|
+
floating_value=floating_value,
|
|
959
|
+
_request_auth=_request_auth,
|
|
960
|
+
_content_type=_content_type,
|
|
961
|
+
_headers=_headers,
|
|
962
|
+
_host_index=_host_index,
|
|
963
|
+
)
|
|
964
|
+
|
|
965
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
966
|
+
"200": "bool",
|
|
967
|
+
}
|
|
968
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
969
|
+
await response_data.read()
|
|
970
|
+
return self.api_client.response_deserialize(
|
|
971
|
+
response_data=response_data,
|
|
972
|
+
response_types_map=_response_types_map,
|
|
973
|
+
).data
|
|
974
|
+
|
|
975
|
+
@validate_call
|
|
976
|
+
async def wait_for_io_event_with_http_info(
|
|
977
|
+
self,
|
|
978
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
979
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
980
|
+
io: StrictStr,
|
|
981
|
+
comparison_type: StrictStr,
|
|
982
|
+
boolean_value: Optional[StrictBool] = None,
|
|
983
|
+
integer_value: Optional[StrictStr] = None,
|
|
984
|
+
floating_value: Optional[Union[StrictFloat, StrictInt]] = None,
|
|
985
|
+
_request_timeout: Union[
|
|
986
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
987
|
+
] = None,
|
|
988
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
989
|
+
_content_type: Optional[StrictStr] = None,
|
|
990
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
991
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
992
|
+
) -> ApiResponse[bool]:
|
|
993
|
+
"""Wait For
|
|
994
|
+
|
|
995
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Wait until an I/O reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the I/O is compared with given value. Only set the value that corresponds to the value_type of the I/O, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only integer_value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only floating_value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only boolean_value to true.
|
|
996
|
+
|
|
997
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
998
|
+
:type cell: str
|
|
999
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1000
|
+
:type controller: str
|
|
1001
|
+
:param io: (required)
|
|
1002
|
+
:type io: str
|
|
1003
|
+
:param comparison_type: (required)
|
|
1004
|
+
:type comparison_type: str
|
|
1005
|
+
:param boolean_value:
|
|
1006
|
+
:type boolean_value: bool
|
|
1007
|
+
:param integer_value:
|
|
1008
|
+
:type integer_value: str
|
|
1009
|
+
:param floating_value:
|
|
1010
|
+
:type floating_value: float
|
|
1011
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1012
|
+
number provided, it will be total request
|
|
1013
|
+
timeout. It can also be a pair (tuple) of
|
|
1014
|
+
(connection, read) timeouts.
|
|
1015
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1016
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1017
|
+
request; this effectively ignores the
|
|
1018
|
+
authentication in the spec for a single request.
|
|
1019
|
+
:type _request_auth: dict, optional
|
|
1020
|
+
:param _content_type: force content-type for the request.
|
|
1021
|
+
:type _content_type: str, Optional
|
|
1022
|
+
:param _headers: set to override the headers for a single
|
|
1023
|
+
request; this effectively ignores the headers
|
|
1024
|
+
in the spec for a single request.
|
|
1025
|
+
:type _headers: dict, optional
|
|
1026
|
+
:param _host_index: set to override the host_index for a single
|
|
1027
|
+
request; this effectively ignores the host_index
|
|
1028
|
+
in the spec for a single request.
|
|
1029
|
+
:type _host_index: int, optional
|
|
1030
|
+
:return: Returns the result object.
|
|
1031
|
+
""" # noqa: E501
|
|
1032
|
+
|
|
1033
|
+
_param = self._wait_for_io_event_serialize(
|
|
1034
|
+
cell=cell,
|
|
1035
|
+
controller=controller,
|
|
1036
|
+
io=io,
|
|
1037
|
+
comparison_type=comparison_type,
|
|
1038
|
+
boolean_value=boolean_value,
|
|
1039
|
+
integer_value=integer_value,
|
|
1040
|
+
floating_value=floating_value,
|
|
1041
|
+
_request_auth=_request_auth,
|
|
1042
|
+
_content_type=_content_type,
|
|
1043
|
+
_headers=_headers,
|
|
1044
|
+
_host_index=_host_index,
|
|
1045
|
+
)
|
|
1046
|
+
|
|
1047
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1048
|
+
"200": "bool",
|
|
1049
|
+
}
|
|
1050
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1051
|
+
await response_data.read()
|
|
1052
|
+
return self.api_client.response_deserialize(
|
|
1053
|
+
response_data=response_data,
|
|
1054
|
+
response_types_map=_response_types_map,
|
|
1055
|
+
)
|
|
1056
|
+
|
|
1057
|
+
@validate_call
|
|
1058
|
+
async def wait_for_io_event_without_preload_content(
|
|
1059
|
+
self,
|
|
1060
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1061
|
+
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1062
|
+
io: StrictStr,
|
|
1063
|
+
comparison_type: StrictStr,
|
|
1064
|
+
boolean_value: Optional[StrictBool] = None,
|
|
1065
|
+
integer_value: Optional[StrictStr] = None,
|
|
1066
|
+
floating_value: Optional[Union[StrictFloat, StrictInt]] = None,
|
|
1067
|
+
_request_timeout: Union[
|
|
1068
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1069
|
+
] = None,
|
|
1070
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1071
|
+
_content_type: Optional[StrictStr] = None,
|
|
1072
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1073
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1074
|
+
) -> RESTResponseType:
|
|
1075
|
+
"""Wait For
|
|
1076
|
+
|
|
1077
|
+
**Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ Wait until an I/O reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the I/O is compared with given value. Only set the value that corresponds to the value_type of the I/O, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only integer_value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only floating_value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only boolean_value to true.
|
|
1078
|
+
|
|
1079
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1080
|
+
:type cell: str
|
|
1081
|
+
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1082
|
+
:type controller: str
|
|
1083
|
+
:param io: (required)
|
|
1084
|
+
:type io: str
|
|
1085
|
+
:param comparison_type: (required)
|
|
1086
|
+
:type comparison_type: str
|
|
1087
|
+
:param boolean_value:
|
|
1088
|
+
:type boolean_value: bool
|
|
1089
|
+
:param integer_value:
|
|
1090
|
+
:type integer_value: str
|
|
1091
|
+
:param floating_value:
|
|
1092
|
+
:type floating_value: float
|
|
1093
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1094
|
+
number provided, it will be total request
|
|
1095
|
+
timeout. It can also be a pair (tuple) of
|
|
1096
|
+
(connection, read) timeouts.
|
|
1097
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1098
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1099
|
+
request; this effectively ignores the
|
|
1100
|
+
authentication in the spec for a single request.
|
|
1101
|
+
:type _request_auth: dict, optional
|
|
1102
|
+
:param _content_type: force content-type for the request.
|
|
1103
|
+
:type _content_type: str, Optional
|
|
1104
|
+
:param _headers: set to override the headers for a single
|
|
1105
|
+
request; this effectively ignores the headers
|
|
1106
|
+
in the spec for a single request.
|
|
1107
|
+
:type _headers: dict, optional
|
|
1108
|
+
:param _host_index: set to override the host_index for a single
|
|
1109
|
+
request; this effectively ignores the host_index
|
|
1110
|
+
in the spec for a single request.
|
|
1111
|
+
:type _host_index: int, optional
|
|
1112
|
+
:return: Returns the result object.
|
|
1113
|
+
""" # noqa: E501
|
|
1114
|
+
|
|
1115
|
+
_param = self._wait_for_io_event_serialize(
|
|
1116
|
+
cell=cell,
|
|
1117
|
+
controller=controller,
|
|
1118
|
+
io=io,
|
|
1119
|
+
comparison_type=comparison_type,
|
|
1120
|
+
boolean_value=boolean_value,
|
|
1121
|
+
integer_value=integer_value,
|
|
1122
|
+
floating_value=floating_value,
|
|
1123
|
+
_request_auth=_request_auth,
|
|
1124
|
+
_content_type=_content_type,
|
|
1125
|
+
_headers=_headers,
|
|
1126
|
+
_host_index=_host_index,
|
|
1127
|
+
)
|
|
1128
|
+
|
|
1129
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1130
|
+
"200": "bool",
|
|
1131
|
+
}
|
|
1132
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1133
|
+
return response_data.response
|
|
1134
|
+
|
|
1135
|
+
def _wait_for_io_event_serialize(
|
|
1136
|
+
self,
|
|
1137
|
+
cell,
|
|
1138
|
+
controller,
|
|
1139
|
+
io,
|
|
1140
|
+
comparison_type,
|
|
1141
|
+
boolean_value,
|
|
1142
|
+
integer_value,
|
|
1143
|
+
floating_value,
|
|
1144
|
+
_request_auth,
|
|
1145
|
+
_content_type,
|
|
1146
|
+
_headers,
|
|
1147
|
+
_host_index,
|
|
1148
|
+
) -> RequestSerialized:
|
|
1149
|
+
|
|
1150
|
+
_host = None
|
|
1151
|
+
|
|
1152
|
+
_collection_formats: Dict[str, str] = {}
|
|
1153
|
+
|
|
1154
|
+
_path_params: Dict[str, str] = {}
|
|
1155
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1156
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1157
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1158
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1159
|
+
_body_params: Optional[bytes] = None
|
|
1160
|
+
|
|
1161
|
+
# process the path parameters
|
|
1162
|
+
if cell is not None:
|
|
1163
|
+
_path_params["cell"] = cell
|
|
1164
|
+
if controller is not None:
|
|
1165
|
+
_path_params["controller"] = controller
|
|
1166
|
+
# process the query parameters
|
|
1167
|
+
if io is not None:
|
|
1168
|
+
_query_params.append(("io", io))
|
|
1169
|
+
|
|
1170
|
+
if comparison_type is not None:
|
|
1171
|
+
_query_params.append(("comparison_type", comparison_type))
|
|
1172
|
+
|
|
1173
|
+
if boolean_value is not None:
|
|
1174
|
+
_query_params.append(("boolean_value", boolean_value))
|
|
1175
|
+
|
|
1176
|
+
if integer_value is not None:
|
|
1177
|
+
_query_params.append(("integer_value", integer_value))
|
|
1178
|
+
|
|
1179
|
+
if floating_value is not None:
|
|
1180
|
+
_query_params.append(("floating_value", floating_value))
|
|
1181
|
+
|
|
1182
|
+
# process the header parameters
|
|
1183
|
+
# process the form parameters
|
|
1184
|
+
# process the body parameter
|
|
1185
|
+
|
|
1186
|
+
# set the HTTP header `Accept`
|
|
1187
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1188
|
+
|
|
1189
|
+
# authentication setting
|
|
1190
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1191
|
+
|
|
1192
|
+
return self.api_client.param_serialize(
|
|
1193
|
+
method="GET",
|
|
1194
|
+
resource_path="/cells/{cell}/controllers/{controller}/ios/wait-for",
|
|
1195
|
+
path_params=_path_params,
|
|
1196
|
+
query_params=_query_params,
|
|
1197
|
+
header_params=_header_params,
|
|
1198
|
+
body=_body_params,
|
|
1199
|
+
post_params=_form_params,
|
|
1200
|
+
files=_files,
|
|
1201
|
+
auth_settings=_auth_settings,
|
|
1202
|
+
collection_formats=_collection_formats,
|
|
1203
|
+
_host=_host,
|
|
1204
|
+
_request_auth=_request_auth,
|
|
1205
|
+
)
|