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,153 @@
|
|
|
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 __future__ import annotations
|
|
15
|
+
import json
|
|
16
|
+
from enum import Enum
|
|
17
|
+
from typing_extensions import Self
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class VirtualControllerTypes(str, Enum):
|
|
21
|
+
"""
|
|
22
|
+
VirtualControllerTypes
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
"""
|
|
26
|
+
allowed enum values
|
|
27
|
+
"""
|
|
28
|
+
ABB_MINUS_IRB1010_037_15 = "abb-irb1010_037_15"
|
|
29
|
+
ABB_MINUS_IRB1100_0475_4 = "abb-irb1100_0475_4"
|
|
30
|
+
ABB_MINUS_IRB1100_058_4 = "abb-irb1100_058_4"
|
|
31
|
+
ABB_MINUS_IRB1200_7 = "abb-irb1200_7"
|
|
32
|
+
ABB_MINUS_IRB1300_09_11 = "abb-irb1300_09_11"
|
|
33
|
+
ABB_MINUS_IRB1300_115_10 = "abb-irb1300_115_10"
|
|
34
|
+
ABB_MINUS_IRB1300_14_12 = "abb-irb1300_14_12"
|
|
35
|
+
ABB_MINUS_IRB1300_14_7 = "abb-irb1300_14_7"
|
|
36
|
+
ABB_MINUS_IRB1600_12_10 = "abb-irb1600_12_10"
|
|
37
|
+
ABB_MINUS_IRB1600_12_6 = "abb-irb1600_12_6"
|
|
38
|
+
ABB_MINUS_IRB1600_145_10 = "abb-irb1600_145_10"
|
|
39
|
+
ABB_MINUS_IRB1600_145_6 = "abb-irb1600_145_6"
|
|
40
|
+
ABB_MINUS_IRB2600_ID_185_15 = "abb-irb2600ID_185_15"
|
|
41
|
+
ABB_MINUS_IRB2600_ID_200_8 = "abb-irb2600ID_200_8"
|
|
42
|
+
ABB_MINUS_IRB2600_165_12 = "abb-irb2600_165_12"
|
|
43
|
+
ABB_MINUS_IRB2600_165_20 = "abb-irb2600_165_20"
|
|
44
|
+
ABB_MINUS_IRB2600_185_12 = "abb-irb2600_185_12"
|
|
45
|
+
ABB_MINUS_IRB4600_205_45 = "abb-irb4600_205_45"
|
|
46
|
+
ABB_MINUS_IRB4600_205_60 = "abb-irb4600_205_60"
|
|
47
|
+
ABB_MINUS_IRB4600_250_20 = "abb-irb4600_250_20"
|
|
48
|
+
ABB_MINUS_IRB4600_255_40 = "abb-irb4600_255_40"
|
|
49
|
+
ABB_MINUS_IRB6730_210_310 = "abb-irb6730_210_310"
|
|
50
|
+
ABB_MINUS_IRB6730_240_290 = "abb-irb6730_240_290"
|
|
51
|
+
FANUC_MINUS_ARC_MATE_100I_D = "fanuc-arc_mate_100iD"
|
|
52
|
+
FANUC_MINUS_ARC_MATE_100I_D16_S = "fanuc-arc_mate_100iD16S"
|
|
53
|
+
FANUC_MINUS_ARC_MATE_120I_D = "fanuc-arc_mate_120iD"
|
|
54
|
+
FANUC_MINUS_ARC_MATE_120I_D12_L = "fanuc-arc_mate_120iD12L"
|
|
55
|
+
FANUC_MINUS_ARC_MATE_120I_D35 = "fanuc-arc_mate_120iD35"
|
|
56
|
+
FANUC_MINUS_CR35IB = "fanuc-cr35ib"
|
|
57
|
+
FANUC_MINUS_CR7IA = "fanuc-cr7ia"
|
|
58
|
+
FANUC_MINUS_CR7IAL = "fanuc-cr7ial"
|
|
59
|
+
FANUC_MINUS_CRX10IA = "fanuc-crx10ia"
|
|
60
|
+
FANUC_MINUS_CRX10IAL = "fanuc-crx10ial"
|
|
61
|
+
FANUC_MINUS_CRX20IAL = "fanuc-crx20ial"
|
|
62
|
+
FANUC_MINUS_CRX25IA = "fanuc-crx25ia"
|
|
63
|
+
FANUC_MINUS_CRX30IA = "fanuc-crx30ia"
|
|
64
|
+
FANUC_MINUS_CRX5IA = "fanuc-crx5ia"
|
|
65
|
+
FANUC_MINUS_LR_MATE_200I_D = "fanuc-lr_mate_200iD"
|
|
66
|
+
FANUC_MINUS_LR_MATE_200I_D4_S = "fanuc-lr_mate_200iD4S"
|
|
67
|
+
FANUC_MINUS_LR_MATE_200I_D7_L = "fanuc-lr_mate_200iD7L"
|
|
68
|
+
FANUC_MINUS_M10I_D12 = "fanuc-m10iD12"
|
|
69
|
+
FANUC_MINUS_M10I_D16_S = "fanuc-m10iD16S"
|
|
70
|
+
FANUC_MINUS_M20I_D25 = "fanuc-m20iD25"
|
|
71
|
+
FANUC_MINUS_M20I_D35 = "fanuc-m20iD35"
|
|
72
|
+
FANUC_MINUS_M710I_C20_L = "fanuc-m710iC20L"
|
|
73
|
+
FANUC_MINUS_M900I_B280_L = "fanuc-m900iB280L"
|
|
74
|
+
FANUC_MINUS_M900I_B360_E = "fanuc-m900iB360E"
|
|
75
|
+
FANUC_MINUS_R2000IC125L = "fanuc-r2000ic125l"
|
|
76
|
+
FANUC_MINUS_R2000IC210F = "fanuc-r2000ic210f"
|
|
77
|
+
KUKA_MINUS_KR10_R1100 = "kuka-kr10_r1100"
|
|
78
|
+
KUKA_MINUS_KR10_R1100_2 = "kuka-kr10_r1100_2"
|
|
79
|
+
KUKA_MINUS_KR10_R900 = "kuka-kr10_r900"
|
|
80
|
+
KUKA_MINUS_KR10_R900_2 = "kuka-kr10_r900_2"
|
|
81
|
+
KUKA_MINUS_KR120_R2700_2 = "kuka-kr120_r2700_2"
|
|
82
|
+
KUKA_MINUS_KR120_R3100_2 = "kuka-kr120_r3100_2"
|
|
83
|
+
KUKA_MINUS_KR120_R3900_2_K = "kuka-kr120_r3900_2_k"
|
|
84
|
+
KUKA_MINUS_KR12_R1810_2 = "kuka-kr12_r1810_2"
|
|
85
|
+
KUKA_MINUS_KR150_R2 = "kuka-kr150_r2"
|
|
86
|
+
KUKA_MINUS_KR16_R1610_2 = "kuka-kr16_r1610_2"
|
|
87
|
+
KUKA_MINUS_KR16_R2010_2 = "kuka-kr16_r2010_2"
|
|
88
|
+
KUKA_MINUS_KR20_R1810 = "kuka-kr20_r1810"
|
|
89
|
+
KUKA_MINUS_KR20_R1810_2 = "kuka-kr20_r1810_2"
|
|
90
|
+
KUKA_MINUS_KR210_R2700_EXTRA = "kuka-kr210_r2700_extra"
|
|
91
|
+
KUKA_MINUS_KR210_R2700_2 = "kuka-kr210_r2700_2"
|
|
92
|
+
KUKA_MINUS_KR210_R3100_2 = "kuka-kr210_r3100_2"
|
|
93
|
+
KUKA_MINUS_KR210_R3300_2 = "kuka-kr210_r3300_2"
|
|
94
|
+
KUKA_MINUS_KR240_R2700 = "kuka-kr240_r2700"
|
|
95
|
+
KUKA_MINUS_KR240_R2900 = "kuka-kr240_r2900"
|
|
96
|
+
KUKA_MINUS_KR240_R3700_2 = "kuka-kr240_r3700_2"
|
|
97
|
+
KUKA_MINUS_KR250_R2700_2 = "kuka-kr250_r2700_2"
|
|
98
|
+
KUKA_MINUS_KR270_R2700 = "kuka-kr270_r2700"
|
|
99
|
+
KUKA_MINUS_KR30_R2100 = "kuka-kr30_r2100"
|
|
100
|
+
KUKA_MINUS_KR30_R3 = "kuka-kr30_r3"
|
|
101
|
+
KUKA_MINUS_KR360_L240_3 = "kuka-kr360_l240_3"
|
|
102
|
+
KUKA_MINUS_KR3_R540 = "kuka-kr3_r540"
|
|
103
|
+
KUKA_MINUS_KR4_R600 = "kuka-kr4_r600"
|
|
104
|
+
KUKA_MINUS_KR500_L340_3 = "kuka-kr500_l340_3"
|
|
105
|
+
KUKA_MINUS_KR50_R2500 = "kuka-kr50_r2500"
|
|
106
|
+
KUKA_MINUS_KR60_R3 = "kuka-kr60_r3"
|
|
107
|
+
KUKA_MINUS_KR6_R1820 = "kuka-kr6_r1820"
|
|
108
|
+
KUKA_MINUS_KR6_R700_2 = "kuka-kr6_r700_2"
|
|
109
|
+
KUKA_MINUS_KR6_R700_SIXX = "kuka-kr6_r700_sixx"
|
|
110
|
+
KUKA_MINUS_KR6_R900 = "kuka-kr6_r900"
|
|
111
|
+
KUKA_MINUS_KR6_R900_2 = "kuka-kr6_r900_2"
|
|
112
|
+
KUKA_MINUS_KR70_R2100 = "kuka-kr70_r2100"
|
|
113
|
+
KUKA_MINUS_LBR_IISY_11_R1300 = "kuka-lbr_iisy_11_r1300"
|
|
114
|
+
UNIVERSALROBOTS_MINUS_UR10CB = "universalrobots-ur10cb"
|
|
115
|
+
UNIVERSALROBOTS_MINUS_UR10E = "universalrobots-ur10e"
|
|
116
|
+
UNIVERSALROBOTS_MINUS_UR12E = "universalrobots-ur12e"
|
|
117
|
+
UNIVERSALROBOTS_MINUS_UR16E = "universalrobots-ur16e"
|
|
118
|
+
UNIVERSALROBOTS_MINUS_UR20E = "universalrobots-ur20e"
|
|
119
|
+
UNIVERSALROBOTS_MINUS_UR3E = "universalrobots-ur3e"
|
|
120
|
+
UNIVERSALROBOTS_MINUS_UR5CB = "universalrobots-ur5cb"
|
|
121
|
+
UNIVERSALROBOTS_MINUS_UR5E = "universalrobots-ur5e"
|
|
122
|
+
UNIVERSALROBOTS_MINUS_UR7E = "universalrobots-ur7e"
|
|
123
|
+
YASKAWA_MINUS_AR1440 = "yaskawa-ar1440"
|
|
124
|
+
YASKAWA_MINUS_AR1730 = "yaskawa-ar1730"
|
|
125
|
+
YASKAWA_MINUS_AR2010 = "yaskawa-ar2010"
|
|
126
|
+
YASKAWA_MINUS_AR3120 = "yaskawa-ar3120"
|
|
127
|
+
YASKAWA_MINUS_AR700 = "yaskawa-ar700"
|
|
128
|
+
YASKAWA_MINUS_AR900 = "yaskawa-ar900"
|
|
129
|
+
YASKAWA_MINUS_GP110 = "yaskawa-gp110"
|
|
130
|
+
YASKAWA_MINUS_GP12 = "yaskawa-gp12"
|
|
131
|
+
YASKAWA_MINUS_GP180 = "yaskawa-gp180"
|
|
132
|
+
YASKAWA_MINUS_GP180_MINUS_120 = "yaskawa-gp180-120"
|
|
133
|
+
YASKAWA_MINUS_GP20HL = "yaskawa-gp20hl"
|
|
134
|
+
YASKAWA_MINUS_GP215 = "yaskawa-gp215"
|
|
135
|
+
YASKAWA_MINUS_GP225 = "yaskawa-gp225"
|
|
136
|
+
YASKAWA_MINUS_GP25 = "yaskawa-gp25"
|
|
137
|
+
YASKAWA_MINUS_GP250 = "yaskawa-gp250"
|
|
138
|
+
YASKAWA_MINUS_GP25_12 = "yaskawa-gp25_12"
|
|
139
|
+
YASKAWA_MINUS_GP280 = "yaskawa-gp280"
|
|
140
|
+
YASKAWA_MINUS_GP35_L = "yaskawa-gp35L"
|
|
141
|
+
YASKAWA_MINUS_GP400 = "yaskawa-gp400"
|
|
142
|
+
YASKAWA_MINUS_GP50 = "yaskawa-gp50"
|
|
143
|
+
YASKAWA_MINUS_GP600 = "yaskawa-gp600"
|
|
144
|
+
YASKAWA_MINUS_GP7 = "yaskawa-gp7"
|
|
145
|
+
YASKAWA_MINUS_GP8 = "yaskawa-gp8"
|
|
146
|
+
YASKAWA_MINUS_GP88 = "yaskawa-gp88"
|
|
147
|
+
YASKAWA_MINUS_HC10DTP = "yaskawa-hc10dtp"
|
|
148
|
+
YASKAWA_MINUS_HC20DTP = "yaskawa-hc20dtp"
|
|
149
|
+
|
|
150
|
+
@classmethod
|
|
151
|
+
def from_json(cls, json_str: str) -> Self:
|
|
152
|
+
"""Create an instance of VirtualControllerTypes from a JSON string"""
|
|
153
|
+
return cls(json.loads(json_str))
|
|
@@ -0,0 +1,91 @@
|
|
|
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 __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
20
|
+
from typing import Any, ClassVar, Dict, List
|
|
21
|
+
from typing import Optional, Set
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class VirtualRobotConfiguration(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
VirtualRobotConfiguration
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
|
|
30
|
+
name: StrictStr = Field(
|
|
31
|
+
description="Name of the configuration file generated by the unique identifier of the controller and a time stamp. "
|
|
32
|
+
)
|
|
33
|
+
content: StrictStr = Field(
|
|
34
|
+
description="Content of the configuration file. Copy & paste to the [addRobotController](#/operations/addRobotController) configuration.json parameter. "
|
|
35
|
+
)
|
|
36
|
+
__properties: ClassVar[List[str]] = ["name", "content"]
|
|
37
|
+
|
|
38
|
+
model_config = ConfigDict(
|
|
39
|
+
populate_by_name=True,
|
|
40
|
+
validate_assignment=True,
|
|
41
|
+
protected_namespaces=(),
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.model_dump(by_alias=True, exclude_none=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""
|
|
50
|
+
Returns the JSON representation of the model using alias
|
|
51
|
+
|
|
52
|
+
Do not use pydantic v2 .model_dump_json(by_alias=True, exclude_unset=True) here!
|
|
53
|
+
It is unable to resolve nested types generated by openapi-generator.
|
|
54
|
+
"""
|
|
55
|
+
return json.dumps(self.to_dict())
|
|
56
|
+
|
|
57
|
+
@classmethod
|
|
58
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
59
|
+
"""Create an instance of VirtualRobotConfiguration from a JSON string"""
|
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
|
61
|
+
|
|
62
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
63
|
+
"""Return the dictionary representation of the model using alias.
|
|
64
|
+
|
|
65
|
+
This has the following differences from calling pydantic's
|
|
66
|
+
`self.model_dump(by_alias=True)`:
|
|
67
|
+
|
|
68
|
+
* `None` is only added to the output dict for nullable fields that
|
|
69
|
+
were set at model initialization. Other fields with value `None`
|
|
70
|
+
are ignored.
|
|
71
|
+
"""
|
|
72
|
+
excluded_fields: Set[str] = set([])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
return _dict
|
|
80
|
+
|
|
81
|
+
@classmethod
|
|
82
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
83
|
+
"""Create an instance of VirtualRobotConfiguration from a dict"""
|
|
84
|
+
if obj is None:
|
|
85
|
+
return None
|
|
86
|
+
|
|
87
|
+
if not isinstance(obj, dict):
|
|
88
|
+
return cls.model_validate(obj)
|
|
89
|
+
|
|
90
|
+
_obj = cls.model_validate({"name": obj.get("name"), "content": obj.get("content")})
|
|
91
|
+
return _obj
|
|
@@ -0,0 +1,99 @@
|
|
|
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 __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from typing import Optional, Set
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class YaskawaController(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
|
|
30
|
+
kind: str = "YaskawaController"
|
|
31
|
+
controller_ip: StrictStr = Field(alias="controllerIp")
|
|
32
|
+
__properties: ClassVar[List[str]] = ["kind", "controllerIp"]
|
|
33
|
+
|
|
34
|
+
@field_validator("kind")
|
|
35
|
+
def kind_validate_enum(cls, value):
|
|
36
|
+
"""Validates the enum"""
|
|
37
|
+
if value is None:
|
|
38
|
+
return value
|
|
39
|
+
|
|
40
|
+
if value not in set(["YaskawaController"]):
|
|
41
|
+
raise ValueError("must be one of enum values ('YaskawaController')")
|
|
42
|
+
return value
|
|
43
|
+
|
|
44
|
+
model_config = ConfigDict(
|
|
45
|
+
populate_by_name=True,
|
|
46
|
+
validate_assignment=True,
|
|
47
|
+
protected_namespaces=(),
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
def to_str(self) -> str:
|
|
51
|
+
"""Returns the string representation of the model using alias"""
|
|
52
|
+
return pprint.pformat(self.model_dump(by_alias=True, exclude_none=True))
|
|
53
|
+
|
|
54
|
+
def to_json(self) -> str:
|
|
55
|
+
"""
|
|
56
|
+
Returns the JSON representation of the model using alias
|
|
57
|
+
|
|
58
|
+
Do not use pydantic v2 .model_dump_json(by_alias=True, exclude_unset=True) here!
|
|
59
|
+
It is unable to resolve nested types generated by openapi-generator.
|
|
60
|
+
"""
|
|
61
|
+
return json.dumps(self.to_dict())
|
|
62
|
+
|
|
63
|
+
@classmethod
|
|
64
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
65
|
+
"""Create an instance of YaskawaController from a JSON string"""
|
|
66
|
+
return cls.from_dict(json.loads(json_str))
|
|
67
|
+
|
|
68
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
69
|
+
"""Return the dictionary representation of the model using alias.
|
|
70
|
+
|
|
71
|
+
This has the following differences from calling pydantic's
|
|
72
|
+
`self.model_dump(by_alias=True)`:
|
|
73
|
+
|
|
74
|
+
* `None` is only added to the output dict for nullable fields that
|
|
75
|
+
were set at model initialization. Other fields with value `None`
|
|
76
|
+
are ignored.
|
|
77
|
+
"""
|
|
78
|
+
excluded_fields: Set[str] = set([])
|
|
79
|
+
|
|
80
|
+
_dict = self.model_dump(
|
|
81
|
+
by_alias=True,
|
|
82
|
+
exclude=excluded_fields,
|
|
83
|
+
exclude_none=True,
|
|
84
|
+
)
|
|
85
|
+
return _dict
|
|
86
|
+
|
|
87
|
+
@classmethod
|
|
88
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
89
|
+
"""Create an instance of YaskawaController from a dict"""
|
|
90
|
+
if obj is None:
|
|
91
|
+
return None
|
|
92
|
+
|
|
93
|
+
if not isinstance(obj, dict):
|
|
94
|
+
return cls.model_validate(obj)
|
|
95
|
+
|
|
96
|
+
_obj = cls.model_validate(
|
|
97
|
+
{"kind": obj.get("kind") if obj.get("kind") is not None else "YaskawaController", "controllerIp": obj.get("controllerIp")}
|
|
98
|
+
)
|
|
99
|
+
return _obj
|
|
File without changes
|
|
@@ -0,0 +1,188 @@
|
|
|
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
|
+
import io
|
|
15
|
+
import json
|
|
16
|
+
import re
|
|
17
|
+
import ssl
|
|
18
|
+
from typing import Optional, Union
|
|
19
|
+
|
|
20
|
+
import aiohttp
|
|
21
|
+
import aiohttp_retry
|
|
22
|
+
|
|
23
|
+
from wandelbots_api_client.exceptions import ApiException, ApiValueError
|
|
24
|
+
|
|
25
|
+
RESTResponseType = aiohttp.ClientResponse
|
|
26
|
+
|
|
27
|
+
ALLOW_RETRY_METHODS = frozenset({"DELETE", "GET", "HEAD", "OPTIONS", "PUT", "TRACE"})
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class RESTResponse(io.IOBase):
|
|
31
|
+
def __init__(self, resp) -> None:
|
|
32
|
+
self.response = resp
|
|
33
|
+
self.status = resp.status
|
|
34
|
+
self.reason = resp.reason
|
|
35
|
+
self.data = None
|
|
36
|
+
|
|
37
|
+
async def read(self):
|
|
38
|
+
if self.data is None:
|
|
39
|
+
self.data = await self.response.read()
|
|
40
|
+
return self.data
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
def headers(self):
|
|
44
|
+
"""Returns a CIMultiDictProxy of response headers."""
|
|
45
|
+
return self.response.headers
|
|
46
|
+
|
|
47
|
+
def getheaders(self):
|
|
48
|
+
"""Returns a CIMultiDictProxy of the response headers; use ``headers`` instead."""
|
|
49
|
+
return self.response.headers
|
|
50
|
+
|
|
51
|
+
def getheader(self, name, default=None):
|
|
52
|
+
"""Returns a given response header; use ``headers.get()`` instead."""
|
|
53
|
+
return self.response.headers.get(name, default)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class RESTClientObject:
|
|
57
|
+
def __init__(self, configuration) -> None:
|
|
58
|
+
|
|
59
|
+
# maxsize is number of requests to host that are allowed in parallel
|
|
60
|
+
self.maxsize = configuration.connection_pool_maxsize
|
|
61
|
+
|
|
62
|
+
self.ssl_context = ssl.create_default_context(
|
|
63
|
+
cafile=configuration.ssl_ca_cert,
|
|
64
|
+
cadata=configuration.ca_cert_data,
|
|
65
|
+
)
|
|
66
|
+
if configuration.cert_file:
|
|
67
|
+
self.ssl_context.load_cert_chain(configuration.cert_file, keyfile=configuration.key_file)
|
|
68
|
+
|
|
69
|
+
if not configuration.verify_ssl:
|
|
70
|
+
self.ssl_context.check_hostname = False
|
|
71
|
+
self.ssl_context.verify_mode = ssl.CERT_NONE
|
|
72
|
+
|
|
73
|
+
self.proxy = configuration.proxy
|
|
74
|
+
self.proxy_headers = configuration.proxy_headers
|
|
75
|
+
|
|
76
|
+
retries = configuration.retries
|
|
77
|
+
if retries is None:
|
|
78
|
+
self._effective_retry_options = None
|
|
79
|
+
elif isinstance(retries, aiohttp_retry.RetryOptionsBase):
|
|
80
|
+
self._effective_retry_options = retries
|
|
81
|
+
elif isinstance(retries, int):
|
|
82
|
+
self._effective_retry_options = aiohttp_retry.ExponentialRetry(
|
|
83
|
+
attempts=retries, factor=2.0, start_timeout=0.1, max_timeout=120.0
|
|
84
|
+
)
|
|
85
|
+
else:
|
|
86
|
+
self._effective_retry_options = None
|
|
87
|
+
|
|
88
|
+
self.pool_manager: Optional[aiohttp.ClientSession] = None
|
|
89
|
+
self.retry_client: Optional[aiohttp_retry.RetryClient] = None
|
|
90
|
+
|
|
91
|
+
async def close(self) -> None:
|
|
92
|
+
if self.pool_manager:
|
|
93
|
+
await self.pool_manager.close()
|
|
94
|
+
if self.retry_client is not None:
|
|
95
|
+
await self.retry_client.close()
|
|
96
|
+
|
|
97
|
+
async def request(self, method, url, headers=None, body=None, post_params=None, _request_timeout=None):
|
|
98
|
+
"""Execute request
|
|
99
|
+
|
|
100
|
+
:param method: http request method
|
|
101
|
+
:param url: http request url
|
|
102
|
+
:param headers: http request headers
|
|
103
|
+
:param body: request json body, for `application/json`
|
|
104
|
+
:param post_params: request post parameters,
|
|
105
|
+
`application/x-www-form-urlencoded`
|
|
106
|
+
and `multipart/form-data`
|
|
107
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
108
|
+
number provided, it will be total request
|
|
109
|
+
timeout. It can also be a pair (tuple) of
|
|
110
|
+
(connection, read) timeouts.
|
|
111
|
+
"""
|
|
112
|
+
method = method.upper()
|
|
113
|
+
assert method in ["GET", "HEAD", "DELETE", "POST", "PUT", "PATCH", "OPTIONS"]
|
|
114
|
+
|
|
115
|
+
if post_params and body:
|
|
116
|
+
raise ApiValueError("body parameter cannot be used with post_params parameter.")
|
|
117
|
+
|
|
118
|
+
post_params = post_params or {}
|
|
119
|
+
headers = headers or {}
|
|
120
|
+
# url already contains the URL query string
|
|
121
|
+
timeout = _request_timeout or 5 * 60
|
|
122
|
+
|
|
123
|
+
if "Content-Type" not in headers:
|
|
124
|
+
headers["Content-Type"] = "application/json"
|
|
125
|
+
|
|
126
|
+
args = {"method": method, "url": url, "timeout": timeout, "headers": headers}
|
|
127
|
+
|
|
128
|
+
if self.proxy:
|
|
129
|
+
args["proxy"] = self.proxy
|
|
130
|
+
if self.proxy_headers:
|
|
131
|
+
args["proxy_headers"] = self.proxy_headers
|
|
132
|
+
|
|
133
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
|
134
|
+
if method in ["POST", "PUT", "PATCH", "OPTIONS", "DELETE"]:
|
|
135
|
+
if re.search("json", headers["Content-Type"], re.IGNORECASE):
|
|
136
|
+
if body is not None:
|
|
137
|
+
body = json.dumps(body)
|
|
138
|
+
args["data"] = body
|
|
139
|
+
elif headers["Content-Type"] == "application/x-www-form-urlencoded":
|
|
140
|
+
args["data"] = aiohttp.FormData(post_params)
|
|
141
|
+
elif headers["Content-Type"] == "multipart/form-data":
|
|
142
|
+
# must del headers['Content-Type'], or the correct
|
|
143
|
+
# Content-Type which generated by aiohttp
|
|
144
|
+
del headers["Content-Type"]
|
|
145
|
+
data = aiohttp.FormData()
|
|
146
|
+
for param in post_params:
|
|
147
|
+
k, v = param
|
|
148
|
+
if isinstance(v, tuple) and len(v) == 3:
|
|
149
|
+
data.add_field(k, value=v[1], filename=v[0], content_type=v[2])
|
|
150
|
+
else:
|
|
151
|
+
# Ensures that dict objects are serialized
|
|
152
|
+
if isinstance(v, dict):
|
|
153
|
+
v = json.dumps(v)
|
|
154
|
+
elif isinstance(v, int):
|
|
155
|
+
v = str(v)
|
|
156
|
+
data.add_field(k, v)
|
|
157
|
+
args["data"] = data
|
|
158
|
+
|
|
159
|
+
# Pass a `bytes` or `str` parameter directly in the body to support
|
|
160
|
+
# other content types than Json when `body` argument is provided
|
|
161
|
+
# in serialized form
|
|
162
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
|
163
|
+
args["data"] = body
|
|
164
|
+
else:
|
|
165
|
+
# Cannot generate the request from given parameters
|
|
166
|
+
msg = """Cannot prepare a request message for provided
|
|
167
|
+
arguments. Please check that your arguments match
|
|
168
|
+
declared content type."""
|
|
169
|
+
raise ApiException(status=0, reason=msg)
|
|
170
|
+
|
|
171
|
+
pool_manager: Union[aiohttp.ClientSession, aiohttp_retry.RetryClient]
|
|
172
|
+
|
|
173
|
+
# https pool manager
|
|
174
|
+
if self.pool_manager is None:
|
|
175
|
+
self.pool_manager = aiohttp.ClientSession(
|
|
176
|
+
connector=aiohttp.TCPConnector(limit=self.maxsize, ssl=self.ssl_context),
|
|
177
|
+
trust_env=True,
|
|
178
|
+
)
|
|
179
|
+
pool_manager = self.pool_manager
|
|
180
|
+
|
|
181
|
+
if self._effective_retry_options is not None and method in ALLOW_RETRY_METHODS:
|
|
182
|
+
if self.retry_client is None:
|
|
183
|
+
self.retry_client = aiohttp_retry.RetryClient(client_session=self.pool_manager, retry_options=self._effective_retry_options)
|
|
184
|
+
pool_manager = self.retry_client
|
|
185
|
+
|
|
186
|
+
r = await pool_manager.request(**args)
|
|
187
|
+
|
|
188
|
+
return RESTResponse(r)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Wandelbots NOVA API
|
|
7
|
+
|
|
8
|
+
Interact with robots in an easy and intuitive way.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 2.3.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
__version__ = "26.3.0"
|
|
17
|
+
|
|
18
|
+
from . import api
|
|
19
|
+
from . import api_client
|
|
20
|
+
from . import exceptions
|
|
21
|
+
from . import configuration
|
|
22
|
+
|
|
23
|
+
from wandelbots_api_client.v2.models import *
|
|
24
|
+
|
|
25
|
+
from .api import *
|
|
26
|
+
|
|
27
|
+
# import ApiClient
|
|
28
|
+
from .api_response import ApiResponse
|
|
29
|
+
from .api_client import ApiClient
|
|
30
|
+
from .configuration import Configuration
|
|
31
|
+
from .exceptions import OpenApiException
|
|
32
|
+
from .exceptions import ApiTypeError
|
|
33
|
+
from .exceptions import ApiValueError
|
|
34
|
+
from .exceptions import ApiKeyError
|
|
35
|
+
from .exceptions import ApiAttributeError
|
|
36
|
+
from .exceptions import ApiException
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
__all__ = [
|
|
40
|
+
"ApiResponse",
|
|
41
|
+
"ApiClient",
|
|
42
|
+
"Configuration",
|
|
43
|
+
"OpenApiException",
|
|
44
|
+
"ApiTypeError",
|
|
45
|
+
"ApiValueError",
|
|
46
|
+
"ApiKeyError",
|
|
47
|
+
"ApiAttributeError",
|
|
48
|
+
"ApiException",
|
|
49
|
+
]
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from .application_api import ApplicationApi
|
|
5
|
+
from .bus_inputs_outputs_api import BUSInputsOutputsApi
|
|
6
|
+
from .cell_api import CellApi
|
|
7
|
+
from .controller_api import ControllerApi
|
|
8
|
+
from .controller_inputs_outputs_api import ControllerInputsOutputsApi
|
|
9
|
+
from .jogging_api import JoggingApi
|
|
10
|
+
from .kinematics_api import KinematicsApi
|
|
11
|
+
from .license_api import LicenseApi
|
|
12
|
+
from .motion_group_api import MotionGroupApi
|
|
13
|
+
from .motion_group_models_api import MotionGroupModelsApi
|
|
14
|
+
from .nova_cloud_api import NOVACloudApi
|
|
15
|
+
from .program_api import ProgramApi
|
|
16
|
+
from .robot_configurations_api import RobotConfigurationsApi
|
|
17
|
+
from .store_collision_components_api import StoreCollisionComponentsApi
|
|
18
|
+
from .store_collision_setups_api import StoreCollisionSetupsApi
|
|
19
|
+
from .store_object_api import StoreObjectApi
|
|
20
|
+
from .system_api import SystemApi
|
|
21
|
+
from .trajectory_caching_api import TrajectoryCachingApi
|
|
22
|
+
from .trajectory_execution_api import TrajectoryExecutionApi
|
|
23
|
+
from .trajectory_planning_api import TrajectoryPlanningApi
|
|
24
|
+
from .version_api import VersionApi
|
|
25
|
+
from .virtual_controller_api import VirtualControllerApi
|
|
26
|
+
from .virtual_controller_behavior_api import VirtualControllerBehaviorApi
|
|
27
|
+
from .virtual_controller_inputs_outputs_api import VirtualControllerInputsOutputsApi
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
__all__ = [
|
|
31
|
+
"ApplicationApi",
|
|
32
|
+
"BUSInputsOutputsApi",
|
|
33
|
+
"CellApi",
|
|
34
|
+
"ControllerApi",
|
|
35
|
+
"ControllerInputsOutputsApi",
|
|
36
|
+
"JoggingApi",
|
|
37
|
+
"KinematicsApi",
|
|
38
|
+
"LicenseApi",
|
|
39
|
+
"MotionGroupApi",
|
|
40
|
+
"MotionGroupModelsApi",
|
|
41
|
+
"NOVACloudApi",
|
|
42
|
+
"ProgramApi",
|
|
43
|
+
"RobotConfigurationsApi",
|
|
44
|
+
"StoreCollisionComponentsApi",
|
|
45
|
+
"StoreCollisionSetupsApi",
|
|
46
|
+
"StoreObjectApi",
|
|
47
|
+
"SystemApi",
|
|
48
|
+
"TrajectoryCachingApi",
|
|
49
|
+
"TrajectoryExecutionApi",
|
|
50
|
+
"TrajectoryPlanningApi",
|
|
51
|
+
"VersionApi",
|
|
52
|
+
"VirtualControllerApi",
|
|
53
|
+
"VirtualControllerBehaviorApi",
|
|
54
|
+
"VirtualControllerInputsOutputsApi",
|
|
55
|
+
]
|