wandelbots-api-client 25.6.0.dev7__py3-none-any.whl → 25.10.0rc2__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 +2 -3
- wandelbots_api_client/api/__init__.py +2 -0
- wandelbots_api_client/api/application_api.py +1 -2
- wandelbots_api_client/api/cell_api.py +1 -2
- wandelbots_api_client/api/controller_api.py +13 -8
- wandelbots_api_client/api/controller_ios_api.py +3 -6
- wandelbots_api_client/api/coordinate_systems_api.py +1 -2
- wandelbots_api_client/api/device_configuration_api.py +1 -2
- wandelbots_api_client/api/library_program_api.py +1 -2
- wandelbots_api_client/api/library_program_metadata_api.py +1 -2
- wandelbots_api_client/api/library_recipe_api.py +1 -2
- wandelbots_api_client/api/library_recipe_metadata_api.py +1 -2
- wandelbots_api_client/api/license_api.py +1 -2
- wandelbots_api_client/api/motion_api.py +59 -8
- wandelbots_api_client/api/motion_group_api.py +1 -2
- wandelbots_api_client/api/motion_group_infos_api.py +3 -2
- wandelbots_api_client/api/motion_group_jogging_api.py +53 -8
- wandelbots_api_client/api/motion_group_kinematic_api.py +1 -2
- wandelbots_api_client/api/program_api.py +1 -2
- wandelbots_api_client/api/program_operator_api.py +1 -2
- wandelbots_api_client/api/program_values_api.py +1 -2
- wandelbots_api_client/api/store_collision_components_api.py +10 -8
- wandelbots_api_client/api/store_collision_scenes_api.py +1 -2
- wandelbots_api_client/api/store_object_api.py +1 -2
- wandelbots_api_client/api/system_api.py +1 -2
- wandelbots_api_client/api/version_api.py +284 -0
- wandelbots_api_client/api/virtual_robot_api.py +1 -2
- wandelbots_api_client/api/virtual_robot_behavior_api.py +27 -5
- wandelbots_api_client/api/virtual_robot_mode_api.py +1 -2
- wandelbots_api_client/api/virtual_robot_setup_api.py +16 -17
- wandelbots_api_client/api_client.py +14 -7
- wandelbots_api_client/authorization.py +244 -0
- wandelbots_api_client/configuration.py +18 -7
- wandelbots_api_client/exceptions.py +1 -1
- wandelbots_api_client/models/__init__.py +3 -4
- wandelbots_api_client/models/abb_controller.py +5 -5
- wandelbots_api_client/models/abb_controller_egm_server.py +3 -3
- wandelbots_api_client/models/activate_license_request.py +2 -2
- wandelbots_api_client/models/add_request.py +3 -3
- wandelbots_api_client/models/all_joint_positions_request.py +3 -3
- wandelbots_api_client/models/all_joint_positions_response.py +2 -2
- wandelbots_api_client/{v2/models/error2.py → models/api_version.py} +10 -10
- wandelbots_api_client/models/app.py +8 -8
- wandelbots_api_client/models/array_input.py +2 -2
- wandelbots_api_client/models/array_output.py +2 -2
- wandelbots_api_client/models/behavior.py +1 -1
- wandelbots_api_client/models/blending_auto.py +3 -3
- wandelbots_api_client/models/blending_position.py +3 -3
- wandelbots_api_client/models/box.py +5 -5
- wandelbots_api_client/models/box2.py +6 -6
- wandelbots_api_client/models/box3.py +6 -6
- wandelbots_api_client/models/capsule.py +3 -3
- wandelbots_api_client/models/capsule2.py +4 -4
- wandelbots_api_client/models/capsule3.py +4 -4
- wandelbots_api_client/models/capture.py +2 -2
- wandelbots_api_client/models/cell.py +4 -4
- wandelbots_api_client/models/circle.py +3 -3
- wandelbots_api_client/models/code_with_arguments.py +7 -6
- wandelbots_api_client/models/collection_value.py +1 -1
- wandelbots_api_client/models/collider.py +4 -4
- wandelbots_api_client/models/collider_input.py +4 -4
- wandelbots_api_client/models/collider_output.py +4 -4
- wandelbots_api_client/models/collider_output_shape.py +1 -1
- wandelbots_api_client/models/collider_shape.py +1 -41
- wandelbots_api_client/models/collision.py +7 -7
- wandelbots_api_client/models/collision_contact.py +3 -3
- wandelbots_api_client/models/collision_motion_group.py +7 -6
- wandelbots_api_client/models/collision_motion_group_assembly.py +9 -8
- wandelbots_api_client/models/collision_robot_configuration_input.py +12 -10
- wandelbots_api_client/models/collision_robot_configuration_output.py +12 -10
- wandelbots_api_client/models/collision_scene.py +11 -9
- wandelbots_api_client/models/collision_scene_assembly.py +14 -12
- wandelbots_api_client/models/command.py +7 -7
- wandelbots_api_client/models/command_settings.py +4 -4
- wandelbots_api_client/models/comparator.py +1 -1
- wandelbots_api_client/models/compound.py +2 -2
- wandelbots_api_client/models/container_environment_inner.py +3 -3
- wandelbots_api_client/models/container_image.py +4 -4
- wandelbots_api_client/models/container_image_secrets_inner.py +2 -2
- wandelbots_api_client/models/container_resources.py +2 -2
- wandelbots_api_client/models/container_storage.py +3 -3
- wandelbots_api_client/models/controller_capabilities.py +3 -3
- wandelbots_api_client/models/controller_instance.py +9 -9
- wandelbots_api_client/models/controller_instance_list.py +2 -2
- wandelbots_api_client/models/convex_hull.py +2 -2
- wandelbots_api_client/models/convex_hull2.py +3 -3
- wandelbots_api_client/models/convex_hull3.py +3 -3
- wandelbots_api_client/models/coordinate_system.py +6 -6
- wandelbots_api_client/models/coordinate_systems.py +2 -2
- wandelbots_api_client/models/create_device_request_inner.py +1 -1
- wandelbots_api_client/models/create_program_run200_response.py +2 -2
- wandelbots_api_client/models/create_program_run_request.py +2 -2
- wandelbots_api_client/models/create_trigger200_response.py +2 -2
- wandelbots_api_client/models/create_trigger_request.py +7 -7
- wandelbots_api_client/models/cubic_spline.py +2 -2
- wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +3 -3
- wandelbots_api_client/models/cubic_spline_parameter.py +3 -3
- wandelbots_api_client/models/cycle_time.py +2 -2
- wandelbots_api_client/models/cylinder.py +3 -3
- wandelbots_api_client/models/cylinder2.py +4 -4
- wandelbots_api_client/models/cylinder3.py +4 -4
- wandelbots_api_client/models/dh_parameter.py +6 -6
- wandelbots_api_client/models/direction.py +1 -1
- wandelbots_api_client/models/direction_jogging_request.py +10 -10
- wandelbots_api_client/models/error.py +3 -3
- wandelbots_api_client/models/execute_trajectory_request.py +1 -1
- wandelbots_api_client/models/execute_trajectory_response.py +1 -1
- wandelbots_api_client/models/execution_result.py +4 -4
- wandelbots_api_client/models/external_joint_stream_datapoint.py +3 -3
- wandelbots_api_client/models/external_joint_stream_datapoint_value.py +5 -5
- wandelbots_api_client/models/fanuc_controller.py +3 -3
- wandelbots_api_client/models/feedback_collision.py +5 -5
- wandelbots_api_client/models/feedback_joint_limit_exceeded.py +4 -4
- wandelbots_api_client/models/feedback_out_of_workspace.py +3 -3
- wandelbots_api_client/models/feedback_singularity.py +4 -4
- wandelbots_api_client/models/flag.py +2 -2
- wandelbots_api_client/models/force_vector.py +4 -4
- wandelbots_api_client/models/geometry.py +12 -12
- wandelbots_api_client/models/get_all_program_runs200_response.py +2 -2
- wandelbots_api_client/models/get_all_triggers200_response.py +2 -2
- wandelbots_api_client/models/get_mode_response.py +2 -2
- wandelbots_api_client/models/get_trajectory_response.py +2 -2
- wandelbots_api_client/models/get_trajectory_sample_response.py +2 -2
- wandelbots_api_client/models/google_protobuf_any.py +2 -2
- wandelbots_api_client/models/http_exception_response.py +2 -2
- wandelbots_api_client/models/http_validation_error.py +2 -2
- wandelbots_api_client/models/http_validation_error2.py +2 -2
- wandelbots_api_client/models/image_credentials.py +4 -4
- wandelbots_api_client/models/info_service_capabilities.py +8 -8
- wandelbots_api_client/models/initialize_movement_request.py +6 -6
- wandelbots_api_client/models/initialize_movement_response.py +2 -2
- wandelbots_api_client/models/initialize_movement_response_init_response.py +3 -3
- wandelbots_api_client/models/io.py +6 -6
- wandelbots_api_client/models/io_description.py +10 -10
- wandelbots_api_client/models/io_value.py +5 -5
- wandelbots_api_client/models/ios.py +2 -2
- wandelbots_api_client/models/jogging_response.py +4 -4
- wandelbots_api_client/models/jogging_service_capabilities.py +3 -3
- wandelbots_api_client/models/joint_jogging_request.py +6 -6
- wandelbots_api_client/models/joint_limit.py +5 -5
- wandelbots_api_client/models/joint_limit_exceeded.py +3 -3
- wandelbots_api_client/models/joint_position_request.py +4 -4
- wandelbots_api_client/models/joint_trajectory.py +4 -4
- wandelbots_api_client/models/joints.py +2 -2
- wandelbots_api_client/models/kinematic_service_capabilities.py +4 -4
- wandelbots_api_client/models/kuka_controller.py +10 -8
- wandelbots_api_client/models/kuka_controller_rsi_server.py +3 -3
- wandelbots_api_client/models/license.py +11 -11
- wandelbots_api_client/models/license_status.py +3 -3
- wandelbots_api_client/models/license_status_enum.py +1 -1
- wandelbots_api_client/models/limit_settings.py +13 -13
- wandelbots_api_client/models/limits_override.py +7 -7
- wandelbots_api_client/models/list_devices200_response_inner.py +1 -1
- wandelbots_api_client/models/list_io_descriptions_response.py +2 -2
- wandelbots_api_client/models/list_io_values_response.py +2 -2
- wandelbots_api_client/models/list_payloads_response.py +2 -2
- wandelbots_api_client/models/list_program_metadata_response.py +2 -2
- wandelbots_api_client/models/list_recipe_metadata_response.py +2 -2
- wandelbots_api_client/models/list_response.py +2 -2
- wandelbots_api_client/models/list_tcps_response.py +2 -2
- wandelbots_api_client/models/manufacturer.py +1 -1
- wandelbots_api_client/models/mode_change_response.py +5 -5
- wandelbots_api_client/models/motion_command.py +4 -4
- wandelbots_api_client/models/motion_command_blending.py +1 -1
- wandelbots_api_client/models/motion_command_path.py +1 -1
- wandelbots_api_client/models/motion_group_behavior_getter.py +2 -2
- wandelbots_api_client/models/motion_group_info.py +4 -4
- wandelbots_api_client/models/motion_group_infos.py +2 -2
- wandelbots_api_client/models/motion_group_instance.py +6 -6
- wandelbots_api_client/models/motion_group_instance_list.py +2 -2
- wandelbots_api_client/models/motion_group_joints.py +5 -5
- wandelbots_api_client/models/motion_group_physical.py +6 -6
- wandelbots_api_client/models/motion_group_specification.py +3 -3
- wandelbots_api_client/models/motion_group_state.py +13 -13
- wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +2 -2
- wandelbots_api_client/models/motion_group_state_response.py +3 -3
- wandelbots_api_client/models/motion_id.py +2 -2
- wandelbots_api_client/models/motion_ids_list_response.py +2 -2
- wandelbots_api_client/models/motion_vector.py +4 -4
- wandelbots_api_client/models/mounting.py +3 -3
- wandelbots_api_client/models/move_request.py +9 -9
- wandelbots_api_client/models/move_response.py +3 -3
- wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +5 -5
- wandelbots_api_client/models/movement.py +2 -2
- wandelbots_api_client/models/movement_error.py +2 -2
- wandelbots_api_client/models/movement_error_error.py +2 -2
- wandelbots_api_client/models/movement_movement.py +4 -4
- wandelbots_api_client/models/op_mode.py +2 -2
- wandelbots_api_client/models/opcua_node_value_trigger_config.py +4 -4
- wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +1 -1
- wandelbots_api_client/models/optimizer_setup.py +8 -8
- wandelbots_api_client/models/out_of_workspace.py +2 -2
- wandelbots_api_client/models/path.py +2 -2
- wandelbots_api_client/models/path_cartesian_ptp.py +3 -3
- wandelbots_api_client/models/path_circle.py +4 -4
- wandelbots_api_client/models/path_cubic_spline.py +3 -3
- wandelbots_api_client/models/path_joint_ptp.py +3 -3
- wandelbots_api_client/models/path_line.py +3 -3
- wandelbots_api_client/models/pause_movement_request.py +3 -3
- wandelbots_api_client/models/pause_movement_response.py +2 -2
- wandelbots_api_client/models/pause_movement_response_pause_response.py +3 -3
- wandelbots_api_client/models/pause_on_io.py +3 -3
- wandelbots_api_client/models/payload.py +5 -5
- wandelbots_api_client/models/plan_collision_free_ptp_request.py +10 -9
- wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +1 -1
- wandelbots_api_client/models/plan_failed_on_trajectory_response.py +10 -10
- wandelbots_api_client/models/plan_failed_response.py +8 -8
- wandelbots_api_client/models/plan_request.py +6 -6
- wandelbots_api_client/models/plan_response.py +4 -4
- wandelbots_api_client/models/plan_successful_response.py +3 -3
- wandelbots_api_client/models/plan_trajectory_failed_response.py +4 -4
- wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +1 -1
- wandelbots_api_client/models/plan_trajectory_request.py +10 -9
- wandelbots_api_client/models/plan_trajectory_response.py +2 -2
- wandelbots_api_client/models/plan_trajectory_response_response.py +1 -1
- wandelbots_api_client/models/plane2.py +2 -2
- wandelbots_api_client/models/plane3.py +2 -2
- wandelbots_api_client/models/planned_motion.py +6 -6
- wandelbots_api_client/models/planner_pose.py +3 -3
- wandelbots_api_client/models/planning_limits.py +13 -13
- wandelbots_api_client/models/planning_limits_limit_range.py +3 -3
- wandelbots_api_client/models/playback_speed_request.py +3 -3
- wandelbots_api_client/models/playback_speed_response.py +2 -2
- wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +2 -2
- wandelbots_api_client/models/point_cloud.py +2 -2
- wandelbots_api_client/models/pose.py +4 -4
- wandelbots_api_client/models/pose2.py +3 -3
- wandelbots_api_client/models/program_metadata.py +7 -7
- wandelbots_api_client/models/program_run.py +15 -14
- wandelbots_api_client/models/program_run_object.py +7 -7
- wandelbots_api_client/models/program_run_state.py +1 -1
- wandelbots_api_client/models/program_runner_reference.py +3 -3
- wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +3 -3
- wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +2 -2
- wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +2 -2
- wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +2 -2
- wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +5 -5
- wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +5 -5
- wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +4 -4
- wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +7 -7
- wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +8 -8
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +13 -11
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +13 -11
- wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +3 -3
- wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +4 -4
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +3 -3
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +3 -3
- wandelbots_api_client/models/quaternion.py +5 -5
- wandelbots_api_client/models/recipe_metadata.py +8 -8
- wandelbots_api_client/models/rectangle.py +3 -3
- wandelbots_api_client/models/rectangle2.py +4 -4
- wandelbots_api_client/models/rectangle3.py +4 -4
- wandelbots_api_client/models/rectangular_capsule.py +4 -4
- wandelbots_api_client/models/rectangular_capsule2.py +5 -5
- wandelbots_api_client/models/rectangular_capsule3.py +5 -5
- wandelbots_api_client/models/release_channel.py +1 -1
- wandelbots_api_client/models/request.py +1 -1
- wandelbots_api_client/models/request1.py +1 -1
- wandelbots_api_client/models/response_get_value_programs_values_key_get.py +1 -1
- wandelbots_api_client/models/response_get_values_programs_values_get_value.py +1 -1
- wandelbots_api_client/models/robot_controller.py +3 -3
- wandelbots_api_client/models/robot_controller_configuration.py +1 -1
- wandelbots_api_client/models/robot_controller_state.py +8 -8
- wandelbots_api_client/models/robot_link_geometry.py +3 -3
- wandelbots_api_client/models/robot_state.py +3 -3
- wandelbots_api_client/models/robot_system_mode.py +1 -1
- wandelbots_api_client/models/robot_tcp.py +5 -5
- wandelbots_api_client/models/robot_tcps.py +2 -2
- wandelbots_api_client/models/rotation_angle_types.py +1 -1
- wandelbots_api_client/models/rotation_angles.py +3 -3
- wandelbots_api_client/models/safety_configuration.py +6 -6
- wandelbots_api_client/models/safety_setup.py +5 -5
- wandelbots_api_client/models/safety_setup_safety_settings.py +3 -3
- wandelbots_api_client/models/safety_setup_safety_zone.py +5 -5
- wandelbots_api_client/models/safety_zone.py +4 -4
- wandelbots_api_client/models/safety_zone_limits.py +3 -3
- wandelbots_api_client/models/safety_zone_violation.py +2 -2
- wandelbots_api_client/models/service_status.py +3 -3
- wandelbots_api_client/models/service_status_phase.py +1 -1
- wandelbots_api_client/models/service_status_severity.py +1 -1
- wandelbots_api_client/models/service_status_status.py +4 -4
- wandelbots_api_client/models/set_io.py +3 -3
- wandelbots_api_client/models/set_playback_speed.py +3 -3
- wandelbots_api_client/models/single_joint_limit.py +3 -3
- wandelbots_api_client/models/singularity.py +3 -3
- wandelbots_api_client/models/singularity_type_enum.py +1 -1
- wandelbots_api_client/models/sphere.py +2 -2
- wandelbots_api_client/models/sphere2.py +3 -3
- wandelbots_api_client/models/sphere3.py +3 -3
- wandelbots_api_client/models/standstill.py +2 -2
- wandelbots_api_client/models/standstill_reason.py +1 -1
- wandelbots_api_client/models/standstill_standstill.py +4 -4
- wandelbots_api_client/models/start_movement_request.py +6 -6
- wandelbots_api_client/models/start_on_io.py +3 -3
- wandelbots_api_client/models/status.py +4 -4
- wandelbots_api_client/models/stop_response.py +4 -4
- wandelbots_api_client/models/store_value.py +1 -1
- wandelbots_api_client/models/stream_move_backward.py +2 -2
- wandelbots_api_client/models/stream_move_forward.py +2 -2
- wandelbots_api_client/models/stream_move_playback_speed.py +2 -2
- wandelbots_api_client/models/stream_move_request.py +1 -1
- wandelbots_api_client/models/stream_move_response.py +4 -4
- wandelbots_api_client/models/stream_move_to_trajectory.py +2 -2
- wandelbots_api_client/models/stream_stop.py +2 -2
- wandelbots_api_client/models/tcp_pose.py +5 -5
- wandelbots_api_client/models/tcp_pose_request.py +5 -5
- wandelbots_api_client/models/tool_geometry.py +3 -3
- wandelbots_api_client/models/trajectory_sample.py +12 -12
- wandelbots_api_client/models/trigger_object.py +11 -11
- wandelbots_api_client/models/trigger_type.py +1 -1
- wandelbots_api_client/models/universalrobots_controller.py +3 -3
- wandelbots_api_client/models/update_nova_version_request.py +2 -2
- wandelbots_api_client/models/update_program_metadata_request.py +4 -4
- wandelbots_api_client/models/update_recipe_metadata_request.py +4 -4
- wandelbots_api_client/models/update_trigger_request.py +6 -6
- wandelbots_api_client/models/validation_error.py +4 -4
- wandelbots_api_client/models/validation_error2.py +4 -4
- wandelbots_api_client/models/validation_error2_loc_inner.py +1 -1
- wandelbots_api_client/models/validation_error_loc_inner.py +1 -1
- wandelbots_api_client/models/value.py +1 -1
- wandelbots_api_client/models/vector3d.py +4 -4
- wandelbots_api_client/models/version_number.py +9 -9
- wandelbots_api_client/models/virtual_controller.py +7 -7
- wandelbots_api_client/models/virtual_controller_types.py +17 -2
- wandelbots_api_client/models/virtual_robot_configuration.py +3 -3
- wandelbots_api_client/models/yaskawa_controller.py +3 -3
- wandelbots_api_client/rest.py +3 -2
- wandelbots_api_client/v2/__init__.py +3 -4
- wandelbots_api_client/v2/api/__init__.py +16 -16
- wandelbots_api_client/v2/api/application_api.py +11 -12
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4555 -0
- wandelbots_api_client/v2/api/cell_api.py +8 -9
- wandelbots_api_client/v2/api/controller_api.py +206 -202
- wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +45 -44
- wandelbots_api_client/v2/api/jogging_api.py +33 -11
- wandelbots_api_client/v2/api/kinematics_api.py +636 -0
- wandelbots_api_client/v2/api/license_api.py +8 -9
- wandelbots_api_client/v2/api/motion_group_api.py +61 -31
- wandelbots_api_client/v2/api/motion_group_models_api.py +557 -0
- wandelbots_api_client/v2/api/program_api.py +167 -1308
- wandelbots_api_client/v2/api/store_collision_components_api.py +823 -50
- wandelbots_api_client/v2/api/store_collision_setups_api.py +1404 -0
- wandelbots_api_client/v2/api/store_object_api.py +11 -12
- wandelbots_api_client/v2/api/system_api.py +282 -18
- wandelbots_api_client/v2/api/trajectory_caching_api.py +94 -20
- wandelbots_api_client/v2/api/trajectory_execution_api.py +33 -11
- wandelbots_api_client/v2/api/trajectory_planning_api.py +68 -323
- wandelbots_api_client/v2/api/{inverse_kinematics_api.py → version_api.py} +24 -81
- wandelbots_api_client/v2/api/virtual_controller_api.py +4565 -0
- wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +982 -0
- wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +1003 -0
- wandelbots_api_client/v2/api_client.py +15 -8
- wandelbots_api_client/v2/configuration.py +19 -8
- wandelbots_api_client/v2/exceptions.py +2 -2
- wandelbots_api_client/v2/models/__init__.py +210 -159
- wandelbots_api_client/v2/models/abb_controller.py +8 -11
- wandelbots_api_client/v2/models/abb_controller_egm_server.py +4 -4
- wandelbots_api_client/v2/models/activate_license_request.py +3 -3
- wandelbots_api_client/v2/models/add_trajectory_error.py +5 -5
- wandelbots_api_client/v2/models/add_trajectory_error_data.py +66 -66
- wandelbots_api_client/v2/models/add_trajectory_request.py +5 -5
- wandelbots_api_client/v2/models/add_trajectory_response.py +4 -4
- wandelbots_api_client/v2/models/{jogging_error_response_error.py → api_version.py} +9 -9
- wandelbots_api_client/v2/models/app.py +19 -11
- wandelbots_api_client/v2/models/behavior.py +3 -3
- wandelbots_api_client/v2/models/blending_auto.py +6 -5
- wandelbots_api_client/v2/models/blending_position.py +4 -4
- wandelbots_api_client/v2/models/boolean_value.py +7 -10
- wandelbots_api_client/v2/models/box.py +7 -7
- wandelbots_api_client/v2/models/{program_run_object.py → bus_io_description.py} +31 -20
- wandelbots_api_client/v2/models/{jogging_error_response.py → bus_io_modbus_client.py} +23 -14
- wandelbots_api_client/v2/models/bus_io_modbus_server.py +115 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +106 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +104 -0
- wandelbots_api_client/v2/models/{movement_error_error.py → bus_io_modbus_virtual.py} +17 -10
- wandelbots_api_client/v2/models/bus_io_profinet.py +114 -0
- wandelbots_api_client/v2/models/{motion_group_behavior_getter.py → bus_io_profinet_default_route.py} +12 -11
- wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +95 -0
- wandelbots_api_client/v2/models/{update_trigger_request.py → bus_io_profinet_network.py} +18 -18
- wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +98 -0
- wandelbots_api_client/v2/models/bus_io_type.py +212 -0
- wandelbots_api_client/v2/models/{create_trigger200_response.py → bus_ios_state.py} +12 -9
- wandelbots_api_client/v2/models/bus_ios_state_enum.py +39 -0
- wandelbots_api_client/v2/models/capsule.py +5 -5
- wandelbots_api_client/v2/models/{robot_state.py → cartesian_limits.py} +15 -15
- wandelbots_api_client/v2/models/cell.py +7 -7
- wandelbots_api_client/v2/models/collider.py +5 -5
- wandelbots_api_client/v2/models/collider_shape.py +2 -42
- wandelbots_api_client/v2/models/collision.py +11 -11
- wandelbots_api_client/v2/models/collision_contact.py +6 -6
- wandelbots_api_client/v2/models/{collision2.py → collision_error.py} +7 -7
- wandelbots_api_client/v2/models/collision_free_algorithm.py +155 -0
- wandelbots_api_client/v2/models/{collision_motion_group_assembly.py → collision_setup.py} +32 -18
- wandelbots_api_client/v2/models/comparator.py +2 -2
- wandelbots_api_client/v2/models/configuration_archive_status.py +174 -0
- wandelbots_api_client/v2/models/{joints.py → configuration_archive_status_creating.py} +20 -10
- wandelbots_api_client/v2/models/configuration_archive_status_error.py +100 -0
- wandelbots_api_client/v2/models/configuration_archive_status_success.py +98 -0
- wandelbots_api_client/v2/models/configuration_resource.py +5 -5
- wandelbots_api_client/v2/models/container_environment_inner.py +4 -4
- wandelbots_api_client/v2/models/container_image.py +5 -5
- wandelbots_api_client/v2/models/container_image_secrets_inner.py +3 -3
- wandelbots_api_client/v2/models/{create_program_operator_run200_response.py → container_resources.py} +12 -9
- wandelbots_api_client/v2/models/container_storage.py +4 -4
- wandelbots_api_client/v2/models/{create_trigger_request.py → controller_description.py} +16 -21
- wandelbots_api_client/v2/models/convex_hull.py +4 -4
- wandelbots_api_client/v2/models/coordinate_system.py +11 -11
- wandelbots_api_client/v2/models/coordinate_system_data.py +101 -0
- wandelbots_api_client/v2/models/cubic_spline_parameter.py +4 -4
- wandelbots_api_client/v2/models/cycle_time.py +5 -4
- wandelbots_api_client/v2/models/cylinder.py +5 -5
- wandelbots_api_client/v2/models/dh_parameter.py +7 -7
- wandelbots_api_client/v2/models/direction.py +2 -2
- wandelbots_api_client/v2/models/error.py +4 -4
- wandelbots_api_client/v2/models/{jogging_paused_collision.py → error_invalid_joint_count.py} +21 -14
- wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
- wandelbots_api_client/v2/models/{coordinate_systems.py → error_joint_position_collision.py} +30 -19
- wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +100 -0
- wandelbots_api_client/v2/models/execute.py +97 -0
- wandelbots_api_client/v2/models/{set_io_values_request_inner.py → execute_details.py} +47 -43
- wandelbots_api_client/v2/models/execute_jogging_request.py +52 -10
- wandelbots_api_client/v2/models/execute_jogging_response.py +87 -26
- wandelbots_api_client/v2/models/execute_trajectory_request.py +30 -2
- wandelbots_api_client/v2/models/execute_trajectory_response.py +61 -42
- wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +6 -6
- wandelbots_api_client/v2/models/{robot_tcps.py → external_joint_stream_request.py} +17 -17
- wandelbots_api_client/v2/models/fanuc_controller.py +6 -9
- wandelbots_api_client/v2/models/feedback_collision.py +6 -6
- wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +7 -6
- wandelbots_api_client/v2/models/feedback_out_of_workspace.py +4 -4
- wandelbots_api_client/v2/models/feedback_singularity.py +5 -5
- wandelbots_api_client/v2/models/flag.py +3 -3
- wandelbots_api_client/v2/models/float_value.py +8 -11
- wandelbots_api_client/v2/models/{get_all_triggers200_response.py → forward_kinematics422_response.py} +17 -17
- wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
- wandelbots_api_client/v2/models/{controllers_list.py → forward_kinematics_response.py} +18 -18
- wandelbots_api_client/v2/models/{list_coordinate_systems_response.py → forward_kinematics_validation_error.py} +30 -18
- wandelbots_api_client/v2/models/get_trajectory_response.py +5 -5
- wandelbots_api_client/v2/models/http_validation_error.py +5 -5
- wandelbots_api_client/v2/models/image_credentials.py +5 -5
- wandelbots_api_client/v2/models/{inconsitent_trajectory_size.py → inconsistent_trajectory_size_error.py} +9 -9
- wandelbots_api_client/v2/models/{inconsitent_trajectory_size_inconsistent_trajectory_size.py → inconsistent_trajectory_size_error_inconsistent_trajectory_size.py} +9 -9
- wandelbots_api_client/v2/models/initialize_jogging_request.py +9 -16
- wandelbots_api_client/v2/models/initialize_jogging_response.py +17 -12
- wandelbots_api_client/v2/models/initialize_movement_request.py +7 -12
- wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +2 -2
- wandelbots_api_client/v2/models/initialize_movement_response.py +22 -11
- wandelbots_api_client/v2/models/integer_value.py +8 -11
- wandelbots_api_client/v2/models/{invalid_dof.py → invalid_dof_error.py} +9 -9
- wandelbots_api_client/v2/models/{invalid_dof_invalid_dof.py → invalid_dof_error_invalid_dof.py} +8 -8
- wandelbots_api_client/v2/models/{motion_group_infos.py → inverse_kinematics422_response.py} +18 -18
- wandelbots_api_client/v2/models/inverse_kinematics_request.py +51 -31
- wandelbots_api_client/v2/models/inverse_kinematics_response.py +3 -3
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +120 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +155 -0
- wandelbots_api_client/v2/models/io_boolean_value.py +8 -11
- wandelbots_api_client/v2/models/{io_description_min.py → io_boundary.py} +10 -25
- wandelbots_api_client/v2/models/io_description.py +15 -15
- wandelbots_api_client/v2/models/io_direction.py +2 -2
- wandelbots_api_client/v2/models/io_float_value.py +9 -12
- wandelbots_api_client/v2/models/io_integer_value.py +9 -12
- wandelbots_api_client/v2/models/{trigger_type.py → io_origin.py} +7 -6
- wandelbots_api_client/v2/models/{set_output_values_request_inner.py → io_value.py} +10 -25
- wandelbots_api_client/v2/models/io_value_type.py +2 -2
- wandelbots_api_client/v2/models/{movement_movement.py → jogging_details.py} +21 -16
- wandelbots_api_client/v2/models/{jogging_state.py → jogging_details_state.py} +76 -43
- wandelbots_api_client/v2/models/{program_run_reference.py → jogging_paused_by_user.py} +17 -13
- wandelbots_api_client/v2/models/{jogging_paused_collision_paused_near_collision.py → jogging_paused_near_collision.py} +19 -10
- wandelbots_api_client/v2/models/{jogging_paused_joint_limit_paused_near_joint_limit.py → jogging_paused_near_joint_limit.py} +20 -10
- wandelbots_api_client/v2/models/jogging_paused_on_io.py +14 -7
- wandelbots_api_client/v2/models/jogging_running.py +14 -7
- wandelbots_api_client/v2/models/{joint_limit_exceeded.py → joint_limit_exceeded_error.py} +7 -7
- wandelbots_api_client/v2/models/joint_limits.py +101 -0
- wandelbots_api_client/v2/models/joint_trajectory.py +6 -23
- wandelbots_api_client/v2/models/joint_velocity_request.py +7 -14
- wandelbots_api_client/v2/models/joint_velocity_response.py +100 -0
- wandelbots_api_client/v2/models/kuka_controller.py +12 -13
- wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +4 -4
- wandelbots_api_client/v2/models/license.py +12 -12
- wandelbots_api_client/v2/models/license_status.py +4 -4
- wandelbots_api_client/v2/models/license_status_enum.py +2 -2
- wandelbots_api_client/v2/models/{planning_limits_limit_range.py → limit_range.py} +8 -8
- wandelbots_api_client/v2/models/limit_set.py +129 -0
- wandelbots_api_client/v2/models/limits_override.py +8 -8
- wandelbots_api_client/v2/models/list_trajectories_response.py +3 -3
- wandelbots_api_client/v2/models/manufacturer.py +2 -2
- wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +101 -0
- wandelbots_api_client/v2/models/modbus_io.py +105 -0
- wandelbots_api_client/v2/models/modbus_io_area.py +40 -0
- wandelbots_api_client/v2/models/modbus_io_byte_order.py +40 -0
- wandelbots_api_client/v2/models/modbus_io_data.py +103 -0
- wandelbots_api_client/v2/models/modbus_io_type_enum.py +39 -0
- wandelbots_api_client/v2/models/motion_command.py +5 -5
- wandelbots_api_client/v2/models/motion_command_blending.py +2 -2
- wandelbots_api_client/v2/models/motion_command_path.py +2 -2
- wandelbots_api_client/v2/models/{planning_parameters.py → motion_group_description.py} +40 -35
- wandelbots_api_client/v2/models/motion_group_info.py +7 -6
- wandelbots_api_client/v2/models/motion_group_joints.py +6 -6
- wandelbots_api_client/v2/models/{robot_setup.py → motion_group_setup.py} +33 -35
- wandelbots_api_client/v2/models/motion_group_state.py +32 -44
- wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +3 -3
- wandelbots_api_client/v2/models/movement_error_response.py +100 -0
- wandelbots_api_client/v2/models/{nan_value.py → nan_value_error.py} +9 -9
- wandelbots_api_client/v2/models/{nan_value_nan_value.py → nan_value_error_nan_value.py} +6 -6
- wandelbots_api_client/v2/models/op_mode.py +3 -3
- wandelbots_api_client/v2/models/operating_state.py +2 -2
- wandelbots_api_client/v2/models/operation_limits.py +110 -0
- wandelbots_api_client/v2/models/operation_mode.py +2 -2
- wandelbots_api_client/v2/models/orientation_type.py +2 -2
- wandelbots_api_client/v2/models/path_cartesian_ptp.py +4 -4
- wandelbots_api_client/v2/models/path_circle.py +5 -5
- wandelbots_api_client/v2/models/path_cubic_spline.py +4 -4
- wandelbots_api_client/v2/models/path_joint_ptp.py +4 -4
- wandelbots_api_client/v2/models/path_line.py +4 -4
- wandelbots_api_client/v2/models/pause_jogging_request.py +98 -0
- wandelbots_api_client/v2/models/{initialize_jogging_response_init_response.py → pause_jogging_response.py} +19 -12
- wandelbots_api_client/v2/models/pause_movement_request.py +7 -12
- wandelbots_api_client/v2/models/pause_movement_response.py +17 -12
- wandelbots_api_client/v2/models/pause_on_io.py +11 -8
- wandelbots_api_client/v2/models/payload.py +6 -6
- wandelbots_api_client/v2/models/{http_validation_error2.py → plan422_response.py} +9 -9
- wandelbots_api_client/v2/models/{movement.py → plan_collision_free_failed_response.py} +13 -13
- wandelbots_api_client/v2/models/{jogging_response_jogging.py → plan_collision_free_request.py} +25 -21
- wandelbots_api_client/v2/models/{standstill.py → plan_collision_free_response.py} +13 -13
- wandelbots_api_client/{models/create_trigger_request_config.py → v2/models/plan_collision_free_response_response.py} +34 -20
- wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +5 -5
- wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +2 -2
- wandelbots_api_client/v2/models/plan_trajectory_request.py +11 -11
- wandelbots_api_client/v2/models/plan_trajectory_response.py +3 -3
- wandelbots_api_client/v2/models/plan_trajectory_response_response.py +2 -2
- wandelbots_api_client/v2/models/{get_all_program_operator_runs200_response.py → plan_validation_error.py} +30 -18
- wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +174 -0
- wandelbots_api_client/v2/models/plane.py +3 -3
- wandelbots_api_client/v2/models/playback_speed_request.py +7 -9
- wandelbots_api_client/v2/models/playback_speed_response.py +17 -12
- wandelbots_api_client/v2/models/pose.py +4 -4
- wandelbots_api_client/v2/models/profinet_description.py +120 -0
- wandelbots_api_client/v2/models/{opcua_node_value_trigger_config.py → profinet_input_output_config.py} +14 -17
- wandelbots_api_client/v2/models/profinet_io.py +104 -0
- wandelbots_api_client/v2/models/{program_request.py → profinet_io_data.py} +20 -39
- wandelbots_api_client/v2/models/profinet_io_direction.py +38 -0
- wandelbots_api_client/v2/models/profinet_io_type_enum.py +45 -0
- wandelbots_api_client/v2/models/{list_io_descriptions_response.py → profinet_slot_description.py} +23 -18
- wandelbots_api_client/v2/models/profinet_sub_slot_description.py +96 -0
- wandelbots_api_client/v2/models/program.py +109 -0
- wandelbots_api_client/v2/models/program_run.py +23 -35
- wandelbots_api_client/v2/models/program_run_state.py +8 -8
- wandelbots_api_client/v2/models/{jogging_paused_user_request.py → program_start_request.py} +10 -10
- wandelbots_api_client/v2/models/rectangle.py +5 -5
- wandelbots_api_client/v2/models/rectangular_capsule.py +6 -6
- wandelbots_api_client/v2/models/release_channel.py +2 -2
- wandelbots_api_client/v2/models/robot_controller.py +4 -4
- wandelbots_api_client/v2/models/robot_controller_configuration.py +2 -2
- wandelbots_api_client/v2/models/robot_controller_state.py +17 -11
- wandelbots_api_client/v2/models/robot_system_mode.py +8 -8
- wandelbots_api_client/v2/models/robot_tcp.py +10 -10
- wandelbots_api_client/v2/models/{motion_vector.py → robot_tcp_data.py} +16 -13
- wandelbots_api_client/v2/models/rrt_connect_algorithm.py +109 -0
- wandelbots_api_client/v2/models/safety_state_type.py +2 -2
- wandelbots_api_client/v2/models/service_group.py +2 -2
- wandelbots_api_client/v2/models/service_status.py +5 -5
- wandelbots_api_client/v2/models/service_status_phase.py +2 -2
- wandelbots_api_client/v2/models/service_status_response.py +4 -4
- wandelbots_api_client/v2/models/service_status_severity.py +2 -2
- wandelbots_api_client/v2/models/service_status_status.py +5 -5
- wandelbots_api_client/v2/models/{standstill_standstill.py → set_io.py} +17 -17
- wandelbots_api_client/v2/models/settable_robot_system_mode.py +2 -2
- wandelbots_api_client/v2/models/singularity_type_enum.py +2 -2
- wandelbots_api_client/v2/models/sphere.py +4 -4
- wandelbots_api_client/v2/models/start_movement_request.py +14 -15
- wandelbots_api_client/v2/models/start_movement_response.py +100 -0
- wandelbots_api_client/v2/models/start_on_io.py +11 -8
- wandelbots_api_client/v2/models/{list_io_values_response.py → stream_io_values_response.py} +17 -11
- wandelbots_api_client/v2/models/tcp_offset.py +4 -4
- wandelbots_api_client/v2/models/{tcp_required.py → tcp_required_error.py} +6 -6
- wandelbots_api_client/v2/models/tcp_velocity_request.py +6 -9
- wandelbots_api_client/v2/models/tcp_velocity_response.py +100 -0
- wandelbots_api_client/v2/models/{torque_exceeded.py → torque_exceeded_error.py} +9 -9
- wandelbots_api_client/v2/models/{torque_exceeded_torque_exceeded.py → torque_exceeded_error_torque_exceeded.py} +8 -8
- wandelbots_api_client/v2/models/trajectory_data.py +6 -6
- wandelbots_api_client/v2/models/trajectory_details.py +108 -0
- wandelbots_api_client/v2/models/trajectory_details_state.py +212 -0
- wandelbots_api_client/v2/models/trajectory_ended.py +98 -0
- wandelbots_api_client/v2/models/trajectory_id.py +4 -4
- wandelbots_api_client/v2/models/{get_mode_response.py → trajectory_paused_by_user.py} +17 -11
- wandelbots_api_client/v2/models/trajectory_paused_on_io.py +98 -0
- wandelbots_api_client/v2/models/trajectory_running.py +101 -0
- wandelbots_api_client/v2/models/{create_program_operator_run_request.py → trajectory_wait_for_io.py} +17 -10
- wandelbots_api_client/v2/models/unit_type.py +3 -3
- wandelbots_api_client/v2/models/universalrobots_controller.py +6 -9
- wandelbots_api_client/v2/models/update_nova_version_request.py +3 -3
- wandelbots_api_client/v2/models/validation_error.py +9 -7
- wandelbots_api_client/v2/models/validation_error2.py +6 -6
- wandelbots_api_client/v2/models/validation_error_loc_inner.py +2 -2
- wandelbots_api_client/v2/models/virtual_controller.py +11 -14
- wandelbots_api_client/v2/models/virtual_controller_types.py +18 -3
- wandelbots_api_client/v2/models/virtual_robot_configuration.py +4 -4
- wandelbots_api_client/v2/models/wait_for_io_event_request.py +6 -6
- wandelbots_api_client/v2/models/yaskawa_controller.py +6 -9
- wandelbots_api_client/v2/rest.py +4 -3
- wandelbots_api_client/v2_pydantic/__init__.py +50 -0
- wandelbots_api_client/v2_pydantic/api/__init__.py +51 -0
- wandelbots_api_client/{v2/api/virtual_robot_api.py → v2_pydantic/api/application_api.py} +327 -426
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4603 -0
- wandelbots_api_client/{v2/api/virtual_robot_setup_api.py → v2_pydantic/api/cell_api.py} +291 -771
- wandelbots_api_client/v2_pydantic/api/controller_api.py +3721 -0
- wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1395 -0
- wandelbots_api_client/v2_pydantic/api/jogging_api.py +125 -0
- wandelbots_api_client/v2_pydantic/api/kinematics_api.py +642 -0
- wandelbots_api_client/{v2/api/store_collision_scenes_api.py → v2_pydantic/api/license_api.py} +158 -248
- wandelbots_api_client/{v2/api/virtual_robot_behavior_api.py → v2_pydantic/api/motion_group_api.py} +156 -131
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +563 -0
- wandelbots_api_client/{v2/api/store_program_api.py → v2_pydantic/api/program_api.py} +191 -181
- wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +4170 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1419 -0
- wandelbots_api_client/v2_pydantic/api/store_object_api.py +1719 -0
- wandelbots_api_client/{v2/api/program_operator_api.py → v2_pydantic/api/system_api.py} +625 -476
- wandelbots_api_client/{v2/api/virtual_robot_mode_api.py → v2_pydantic/api/trajectory_caching_api.py} +208 -162
- wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +125 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +642 -0
- wandelbots_api_client/v2_pydantic/api/version_api.py +287 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +4610 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +991 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +1012 -0
- wandelbots_api_client/v2_pydantic/api_client.py +809 -0
- wandelbots_api_client/v2_pydantic/api_response.py +21 -0
- wandelbots_api_client/v2_pydantic/configuration.py +606 -0
- wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
- wandelbots_api_client/v2_pydantic/models.py +4561 -0
- wandelbots_api_client/v2_pydantic/py.typed +0 -0
- wandelbots_api_client/v2_pydantic/rest.py +213 -0
- wandelbots_api_client-25.10.0rc2.dist-info/METADATA +62 -0
- wandelbots_api_client-25.10.0rc2.dist-info/RECORD +640 -0
- {wandelbots_api_client-25.6.0.dev7.dist-info → wandelbots_api_client-25.10.0rc2.dist-info}/WHEEL +2 -1
- wandelbots_api_client-25.10.0rc2.dist-info/top_level.txt +1 -0
- wandelbots_api_client/v2/models/collision_motion_group.py +0 -121
- wandelbots_api_client/v2/models/collision_scene.py +0 -119
- wandelbots_api_client/v2/models/collision_scene_assembly.py +0 -129
- wandelbots_api_client/v2/models/controller.py +0 -132
- wandelbots_api_client/v2/models/external_joint_stream_datapoint_value.py +0 -97
- wandelbots_api_client/v2/models/initialize_movement_response_init_response.py +0 -93
- wandelbots_api_client/v2/models/jogging_paused_joint_limit.py +0 -95
- wandelbots_api_client/v2/models/jogging_response.py +0 -95
- wandelbots_api_client/v2/models/motion_group_instance.py +0 -101
- wandelbots_api_client/v2/models/motion_group_state_without_payload.py +0 -146
- wandelbots_api_client/v2/models/movement_error.py +0 -95
- wandelbots_api_client/v2/models/opcua_node_value_trigger_config_node_value.py +0 -160
- wandelbots_api_client/v2/models/pause_movement_response_pause_response.py +0 -93
- wandelbots_api_client/v2/models/planning_limits.py +0 -130
- wandelbots_api_client/v2/models/playback_speed_response_playback_speed_response.py +0 -91
- wandelbots_api_client/v2/models/program_run_result.py +0 -108
- wandelbots_api_client/v2/models/single_motion_group_collision_scene.py +0 -135
- wandelbots_api_client/v2/models/standstill_reason.py +0 -39
- wandelbots_api_client/v2/models/trigger_object.py +0 -111
- wandelbots_api_client/v2/models/version_number.py +0 -105
- wandelbots_api_client-25.6.0.dev7.dist-info/METADATA +0 -63
- wandelbots_api_client-25.6.0.dev7.dist-info/RECORD +0 -580
- {wandelbots_api_client-25.6.0.dev7.dist-info → wandelbots_api_client-25.10.0rc2.dist-info/licenses}/LICENSE +0 -0
|
@@ -3,15 +3,14 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Wandelbots NOVA API
|
|
5
5
|
|
|
6
|
-
Interact with robots in an easy and intuitive way.
|
|
6
|
+
Interact with robots in an easy and intuitive way.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0 dev
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
12
12
|
""" # noqa: E501
|
|
13
13
|
|
|
14
|
-
|
|
15
14
|
from furl import furl
|
|
16
15
|
import json
|
|
17
16
|
import humps
|
|
@@ -23,19 +22,18 @@ from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, U
|
|
|
23
22
|
from typing_extensions import Annotated
|
|
24
23
|
from urllib.parse import quote
|
|
25
24
|
|
|
26
|
-
from pydantic import Field,
|
|
27
|
-
from typing import Optional
|
|
25
|
+
from pydantic import Field, StrictStr
|
|
26
|
+
from typing import List, Optional
|
|
28
27
|
from typing_extensions import Annotated
|
|
29
|
-
from wandelbots_api_client.
|
|
30
|
-
from wandelbots_api_client.
|
|
31
|
-
from wandelbots_api_client.
|
|
32
|
-
from wandelbots_api_client.v2.models.robot_tcps import RobotTcps
|
|
28
|
+
from wandelbots_api_client.v2_pydantic.models import Cell
|
|
29
|
+
from wandelbots_api_client.v2_pydantic.models import OperatingState
|
|
30
|
+
from wandelbots_api_client.v2_pydantic.models import ServiceStatusResponse
|
|
33
31
|
|
|
34
|
-
from wandelbots_api_client.
|
|
35
|
-
from wandelbots_api_client.
|
|
36
|
-
from wandelbots_api_client.
|
|
32
|
+
from wandelbots_api_client.v2_pydantic.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from wandelbots_api_client.v2_pydantic.api_response import ApiResponse
|
|
34
|
+
from wandelbots_api_client.v2_pydantic.rest import RESTResponseType
|
|
37
35
|
|
|
38
|
-
class
|
|
36
|
+
class CellApi:
|
|
39
37
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
40
38
|
Ref: https://openapi-generator.tech
|
|
41
39
|
|
|
@@ -48,11 +46,10 @@ class VirtualRobotSetupApi:
|
|
|
48
46
|
self.api_client = api_client
|
|
49
47
|
|
|
50
48
|
@validate_call
|
|
51
|
-
async def
|
|
49
|
+
async def delete_cell(
|
|
52
50
|
self,
|
|
53
51
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
54
|
-
|
|
55
|
-
coordinate_system: CoordinateSystem,
|
|
52
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
56
53
|
_request_timeout: Union[
|
|
57
54
|
None,
|
|
58
55
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -66,16 +63,14 @@ class VirtualRobotSetupApi:
|
|
|
66
63
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
67
64
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
68
65
|
) -> None:
|
|
69
|
-
"""
|
|
66
|
+
"""Delete Cell
|
|
70
67
|
|
|
71
|
-
|
|
68
|
+
Delete an entire cell.
|
|
72
69
|
|
|
73
70
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
74
71
|
:type cell: str
|
|
75
|
-
:param
|
|
76
|
-
:type
|
|
77
|
-
:param coordinate_system: (required)
|
|
78
|
-
:type coordinate_system: CoordinateSystem
|
|
72
|
+
:param completion_timeout:
|
|
73
|
+
:type completion_timeout: int
|
|
79
74
|
:param _request_timeout: timeout setting for this request. If one
|
|
80
75
|
number provided, it will be total request
|
|
81
76
|
timeout. It can also be a pair (tuple) of
|
|
@@ -98,10 +93,9 @@ class VirtualRobotSetupApi:
|
|
|
98
93
|
:return: Returns the result object.
|
|
99
94
|
""" # noqa: E501
|
|
100
95
|
|
|
101
|
-
_param = self.
|
|
96
|
+
_param = self._delete_cell_serialize(
|
|
102
97
|
cell=cell,
|
|
103
|
-
|
|
104
|
-
coordinate_system=coordinate_system,
|
|
98
|
+
completion_timeout=completion_timeout,
|
|
105
99
|
_request_auth=_request_auth,
|
|
106
100
|
_content_type=_content_type,
|
|
107
101
|
_headers=_headers,
|
|
@@ -110,9 +104,10 @@ class VirtualRobotSetupApi:
|
|
|
110
104
|
|
|
111
105
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
112
106
|
'200': None,
|
|
113
|
-
'
|
|
107
|
+
'202': None,
|
|
114
108
|
'404': "Error",
|
|
115
|
-
}
|
|
109
|
+
}
|
|
110
|
+
|
|
116
111
|
response_data = await self.api_client.call_api(
|
|
117
112
|
*_param,
|
|
118
113
|
_request_timeout=_request_timeout
|
|
@@ -125,11 +120,10 @@ class VirtualRobotSetupApi:
|
|
|
125
120
|
|
|
126
121
|
|
|
127
122
|
@validate_call
|
|
128
|
-
async def
|
|
123
|
+
async def delete_cell_with_http_info(
|
|
129
124
|
self,
|
|
130
125
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
131
|
-
|
|
132
|
-
coordinate_system: CoordinateSystem,
|
|
126
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
133
127
|
_request_timeout: Union[
|
|
134
128
|
None,
|
|
135
129
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -143,16 +137,14 @@ class VirtualRobotSetupApi:
|
|
|
143
137
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
144
138
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
145
139
|
) -> ApiResponse[None]:
|
|
146
|
-
"""
|
|
140
|
+
"""Delete Cell
|
|
147
141
|
|
|
148
|
-
|
|
142
|
+
Delete an entire cell.
|
|
149
143
|
|
|
150
144
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
151
145
|
:type cell: str
|
|
152
|
-
:param
|
|
153
|
-
:type
|
|
154
|
-
:param coordinate_system: (required)
|
|
155
|
-
:type coordinate_system: CoordinateSystem
|
|
146
|
+
:param completion_timeout:
|
|
147
|
+
:type completion_timeout: int
|
|
156
148
|
:param _request_timeout: timeout setting for this request. If one
|
|
157
149
|
number provided, it will be total request
|
|
158
150
|
timeout. It can also be a pair (tuple) of
|
|
@@ -175,10 +167,9 @@ class VirtualRobotSetupApi:
|
|
|
175
167
|
:return: Returns the result object.
|
|
176
168
|
""" # noqa: E501
|
|
177
169
|
|
|
178
|
-
_param = self.
|
|
170
|
+
_param = self._delete_cell_serialize(
|
|
179
171
|
cell=cell,
|
|
180
|
-
|
|
181
|
-
coordinate_system=coordinate_system,
|
|
172
|
+
completion_timeout=completion_timeout,
|
|
182
173
|
_request_auth=_request_auth,
|
|
183
174
|
_content_type=_content_type,
|
|
184
175
|
_headers=_headers,
|
|
@@ -187,9 +178,10 @@ class VirtualRobotSetupApi:
|
|
|
187
178
|
|
|
188
179
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
189
180
|
'200': None,
|
|
190
|
-
'
|
|
181
|
+
'202': None,
|
|
191
182
|
'404': "Error",
|
|
192
|
-
}
|
|
183
|
+
}
|
|
184
|
+
|
|
193
185
|
response_data = await self.api_client.call_api(
|
|
194
186
|
*_param,
|
|
195
187
|
_request_timeout=_request_timeout
|
|
@@ -202,11 +194,10 @@ class VirtualRobotSetupApi:
|
|
|
202
194
|
|
|
203
195
|
|
|
204
196
|
@validate_call
|
|
205
|
-
async def
|
|
197
|
+
async def delete_cell_without_preload_content(
|
|
206
198
|
self,
|
|
207
199
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
208
|
-
|
|
209
|
-
coordinate_system: CoordinateSystem,
|
|
200
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
210
201
|
_request_timeout: Union[
|
|
211
202
|
None,
|
|
212
203
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -220,16 +211,14 @@ class VirtualRobotSetupApi:
|
|
|
220
211
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
221
212
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
222
213
|
) -> RESTResponseType:
|
|
223
|
-
"""
|
|
214
|
+
"""Delete Cell
|
|
224
215
|
|
|
225
|
-
|
|
216
|
+
Delete an entire cell.
|
|
226
217
|
|
|
227
218
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
228
219
|
:type cell: str
|
|
229
|
-
:param
|
|
230
|
-
:type
|
|
231
|
-
:param coordinate_system: (required)
|
|
232
|
-
:type coordinate_system: CoordinateSystem
|
|
220
|
+
:param completion_timeout:
|
|
221
|
+
:type completion_timeout: int
|
|
233
222
|
:param _request_timeout: timeout setting for this request. If one
|
|
234
223
|
number provided, it will be total request
|
|
235
224
|
timeout. It can also be a pair (tuple) of
|
|
@@ -252,10 +241,9 @@ class VirtualRobotSetupApi:
|
|
|
252
241
|
:return: Returns the result object.
|
|
253
242
|
""" # noqa: E501
|
|
254
243
|
|
|
255
|
-
_param = self.
|
|
244
|
+
_param = self._delete_cell_serialize(
|
|
256
245
|
cell=cell,
|
|
257
|
-
|
|
258
|
-
coordinate_system=coordinate_system,
|
|
246
|
+
completion_timeout=completion_timeout,
|
|
259
247
|
_request_auth=_request_auth,
|
|
260
248
|
_content_type=_content_type,
|
|
261
249
|
_headers=_headers,
|
|
@@ -264,9 +252,10 @@ class VirtualRobotSetupApi:
|
|
|
264
252
|
|
|
265
253
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
266
254
|
'200': None,
|
|
267
|
-
'
|
|
255
|
+
'202': None,
|
|
268
256
|
'404': "Error",
|
|
269
|
-
}
|
|
257
|
+
}
|
|
258
|
+
|
|
270
259
|
response_data = await self.api_client.call_api(
|
|
271
260
|
*_param,
|
|
272
261
|
_request_timeout=_request_timeout
|
|
@@ -274,11 +263,10 @@ class VirtualRobotSetupApi:
|
|
|
274
263
|
return response_data.response
|
|
275
264
|
|
|
276
265
|
|
|
277
|
-
def
|
|
266
|
+
def _delete_cell_serialize(
|
|
278
267
|
self,
|
|
279
268
|
cell,
|
|
280
|
-
|
|
281
|
-
coordinate_system,
|
|
269
|
+
completion_timeout,
|
|
282
270
|
_request_auth,
|
|
283
271
|
_content_type,
|
|
284
272
|
_headers,
|
|
@@ -300,14 +288,14 @@ class VirtualRobotSetupApi:
|
|
|
300
288
|
# process the path parameters
|
|
301
289
|
if cell is not None:
|
|
302
290
|
_path_params['cell'] = cell
|
|
303
|
-
if controller is not None:
|
|
304
|
-
_path_params['controller'] = controller
|
|
305
291
|
# process the query parameters
|
|
292
|
+
if completion_timeout is not None:
|
|
293
|
+
|
|
294
|
+
_query_params.append(('completion_timeout', completion_timeout))
|
|
295
|
+
|
|
306
296
|
# process the header parameters
|
|
307
297
|
# process the form parameters
|
|
308
298
|
# process the body parameter
|
|
309
|
-
if coordinate_system is not None:
|
|
310
|
-
_body_params = coordinate_system
|
|
311
299
|
|
|
312
300
|
|
|
313
301
|
# set the HTTP header `Accept`
|
|
@@ -317,19 +305,6 @@ class VirtualRobotSetupApi:
|
|
|
317
305
|
]
|
|
318
306
|
)
|
|
319
307
|
|
|
320
|
-
# set the HTTP header `Content-Type`
|
|
321
|
-
if _content_type:
|
|
322
|
-
_header_params['Content-Type'] = _content_type
|
|
323
|
-
else:
|
|
324
|
-
_default_content_type = (
|
|
325
|
-
self.api_client.select_header_content_type(
|
|
326
|
-
[
|
|
327
|
-
'application/json'
|
|
328
|
-
]
|
|
329
|
-
)
|
|
330
|
-
)
|
|
331
|
-
if _default_content_type is not None:
|
|
332
|
-
_header_params['Content-Type'] = _default_content_type
|
|
333
308
|
|
|
334
309
|
# authentication setting
|
|
335
310
|
_auth_settings: List[str] = [
|
|
@@ -338,8 +313,8 @@ class VirtualRobotSetupApi:
|
|
|
338
313
|
]
|
|
339
314
|
|
|
340
315
|
return self.api_client.param_serialize(
|
|
341
|
-
method='
|
|
342
|
-
resource_path='/cells/{cell}
|
|
316
|
+
method='DELETE',
|
|
317
|
+
resource_path='/cells/{cell}',
|
|
343
318
|
path_params=_path_params,
|
|
344
319
|
query_params=_query_params,
|
|
345
320
|
header_params=_header_params,
|
|
@@ -355,12 +330,10 @@ class VirtualRobotSetupApi:
|
|
|
355
330
|
|
|
356
331
|
|
|
357
332
|
@validate_call
|
|
358
|
-
async def
|
|
333
|
+
async def deploy_cell(
|
|
359
334
|
self,
|
|
360
|
-
cell:
|
|
361
|
-
|
|
362
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
363
|
-
robot_tcp: RobotTcp,
|
|
335
|
+
cell: Cell,
|
|
336
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
364
337
|
_request_timeout: Union[
|
|
365
338
|
None,
|
|
366
339
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -374,18 +347,14 @@ class VirtualRobotSetupApi:
|
|
|
374
347
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
375
348
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
376
349
|
) -> None:
|
|
377
|
-
"""Add
|
|
350
|
+
"""Add Cell
|
|
378
351
|
|
|
379
|
-
|
|
352
|
+
Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
380
353
|
|
|
381
|
-
:param cell:
|
|
382
|
-
:type cell:
|
|
383
|
-
:param
|
|
384
|
-
:type
|
|
385
|
-
:param motion_group: The motion-group identifier. (required)
|
|
386
|
-
:type motion_group: str
|
|
387
|
-
:param robot_tcp: (required)
|
|
388
|
-
:type robot_tcp: RobotTcp
|
|
354
|
+
:param cell: (required)
|
|
355
|
+
:type cell: Cell
|
|
356
|
+
:param completion_timeout:
|
|
357
|
+
:type completion_timeout: int
|
|
389
358
|
:param _request_timeout: timeout setting for this request. If one
|
|
390
359
|
number provided, it will be total request
|
|
391
360
|
timeout. It can also be a pair (tuple) of
|
|
@@ -408,11 +377,9 @@ class VirtualRobotSetupApi:
|
|
|
408
377
|
:return: Returns the result object.
|
|
409
378
|
""" # noqa: E501
|
|
410
379
|
|
|
411
|
-
_param = self.
|
|
380
|
+
_param = self._deploy_cell_serialize(
|
|
412
381
|
cell=cell,
|
|
413
|
-
|
|
414
|
-
motion_group=motion_group,
|
|
415
|
-
robot_tcp=robot_tcp,
|
|
382
|
+
completion_timeout=completion_timeout,
|
|
416
383
|
_request_auth=_request_auth,
|
|
417
384
|
_content_type=_content_type,
|
|
418
385
|
_headers=_headers,
|
|
@@ -421,9 +388,11 @@ class VirtualRobotSetupApi:
|
|
|
421
388
|
|
|
422
389
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
423
390
|
'200': None,
|
|
424
|
-
'
|
|
425
|
-
'
|
|
426
|
-
|
|
391
|
+
'202': None,
|
|
392
|
+
'403': "Error",
|
|
393
|
+
'409': None,
|
|
394
|
+
}
|
|
395
|
+
|
|
427
396
|
response_data = await self.api_client.call_api(
|
|
428
397
|
*_param,
|
|
429
398
|
_request_timeout=_request_timeout
|
|
@@ -436,12 +405,10 @@ class VirtualRobotSetupApi:
|
|
|
436
405
|
|
|
437
406
|
|
|
438
407
|
@validate_call
|
|
439
|
-
async def
|
|
408
|
+
async def deploy_cell_with_http_info(
|
|
440
409
|
self,
|
|
441
|
-
cell:
|
|
442
|
-
|
|
443
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
444
|
-
robot_tcp: RobotTcp,
|
|
410
|
+
cell: Cell,
|
|
411
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
445
412
|
_request_timeout: Union[
|
|
446
413
|
None,
|
|
447
414
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -455,18 +422,14 @@ class VirtualRobotSetupApi:
|
|
|
455
422
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
456
423
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
457
424
|
) -> ApiResponse[None]:
|
|
458
|
-
"""Add
|
|
425
|
+
"""Add Cell
|
|
459
426
|
|
|
460
|
-
|
|
427
|
+
Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
461
428
|
|
|
462
|
-
:param cell:
|
|
463
|
-
:type cell:
|
|
464
|
-
:param
|
|
465
|
-
:type
|
|
466
|
-
:param motion_group: The motion-group identifier. (required)
|
|
467
|
-
:type motion_group: str
|
|
468
|
-
:param robot_tcp: (required)
|
|
469
|
-
:type robot_tcp: RobotTcp
|
|
429
|
+
:param cell: (required)
|
|
430
|
+
:type cell: Cell
|
|
431
|
+
:param completion_timeout:
|
|
432
|
+
:type completion_timeout: int
|
|
470
433
|
:param _request_timeout: timeout setting for this request. If one
|
|
471
434
|
number provided, it will be total request
|
|
472
435
|
timeout. It can also be a pair (tuple) of
|
|
@@ -489,11 +452,9 @@ class VirtualRobotSetupApi:
|
|
|
489
452
|
:return: Returns the result object.
|
|
490
453
|
""" # noqa: E501
|
|
491
454
|
|
|
492
|
-
_param = self.
|
|
455
|
+
_param = self._deploy_cell_serialize(
|
|
493
456
|
cell=cell,
|
|
494
|
-
|
|
495
|
-
motion_group=motion_group,
|
|
496
|
-
robot_tcp=robot_tcp,
|
|
457
|
+
completion_timeout=completion_timeout,
|
|
497
458
|
_request_auth=_request_auth,
|
|
498
459
|
_content_type=_content_type,
|
|
499
460
|
_headers=_headers,
|
|
@@ -502,9 +463,11 @@ class VirtualRobotSetupApi:
|
|
|
502
463
|
|
|
503
464
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
504
465
|
'200': None,
|
|
505
|
-
'
|
|
506
|
-
'
|
|
507
|
-
|
|
466
|
+
'202': None,
|
|
467
|
+
'403': "Error",
|
|
468
|
+
'409': None,
|
|
469
|
+
}
|
|
470
|
+
|
|
508
471
|
response_data = await self.api_client.call_api(
|
|
509
472
|
*_param,
|
|
510
473
|
_request_timeout=_request_timeout
|
|
@@ -517,12 +480,10 @@ class VirtualRobotSetupApi:
|
|
|
517
480
|
|
|
518
481
|
|
|
519
482
|
@validate_call
|
|
520
|
-
async def
|
|
483
|
+
async def deploy_cell_without_preload_content(
|
|
521
484
|
self,
|
|
522
|
-
cell:
|
|
523
|
-
|
|
524
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
525
|
-
robot_tcp: RobotTcp,
|
|
485
|
+
cell: Cell,
|
|
486
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
526
487
|
_request_timeout: Union[
|
|
527
488
|
None,
|
|
528
489
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -536,18 +497,14 @@ class VirtualRobotSetupApi:
|
|
|
536
497
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
537
498
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
538
499
|
) -> RESTResponseType:
|
|
539
|
-
"""Add
|
|
500
|
+
"""Add Cell
|
|
540
501
|
|
|
541
|
-
|
|
502
|
+
Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
542
503
|
|
|
543
|
-
:param cell:
|
|
544
|
-
:type cell:
|
|
545
|
-
:param
|
|
546
|
-
:type
|
|
547
|
-
:param motion_group: The motion-group identifier. (required)
|
|
548
|
-
:type motion_group: str
|
|
549
|
-
:param robot_tcp: (required)
|
|
550
|
-
:type robot_tcp: RobotTcp
|
|
504
|
+
:param cell: (required)
|
|
505
|
+
:type cell: Cell
|
|
506
|
+
:param completion_timeout:
|
|
507
|
+
:type completion_timeout: int
|
|
551
508
|
:param _request_timeout: timeout setting for this request. If one
|
|
552
509
|
number provided, it will be total request
|
|
553
510
|
timeout. It can also be a pair (tuple) of
|
|
@@ -570,11 +527,9 @@ class VirtualRobotSetupApi:
|
|
|
570
527
|
:return: Returns the result object.
|
|
571
528
|
""" # noqa: E501
|
|
572
529
|
|
|
573
|
-
_param = self.
|
|
530
|
+
_param = self._deploy_cell_serialize(
|
|
574
531
|
cell=cell,
|
|
575
|
-
|
|
576
|
-
motion_group=motion_group,
|
|
577
|
-
robot_tcp=robot_tcp,
|
|
532
|
+
completion_timeout=completion_timeout,
|
|
578
533
|
_request_auth=_request_auth,
|
|
579
534
|
_content_type=_content_type,
|
|
580
535
|
_headers=_headers,
|
|
@@ -583,9 +538,11 @@ class VirtualRobotSetupApi:
|
|
|
583
538
|
|
|
584
539
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
585
540
|
'200': None,
|
|
586
|
-
'
|
|
587
|
-
'
|
|
588
|
-
|
|
541
|
+
'202': None,
|
|
542
|
+
'403': "Error",
|
|
543
|
+
'409': None,
|
|
544
|
+
}
|
|
545
|
+
|
|
589
546
|
response_data = await self.api_client.call_api(
|
|
590
547
|
*_param,
|
|
591
548
|
_request_timeout=_request_timeout
|
|
@@ -593,12 +550,10 @@ class VirtualRobotSetupApi:
|
|
|
593
550
|
return response_data.response
|
|
594
551
|
|
|
595
552
|
|
|
596
|
-
def
|
|
553
|
+
def _deploy_cell_serialize(
|
|
597
554
|
self,
|
|
598
555
|
cell,
|
|
599
|
-
|
|
600
|
-
motion_group,
|
|
601
|
-
robot_tcp,
|
|
556
|
+
completion_timeout,
|
|
602
557
|
_request_auth,
|
|
603
558
|
_content_type,
|
|
604
559
|
_headers,
|
|
@@ -618,18 +573,16 @@ class VirtualRobotSetupApi:
|
|
|
618
573
|
_body_params: Optional[bytes] = None
|
|
619
574
|
|
|
620
575
|
# process the path parameters
|
|
621
|
-
if cell is not None:
|
|
622
|
-
_path_params['cell'] = cell
|
|
623
|
-
if controller is not None:
|
|
624
|
-
_path_params['controller'] = controller
|
|
625
|
-
if motion_group is not None:
|
|
626
|
-
_path_params['motion-group'] = motion_group
|
|
627
576
|
# process the query parameters
|
|
577
|
+
if completion_timeout is not None:
|
|
578
|
+
|
|
579
|
+
_query_params.append(('completion_timeout', completion_timeout))
|
|
580
|
+
|
|
628
581
|
# process the header parameters
|
|
629
582
|
# process the form parameters
|
|
630
583
|
# process the body parameter
|
|
631
|
-
if
|
|
632
|
-
_body_params =
|
|
584
|
+
if cell is not None:
|
|
585
|
+
_body_params = cell
|
|
633
586
|
|
|
634
587
|
|
|
635
588
|
# set the HTTP header `Accept`
|
|
@@ -660,8 +613,8 @@ class VirtualRobotSetupApi:
|
|
|
660
613
|
]
|
|
661
614
|
|
|
662
615
|
return self.api_client.param_serialize(
|
|
663
|
-
method='
|
|
664
|
-
resource_path='/cells
|
|
616
|
+
method='POST',
|
|
617
|
+
resource_path='/cells',
|
|
665
618
|
path_params=_path_params,
|
|
666
619
|
query_params=_query_params,
|
|
667
620
|
header_params=_header_params,
|
|
@@ -677,12 +630,9 @@ class VirtualRobotSetupApi:
|
|
|
677
630
|
|
|
678
631
|
|
|
679
632
|
@validate_call
|
|
680
|
-
async def
|
|
633
|
+
async def get_cell(
|
|
681
634
|
self,
|
|
682
635
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
683
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
684
|
-
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
685
|
-
delete_dependent: Annotated[Optional[StrictBool], Field(description="If true, all dependent coordinate systems will be deleted as well.")] = None,
|
|
686
636
|
_request_timeout: Union[
|
|
687
637
|
None,
|
|
688
638
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -695,19 +645,13 @@ class VirtualRobotSetupApi:
|
|
|
695
645
|
_content_type: Optional[StrictStr] = None,
|
|
696
646
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
697
647
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
698
|
-
) ->
|
|
699
|
-
"""
|
|
648
|
+
) -> Cell:
|
|
649
|
+
"""Configuration
|
|
700
650
|
|
|
701
|
-
|
|
651
|
+
List all cell resources.
|
|
702
652
|
|
|
703
653
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
704
654
|
:type cell: str
|
|
705
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
706
|
-
:type controller: str
|
|
707
|
-
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
708
|
-
:type coordinate_system: str
|
|
709
|
-
:param delete_dependent: If true, all dependent coordinate systems will be deleted as well.
|
|
710
|
-
:type delete_dependent: bool
|
|
711
655
|
:param _request_timeout: timeout setting for this request. If one
|
|
712
656
|
number provided, it will be total request
|
|
713
657
|
timeout. It can also be a pair (tuple) of
|
|
@@ -730,11 +674,8 @@ class VirtualRobotSetupApi:
|
|
|
730
674
|
:return: Returns the result object.
|
|
731
675
|
""" # noqa: E501
|
|
732
676
|
|
|
733
|
-
_param = self.
|
|
677
|
+
_param = self._get_cell_serialize(
|
|
734
678
|
cell=cell,
|
|
735
|
-
controller=controller,
|
|
736
|
-
coordinate_system=coordinate_system,
|
|
737
|
-
delete_dependent=delete_dependent,
|
|
738
679
|
_request_auth=_request_auth,
|
|
739
680
|
_content_type=_content_type,
|
|
740
681
|
_headers=_headers,
|
|
@@ -742,10 +683,10 @@ class VirtualRobotSetupApi:
|
|
|
742
683
|
)
|
|
743
684
|
|
|
744
685
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
745
|
-
'200':
|
|
746
|
-
'400': "Error",
|
|
686
|
+
'200': "Cell",
|
|
747
687
|
'404': "Error",
|
|
748
|
-
}
|
|
688
|
+
}
|
|
689
|
+
|
|
749
690
|
response_data = await self.api_client.call_api(
|
|
750
691
|
*_param,
|
|
751
692
|
_request_timeout=_request_timeout
|
|
@@ -758,12 +699,9 @@ class VirtualRobotSetupApi:
|
|
|
758
699
|
|
|
759
700
|
|
|
760
701
|
@validate_call
|
|
761
|
-
async def
|
|
702
|
+
async def get_cell_with_http_info(
|
|
762
703
|
self,
|
|
763
704
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
764
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
765
|
-
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
766
|
-
delete_dependent: Annotated[Optional[StrictBool], Field(description="If true, all dependent coordinate systems will be deleted as well.")] = None,
|
|
767
705
|
_request_timeout: Union[
|
|
768
706
|
None,
|
|
769
707
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -776,19 +714,13 @@ class VirtualRobotSetupApi:
|
|
|
776
714
|
_content_type: Optional[StrictStr] = None,
|
|
777
715
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
778
716
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
779
|
-
) -> ApiResponse[
|
|
780
|
-
"""
|
|
717
|
+
) -> ApiResponse[Cell]:
|
|
718
|
+
"""Configuration
|
|
781
719
|
|
|
782
|
-
|
|
720
|
+
List all cell resources.
|
|
783
721
|
|
|
784
722
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
785
723
|
:type cell: str
|
|
786
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
787
|
-
:type controller: str
|
|
788
|
-
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
789
|
-
:type coordinate_system: str
|
|
790
|
-
:param delete_dependent: If true, all dependent coordinate systems will be deleted as well.
|
|
791
|
-
:type delete_dependent: bool
|
|
792
724
|
:param _request_timeout: timeout setting for this request. If one
|
|
793
725
|
number provided, it will be total request
|
|
794
726
|
timeout. It can also be a pair (tuple) of
|
|
@@ -811,11 +743,8 @@ class VirtualRobotSetupApi:
|
|
|
811
743
|
:return: Returns the result object.
|
|
812
744
|
""" # noqa: E501
|
|
813
745
|
|
|
814
|
-
_param = self.
|
|
746
|
+
_param = self._get_cell_serialize(
|
|
815
747
|
cell=cell,
|
|
816
|
-
controller=controller,
|
|
817
|
-
coordinate_system=coordinate_system,
|
|
818
|
-
delete_dependent=delete_dependent,
|
|
819
748
|
_request_auth=_request_auth,
|
|
820
749
|
_content_type=_content_type,
|
|
821
750
|
_headers=_headers,
|
|
@@ -823,10 +752,10 @@ class VirtualRobotSetupApi:
|
|
|
823
752
|
)
|
|
824
753
|
|
|
825
754
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
826
|
-
'200':
|
|
827
|
-
'400': "Error",
|
|
755
|
+
'200': "Cell",
|
|
828
756
|
'404': "Error",
|
|
829
|
-
}
|
|
757
|
+
}
|
|
758
|
+
|
|
830
759
|
response_data = await self.api_client.call_api(
|
|
831
760
|
*_param,
|
|
832
761
|
_request_timeout=_request_timeout
|
|
@@ -839,12 +768,9 @@ class VirtualRobotSetupApi:
|
|
|
839
768
|
|
|
840
769
|
|
|
841
770
|
@validate_call
|
|
842
|
-
async def
|
|
771
|
+
async def get_cell_without_preload_content(
|
|
843
772
|
self,
|
|
844
773
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
845
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
846
|
-
coordinate_system: Annotated[StrictStr, Field(description="Unique identifier addressing a coordinate system.")],
|
|
847
|
-
delete_dependent: Annotated[Optional[StrictBool], Field(description="If true, all dependent coordinate systems will be deleted as well.")] = None,
|
|
848
774
|
_request_timeout: Union[
|
|
849
775
|
None,
|
|
850
776
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -858,18 +784,12 @@ class VirtualRobotSetupApi:
|
|
|
858
784
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
859
785
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
860
786
|
) -> RESTResponseType:
|
|
861
|
-
"""
|
|
787
|
+
"""Configuration
|
|
862
788
|
|
|
863
|
-
|
|
789
|
+
List all cell resources.
|
|
864
790
|
|
|
865
791
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
866
792
|
:type cell: str
|
|
867
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
868
|
-
:type controller: str
|
|
869
|
-
:param coordinate_system: Unique identifier addressing a coordinate system. (required)
|
|
870
|
-
:type coordinate_system: str
|
|
871
|
-
:param delete_dependent: If true, all dependent coordinate systems will be deleted as well.
|
|
872
|
-
:type delete_dependent: bool
|
|
873
793
|
:param _request_timeout: timeout setting for this request. If one
|
|
874
794
|
number provided, it will be total request
|
|
875
795
|
timeout. It can also be a pair (tuple) of
|
|
@@ -892,11 +812,8 @@ class VirtualRobotSetupApi:
|
|
|
892
812
|
:return: Returns the result object.
|
|
893
813
|
""" # noqa: E501
|
|
894
814
|
|
|
895
|
-
_param = self.
|
|
815
|
+
_param = self._get_cell_serialize(
|
|
896
816
|
cell=cell,
|
|
897
|
-
controller=controller,
|
|
898
|
-
coordinate_system=coordinate_system,
|
|
899
|
-
delete_dependent=delete_dependent,
|
|
900
817
|
_request_auth=_request_auth,
|
|
901
818
|
_content_type=_content_type,
|
|
902
819
|
_headers=_headers,
|
|
@@ -904,321 +821,10 @@ class VirtualRobotSetupApi:
|
|
|
904
821
|
)
|
|
905
822
|
|
|
906
823
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
907
|
-
'200':
|
|
908
|
-
'400': "Error",
|
|
824
|
+
'200': "Cell",
|
|
909
825
|
'404': "Error",
|
|
910
|
-
}
|
|
911
|
-
response_data = await self.api_client.call_api(
|
|
912
|
-
*_param,
|
|
913
|
-
_request_timeout=_request_timeout
|
|
914
|
-
)
|
|
915
|
-
return response_data.response
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
def _delete_virtual_robot_coordinate_system_serialize(
|
|
919
|
-
self,
|
|
920
|
-
cell,
|
|
921
|
-
controller,
|
|
922
|
-
coordinate_system,
|
|
923
|
-
delete_dependent,
|
|
924
|
-
_request_auth,
|
|
925
|
-
_content_type,
|
|
926
|
-
_headers,
|
|
927
|
-
_host_index,
|
|
928
|
-
) -> RequestSerialized:
|
|
929
|
-
|
|
930
|
-
_host = None
|
|
931
|
-
|
|
932
|
-
_collection_formats: Dict[str, str] = {
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
_path_params: Dict[str, str] = {}
|
|
936
|
-
_query_params: List[Tuple[str, str]] = []
|
|
937
|
-
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
938
|
-
_form_params: List[Tuple[str, str]] = []
|
|
939
|
-
_files: Dict[str, Union[str, bytes]] = {}
|
|
940
|
-
_body_params: Optional[bytes] = None
|
|
941
|
-
|
|
942
|
-
# process the path parameters
|
|
943
|
-
if cell is not None:
|
|
944
|
-
_path_params['cell'] = cell
|
|
945
|
-
if controller is not None:
|
|
946
|
-
_path_params['controller'] = controller
|
|
947
|
-
if coordinate_system is not None:
|
|
948
|
-
_path_params['coordinate-system'] = coordinate_system
|
|
949
|
-
# process the query parameters
|
|
950
|
-
if delete_dependent is not None:
|
|
951
|
-
|
|
952
|
-
_query_params.append(('delete_dependent', delete_dependent))
|
|
953
|
-
|
|
954
|
-
# process the header parameters
|
|
955
|
-
# process the form parameters
|
|
956
|
-
# process the body parameter
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
# set the HTTP header `Accept`
|
|
960
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
961
|
-
[
|
|
962
|
-
'application/json'
|
|
963
|
-
]
|
|
964
|
-
)
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
# authentication setting
|
|
968
|
-
_auth_settings: List[str] = [
|
|
969
|
-
'BasicAuth',
|
|
970
|
-
'BearerAuth'
|
|
971
|
-
]
|
|
972
|
-
|
|
973
|
-
return self.api_client.param_serialize(
|
|
974
|
-
method='DELETE',
|
|
975
|
-
resource_path='/cells/{cell}/controllers/{controller}/teach-pendant/coordinate-systems/{coordinate-system}',
|
|
976
|
-
path_params=_path_params,
|
|
977
|
-
query_params=_query_params,
|
|
978
|
-
header_params=_header_params,
|
|
979
|
-
body=_body_params,
|
|
980
|
-
post_params=_form_params,
|
|
981
|
-
files=_files,
|
|
982
|
-
auth_settings=_auth_settings,
|
|
983
|
-
collection_formats=_collection_formats,
|
|
984
|
-
_host=_host,
|
|
985
|
-
_request_auth=_request_auth
|
|
986
|
-
)
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
@validate_call
|
|
991
|
-
async def delete_virtual_robot_tcp(
|
|
992
|
-
self,
|
|
993
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
994
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
995
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
996
|
-
tcp: Annotated[StrictStr, Field(description="The unique identifier of a TCP.")],
|
|
997
|
-
_request_timeout: Union[
|
|
998
|
-
None,
|
|
999
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1000
|
-
Tuple[
|
|
1001
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1002
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1003
|
-
]
|
|
1004
|
-
] = None,
|
|
1005
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1006
|
-
_content_type: Optional[StrictStr] = None,
|
|
1007
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1008
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1009
|
-
) -> None:
|
|
1010
|
-
"""Remove TCP
|
|
1011
|
-
|
|
1012
|
-
Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
1013
|
-
|
|
1014
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1015
|
-
:type cell: str
|
|
1016
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1017
|
-
:type controller: str
|
|
1018
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1019
|
-
:type motion_group: str
|
|
1020
|
-
:param tcp: The unique identifier of a TCP. (required)
|
|
1021
|
-
:type tcp: str
|
|
1022
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1023
|
-
number provided, it will be total request
|
|
1024
|
-
timeout. It can also be a pair (tuple) of
|
|
1025
|
-
(connection, read) timeouts.
|
|
1026
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1027
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1028
|
-
request; this effectively ignores the
|
|
1029
|
-
authentication in the spec for a single request.
|
|
1030
|
-
:type _request_auth: dict, optional
|
|
1031
|
-
:param _content_type: force content-type for the request.
|
|
1032
|
-
:type _content_type: str, Optional
|
|
1033
|
-
:param _headers: set to override the headers for a single
|
|
1034
|
-
request; this effectively ignores the headers
|
|
1035
|
-
in the spec for a single request.
|
|
1036
|
-
:type _headers: dict, optional
|
|
1037
|
-
:param _host_index: set to override the host_index for a single
|
|
1038
|
-
request; this effectively ignores the host_index
|
|
1039
|
-
in the spec for a single request.
|
|
1040
|
-
:type _host_index: int, optional
|
|
1041
|
-
:return: Returns the result object.
|
|
1042
|
-
""" # noqa: E501
|
|
826
|
+
}
|
|
1043
827
|
|
|
1044
|
-
_param = self._delete_virtual_robot_tcp_serialize(
|
|
1045
|
-
cell=cell,
|
|
1046
|
-
controller=controller,
|
|
1047
|
-
motion_group=motion_group,
|
|
1048
|
-
tcp=tcp,
|
|
1049
|
-
_request_auth=_request_auth,
|
|
1050
|
-
_content_type=_content_type,
|
|
1051
|
-
_headers=_headers,
|
|
1052
|
-
_host_index=_host_index
|
|
1053
|
-
)
|
|
1054
|
-
|
|
1055
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1056
|
-
'200': None,
|
|
1057
|
-
'400': "Error",
|
|
1058
|
-
'404': "Error",
|
|
1059
|
-
}
|
|
1060
|
-
response_data = await self.api_client.call_api(
|
|
1061
|
-
*_param,
|
|
1062
|
-
_request_timeout=_request_timeout
|
|
1063
|
-
)
|
|
1064
|
-
await response_data.read()
|
|
1065
|
-
return self.api_client.response_deserialize(
|
|
1066
|
-
response_data=response_data,
|
|
1067
|
-
response_types_map=_response_types_map,
|
|
1068
|
-
).data
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
@validate_call
|
|
1072
|
-
async def delete_virtual_robot_tcp_with_http_info(
|
|
1073
|
-
self,
|
|
1074
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1075
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1076
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1077
|
-
tcp: Annotated[StrictStr, Field(description="The unique identifier of a TCP.")],
|
|
1078
|
-
_request_timeout: Union[
|
|
1079
|
-
None,
|
|
1080
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1081
|
-
Tuple[
|
|
1082
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1083
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1084
|
-
]
|
|
1085
|
-
] = None,
|
|
1086
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1087
|
-
_content_type: Optional[StrictStr] = None,
|
|
1088
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1089
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1090
|
-
) -> ApiResponse[None]:
|
|
1091
|
-
"""Remove TCP
|
|
1092
|
-
|
|
1093
|
-
Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
1094
|
-
|
|
1095
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1096
|
-
:type cell: str
|
|
1097
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1098
|
-
:type controller: str
|
|
1099
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1100
|
-
:type motion_group: str
|
|
1101
|
-
:param tcp: The unique identifier of a TCP. (required)
|
|
1102
|
-
:type tcp: str
|
|
1103
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1104
|
-
number provided, it will be total request
|
|
1105
|
-
timeout. It can also be a pair (tuple) of
|
|
1106
|
-
(connection, read) timeouts.
|
|
1107
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1108
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1109
|
-
request; this effectively ignores the
|
|
1110
|
-
authentication in the spec for a single request.
|
|
1111
|
-
:type _request_auth: dict, optional
|
|
1112
|
-
:param _content_type: force content-type for the request.
|
|
1113
|
-
:type _content_type: str, Optional
|
|
1114
|
-
:param _headers: set to override the headers for a single
|
|
1115
|
-
request; this effectively ignores the headers
|
|
1116
|
-
in the spec for a single request.
|
|
1117
|
-
:type _headers: dict, optional
|
|
1118
|
-
:param _host_index: set to override the host_index for a single
|
|
1119
|
-
request; this effectively ignores the host_index
|
|
1120
|
-
in the spec for a single request.
|
|
1121
|
-
:type _host_index: int, optional
|
|
1122
|
-
:return: Returns the result object.
|
|
1123
|
-
""" # noqa: E501
|
|
1124
|
-
|
|
1125
|
-
_param = self._delete_virtual_robot_tcp_serialize(
|
|
1126
|
-
cell=cell,
|
|
1127
|
-
controller=controller,
|
|
1128
|
-
motion_group=motion_group,
|
|
1129
|
-
tcp=tcp,
|
|
1130
|
-
_request_auth=_request_auth,
|
|
1131
|
-
_content_type=_content_type,
|
|
1132
|
-
_headers=_headers,
|
|
1133
|
-
_host_index=_host_index
|
|
1134
|
-
)
|
|
1135
|
-
|
|
1136
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1137
|
-
'200': None,
|
|
1138
|
-
'400': "Error",
|
|
1139
|
-
'404': "Error",
|
|
1140
|
-
}
|
|
1141
|
-
response_data = await self.api_client.call_api(
|
|
1142
|
-
*_param,
|
|
1143
|
-
_request_timeout=_request_timeout
|
|
1144
|
-
)
|
|
1145
|
-
await response_data.read()
|
|
1146
|
-
return self.api_client.response_deserialize(
|
|
1147
|
-
response_data=response_data,
|
|
1148
|
-
response_types_map=_response_types_map,
|
|
1149
|
-
)
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
@validate_call
|
|
1153
|
-
async def delete_virtual_robot_tcp_without_preload_content(
|
|
1154
|
-
self,
|
|
1155
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1156
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1157
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1158
|
-
tcp: Annotated[StrictStr, Field(description="The unique identifier of a TCP.")],
|
|
1159
|
-
_request_timeout: Union[
|
|
1160
|
-
None,
|
|
1161
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1162
|
-
Tuple[
|
|
1163
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1164
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1165
|
-
]
|
|
1166
|
-
] = None,
|
|
1167
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1168
|
-
_content_type: Optional[StrictStr] = None,
|
|
1169
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1170
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1171
|
-
) -> RESTResponseType:
|
|
1172
|
-
"""Remove TCP
|
|
1173
|
-
|
|
1174
|
-
Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
1175
|
-
|
|
1176
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1177
|
-
:type cell: str
|
|
1178
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1179
|
-
:type controller: str
|
|
1180
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1181
|
-
:type motion_group: str
|
|
1182
|
-
:param tcp: The unique identifier of a TCP. (required)
|
|
1183
|
-
:type tcp: str
|
|
1184
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1185
|
-
number provided, it will be total request
|
|
1186
|
-
timeout. It can also be a pair (tuple) of
|
|
1187
|
-
(connection, read) timeouts.
|
|
1188
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1189
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1190
|
-
request; this effectively ignores the
|
|
1191
|
-
authentication in the spec for a single request.
|
|
1192
|
-
:type _request_auth: dict, optional
|
|
1193
|
-
:param _content_type: force content-type for the request.
|
|
1194
|
-
:type _content_type: str, Optional
|
|
1195
|
-
:param _headers: set to override the headers for a single
|
|
1196
|
-
request; this effectively ignores the headers
|
|
1197
|
-
in the spec for a single request.
|
|
1198
|
-
:type _headers: dict, optional
|
|
1199
|
-
:param _host_index: set to override the host_index for a single
|
|
1200
|
-
request; this effectively ignores the host_index
|
|
1201
|
-
in the spec for a single request.
|
|
1202
|
-
:type _host_index: int, optional
|
|
1203
|
-
:return: Returns the result object.
|
|
1204
|
-
""" # noqa: E501
|
|
1205
|
-
|
|
1206
|
-
_param = self._delete_virtual_robot_tcp_serialize(
|
|
1207
|
-
cell=cell,
|
|
1208
|
-
controller=controller,
|
|
1209
|
-
motion_group=motion_group,
|
|
1210
|
-
tcp=tcp,
|
|
1211
|
-
_request_auth=_request_auth,
|
|
1212
|
-
_content_type=_content_type,
|
|
1213
|
-
_headers=_headers,
|
|
1214
|
-
_host_index=_host_index
|
|
1215
|
-
)
|
|
1216
|
-
|
|
1217
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1218
|
-
'200': None,
|
|
1219
|
-
'400': "Error",
|
|
1220
|
-
'404': "Error",
|
|
1221
|
-
}
|
|
1222
828
|
response_data = await self.api_client.call_api(
|
|
1223
829
|
*_param,
|
|
1224
830
|
_request_timeout=_request_timeout
|
|
@@ -1226,12 +832,9 @@ class VirtualRobotSetupApi:
|
|
|
1226
832
|
return response_data.response
|
|
1227
833
|
|
|
1228
834
|
|
|
1229
|
-
def
|
|
835
|
+
def _get_cell_serialize(
|
|
1230
836
|
self,
|
|
1231
837
|
cell,
|
|
1232
|
-
controller,
|
|
1233
|
-
motion_group,
|
|
1234
|
-
tcp,
|
|
1235
838
|
_request_auth,
|
|
1236
839
|
_content_type,
|
|
1237
840
|
_headers,
|
|
@@ -1253,12 +856,6 @@ class VirtualRobotSetupApi:
|
|
|
1253
856
|
# process the path parameters
|
|
1254
857
|
if cell is not None:
|
|
1255
858
|
_path_params['cell'] = cell
|
|
1256
|
-
if controller is not None:
|
|
1257
|
-
_path_params['controller'] = controller
|
|
1258
|
-
if motion_group is not None:
|
|
1259
|
-
_path_params['motion-group'] = motion_group
|
|
1260
|
-
if tcp is not None:
|
|
1261
|
-
_path_params['tcp'] = tcp
|
|
1262
859
|
# process the query parameters
|
|
1263
860
|
# process the header parameters
|
|
1264
861
|
# process the form parameters
|
|
@@ -1280,8 +877,8 @@ class VirtualRobotSetupApi:
|
|
|
1280
877
|
]
|
|
1281
878
|
|
|
1282
879
|
return self.api_client.param_serialize(
|
|
1283
|
-
method='
|
|
1284
|
-
resource_path='/cells/{cell}
|
|
880
|
+
method='GET',
|
|
881
|
+
resource_path='/cells/{cell}',
|
|
1285
882
|
path_params=_path_params,
|
|
1286
883
|
query_params=_query_params,
|
|
1287
884
|
header_params=_header_params,
|
|
@@ -1297,11 +894,9 @@ class VirtualRobotSetupApi:
|
|
|
1297
894
|
|
|
1298
895
|
|
|
1299
896
|
@validate_call
|
|
1300
|
-
async def
|
|
897
|
+
async def get_cell_status(
|
|
1301
898
|
self,
|
|
1302
899
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1303
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1304
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1305
900
|
_request_timeout: Union[
|
|
1306
901
|
None,
|
|
1307
902
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1314,17 +909,13 @@ class VirtualRobotSetupApi:
|
|
|
1314
909
|
_content_type: Optional[StrictStr] = None,
|
|
1315
910
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1316
911
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1317
|
-
) ->
|
|
1318
|
-
"""
|
|
912
|
+
) -> ServiceStatusResponse:
|
|
913
|
+
"""Service Status
|
|
1319
914
|
|
|
1320
|
-
|
|
915
|
+
List the status of all cell resources.
|
|
1321
916
|
|
|
1322
917
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1323
918
|
:type cell: str
|
|
1324
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1325
|
-
:type controller: str
|
|
1326
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1327
|
-
:type motion_group: str
|
|
1328
919
|
:param _request_timeout: timeout setting for this request. If one
|
|
1329
920
|
number provided, it will be total request
|
|
1330
921
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1347,10 +938,8 @@ class VirtualRobotSetupApi:
|
|
|
1347
938
|
:return: Returns the result object.
|
|
1348
939
|
""" # noqa: E501
|
|
1349
940
|
|
|
1350
|
-
_param = self.
|
|
941
|
+
_param = self._get_cell_status_serialize(
|
|
1351
942
|
cell=cell,
|
|
1352
|
-
controller=controller,
|
|
1353
|
-
motion_group=motion_group,
|
|
1354
943
|
_request_auth=_request_auth,
|
|
1355
944
|
_content_type=_content_type,
|
|
1356
945
|
_headers=_headers,
|
|
@@ -1358,10 +947,10 @@ class VirtualRobotSetupApi:
|
|
|
1358
947
|
)
|
|
1359
948
|
|
|
1360
949
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1361
|
-
'200': "
|
|
1362
|
-
'400': "Error",
|
|
950
|
+
'200': "ServiceStatusResponse",
|
|
1363
951
|
'404': "Error",
|
|
1364
|
-
}
|
|
952
|
+
}
|
|
953
|
+
|
|
1365
954
|
response_data = await self.api_client.call_api(
|
|
1366
955
|
*_param,
|
|
1367
956
|
_request_timeout=_request_timeout
|
|
@@ -1374,11 +963,9 @@ class VirtualRobotSetupApi:
|
|
|
1374
963
|
|
|
1375
964
|
|
|
1376
965
|
@validate_call
|
|
1377
|
-
async def
|
|
966
|
+
async def get_cell_status_with_http_info(
|
|
1378
967
|
self,
|
|
1379
968
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1380
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1381
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1382
969
|
_request_timeout: Union[
|
|
1383
970
|
None,
|
|
1384
971
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1391,17 +978,13 @@ class VirtualRobotSetupApi:
|
|
|
1391
978
|
_content_type: Optional[StrictStr] = None,
|
|
1392
979
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1393
980
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1394
|
-
) -> ApiResponse[
|
|
1395
|
-
"""
|
|
981
|
+
) -> ApiResponse[ServiceStatusResponse]:
|
|
982
|
+
"""Service Status
|
|
1396
983
|
|
|
1397
|
-
|
|
984
|
+
List the status of all cell resources.
|
|
1398
985
|
|
|
1399
986
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1400
987
|
:type cell: str
|
|
1401
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1402
|
-
:type controller: str
|
|
1403
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1404
|
-
:type motion_group: str
|
|
1405
988
|
:param _request_timeout: timeout setting for this request. If one
|
|
1406
989
|
number provided, it will be total request
|
|
1407
990
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1424,10 +1007,8 @@ class VirtualRobotSetupApi:
|
|
|
1424
1007
|
:return: Returns the result object.
|
|
1425
1008
|
""" # noqa: E501
|
|
1426
1009
|
|
|
1427
|
-
_param = self.
|
|
1010
|
+
_param = self._get_cell_status_serialize(
|
|
1428
1011
|
cell=cell,
|
|
1429
|
-
controller=controller,
|
|
1430
|
-
motion_group=motion_group,
|
|
1431
1012
|
_request_auth=_request_auth,
|
|
1432
1013
|
_content_type=_content_type,
|
|
1433
1014
|
_headers=_headers,
|
|
@@ -1435,10 +1016,10 @@ class VirtualRobotSetupApi:
|
|
|
1435
1016
|
)
|
|
1436
1017
|
|
|
1437
1018
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1438
|
-
'200': "
|
|
1439
|
-
'400': "Error",
|
|
1019
|
+
'200': "ServiceStatusResponse",
|
|
1440
1020
|
'404': "Error",
|
|
1441
|
-
}
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1442
1023
|
response_data = await self.api_client.call_api(
|
|
1443
1024
|
*_param,
|
|
1444
1025
|
_request_timeout=_request_timeout
|
|
@@ -1451,11 +1032,9 @@ class VirtualRobotSetupApi:
|
|
|
1451
1032
|
|
|
1452
1033
|
|
|
1453
1034
|
@validate_call
|
|
1454
|
-
async def
|
|
1035
|
+
async def get_cell_status_without_preload_content(
|
|
1455
1036
|
self,
|
|
1456
1037
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1457
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1458
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1459
1038
|
_request_timeout: Union[
|
|
1460
1039
|
None,
|
|
1461
1040
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1469,16 +1048,12 @@ class VirtualRobotSetupApi:
|
|
|
1469
1048
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1470
1049
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1471
1050
|
) -> RESTResponseType:
|
|
1472
|
-
"""
|
|
1051
|
+
"""Service Status
|
|
1473
1052
|
|
|
1474
|
-
|
|
1053
|
+
List the status of all cell resources.
|
|
1475
1054
|
|
|
1476
1055
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1477
1056
|
:type cell: str
|
|
1478
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1479
|
-
:type controller: str
|
|
1480
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1481
|
-
:type motion_group: str
|
|
1482
1057
|
:param _request_timeout: timeout setting for this request. If one
|
|
1483
1058
|
number provided, it will be total request
|
|
1484
1059
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1501,10 +1076,8 @@ class VirtualRobotSetupApi:
|
|
|
1501
1076
|
:return: Returns the result object.
|
|
1502
1077
|
""" # noqa: E501
|
|
1503
1078
|
|
|
1504
|
-
_param = self.
|
|
1079
|
+
_param = self._get_cell_status_serialize(
|
|
1505
1080
|
cell=cell,
|
|
1506
|
-
controller=controller,
|
|
1507
|
-
motion_group=motion_group,
|
|
1508
1081
|
_request_auth=_request_auth,
|
|
1509
1082
|
_content_type=_content_type,
|
|
1510
1083
|
_headers=_headers,
|
|
@@ -1512,10 +1085,10 @@ class VirtualRobotSetupApi:
|
|
|
1512
1085
|
)
|
|
1513
1086
|
|
|
1514
1087
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1515
|
-
'200': "
|
|
1516
|
-
'400': "Error",
|
|
1088
|
+
'200': "ServiceStatusResponse",
|
|
1517
1089
|
'404': "Error",
|
|
1518
|
-
}
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1519
1092
|
response_data = await self.api_client.call_api(
|
|
1520
1093
|
*_param,
|
|
1521
1094
|
_request_timeout=_request_timeout
|
|
@@ -1523,11 +1096,9 @@ class VirtualRobotSetupApi:
|
|
|
1523
1096
|
return response_data.response
|
|
1524
1097
|
|
|
1525
1098
|
|
|
1526
|
-
def
|
|
1099
|
+
def _get_cell_status_serialize(
|
|
1527
1100
|
self,
|
|
1528
1101
|
cell,
|
|
1529
|
-
controller,
|
|
1530
|
-
motion_group,
|
|
1531
1102
|
_request_auth,
|
|
1532
1103
|
_content_type,
|
|
1533
1104
|
_headers,
|
|
@@ -1549,10 +1120,6 @@ class VirtualRobotSetupApi:
|
|
|
1549
1120
|
# process the path parameters
|
|
1550
1121
|
if cell is not None:
|
|
1551
1122
|
_path_params['cell'] = cell
|
|
1552
|
-
if controller is not None:
|
|
1553
|
-
_path_params['controller'] = controller
|
|
1554
|
-
if motion_group is not None:
|
|
1555
|
-
_path_params['motion-group'] = motion_group
|
|
1556
1123
|
# process the query parameters
|
|
1557
1124
|
# process the header parameters
|
|
1558
1125
|
# process the form parameters
|
|
@@ -1575,7 +1142,7 @@ class VirtualRobotSetupApi:
|
|
|
1575
1142
|
|
|
1576
1143
|
return self.api_client.param_serialize(
|
|
1577
1144
|
method='GET',
|
|
1578
|
-
resource_path='/cells/{cell}/
|
|
1145
|
+
resource_path='/cells/{cell}/status',
|
|
1579
1146
|
path_params=_path_params,
|
|
1580
1147
|
query_params=_query_params,
|
|
1581
1148
|
header_params=_header_params,
|
|
@@ -1591,10 +1158,8 @@ class VirtualRobotSetupApi:
|
|
|
1591
1158
|
|
|
1592
1159
|
|
|
1593
1160
|
@validate_call
|
|
1594
|
-
async def
|
|
1161
|
+
async def list_cells(
|
|
1595
1162
|
self,
|
|
1596
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1597
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1598
1163
|
_request_timeout: Union[
|
|
1599
1164
|
None,
|
|
1600
1165
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1607,15 +1172,11 @@ class VirtualRobotSetupApi:
|
|
|
1607
1172
|
_content_type: Optional[StrictStr] = None,
|
|
1608
1173
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1609
1174
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1610
|
-
) ->
|
|
1611
|
-
"""List
|
|
1175
|
+
) -> List[str]:
|
|
1176
|
+
"""List Cells
|
|
1612
1177
|
|
|
1613
|
-
|
|
1178
|
+
List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
1614
1179
|
|
|
1615
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1616
|
-
:type cell: str
|
|
1617
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1618
|
-
:type controller: str
|
|
1619
1180
|
:param _request_timeout: timeout setting for this request. If one
|
|
1620
1181
|
number provided, it will be total request
|
|
1621
1182
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1638,9 +1199,7 @@ class VirtualRobotSetupApi:
|
|
|
1638
1199
|
:return: Returns the result object.
|
|
1639
1200
|
""" # noqa: E501
|
|
1640
1201
|
|
|
1641
|
-
_param = self.
|
|
1642
|
-
cell=cell,
|
|
1643
|
-
controller=controller,
|
|
1202
|
+
_param = self._list_cells_serialize(
|
|
1644
1203
|
_request_auth=_request_auth,
|
|
1645
1204
|
_content_type=_content_type,
|
|
1646
1205
|
_headers=_headers,
|
|
@@ -1648,9 +1207,9 @@ class VirtualRobotSetupApi:
|
|
|
1648
1207
|
)
|
|
1649
1208
|
|
|
1650
1209
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1651
|
-
'200': "
|
|
1652
|
-
|
|
1653
|
-
|
|
1210
|
+
'200': "List[str]",
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1654
1213
|
response_data = await self.api_client.call_api(
|
|
1655
1214
|
*_param,
|
|
1656
1215
|
_request_timeout=_request_timeout
|
|
@@ -1663,10 +1222,8 @@ class VirtualRobotSetupApi:
|
|
|
1663
1222
|
|
|
1664
1223
|
|
|
1665
1224
|
@validate_call
|
|
1666
|
-
async def
|
|
1225
|
+
async def list_cells_with_http_info(
|
|
1667
1226
|
self,
|
|
1668
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1669
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1670
1227
|
_request_timeout: Union[
|
|
1671
1228
|
None,
|
|
1672
1229
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1679,15 +1236,11 @@ class VirtualRobotSetupApi:
|
|
|
1679
1236
|
_content_type: Optional[StrictStr] = None,
|
|
1680
1237
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1681
1238
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1682
|
-
) -> ApiResponse[
|
|
1683
|
-
"""List
|
|
1239
|
+
) -> ApiResponse[List[str]]:
|
|
1240
|
+
"""List Cells
|
|
1684
1241
|
|
|
1685
|
-
|
|
1242
|
+
List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
1686
1243
|
|
|
1687
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1688
|
-
:type cell: str
|
|
1689
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1690
|
-
:type controller: str
|
|
1691
1244
|
:param _request_timeout: timeout setting for this request. If one
|
|
1692
1245
|
number provided, it will be total request
|
|
1693
1246
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1710,9 +1263,7 @@ class VirtualRobotSetupApi:
|
|
|
1710
1263
|
:return: Returns the result object.
|
|
1711
1264
|
""" # noqa: E501
|
|
1712
1265
|
|
|
1713
|
-
_param = self.
|
|
1714
|
-
cell=cell,
|
|
1715
|
-
controller=controller,
|
|
1266
|
+
_param = self._list_cells_serialize(
|
|
1716
1267
|
_request_auth=_request_auth,
|
|
1717
1268
|
_content_type=_content_type,
|
|
1718
1269
|
_headers=_headers,
|
|
@@ -1720,9 +1271,9 @@ class VirtualRobotSetupApi:
|
|
|
1720
1271
|
)
|
|
1721
1272
|
|
|
1722
1273
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1723
|
-
'200': "
|
|
1724
|
-
|
|
1725
|
-
|
|
1274
|
+
'200': "List[str]",
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1726
1277
|
response_data = await self.api_client.call_api(
|
|
1727
1278
|
*_param,
|
|
1728
1279
|
_request_timeout=_request_timeout
|
|
@@ -1735,10 +1286,8 @@ class VirtualRobotSetupApi:
|
|
|
1735
1286
|
|
|
1736
1287
|
|
|
1737
1288
|
@validate_call
|
|
1738
|
-
async def
|
|
1289
|
+
async def list_cells_without_preload_content(
|
|
1739
1290
|
self,
|
|
1740
|
-
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1741
|
-
controller: Annotated[StrictStr, Field(description="Unique identifier to address a controller in the cell.")],
|
|
1742
1291
|
_request_timeout: Union[
|
|
1743
1292
|
None,
|
|
1744
1293
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1752,14 +1301,10 @@ class VirtualRobotSetupApi:
|
|
|
1752
1301
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1753
1302
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1754
1303
|
) -> RESTResponseType:
|
|
1755
|
-
"""List
|
|
1304
|
+
"""List Cells
|
|
1756
1305
|
|
|
1757
|
-
|
|
1306
|
+
List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
1758
1307
|
|
|
1759
|
-
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1760
|
-
:type cell: str
|
|
1761
|
-
:param controller: Unique identifier to address a controller in the cell. (required)
|
|
1762
|
-
:type controller: str
|
|
1763
1308
|
:param _request_timeout: timeout setting for this request. If one
|
|
1764
1309
|
number provided, it will be total request
|
|
1765
1310
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1782,9 +1327,7 @@ class VirtualRobotSetupApi:
|
|
|
1782
1327
|
:return: Returns the result object.
|
|
1783
1328
|
""" # noqa: E501
|
|
1784
1329
|
|
|
1785
|
-
_param = self.
|
|
1786
|
-
cell=cell,
|
|
1787
|
-
controller=controller,
|
|
1330
|
+
_param = self._list_cells_serialize(
|
|
1788
1331
|
_request_auth=_request_auth,
|
|
1789
1332
|
_content_type=_content_type,
|
|
1790
1333
|
_headers=_headers,
|
|
@@ -1792,9 +1335,9 @@ class VirtualRobotSetupApi:
|
|
|
1792
1335
|
)
|
|
1793
1336
|
|
|
1794
1337
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1795
|
-
'200': "
|
|
1796
|
-
|
|
1797
|
-
|
|
1338
|
+
'200': "List[str]",
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1798
1341
|
response_data = await self.api_client.call_api(
|
|
1799
1342
|
*_param,
|
|
1800
1343
|
_request_timeout=_request_timeout
|
|
@@ -1802,10 +1345,8 @@ class VirtualRobotSetupApi:
|
|
|
1802
1345
|
return response_data.response
|
|
1803
1346
|
|
|
1804
1347
|
|
|
1805
|
-
def
|
|
1348
|
+
def _list_cells_serialize(
|
|
1806
1349
|
self,
|
|
1807
|
-
cell,
|
|
1808
|
-
controller,
|
|
1809
1350
|
_request_auth,
|
|
1810
1351
|
_content_type,
|
|
1811
1352
|
_headers,
|
|
@@ -1825,10 +1366,6 @@ class VirtualRobotSetupApi:
|
|
|
1825
1366
|
_body_params: Optional[bytes] = None
|
|
1826
1367
|
|
|
1827
1368
|
# process the path parameters
|
|
1828
|
-
if cell is not None:
|
|
1829
|
-
_path_params['cell'] = cell
|
|
1830
|
-
if controller is not None:
|
|
1831
|
-
_path_params['controller'] = controller
|
|
1832
1369
|
# process the query parameters
|
|
1833
1370
|
# process the header parameters
|
|
1834
1371
|
# process the form parameters
|
|
@@ -1851,7 +1388,7 @@ class VirtualRobotSetupApi:
|
|
|
1851
1388
|
|
|
1852
1389
|
return self.api_client.param_serialize(
|
|
1853
1390
|
method='GET',
|
|
1854
|
-
resource_path='/cells
|
|
1391
|
+
resource_path='/cells',
|
|
1855
1392
|
path_params=_path_params,
|
|
1856
1393
|
query_params=_query_params,
|
|
1857
1394
|
header_params=_header_params,
|
|
@@ -1867,11 +1404,10 @@ class VirtualRobotSetupApi:
|
|
|
1867
1404
|
|
|
1868
1405
|
|
|
1869
1406
|
@validate_call
|
|
1870
|
-
async def
|
|
1407
|
+
async def set_cell_status(
|
|
1871
1408
|
self,
|
|
1872
1409
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1873
|
-
|
|
1874
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1410
|
+
operating_state: Annotated[OperatingState, Field(description="Set state of the cell. Active or inactive.")],
|
|
1875
1411
|
_request_timeout: Union[
|
|
1876
1412
|
None,
|
|
1877
1413
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1884,17 +1420,15 @@ class VirtualRobotSetupApi:
|
|
|
1884
1420
|
_content_type: Optional[StrictStr] = None,
|
|
1885
1421
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1886
1422
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1887
|
-
) ->
|
|
1888
|
-
"""
|
|
1423
|
+
) -> None:
|
|
1424
|
+
"""Operating State
|
|
1889
1425
|
|
|
1890
|
-
|
|
1426
|
+
Deactivate or activate the services of a cell.
|
|
1891
1427
|
|
|
1892
1428
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1893
1429
|
:type cell: str
|
|
1894
|
-
:param
|
|
1895
|
-
:type
|
|
1896
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1897
|
-
:type motion_group: str
|
|
1430
|
+
:param operating_state: Set state of the cell. Active or inactive. (required)
|
|
1431
|
+
:type operating_state: OperatingState
|
|
1898
1432
|
:param _request_timeout: timeout setting for this request. If one
|
|
1899
1433
|
number provided, it will be total request
|
|
1900
1434
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1917,10 +1451,9 @@ class VirtualRobotSetupApi:
|
|
|
1917
1451
|
:return: Returns the result object.
|
|
1918
1452
|
""" # noqa: E501
|
|
1919
1453
|
|
|
1920
|
-
_param = self.
|
|
1454
|
+
_param = self._set_cell_status_serialize(
|
|
1921
1455
|
cell=cell,
|
|
1922
|
-
|
|
1923
|
-
motion_group=motion_group,
|
|
1456
|
+
operating_state=operating_state,
|
|
1924
1457
|
_request_auth=_request_auth,
|
|
1925
1458
|
_content_type=_content_type,
|
|
1926
1459
|
_headers=_headers,
|
|
@@ -1928,10 +1461,10 @@ class VirtualRobotSetupApi:
|
|
|
1928
1461
|
)
|
|
1929
1462
|
|
|
1930
1463
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1931
|
-
'
|
|
1932
|
-
'400': "Error",
|
|
1464
|
+
'202': None,
|
|
1933
1465
|
'404': "Error",
|
|
1934
|
-
}
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1935
1468
|
response_data = await self.api_client.call_api(
|
|
1936
1469
|
*_param,
|
|
1937
1470
|
_request_timeout=_request_timeout
|
|
@@ -1944,11 +1477,10 @@ class VirtualRobotSetupApi:
|
|
|
1944
1477
|
|
|
1945
1478
|
|
|
1946
1479
|
@validate_call
|
|
1947
|
-
async def
|
|
1480
|
+
async def set_cell_status_with_http_info(
|
|
1948
1481
|
self,
|
|
1949
1482
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1950
|
-
|
|
1951
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1483
|
+
operating_state: Annotated[OperatingState, Field(description="Set state of the cell. Active or inactive.")],
|
|
1952
1484
|
_request_timeout: Union[
|
|
1953
1485
|
None,
|
|
1954
1486
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1961,17 +1493,15 @@ class VirtualRobotSetupApi:
|
|
|
1961
1493
|
_content_type: Optional[StrictStr] = None,
|
|
1962
1494
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1963
1495
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1964
|
-
) -> ApiResponse[
|
|
1965
|
-
"""
|
|
1496
|
+
) -> ApiResponse[None]:
|
|
1497
|
+
"""Operating State
|
|
1966
1498
|
|
|
1967
|
-
|
|
1499
|
+
Deactivate or activate the services of a cell.
|
|
1968
1500
|
|
|
1969
1501
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1970
1502
|
:type cell: str
|
|
1971
|
-
:param
|
|
1972
|
-
:type
|
|
1973
|
-
:param motion_group: The motion-group identifier. (required)
|
|
1974
|
-
:type motion_group: str
|
|
1503
|
+
:param operating_state: Set state of the cell. Active or inactive. (required)
|
|
1504
|
+
:type operating_state: OperatingState
|
|
1975
1505
|
:param _request_timeout: timeout setting for this request. If one
|
|
1976
1506
|
number provided, it will be total request
|
|
1977
1507
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1994,10 +1524,9 @@ class VirtualRobotSetupApi:
|
|
|
1994
1524
|
:return: Returns the result object.
|
|
1995
1525
|
""" # noqa: E501
|
|
1996
1526
|
|
|
1997
|
-
_param = self.
|
|
1527
|
+
_param = self._set_cell_status_serialize(
|
|
1998
1528
|
cell=cell,
|
|
1999
|
-
|
|
2000
|
-
motion_group=motion_group,
|
|
1529
|
+
operating_state=operating_state,
|
|
2001
1530
|
_request_auth=_request_auth,
|
|
2002
1531
|
_content_type=_content_type,
|
|
2003
1532
|
_headers=_headers,
|
|
@@ -2005,10 +1534,10 @@ class VirtualRobotSetupApi:
|
|
|
2005
1534
|
)
|
|
2006
1535
|
|
|
2007
1536
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2008
|
-
'
|
|
2009
|
-
'400': "Error",
|
|
1537
|
+
'202': None,
|
|
2010
1538
|
'404': "Error",
|
|
2011
|
-
}
|
|
1539
|
+
}
|
|
1540
|
+
|
|
2012
1541
|
response_data = await self.api_client.call_api(
|
|
2013
1542
|
*_param,
|
|
2014
1543
|
_request_timeout=_request_timeout
|
|
@@ -2021,11 +1550,10 @@ class VirtualRobotSetupApi:
|
|
|
2021
1550
|
|
|
2022
1551
|
|
|
2023
1552
|
@validate_call
|
|
2024
|
-
async def
|
|
1553
|
+
async def set_cell_status_without_preload_content(
|
|
2025
1554
|
self,
|
|
2026
1555
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
2027
|
-
|
|
2028
|
-
motion_group: Annotated[StrictStr, Field(description="The motion-group identifier.")],
|
|
1556
|
+
operating_state: Annotated[OperatingState, Field(description="Set state of the cell. Active or inactive.")],
|
|
2029
1557
|
_request_timeout: Union[
|
|
2030
1558
|
None,
|
|
2031
1559
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2039,16 +1567,14 @@ class VirtualRobotSetupApi:
|
|
|
2039
1567
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2040
1568
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2041
1569
|
) -> RESTResponseType:
|
|
2042
|
-
"""
|
|
1570
|
+
"""Operating State
|
|
2043
1571
|
|
|
2044
|
-
|
|
1572
|
+
Deactivate or activate the services of a cell.
|
|
2045
1573
|
|
|
2046
1574
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
2047
1575
|
:type cell: str
|
|
2048
|
-
:param
|
|
2049
|
-
:type
|
|
2050
|
-
:param motion_group: The motion-group identifier. (required)
|
|
2051
|
-
:type motion_group: str
|
|
1576
|
+
:param operating_state: Set state of the cell. Active or inactive. (required)
|
|
1577
|
+
:type operating_state: OperatingState
|
|
2052
1578
|
:param _request_timeout: timeout setting for this request. If one
|
|
2053
1579
|
number provided, it will be total request
|
|
2054
1580
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2071,10 +1597,9 @@ class VirtualRobotSetupApi:
|
|
|
2071
1597
|
:return: Returns the result object.
|
|
2072
1598
|
""" # noqa: E501
|
|
2073
1599
|
|
|
2074
|
-
_param = self.
|
|
1600
|
+
_param = self._set_cell_status_serialize(
|
|
2075
1601
|
cell=cell,
|
|
2076
|
-
|
|
2077
|
-
motion_group=motion_group,
|
|
1602
|
+
operating_state=operating_state,
|
|
2078
1603
|
_request_auth=_request_auth,
|
|
2079
1604
|
_content_type=_content_type,
|
|
2080
1605
|
_headers=_headers,
|
|
@@ -2082,10 +1607,10 @@ class VirtualRobotSetupApi:
|
|
|
2082
1607
|
)
|
|
2083
1608
|
|
|
2084
1609
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2085
|
-
'
|
|
2086
|
-
'400': "Error",
|
|
1610
|
+
'202': None,
|
|
2087
1611
|
'404': "Error",
|
|
2088
|
-
}
|
|
1612
|
+
}
|
|
1613
|
+
|
|
2089
1614
|
response_data = await self.api_client.call_api(
|
|
2090
1615
|
*_param,
|
|
2091
1616
|
_request_timeout=_request_timeout
|
|
@@ -2093,11 +1618,10 @@ class VirtualRobotSetupApi:
|
|
|
2093
1618
|
return response_data.response
|
|
2094
1619
|
|
|
2095
1620
|
|
|
2096
|
-
def
|
|
1621
|
+
def _set_cell_status_serialize(
|
|
2097
1622
|
self,
|
|
2098
1623
|
cell,
|
|
2099
|
-
|
|
2100
|
-
motion_group,
|
|
1624
|
+
operating_state,
|
|
2101
1625
|
_request_auth,
|
|
2102
1626
|
_content_type,
|
|
2103
1627
|
_headers,
|
|
@@ -2119,11 +1643,11 @@ class VirtualRobotSetupApi:
|
|
|
2119
1643
|
# process the path parameters
|
|
2120
1644
|
if cell is not None:
|
|
2121
1645
|
_path_params['cell'] = cell
|
|
2122
|
-
if controller is not None:
|
|
2123
|
-
_path_params['controller'] = controller
|
|
2124
|
-
if motion_group is not None:
|
|
2125
|
-
_path_params['motion-group'] = motion_group
|
|
2126
1646
|
# process the query parameters
|
|
1647
|
+
if operating_state is not None:
|
|
1648
|
+
|
|
1649
|
+
_query_params.append(('operating_state', operating_state.value))
|
|
1650
|
+
|
|
2127
1651
|
# process the header parameters
|
|
2128
1652
|
# process the form parameters
|
|
2129
1653
|
# process the body parameter
|
|
@@ -2144,8 +1668,8 @@ class VirtualRobotSetupApi:
|
|
|
2144
1668
|
]
|
|
2145
1669
|
|
|
2146
1670
|
return self.api_client.param_serialize(
|
|
2147
|
-
method='
|
|
2148
|
-
resource_path='/cells/{cell}/
|
|
1671
|
+
method='PUT',
|
|
1672
|
+
resource_path='/cells/{cell}/status',
|
|
2149
1673
|
path_params=_path_params,
|
|
2150
1674
|
query_params=_query_params,
|
|
2151
1675
|
header_params=_header_params,
|
|
@@ -2161,12 +1685,11 @@ class VirtualRobotSetupApi:
|
|
|
2161
1685
|
|
|
2162
1686
|
|
|
2163
1687
|
@validate_call
|
|
2164
|
-
async def
|
|
1688
|
+
async def update_cell(
|
|
2165
1689
|
self,
|
|
2166
1690
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
coordinate_system: CoordinateSystem,
|
|
1691
|
+
cell2: Cell,
|
|
1692
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
2170
1693
|
_request_timeout: Union[
|
|
2171
1694
|
None,
|
|
2172
1695
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2179,19 +1702,17 @@ class VirtualRobotSetupApi:
|
|
|
2179
1702
|
_content_type: Optional[StrictStr] = None,
|
|
2180
1703
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2181
1704
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2182
|
-
) ->
|
|
2183
|
-
"""
|
|
1705
|
+
) -> None:
|
|
1706
|
+
"""Update Configuration
|
|
2184
1707
|
|
|
2185
|
-
|
|
1708
|
+
Update the definition of the entire Cell.
|
|
2186
1709
|
|
|
2187
1710
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
2188
1711
|
:type cell: str
|
|
2189
|
-
:param
|
|
2190
|
-
:type
|
|
2191
|
-
:param
|
|
2192
|
-
:type
|
|
2193
|
-
:param coordinate_system: (required)
|
|
2194
|
-
:type coordinate_system: CoordinateSystem
|
|
1712
|
+
:param cell2: (required)
|
|
1713
|
+
:type cell2: Cell
|
|
1714
|
+
:param completion_timeout:
|
|
1715
|
+
:type completion_timeout: int
|
|
2195
1716
|
:param _request_timeout: timeout setting for this request. If one
|
|
2196
1717
|
number provided, it will be total request
|
|
2197
1718
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2214,11 +1735,10 @@ class VirtualRobotSetupApi:
|
|
|
2214
1735
|
:return: Returns the result object.
|
|
2215
1736
|
""" # noqa: E501
|
|
2216
1737
|
|
|
2217
|
-
_param = self.
|
|
1738
|
+
_param = self._update_cell_serialize(
|
|
2218
1739
|
cell=cell,
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
coordinate_system=coordinate_system,
|
|
1740
|
+
cell2=cell2,
|
|
1741
|
+
completion_timeout=completion_timeout,
|
|
2222
1742
|
_request_auth=_request_auth,
|
|
2223
1743
|
_content_type=_content_type,
|
|
2224
1744
|
_headers=_headers,
|
|
@@ -2226,10 +1746,13 @@ class VirtualRobotSetupApi:
|
|
|
2226
1746
|
)
|
|
2227
1747
|
|
|
2228
1748
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2229
|
-
'200':
|
|
1749
|
+
'200': None,
|
|
1750
|
+
'202': None,
|
|
2230
1751
|
'400': "Error",
|
|
1752
|
+
'403': "Error",
|
|
2231
1753
|
'404': "Error",
|
|
2232
|
-
}
|
|
1754
|
+
}
|
|
1755
|
+
|
|
2233
1756
|
response_data = await self.api_client.call_api(
|
|
2234
1757
|
*_param,
|
|
2235
1758
|
_request_timeout=_request_timeout
|
|
@@ -2242,12 +1765,11 @@ class VirtualRobotSetupApi:
|
|
|
2242
1765
|
|
|
2243
1766
|
|
|
2244
1767
|
@validate_call
|
|
2245
|
-
async def
|
|
1768
|
+
async def update_cell_with_http_info(
|
|
2246
1769
|
self,
|
|
2247
1770
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
coordinate_system: CoordinateSystem,
|
|
1771
|
+
cell2: Cell,
|
|
1772
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
2251
1773
|
_request_timeout: Union[
|
|
2252
1774
|
None,
|
|
2253
1775
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2260,19 +1782,17 @@ class VirtualRobotSetupApi:
|
|
|
2260
1782
|
_content_type: Optional[StrictStr] = None,
|
|
2261
1783
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2262
1784
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2263
|
-
) -> ApiResponse[
|
|
2264
|
-
"""
|
|
1785
|
+
) -> ApiResponse[None]:
|
|
1786
|
+
"""Update Configuration
|
|
2265
1787
|
|
|
2266
|
-
|
|
1788
|
+
Update the definition of the entire Cell.
|
|
2267
1789
|
|
|
2268
1790
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
2269
1791
|
:type cell: str
|
|
2270
|
-
:param
|
|
2271
|
-
:type
|
|
2272
|
-
:param
|
|
2273
|
-
:type
|
|
2274
|
-
:param coordinate_system: (required)
|
|
2275
|
-
:type coordinate_system: CoordinateSystem
|
|
1792
|
+
:param cell2: (required)
|
|
1793
|
+
:type cell2: Cell
|
|
1794
|
+
:param completion_timeout:
|
|
1795
|
+
:type completion_timeout: int
|
|
2276
1796
|
:param _request_timeout: timeout setting for this request. If one
|
|
2277
1797
|
number provided, it will be total request
|
|
2278
1798
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2295,11 +1815,10 @@ class VirtualRobotSetupApi:
|
|
|
2295
1815
|
:return: Returns the result object.
|
|
2296
1816
|
""" # noqa: E501
|
|
2297
1817
|
|
|
2298
|
-
_param = self.
|
|
1818
|
+
_param = self._update_cell_serialize(
|
|
2299
1819
|
cell=cell,
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
coordinate_system=coordinate_system,
|
|
1820
|
+
cell2=cell2,
|
|
1821
|
+
completion_timeout=completion_timeout,
|
|
2303
1822
|
_request_auth=_request_auth,
|
|
2304
1823
|
_content_type=_content_type,
|
|
2305
1824
|
_headers=_headers,
|
|
@@ -2307,10 +1826,13 @@ class VirtualRobotSetupApi:
|
|
|
2307
1826
|
)
|
|
2308
1827
|
|
|
2309
1828
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2310
|
-
'200':
|
|
1829
|
+
'200': None,
|
|
1830
|
+
'202': None,
|
|
2311
1831
|
'400': "Error",
|
|
1832
|
+
'403': "Error",
|
|
2312
1833
|
'404': "Error",
|
|
2313
|
-
}
|
|
1834
|
+
}
|
|
1835
|
+
|
|
2314
1836
|
response_data = await self.api_client.call_api(
|
|
2315
1837
|
*_param,
|
|
2316
1838
|
_request_timeout=_request_timeout
|
|
@@ -2323,12 +1845,11 @@ class VirtualRobotSetupApi:
|
|
|
2323
1845
|
|
|
2324
1846
|
|
|
2325
1847
|
@validate_call
|
|
2326
|
-
async def
|
|
1848
|
+
async def update_cell_without_preload_content(
|
|
2327
1849
|
self,
|
|
2328
1850
|
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
coordinate_system: CoordinateSystem,
|
|
1851
|
+
cell2: Cell,
|
|
1852
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
2332
1853
|
_request_timeout: Union[
|
|
2333
1854
|
None,
|
|
2334
1855
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2342,18 +1863,16 @@ class VirtualRobotSetupApi:
|
|
|
2342
1863
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2343
1864
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2344
1865
|
) -> RESTResponseType:
|
|
2345
|
-
"""
|
|
1866
|
+
"""Update Configuration
|
|
2346
1867
|
|
|
2347
|
-
|
|
1868
|
+
Update the definition of the entire Cell.
|
|
2348
1869
|
|
|
2349
1870
|
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
2350
1871
|
:type cell: str
|
|
2351
|
-
:param
|
|
2352
|
-
:type
|
|
2353
|
-
:param
|
|
2354
|
-
:type
|
|
2355
|
-
:param coordinate_system: (required)
|
|
2356
|
-
:type coordinate_system: CoordinateSystem
|
|
1872
|
+
:param cell2: (required)
|
|
1873
|
+
:type cell2: Cell
|
|
1874
|
+
:param completion_timeout:
|
|
1875
|
+
:type completion_timeout: int
|
|
2357
1876
|
:param _request_timeout: timeout setting for this request. If one
|
|
2358
1877
|
number provided, it will be total request
|
|
2359
1878
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2376,11 +1895,10 @@ class VirtualRobotSetupApi:
|
|
|
2376
1895
|
:return: Returns the result object.
|
|
2377
1896
|
""" # noqa: E501
|
|
2378
1897
|
|
|
2379
|
-
_param = self.
|
|
1898
|
+
_param = self._update_cell_serialize(
|
|
2380
1899
|
cell=cell,
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
coordinate_system=coordinate_system,
|
|
1900
|
+
cell2=cell2,
|
|
1901
|
+
completion_timeout=completion_timeout,
|
|
2384
1902
|
_request_auth=_request_auth,
|
|
2385
1903
|
_content_type=_content_type,
|
|
2386
1904
|
_headers=_headers,
|
|
@@ -2388,10 +1906,13 @@ class VirtualRobotSetupApi:
|
|
|
2388
1906
|
)
|
|
2389
1907
|
|
|
2390
1908
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
2391
|
-
'200':
|
|
1909
|
+
'200': None,
|
|
1910
|
+
'202': None,
|
|
2392
1911
|
'400': "Error",
|
|
1912
|
+
'403': "Error",
|
|
2393
1913
|
'404': "Error",
|
|
2394
|
-
}
|
|
1914
|
+
}
|
|
1915
|
+
|
|
2395
1916
|
response_data = await self.api_client.call_api(
|
|
2396
1917
|
*_param,
|
|
2397
1918
|
_request_timeout=_request_timeout
|
|
@@ -2399,12 +1920,11 @@ class VirtualRobotSetupApi:
|
|
|
2399
1920
|
return response_data.response
|
|
2400
1921
|
|
|
2401
1922
|
|
|
2402
|
-
def
|
|
1923
|
+
def _update_cell_serialize(
|
|
2403
1924
|
self,
|
|
2404
1925
|
cell,
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
coordinate_system,
|
|
1926
|
+
cell2,
|
|
1927
|
+
completion_timeout,
|
|
2408
1928
|
_request_auth,
|
|
2409
1929
|
_content_type,
|
|
2410
1930
|
_headers,
|
|
@@ -2426,16 +1946,16 @@ class VirtualRobotSetupApi:
|
|
|
2426
1946
|
# process the path parameters
|
|
2427
1947
|
if cell is not None:
|
|
2428
1948
|
_path_params['cell'] = cell
|
|
2429
|
-
if controller is not None:
|
|
2430
|
-
_path_params['controller'] = controller
|
|
2431
|
-
if motion_group is not None:
|
|
2432
|
-
_path_params['motion-group'] = motion_group
|
|
2433
1949
|
# process the query parameters
|
|
1950
|
+
if completion_timeout is not None:
|
|
1951
|
+
|
|
1952
|
+
_query_params.append(('completion_timeout', completion_timeout))
|
|
1953
|
+
|
|
2434
1954
|
# process the header parameters
|
|
2435
1955
|
# process the form parameters
|
|
2436
1956
|
# process the body parameter
|
|
2437
|
-
if
|
|
2438
|
-
_body_params =
|
|
1957
|
+
if cell2 is not None:
|
|
1958
|
+
_body_params = cell2
|
|
2439
1959
|
|
|
2440
1960
|
|
|
2441
1961
|
# set the HTTP header `Accept`
|
|
@@ -2467,7 +1987,7 @@ class VirtualRobotSetupApi:
|
|
|
2467
1987
|
|
|
2468
1988
|
return self.api_client.param_serialize(
|
|
2469
1989
|
method='PUT',
|
|
2470
|
-
resource_path='/cells/{cell}
|
|
1990
|
+
resource_path='/cells/{cell}',
|
|
2471
1991
|
path_params=_path_params,
|
|
2472
1992
|
query_params=_query_params,
|
|
2473
1993
|
header_params=_header_params,
|