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,216 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Wandelbots NOVA API
|
|
3
|
+
|
|
4
|
+
Interact with robots in an easy and intuitive way.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
|
7
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
8
|
+
|
|
9
|
+
Do not edit the class manually.
|
|
10
|
+
""" # noqa: E501
|
|
11
|
+
|
|
12
|
+
from typing import Any, Optional
|
|
13
|
+
from typing_extensions import Self
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class OpenApiException(Exception):
|
|
17
|
+
"""The base exception class for all OpenAPIExceptions"""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ApiTypeError(OpenApiException, TypeError):
|
|
21
|
+
def __init__(self, msg, path_to_item=None, valid_classes=None, key_type=None) -> None:
|
|
22
|
+
"""Raises an exception for TypeErrors
|
|
23
|
+
|
|
24
|
+
Args:
|
|
25
|
+
msg (str): the exception message
|
|
26
|
+
|
|
27
|
+
Keyword Args:
|
|
28
|
+
path_to_item (list): a list of keys an indices to get to the
|
|
29
|
+
current_item
|
|
30
|
+
None if unset
|
|
31
|
+
valid_classes (tuple): the primitive classes that current item
|
|
32
|
+
should be an instance of
|
|
33
|
+
None if unset
|
|
34
|
+
key_type (bool): False if our value is a value in a dict
|
|
35
|
+
True if it is a key in a dict
|
|
36
|
+
False if our item is an item in a list
|
|
37
|
+
None if unset
|
|
38
|
+
"""
|
|
39
|
+
self.path_to_item = path_to_item
|
|
40
|
+
self.valid_classes = valid_classes
|
|
41
|
+
self.key_type = key_type
|
|
42
|
+
full_msg = msg
|
|
43
|
+
if path_to_item:
|
|
44
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
45
|
+
super(ApiTypeError, self).__init__(full_msg)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
class ApiValueError(OpenApiException, ValueError):
|
|
49
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
50
|
+
"""
|
|
51
|
+
Args:
|
|
52
|
+
msg (str): the exception message
|
|
53
|
+
|
|
54
|
+
Keyword Args:
|
|
55
|
+
path_to_item (list) the path to the exception in the
|
|
56
|
+
received_data dict. None if unset
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
self.path_to_item = path_to_item
|
|
60
|
+
full_msg = msg
|
|
61
|
+
if path_to_item:
|
|
62
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
63
|
+
super(ApiValueError, self).__init__(full_msg)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class ApiAttributeError(OpenApiException, AttributeError):
|
|
67
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
68
|
+
"""
|
|
69
|
+
Raised when an attribute reference or assignment fails.
|
|
70
|
+
|
|
71
|
+
Args:
|
|
72
|
+
msg (str): the exception message
|
|
73
|
+
|
|
74
|
+
Keyword Args:
|
|
75
|
+
path_to_item (None/list) the path to the exception in the
|
|
76
|
+
received_data dict
|
|
77
|
+
"""
|
|
78
|
+
self.path_to_item = path_to_item
|
|
79
|
+
full_msg = msg
|
|
80
|
+
if path_to_item:
|
|
81
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
82
|
+
super(ApiAttributeError, self).__init__(full_msg)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class ApiKeyError(OpenApiException, KeyError):
|
|
86
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
|
87
|
+
"""
|
|
88
|
+
Args:
|
|
89
|
+
msg (str): the exception message
|
|
90
|
+
|
|
91
|
+
Keyword Args:
|
|
92
|
+
path_to_item (None/list) the path to the exception in the
|
|
93
|
+
received_data dict
|
|
94
|
+
"""
|
|
95
|
+
self.path_to_item = path_to_item
|
|
96
|
+
full_msg = msg
|
|
97
|
+
if path_to_item:
|
|
98
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
|
99
|
+
super(ApiKeyError, self).__init__(full_msg)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
class ApiException(OpenApiException):
|
|
103
|
+
def __init__(
|
|
104
|
+
self,
|
|
105
|
+
status=None,
|
|
106
|
+
reason=None,
|
|
107
|
+
http_resp=None,
|
|
108
|
+
*,
|
|
109
|
+
body: Optional[str] = None,
|
|
110
|
+
data: Optional[Any] = None,
|
|
111
|
+
) -> None:
|
|
112
|
+
self.status = status
|
|
113
|
+
self.reason = reason
|
|
114
|
+
self.body = body
|
|
115
|
+
self.data = data
|
|
116
|
+
self.headers = None
|
|
117
|
+
|
|
118
|
+
if http_resp:
|
|
119
|
+
if self.status is None:
|
|
120
|
+
self.status = http_resp.status
|
|
121
|
+
if self.reason is None:
|
|
122
|
+
self.reason = http_resp.reason
|
|
123
|
+
if self.body is None:
|
|
124
|
+
try:
|
|
125
|
+
self.body = http_resp.data.decode("utf-8")
|
|
126
|
+
except Exception:
|
|
127
|
+
pass
|
|
128
|
+
self.headers = http_resp.headers
|
|
129
|
+
|
|
130
|
+
@classmethod
|
|
131
|
+
def from_response(
|
|
132
|
+
cls,
|
|
133
|
+
*,
|
|
134
|
+
http_resp,
|
|
135
|
+
body: Optional[str],
|
|
136
|
+
data: Optional[Any],
|
|
137
|
+
) -> Self:
|
|
138
|
+
if http_resp.status == 400:
|
|
139
|
+
raise BadRequestException(http_resp=http_resp, body=body, data=data)
|
|
140
|
+
|
|
141
|
+
if http_resp.status == 401:
|
|
142
|
+
raise UnauthorizedException(http_resp=http_resp, body=body, data=data)
|
|
143
|
+
|
|
144
|
+
if http_resp.status == 403:
|
|
145
|
+
raise ForbiddenException(http_resp=http_resp, body=body, data=data)
|
|
146
|
+
|
|
147
|
+
if http_resp.status == 404:
|
|
148
|
+
raise NotFoundException(http_resp=http_resp, body=body, data=data)
|
|
149
|
+
|
|
150
|
+
# Added new conditions for 409 and 422
|
|
151
|
+
if http_resp.status == 409:
|
|
152
|
+
raise ConflictException(http_resp=http_resp, body=body, data=data)
|
|
153
|
+
|
|
154
|
+
if http_resp.status == 422:
|
|
155
|
+
raise UnprocessableEntityException(http_resp=http_resp, body=body, data=data)
|
|
156
|
+
|
|
157
|
+
if 500 <= http_resp.status <= 599:
|
|
158
|
+
raise ServiceException(http_resp=http_resp, body=body, data=data)
|
|
159
|
+
raise ApiException(http_resp=http_resp, body=body, data=data)
|
|
160
|
+
|
|
161
|
+
def __str__(self):
|
|
162
|
+
"""Custom error messages for exception"""
|
|
163
|
+
error_message = "({0})\nReason: {1}\n".format(self.status, self.reason)
|
|
164
|
+
if self.headers:
|
|
165
|
+
error_message += "HTTP response headers: {0}\n".format(self.headers)
|
|
166
|
+
|
|
167
|
+
if self.body:
|
|
168
|
+
error_message += "HTTP response body: {0}\n".format(self.body)
|
|
169
|
+
|
|
170
|
+
if self.data:
|
|
171
|
+
error_message += "HTTP response data: {0}\n".format(self.data)
|
|
172
|
+
|
|
173
|
+
return error_message
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class BadRequestException(ApiException):
|
|
177
|
+
pass
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
class NotFoundException(ApiException):
|
|
181
|
+
pass
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
class UnauthorizedException(ApiException):
|
|
185
|
+
pass
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
class ForbiddenException(ApiException):
|
|
189
|
+
pass
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
class ServiceException(ApiException):
|
|
193
|
+
pass
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
class ConflictException(ApiException):
|
|
197
|
+
"""Exception for HTTP 409 Conflict."""
|
|
198
|
+
|
|
199
|
+
pass
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
class UnprocessableEntityException(ApiException):
|
|
203
|
+
"""Exception for HTTP 422 Unprocessable Entity."""
|
|
204
|
+
|
|
205
|
+
pass
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
def render_path(path_to_item):
|
|
209
|
+
"""Returns a string representation of a path"""
|
|
210
|
+
result = ""
|
|
211
|
+
for pth in path_to_item:
|
|
212
|
+
if isinstance(pth, int):
|
|
213
|
+
result += "[{0}]".format(pth)
|
|
214
|
+
else:
|
|
215
|
+
result += "['{0}']".format(pth)
|
|
216
|
+
return result
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
"""
|
|
5
|
+
Wandelbots NOVA API
|
|
6
|
+
|
|
7
|
+
Interact with robots in an easy and intuitive way.
|
|
8
|
+
|
|
9
|
+
The version of the OpenAPI document: 1.4.0
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
# import models into model package
|
|
16
|
+
from wandelbots_api_client.models.abb_controller import AbbController
|
|
17
|
+
from wandelbots_api_client.models.abb_controller_egm_server import AbbControllerEgmServer
|
|
18
|
+
from wandelbots_api_client.models.activate_license_request import ActivateLicenseRequest
|
|
19
|
+
from wandelbots_api_client.models.add_request import AddRequest
|
|
20
|
+
from wandelbots_api_client.models.all_joint_positions_request import AllJointPositionsRequest
|
|
21
|
+
from wandelbots_api_client.models.all_joint_positions_response import AllJointPositionsResponse
|
|
22
|
+
from wandelbots_api_client.models.api_version import ApiVersion
|
|
23
|
+
from wandelbots_api_client.models.app import App
|
|
24
|
+
from wandelbots_api_client.models.array_input import ArrayInput
|
|
25
|
+
from wandelbots_api_client.models.array_output import ArrayOutput
|
|
26
|
+
from wandelbots_api_client.models.behavior import Behavior
|
|
27
|
+
from wandelbots_api_client.models.blending_auto import BlendingAuto
|
|
28
|
+
from wandelbots_api_client.models.blending_position import BlendingPosition
|
|
29
|
+
from wandelbots_api_client.models.box import Box
|
|
30
|
+
from wandelbots_api_client.models.box2 import Box2
|
|
31
|
+
from wandelbots_api_client.models.box3 import Box3
|
|
32
|
+
from wandelbots_api_client.models.capsule import Capsule
|
|
33
|
+
from wandelbots_api_client.models.capsule2 import Capsule2
|
|
34
|
+
from wandelbots_api_client.models.capsule3 import Capsule3
|
|
35
|
+
from wandelbots_api_client.models.capture import Capture
|
|
36
|
+
from wandelbots_api_client.models.cell import Cell
|
|
37
|
+
from wandelbots_api_client.models.circle import Circle
|
|
38
|
+
from wandelbots_api_client.models.code_with_arguments import CodeWithArguments
|
|
39
|
+
from wandelbots_api_client.models.collection_value import CollectionValue
|
|
40
|
+
from wandelbots_api_client.models.collider import Collider
|
|
41
|
+
from wandelbots_api_client.models.collider_input import ColliderInput
|
|
42
|
+
from wandelbots_api_client.models.collider_output import ColliderOutput
|
|
43
|
+
from wandelbots_api_client.models.collider_output_shape import ColliderOutputShape
|
|
44
|
+
from wandelbots_api_client.models.collider_shape import ColliderShape
|
|
45
|
+
from wandelbots_api_client.models.collision import Collision
|
|
46
|
+
from wandelbots_api_client.models.collision_contact import CollisionContact
|
|
47
|
+
from wandelbots_api_client.models.collision_motion_group import CollisionMotionGroup
|
|
48
|
+
from wandelbots_api_client.models.collision_motion_group_assembly import CollisionMotionGroupAssembly
|
|
49
|
+
from wandelbots_api_client.models.collision_robot_configuration_input import CollisionRobotConfigurationInput
|
|
50
|
+
from wandelbots_api_client.models.collision_robot_configuration_output import CollisionRobotConfigurationOutput
|
|
51
|
+
from wandelbots_api_client.models.collision_scene import CollisionScene
|
|
52
|
+
from wandelbots_api_client.models.collision_scene_assembly import CollisionSceneAssembly
|
|
53
|
+
from wandelbots_api_client.models.command import Command
|
|
54
|
+
from wandelbots_api_client.models.command_settings import CommandSettings
|
|
55
|
+
from wandelbots_api_client.models.comparator import Comparator
|
|
56
|
+
from wandelbots_api_client.models.compound import Compound
|
|
57
|
+
from wandelbots_api_client.models.container_environment_inner import ContainerEnvironmentInner
|
|
58
|
+
from wandelbots_api_client.models.container_image import ContainerImage
|
|
59
|
+
from wandelbots_api_client.models.container_image_secrets_inner import ContainerImageSecretsInner
|
|
60
|
+
from wandelbots_api_client.models.container_resources import ContainerResources
|
|
61
|
+
from wandelbots_api_client.models.container_storage import ContainerStorage
|
|
62
|
+
from wandelbots_api_client.models.controller_capabilities import ControllerCapabilities
|
|
63
|
+
from wandelbots_api_client.models.controller_instance import ControllerInstance
|
|
64
|
+
from wandelbots_api_client.models.controller_instance_list import ControllerInstanceList
|
|
65
|
+
from wandelbots_api_client.models.convex_hull import ConvexHull
|
|
66
|
+
from wandelbots_api_client.models.convex_hull2 import ConvexHull2
|
|
67
|
+
from wandelbots_api_client.models.convex_hull3 import ConvexHull3
|
|
68
|
+
from wandelbots_api_client.models.coordinate_system import CoordinateSystem
|
|
69
|
+
from wandelbots_api_client.models.coordinate_systems import CoordinateSystems
|
|
70
|
+
from wandelbots_api_client.models.create_program_run200_response import CreateProgramRun200Response
|
|
71
|
+
from wandelbots_api_client.models.create_program_run_request import CreateProgramRunRequest
|
|
72
|
+
from wandelbots_api_client.models.create_trigger200_response import CreateTrigger200Response
|
|
73
|
+
from wandelbots_api_client.models.create_trigger_request import CreateTriggerRequest
|
|
74
|
+
from wandelbots_api_client.models.cubic_spline import CubicSpline
|
|
75
|
+
from wandelbots_api_client.models.cubic_spline_cubic_spline_parameter import CubicSplineCubicSplineParameter
|
|
76
|
+
from wandelbots_api_client.models.cubic_spline_parameter import CubicSplineParameter
|
|
77
|
+
from wandelbots_api_client.models.cycle_time import CycleTime
|
|
78
|
+
from wandelbots_api_client.models.cylinder import Cylinder
|
|
79
|
+
from wandelbots_api_client.models.cylinder2 import Cylinder2
|
|
80
|
+
from wandelbots_api_client.models.cylinder3 import Cylinder3
|
|
81
|
+
from wandelbots_api_client.models.dh_parameter import DHParameter
|
|
82
|
+
from wandelbots_api_client.models.devices_inner import DevicesInner
|
|
83
|
+
from wandelbots_api_client.models.direction import Direction
|
|
84
|
+
from wandelbots_api_client.models.direction_jogging_request import DirectionJoggingRequest
|
|
85
|
+
from wandelbots_api_client.models.error import Error
|
|
86
|
+
from wandelbots_api_client.models.execute_trajectory_request import ExecuteTrajectoryRequest
|
|
87
|
+
from wandelbots_api_client.models.execute_trajectory_response import ExecuteTrajectoryResponse
|
|
88
|
+
from wandelbots_api_client.models.execution_result import ExecutionResult
|
|
89
|
+
from wandelbots_api_client.models.external_joint_stream_datapoint import ExternalJointStreamDatapoint
|
|
90
|
+
from wandelbots_api_client.models.external_joint_stream_datapoint_value import ExternalJointStreamDatapointValue
|
|
91
|
+
from wandelbots_api_client.models.fanuc_controller import FanucController
|
|
92
|
+
from wandelbots_api_client.models.feedback_collision import FeedbackCollision
|
|
93
|
+
from wandelbots_api_client.models.feedback_joint_limit_exceeded import FeedbackJointLimitExceeded
|
|
94
|
+
from wandelbots_api_client.models.feedback_out_of_workspace import FeedbackOutOfWorkspace
|
|
95
|
+
from wandelbots_api_client.models.feedback_singularity import FeedbackSingularity
|
|
96
|
+
from wandelbots_api_client.models.flag import Flag
|
|
97
|
+
from wandelbots_api_client.models.force_vector import ForceVector
|
|
98
|
+
from wandelbots_api_client.models.geometry import Geometry
|
|
99
|
+
from wandelbots_api_client.models.get_all_program_runs200_response import GetAllProgramRuns200Response
|
|
100
|
+
from wandelbots_api_client.models.get_all_triggers200_response import GetAllTriggers200Response
|
|
101
|
+
from wandelbots_api_client.models.get_mode_response import GetModeResponse
|
|
102
|
+
from wandelbots_api_client.models.get_trajectory_response import GetTrajectoryResponse
|
|
103
|
+
from wandelbots_api_client.models.get_trajectory_sample_response import GetTrajectorySampleResponse
|
|
104
|
+
from wandelbots_api_client.models.google_protobuf_any import GoogleProtobufAny
|
|
105
|
+
from wandelbots_api_client.models.http_exception_response import HTTPExceptionResponse
|
|
106
|
+
from wandelbots_api_client.models.http_validation_error import HTTPValidationError
|
|
107
|
+
from wandelbots_api_client.models.http_validation_error2 import HTTPValidationError2
|
|
108
|
+
from wandelbots_api_client.models.io import IO
|
|
109
|
+
from wandelbots_api_client.models.io_description import IODescription
|
|
110
|
+
from wandelbots_api_client.models.io_value import IOValue
|
|
111
|
+
from wandelbots_api_client.models.ios import IOs
|
|
112
|
+
from wandelbots_api_client.models.image_credentials import ImageCredentials
|
|
113
|
+
from wandelbots_api_client.models.info_service_capabilities import InfoServiceCapabilities
|
|
114
|
+
from wandelbots_api_client.models.initialize_movement_request import InitializeMovementRequest
|
|
115
|
+
from wandelbots_api_client.models.initialize_movement_response import InitializeMovementResponse
|
|
116
|
+
from wandelbots_api_client.models.initialize_movement_response_init_response import InitializeMovementResponseInitResponse
|
|
117
|
+
from wandelbots_api_client.models.jogging_response import JoggingResponse
|
|
118
|
+
from wandelbots_api_client.models.jogging_service_capabilities import JoggingServiceCapabilities
|
|
119
|
+
from wandelbots_api_client.models.joint_jogging_request import JointJoggingRequest
|
|
120
|
+
from wandelbots_api_client.models.joint_limit import JointLimit
|
|
121
|
+
from wandelbots_api_client.models.joint_limit_exceeded import JointLimitExceeded
|
|
122
|
+
from wandelbots_api_client.models.joint_position_request import JointPositionRequest
|
|
123
|
+
from wandelbots_api_client.models.joint_trajectory import JointTrajectory
|
|
124
|
+
from wandelbots_api_client.models.joints import Joints
|
|
125
|
+
from wandelbots_api_client.models.kinematic_service_capabilities import KinematicServiceCapabilities
|
|
126
|
+
from wandelbots_api_client.models.kuka_controller import KukaController
|
|
127
|
+
from wandelbots_api_client.models.kuka_controller_rsi_server import KukaControllerRsiServer
|
|
128
|
+
from wandelbots_api_client.models.license import License
|
|
129
|
+
from wandelbots_api_client.models.license_status import LicenseStatus
|
|
130
|
+
from wandelbots_api_client.models.license_status_enum import LicenseStatusEnum
|
|
131
|
+
from wandelbots_api_client.models.limit_settings import LimitSettings
|
|
132
|
+
from wandelbots_api_client.models.limits_override import LimitsOverride
|
|
133
|
+
from wandelbots_api_client.models.list_io_descriptions_response import ListIODescriptionsResponse
|
|
134
|
+
from wandelbots_api_client.models.list_io_values_response import ListIOValuesResponse
|
|
135
|
+
from wandelbots_api_client.models.list_payloads_response import ListPayloadsResponse
|
|
136
|
+
from wandelbots_api_client.models.list_program_metadata_response import ListProgramMetadataResponse
|
|
137
|
+
from wandelbots_api_client.models.list_recipe_metadata_response import ListRecipeMetadataResponse
|
|
138
|
+
from wandelbots_api_client.models.list_response import ListResponse
|
|
139
|
+
from wandelbots_api_client.models.list_tcps_response import ListTcpsResponse
|
|
140
|
+
from wandelbots_api_client.models.location_inner import LocationInner
|
|
141
|
+
from wandelbots_api_client.models.location_inner1 import LocationInner1
|
|
142
|
+
from wandelbots_api_client.models.manufacturer import Manufacturer
|
|
143
|
+
from wandelbots_api_client.models.mode_change_response import ModeChangeResponse
|
|
144
|
+
from wandelbots_api_client.models.motion_command import MotionCommand
|
|
145
|
+
from wandelbots_api_client.models.motion_command_blending import MotionCommandBlending
|
|
146
|
+
from wandelbots_api_client.models.motion_command_path import MotionCommandPath
|
|
147
|
+
from wandelbots_api_client.models.motion_group_behavior_getter import MotionGroupBehaviorGetter
|
|
148
|
+
from wandelbots_api_client.models.motion_group_info import MotionGroupInfo
|
|
149
|
+
from wandelbots_api_client.models.motion_group_infos import MotionGroupInfos
|
|
150
|
+
from wandelbots_api_client.models.motion_group_instance import MotionGroupInstance
|
|
151
|
+
from wandelbots_api_client.models.motion_group_instance_list import MotionGroupInstanceList
|
|
152
|
+
from wandelbots_api_client.models.motion_group_joints import MotionGroupJoints
|
|
153
|
+
from wandelbots_api_client.models.motion_group_physical import MotionGroupPhysical
|
|
154
|
+
from wandelbots_api_client.models.motion_group_specification import MotionGroupSpecification
|
|
155
|
+
from wandelbots_api_client.models.motion_group_state import MotionGroupState
|
|
156
|
+
from wandelbots_api_client.models.motion_group_state_joint_limit_reached import MotionGroupStateJointLimitReached
|
|
157
|
+
from wandelbots_api_client.models.motion_group_state_response import MotionGroupStateResponse
|
|
158
|
+
from wandelbots_api_client.models.motion_id import MotionId
|
|
159
|
+
from wandelbots_api_client.models.motion_ids_list_response import MotionIdsListResponse
|
|
160
|
+
from wandelbots_api_client.models.motion_vector import MotionVector
|
|
161
|
+
from wandelbots_api_client.models.mounting import Mounting
|
|
162
|
+
from wandelbots_api_client.models.move_request import MoveRequest
|
|
163
|
+
from wandelbots_api_client.models.move_response import MoveResponse
|
|
164
|
+
from wandelbots_api_client.models.move_to_trajectory_via_joint_ptp_request import MoveToTrajectoryViaJointPTPRequest
|
|
165
|
+
from wandelbots_api_client.models.movement import Movement
|
|
166
|
+
from wandelbots_api_client.models.movement_error import MovementError
|
|
167
|
+
from wandelbots_api_client.models.movement_error_error import MovementErrorError
|
|
168
|
+
from wandelbots_api_client.models.movement_movement import MovementMovement
|
|
169
|
+
from wandelbots_api_client.models.op_mode import OpMode
|
|
170
|
+
from wandelbots_api_client.models.opcua_node_value_trigger_config import OpcuaNodeValueTriggerConfig
|
|
171
|
+
from wandelbots_api_client.models.opcua_node_value_trigger_config_node_value import OpcuaNodeValueTriggerConfigNodeValue
|
|
172
|
+
from wandelbots_api_client.models.optimizer_setup import OptimizerSetup
|
|
173
|
+
from wandelbots_api_client.models.out_of_workspace import OutOfWorkspace
|
|
174
|
+
from wandelbots_api_client.models.path import Path
|
|
175
|
+
from wandelbots_api_client.models.path_cartesian_ptp import PathCartesianPTP
|
|
176
|
+
from wandelbots_api_client.models.path_circle import PathCircle
|
|
177
|
+
from wandelbots_api_client.models.path_cubic_spline import PathCubicSpline
|
|
178
|
+
from wandelbots_api_client.models.path_joint_ptp import PathJointPTP
|
|
179
|
+
from wandelbots_api_client.models.path_line import PathLine
|
|
180
|
+
from wandelbots_api_client.models.pause_movement_request import PauseMovementRequest
|
|
181
|
+
from wandelbots_api_client.models.pause_movement_response import PauseMovementResponse
|
|
182
|
+
from wandelbots_api_client.models.pause_movement_response_pause_response import PauseMovementResponsePauseResponse
|
|
183
|
+
from wandelbots_api_client.models.pause_on_io import PauseOnIO
|
|
184
|
+
from wandelbots_api_client.models.payload import Payload
|
|
185
|
+
from wandelbots_api_client.models.plan_collision_free_ptp_request import PlanCollisionFreePTPRequest
|
|
186
|
+
from wandelbots_api_client.models.plan_collision_free_ptp_request_target import PlanCollisionFreePTPRequestTarget
|
|
187
|
+
from wandelbots_api_client.models.plan_failed_on_trajectory_response import PlanFailedOnTrajectoryResponse
|
|
188
|
+
from wandelbots_api_client.models.plan_failed_response import PlanFailedResponse
|
|
189
|
+
from wandelbots_api_client.models.plan_request import PlanRequest
|
|
190
|
+
from wandelbots_api_client.models.plan_response import PlanResponse
|
|
191
|
+
from wandelbots_api_client.models.plan_successful_response import PlanSuccessfulResponse
|
|
192
|
+
from wandelbots_api_client.models.plan_trajectory_failed_response import PlanTrajectoryFailedResponse
|
|
193
|
+
from wandelbots_api_client.models.plan_trajectory_failed_response_error_feedback import PlanTrajectoryFailedResponseErrorFeedback
|
|
194
|
+
from wandelbots_api_client.models.plan_trajectory_request import PlanTrajectoryRequest
|
|
195
|
+
from wandelbots_api_client.models.plan_trajectory_response import PlanTrajectoryResponse
|
|
196
|
+
from wandelbots_api_client.models.plan_trajectory_response_response import PlanTrajectoryResponseResponse
|
|
197
|
+
from wandelbots_api_client.models.plane2 import Plane2
|
|
198
|
+
from wandelbots_api_client.models.plane3 import Plane3
|
|
199
|
+
from wandelbots_api_client.models.planned_motion import PlannedMotion
|
|
200
|
+
from wandelbots_api_client.models.planner_pose import PlannerPose
|
|
201
|
+
from wandelbots_api_client.models.planning_limits import PlanningLimits
|
|
202
|
+
from wandelbots_api_client.models.planning_limits_limit_range import PlanningLimitsLimitRange
|
|
203
|
+
from wandelbots_api_client.models.playback_speed_request import PlaybackSpeedRequest
|
|
204
|
+
from wandelbots_api_client.models.playback_speed_response import PlaybackSpeedResponse
|
|
205
|
+
from wandelbots_api_client.models.playback_speed_response_playback_speed_response import PlaybackSpeedResponsePlaybackSpeedResponse
|
|
206
|
+
from wandelbots_api_client.models.point_cloud import PointCloud
|
|
207
|
+
from wandelbots_api_client.models.pose import Pose
|
|
208
|
+
from wandelbots_api_client.models.pose2 import Pose2
|
|
209
|
+
from wandelbots_api_client.models.program_metadata import ProgramMetadata
|
|
210
|
+
from wandelbots_api_client.models.program_run import ProgramRun
|
|
211
|
+
from wandelbots_api_client.models.program_run_object import ProgramRunObject
|
|
212
|
+
from wandelbots_api_client.models.program_run_state import ProgramRunState
|
|
213
|
+
from wandelbots_api_client.models.program_runner_reference import ProgramRunnerReference
|
|
214
|
+
from wandelbots_api_client.models.pyjectory_datatypes_core_pose import PyjectoryDatatypesCorePose
|
|
215
|
+
from wandelbots_api_client.models.pyjectory_datatypes_serializer_orientation import PyjectoryDatatypesSerializerOrientation
|
|
216
|
+
from wandelbots_api_client.models.pyjectory_datatypes_serializer_pose import PyjectoryDatatypesSerializerPose
|
|
217
|
+
from wandelbots_api_client.models.pyjectory_datatypes_serializer_position import PyjectoryDatatypesSerializerPosition
|
|
218
|
+
from wandelbots_api_client.models.pyriphery_etcd_etcd_configuration import PyripheryEtcdETCDConfiguration
|
|
219
|
+
from wandelbots_api_client.models.pyriphery_hardware_isaac_isaac_configuration import PyripheryHardwareIsaacIsaacConfiguration
|
|
220
|
+
from wandelbots_api_client.models.pyriphery_opcua_opcua_configuration import PyripheryOpcuaOPCUAConfiguration
|
|
221
|
+
from wandelbots_api_client.models.pyriphery_pyrae_controller_controller_configuration import PyripheryPyraeControllerControllerConfiguration
|
|
222
|
+
from wandelbots_api_client.models.pyriphery_pyrae_robot_robot_configuration import PyripheryPyraeRobotRobotConfiguration
|
|
223
|
+
from wandelbots_api_client.models.pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input import (
|
|
224
|
+
PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationInput,
|
|
225
|
+
)
|
|
226
|
+
from wandelbots_api_client.models.pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output import (
|
|
227
|
+
PyripheryRoboticsConfigurableCollisionSceneConfigurableCollisionSceneConfigurationOutput,
|
|
228
|
+
)
|
|
229
|
+
from wandelbots_api_client.models.pyriphery_robotics_robotcell_timer_configuration import PyripheryRoboticsRobotcellTimerConfiguration
|
|
230
|
+
from wandelbots_api_client.models.pyriphery_robotics_simulation_robot_with_view_open3d_configuration import (
|
|
231
|
+
PyripheryRoboticsSimulationRobotWithViewOpen3dConfiguration,
|
|
232
|
+
)
|
|
233
|
+
from wandelbots_api_client.models.pyriphery_robotics_simulation_simulated_io_configuration import (
|
|
234
|
+
PyripheryRoboticsSimulationSimulatedIOConfiguration,
|
|
235
|
+
)
|
|
236
|
+
from wandelbots_api_client.models.pyriphery_robotics_simulation_simulated_opcua_configuration import (
|
|
237
|
+
PyripheryRoboticsSimulationSimulatedOPCUAConfiguration,
|
|
238
|
+
)
|
|
239
|
+
from wandelbots_api_client.models.quaternion import Quaternion
|
|
240
|
+
from wandelbots_api_client.models.recipe_metadata import RecipeMetadata
|
|
241
|
+
from wandelbots_api_client.models.rectangle import Rectangle
|
|
242
|
+
from wandelbots_api_client.models.rectangle2 import Rectangle2
|
|
243
|
+
from wandelbots_api_client.models.rectangle3 import Rectangle3
|
|
244
|
+
from wandelbots_api_client.models.rectangular_capsule import RectangularCapsule
|
|
245
|
+
from wandelbots_api_client.models.rectangular_capsule2 import RectangularCapsule2
|
|
246
|
+
from wandelbots_api_client.models.rectangular_capsule3 import RectangularCapsule3
|
|
247
|
+
from wandelbots_api_client.models.release_channel import ReleaseChannel
|
|
248
|
+
from wandelbots_api_client.models.request import Request
|
|
249
|
+
from wandelbots_api_client.models.request1 import Request1
|
|
250
|
+
from wandelbots_api_client.models.response_get_devices_devices_get_inner import ResponseGetDevicesDevicesGetInner
|
|
251
|
+
from wandelbots_api_client.models.response_get_value_programs_values_key_get import ResponseGetValueProgramsValuesKeyGet
|
|
252
|
+
from wandelbots_api_client.models.response_get_values_programs_values_get_value import ResponseGetValuesProgramsValuesGetValue
|
|
253
|
+
from wandelbots_api_client.models.robot_controller import RobotController
|
|
254
|
+
from wandelbots_api_client.models.robot_controller_configuration import RobotControllerConfiguration
|
|
255
|
+
from wandelbots_api_client.models.robot_controller_state import RobotControllerState
|
|
256
|
+
from wandelbots_api_client.models.robot_link_geometry import RobotLinkGeometry
|
|
257
|
+
from wandelbots_api_client.models.robot_state import RobotState
|
|
258
|
+
from wandelbots_api_client.models.robot_system_mode import RobotSystemMode
|
|
259
|
+
from wandelbots_api_client.models.robot_tcp import RobotTcp
|
|
260
|
+
from wandelbots_api_client.models.robot_tcps import RobotTcps
|
|
261
|
+
from wandelbots_api_client.models.rotation_angle_types import RotationAngleTypes
|
|
262
|
+
from wandelbots_api_client.models.rotation_angles import RotationAngles
|
|
263
|
+
from wandelbots_api_client.models.safety_configuration import SafetyConfiguration
|
|
264
|
+
from wandelbots_api_client.models.safety_setup import SafetySetup
|
|
265
|
+
from wandelbots_api_client.models.safety_setup_safety_settings import SafetySetupSafetySettings
|
|
266
|
+
from wandelbots_api_client.models.safety_setup_safety_zone import SafetySetupSafetyZone
|
|
267
|
+
from wandelbots_api_client.models.safety_zone import SafetyZone
|
|
268
|
+
from wandelbots_api_client.models.safety_zone_limits import SafetyZoneLimits
|
|
269
|
+
from wandelbots_api_client.models.safety_zone_violation import SafetyZoneViolation
|
|
270
|
+
from wandelbots_api_client.models.service_status import ServiceStatus
|
|
271
|
+
from wandelbots_api_client.models.service_status_phase import ServiceStatusPhase
|
|
272
|
+
from wandelbots_api_client.models.service_status_severity import ServiceStatusSeverity
|
|
273
|
+
from wandelbots_api_client.models.service_status_status import ServiceStatusStatus
|
|
274
|
+
from wandelbots_api_client.models.set_io import SetIO
|
|
275
|
+
from wandelbots_api_client.models.set_playback_speed import SetPlaybackSpeed
|
|
276
|
+
from wandelbots_api_client.models.single_joint_limit import SingleJointLimit
|
|
277
|
+
from wandelbots_api_client.models.singularity import Singularity
|
|
278
|
+
from wandelbots_api_client.models.singularity_type_enum import SingularityTypeEnum
|
|
279
|
+
from wandelbots_api_client.models.sphere import Sphere
|
|
280
|
+
from wandelbots_api_client.models.sphere2 import Sphere2
|
|
281
|
+
from wandelbots_api_client.models.sphere3 import Sphere3
|
|
282
|
+
from wandelbots_api_client.models.standstill import Standstill
|
|
283
|
+
from wandelbots_api_client.models.standstill_reason import StandstillReason
|
|
284
|
+
from wandelbots_api_client.models.standstill_standstill import StandstillStandstill
|
|
285
|
+
from wandelbots_api_client.models.start_movement_request import StartMovementRequest
|
|
286
|
+
from wandelbots_api_client.models.start_on_io import StartOnIO
|
|
287
|
+
from wandelbots_api_client.models.status import Status
|
|
288
|
+
from wandelbots_api_client.models.stop_response import StopResponse
|
|
289
|
+
from wandelbots_api_client.models.store_value import StoreValue
|
|
290
|
+
from wandelbots_api_client.models.stream_move_backward import StreamMoveBackward
|
|
291
|
+
from wandelbots_api_client.models.stream_move_forward import StreamMoveForward
|
|
292
|
+
from wandelbots_api_client.models.stream_move_playback_speed import StreamMovePlaybackSpeed
|
|
293
|
+
from wandelbots_api_client.models.stream_move_request import StreamMoveRequest
|
|
294
|
+
from wandelbots_api_client.models.stream_move_response import StreamMoveResponse
|
|
295
|
+
from wandelbots_api_client.models.stream_move_to_trajectory import StreamMoveToTrajectory
|
|
296
|
+
from wandelbots_api_client.models.stream_stop import StreamStop
|
|
297
|
+
from wandelbots_api_client.models.tcp_pose import TcpPose
|
|
298
|
+
from wandelbots_api_client.models.tcp_pose_request import TcpPoseRequest
|
|
299
|
+
from wandelbots_api_client.models.tool_geometry import ToolGeometry
|
|
300
|
+
from wandelbots_api_client.models.trajectory_sample import TrajectorySample
|
|
301
|
+
from wandelbots_api_client.models.trigger_object import TriggerObject
|
|
302
|
+
from wandelbots_api_client.models.trigger_type import TriggerType
|
|
303
|
+
from wandelbots_api_client.models.universalrobots_controller import UniversalrobotsController
|
|
304
|
+
from wandelbots_api_client.models.update_nova_version_request import UpdateNovaVersionRequest
|
|
305
|
+
from wandelbots_api_client.models.update_program_metadata_request import UpdateProgramMetadataRequest
|
|
306
|
+
from wandelbots_api_client.models.update_recipe_metadata_request import UpdateRecipeMetadataRequest
|
|
307
|
+
from wandelbots_api_client.models.update_trigger_request import UpdateTriggerRequest
|
|
308
|
+
from wandelbots_api_client.models.validation_error import ValidationError
|
|
309
|
+
from wandelbots_api_client.models.validation_error2 import ValidationError2
|
|
310
|
+
from wandelbots_api_client.models.value import Value
|
|
311
|
+
from wandelbots_api_client.models.vector3d import Vector3d
|
|
312
|
+
from wandelbots_api_client.models.version_number import VersionNumber
|
|
313
|
+
from wandelbots_api_client.models.virtual_controller import VirtualController
|
|
314
|
+
from wandelbots_api_client.models.virtual_controller_types import VirtualControllerTypes
|
|
315
|
+
from wandelbots_api_client.models.virtual_robot_configuration import VirtualRobotConfiguration
|
|
316
|
+
from wandelbots_api_client.models.yaskawa_controller import YaskawaController
|
|
@@ -0,0 +1,112 @@
|
|
|
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, StrictInt, StrictStr, field_validator
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from wandelbots_api_client.models.abb_controller_egm_server import AbbControllerEgmServer
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class AbbController(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
The configuration of a physical ABB robot controller has to contain IP address. Additionally an EGM server configuration has to be specified in order to control the robot. Deploying the server is a functionality of this API.
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
|
|
31
|
+
kind: str = "AbbController"
|
|
32
|
+
controller_ip: StrictStr = Field(alias="controllerIp")
|
|
33
|
+
controller_port: StrictInt = Field(
|
|
34
|
+
description="Default values: 80, 443. If custom value is set, field is required. ", alias="controllerPort"
|
|
35
|
+
)
|
|
36
|
+
egm_server: AbbControllerEgmServer = Field(alias="egmServer")
|
|
37
|
+
__properties: ClassVar[List[str]] = ["kind", "controllerIp", "controllerPort", "egmServer"]
|
|
38
|
+
|
|
39
|
+
@field_validator("kind")
|
|
40
|
+
def kind_validate_enum(cls, value):
|
|
41
|
+
"""Validates the enum"""
|
|
42
|
+
if value is None:
|
|
43
|
+
return value
|
|
44
|
+
|
|
45
|
+
if value not in set(["AbbController"]):
|
|
46
|
+
raise ValueError("must be one of enum values ('AbbController')")
|
|
47
|
+
return value
|
|
48
|
+
|
|
49
|
+
model_config = ConfigDict(
|
|
50
|
+
populate_by_name=True,
|
|
51
|
+
validate_assignment=True,
|
|
52
|
+
protected_namespaces=(),
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
def to_str(self) -> str:
|
|
56
|
+
"""Returns the string representation of the model using alias"""
|
|
57
|
+
return pprint.pformat(self.model_dump(by_alias=True, exclude_none=True))
|
|
58
|
+
|
|
59
|
+
def to_json(self) -> str:
|
|
60
|
+
"""
|
|
61
|
+
Returns the JSON representation of the model using alias
|
|
62
|
+
|
|
63
|
+
Do not use pydantic v2 .model_dump_json(by_alias=True, exclude_unset=True) here!
|
|
64
|
+
It is unable to resolve nested types generated by openapi-generator.
|
|
65
|
+
"""
|
|
66
|
+
return json.dumps(self.to_dict())
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
70
|
+
"""Create an instance of AbbController from a JSON string"""
|
|
71
|
+
return cls.from_dict(json.loads(json_str))
|
|
72
|
+
|
|
73
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
74
|
+
"""Return the dictionary representation of the model using alias.
|
|
75
|
+
|
|
76
|
+
This has the following differences from calling pydantic's
|
|
77
|
+
`self.model_dump(by_alias=True)`:
|
|
78
|
+
|
|
79
|
+
* `None` is only added to the output dict for nullable fields that
|
|
80
|
+
were set at model initialization. Other fields with value `None`
|
|
81
|
+
are ignored.
|
|
82
|
+
"""
|
|
83
|
+
excluded_fields: Set[str] = set([])
|
|
84
|
+
|
|
85
|
+
_dict = self.model_dump(
|
|
86
|
+
by_alias=True,
|
|
87
|
+
exclude=excluded_fields,
|
|
88
|
+
exclude_none=True,
|
|
89
|
+
)
|
|
90
|
+
# override the default output from pydantic by calling `to_dict()` of egm_server
|
|
91
|
+
if self.egm_server:
|
|
92
|
+
_dict["egmServer"] = self.egm_server.to_dict()
|
|
93
|
+
return _dict
|
|
94
|
+
|
|
95
|
+
@classmethod
|
|
96
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
97
|
+
"""Create an instance of AbbController from a dict"""
|
|
98
|
+
if obj is None:
|
|
99
|
+
return None
|
|
100
|
+
|
|
101
|
+
if not isinstance(obj, dict):
|
|
102
|
+
return cls.model_validate(obj)
|
|
103
|
+
|
|
104
|
+
_obj = cls.model_validate(
|
|
105
|
+
{
|
|
106
|
+
"kind": obj.get("kind") if obj.get("kind") is not None else "AbbController",
|
|
107
|
+
"controllerIp": obj.get("controllerIp"),
|
|
108
|
+
"controllerPort": obj.get("controllerPort") if obj.get("controllerPort") is not None else 80,
|
|
109
|
+
"egmServer": AbbControllerEgmServer.from_dict(obj["egmServer"]) if obj.get("egmServer") is not None else None,
|
|
110
|
+
}
|
|
111
|
+
)
|
|
112
|
+
return _obj
|