wandelbots_api_client 26.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandelbots_api_client/__init__.py +48 -0
- wandelbots_api_client/api/__init__.py +63 -0
- wandelbots_api_client/api/application_api.py +1514 -0
- wandelbots_api_client/api/cell_api.py +1424 -0
- wandelbots_api_client/api/controller_api.py +2951 -0
- wandelbots_api_client/api/controller_ios_api.py +1205 -0
- wandelbots_api_client/api/coordinate_systems_api.py +1267 -0
- wandelbots_api_client/api/device_configuration_api.py +1193 -0
- wandelbots_api_client/api/library_program_api.py +1326 -0
- wandelbots_api_client/api/library_program_metadata_api.py +1090 -0
- wandelbots_api_client/api/library_recipe_api.py +1351 -0
- wandelbots_api_client/api/library_recipe_metadata_api.py +1050 -0
- wandelbots_api_client/api/license_api.py +865 -0
- wandelbots_api_client/api/motion_api.py +3596 -0
- wandelbots_api_client/api/motion_group_api.py +956 -0
- wandelbots_api_client/api/motion_group_infos_api.py +2611 -0
- wandelbots_api_client/api/motion_group_jogging_api.py +685 -0
- wandelbots_api_client/api/motion_group_kinematic_api.py +1055 -0
- wandelbots_api_client/api/program_api.py +1987 -0
- wandelbots_api_client/api/program_operator_api.py +1881 -0
- wandelbots_api_client/api/program_values_api.py +1444 -0
- wandelbots_api_client/api/store_collision_components_api.py +3074 -0
- wandelbots_api_client/api/store_collision_scenes_api.py +951 -0
- wandelbots_api_client/api/store_object_api.py +1387 -0
- wandelbots_api_client/api/system_api.py +1075 -0
- wandelbots_api_client/api/version_api.py +237 -0
- wandelbots_api_client/api/virtual_robot_api.py +1583 -0
- wandelbots_api_client/api/virtual_robot_behavior_api.py +649 -0
- wandelbots_api_client/api/virtual_robot_mode_api.py +1467 -0
- wandelbots_api_client/api/virtual_robot_setup_api.py +2116 -0
- wandelbots_api_client/api_client.py +688 -0
- wandelbots_api_client/api_response.py +20 -0
- wandelbots_api_client/authorization.py +243 -0
- wandelbots_api_client/configuration.py +579 -0
- wandelbots_api_client/exceptions.py +216 -0
- wandelbots_api_client/models/__init__.py +316 -0
- wandelbots_api_client/models/abb_controller.py +112 -0
- wandelbots_api_client/models/abb_controller_egm_server.py +87 -0
- wandelbots_api_client/models/activate_license_request.py +86 -0
- wandelbots_api_client/models/add_request.py +95 -0
- wandelbots_api_client/models/all_joint_positions_request.py +96 -0
- wandelbots_api_client/models/all_joint_positions_response.py +109 -0
- wandelbots_api_client/models/api_version.py +86 -0
- wandelbots_api_client/models/app.py +148 -0
- wandelbots_api_client/models/array_input.py +114 -0
- wandelbots_api_client/models/array_output.py +116 -0
- wandelbots_api_client/models/behavior.py +35 -0
- wandelbots_api_client/models/blending_auto.py +99 -0
- wandelbots_api_client/models/blending_position.py +97 -0
- wandelbots_api_client/models/box.py +98 -0
- wandelbots_api_client/models/box2.py +112 -0
- wandelbots_api_client/models/box3.py +112 -0
- wandelbots_api_client/models/capsule.py +87 -0
- wandelbots_api_client/models/capsule2.py +97 -0
- wandelbots_api_client/models/capsule3.py +101 -0
- wandelbots_api_client/models/capture.py +86 -0
- wandelbots_api_client/models/cell.py +142 -0
- wandelbots_api_client/models/circle.py +99 -0
- wandelbots_api_client/models/code_with_arguments.py +108 -0
- wandelbots_api_client/models/collection_value.py +322 -0
- wandelbots_api_client/models/collider.py +105 -0
- wandelbots_api_client/models/collider_input.py +105 -0
- wandelbots_api_client/models/collider_output.py +105 -0
- wandelbots_api_client/models/collider_output_shape.py +242 -0
- wandelbots_api_client/models/collider_shape.py +280 -0
- wandelbots_api_client/models/collision.py +110 -0
- wandelbots_api_client/models/collision_contact.py +92 -0
- wandelbots_api_client/models/collision_motion_group.py +124 -0
- wandelbots_api_client/models/collision_motion_group_assembly.py +128 -0
- wandelbots_api_client/models/collision_robot_configuration_input.py +121 -0
- wandelbots_api_client/models/collision_robot_configuration_output.py +121 -0
- wandelbots_api_client/models/collision_scene.py +117 -0
- wandelbots_api_client/models/collision_scene_assembly.py +133 -0
- wandelbots_api_client/models/command.py +140 -0
- wandelbots_api_client/models/command_settings.py +104 -0
- wandelbots_api_client/models/comparator.py +39 -0
- wandelbots_api_client/models/compound.py +114 -0
- wandelbots_api_client/models/container_environment_inner.py +87 -0
- wandelbots_api_client/models/container_image.py +122 -0
- wandelbots_api_client/models/container_image_secrets_inner.py +86 -0
- wandelbots_api_client/models/container_resources.py +89 -0
- wandelbots_api_client/models/container_storage.py +97 -0
- wandelbots_api_client/models/controller_capabilities.py +89 -0
- wandelbots_api_client/models/controller_instance.py +148 -0
- wandelbots_api_client/models/controller_instance_list.py +109 -0
- wandelbots_api_client/models/convex_hull.py +109 -0
- wandelbots_api_client/models/convex_hull2.py +97 -0
- wandelbots_api_client/models/convex_hull3.py +97 -0
- wandelbots_api_client/models/coordinate_system.py +108 -0
- wandelbots_api_client/models/coordinate_systems.py +109 -0
- wandelbots_api_client/models/create_program_run200_response.py +88 -0
- wandelbots_api_client/models/create_program_run_request.py +86 -0
- wandelbots_api_client/models/create_trigger200_response.py +86 -0
- wandelbots_api_client/models/create_trigger_request.py +101 -0
- wandelbots_api_client/models/cubic_spline.py +109 -0
- wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cycle_time.py +86 -0
- wandelbots_api_client/models/cylinder.py +87 -0
- wandelbots_api_client/models/cylinder2.py +95 -0
- wandelbots_api_client/models/cylinder3.py +101 -0
- wandelbots_api_client/models/devices_inner.py +321 -0
- wandelbots_api_client/models/dh_parameter.py +98 -0
- wandelbots_api_client/models/direction.py +34 -0
- wandelbots_api_client/models/direction_jogging_request.py +136 -0
- wandelbots_api_client/models/error.py +87 -0
- wandelbots_api_client/models/execute_trajectory_request.py +182 -0
- wandelbots_api_client/models/execute_trajectory_response.py +223 -0
- wandelbots_api_client/models/execution_result.py +113 -0
- wandelbots_api_client/models/external_joint_stream_datapoint.py +96 -0
- wandelbots_api_client/models/external_joint_stream_datapoint_value.py +96 -0
- wandelbots_api_client/models/fanuc_controller.py +99 -0
- wandelbots_api_client/models/feedback_collision.py +126 -0
- wandelbots_api_client/models/feedback_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/models/feedback_out_of_workspace.py +103 -0
- wandelbots_api_client/models/feedback_singularity.py +102 -0
- wandelbots_api_client/models/flag.py +86 -0
- wandelbots_api_client/models/force_vector.py +103 -0
- wandelbots_api_client/models/geometry.py +167 -0
- wandelbots_api_client/models/get_all_program_runs200_response.py +109 -0
- wandelbots_api_client/models/get_all_triggers200_response.py +109 -0
- wandelbots_api_client/models/get_mode_response.py +87 -0
- wandelbots_api_client/models/get_trajectory_response.py +112 -0
- wandelbots_api_client/models/get_trajectory_sample_response.py +90 -0
- wandelbots_api_client/models/google_protobuf_any.py +102 -0
- wandelbots_api_client/models/http_exception_response.py +86 -0
- wandelbots_api_client/models/http_validation_error.py +109 -0
- wandelbots_api_client/models/http_validation_error2.py +109 -0
- wandelbots_api_client/models/image_credentials.py +88 -0
- wandelbots_api_client/models/info_service_capabilities.py +110 -0
- wandelbots_api_client/models/initialize_movement_request.py +111 -0
- wandelbots_api_client/models/initialize_movement_response.py +96 -0
- wandelbots_api_client/models/initialize_movement_response_init_response.py +89 -0
- wandelbots_api_client/models/io.py +105 -0
- wandelbots_api_client/models/io_description.py +156 -0
- wandelbots_api_client/models/io_value.py +104 -0
- wandelbots_api_client/models/ios.py +109 -0
- wandelbots_api_client/models/jogging_response.py +117 -0
- wandelbots_api_client/models/jogging_service_capabilities.py +87 -0
- wandelbots_api_client/models/joint_jogging_request.py +108 -0
- wandelbots_api_client/models/joint_limit.py +123 -0
- wandelbots_api_client/models/joint_limit_exceeded.py +96 -0
- wandelbots_api_client/models/joint_position_request.py +104 -0
- wandelbots_api_client/models/joint_trajectory.py +117 -0
- wandelbots_api_client/models/joints.py +86 -0
- wandelbots_api_client/models/kinematic_service_capabilities.py +96 -0
- wandelbots_api_client/models/kuka_controller.py +112 -0
- wandelbots_api_client/models/kuka_controller_rsi_server.py +92 -0
- wandelbots_api_client/models/license.py +124 -0
- wandelbots_api_client/models/license_status.py +88 -0
- wandelbots_api_client/models/license_status_enum.py +37 -0
- wandelbots_api_client/models/limit_settings.py +223 -0
- wandelbots_api_client/models/limits_override.py +132 -0
- wandelbots_api_client/models/list_io_descriptions_response.py +109 -0
- wandelbots_api_client/models/list_io_values_response.py +109 -0
- wandelbots_api_client/models/list_payloads_response.py +109 -0
- wandelbots_api_client/models/list_program_metadata_response.py +109 -0
- wandelbots_api_client/models/list_recipe_metadata_response.py +109 -0
- wandelbots_api_client/models/list_response.py +109 -0
- wandelbots_api_client/models/list_tcps_response.py +112 -0
- wandelbots_api_client/models/location_inner.py +153 -0
- wandelbots_api_client/models/location_inner1.py +142 -0
- wandelbots_api_client/models/manufacturer.py +37 -0
- wandelbots_api_client/models/mode_change_response.py +97 -0
- wandelbots_api_client/models/motion_command.py +109 -0
- wandelbots_api_client/models/motion_command_blending.py +164 -0
- wandelbots_api_client/models/motion_command_path.py +221 -0
- wandelbots_api_client/models/motion_group_behavior_getter.py +87 -0
- wandelbots_api_client/models/motion_group_info.py +88 -0
- wandelbots_api_client/models/motion_group_infos.py +109 -0
- wandelbots_api_client/models/motion_group_instance.py +101 -0
- wandelbots_api_client/models/motion_group_instance_list.py +109 -0
- wandelbots_api_client/models/motion_group_joints.py +100 -0
- wandelbots_api_client/models/motion_group_physical.py +105 -0
- wandelbots_api_client/models/motion_group_specification.py +136 -0
- wandelbots_api_client/models/motion_group_state.py +180 -0
- wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +86 -0
- wandelbots_api_client/models/motion_group_state_response.py +103 -0
- wandelbots_api_client/models/motion_id.py +88 -0
- wandelbots_api_client/models/motion_ids_list_response.py +89 -0
- wandelbots_api_client/models/motion_vector.py +103 -0
- wandelbots_api_client/models/mounting.py +98 -0
- wandelbots_api_client/models/move_request.py +162 -0
- wandelbots_api_client/models/move_response.py +91 -0
- wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +107 -0
- wandelbots_api_client/models/movement.py +90 -0
- wandelbots_api_client/models/movement_error.py +90 -0
- wandelbots_api_client/models/movement_error_error.py +86 -0
- wandelbots_api_client/models/movement_movement.py +98 -0
- wandelbots_api_client/models/op_mode.py +93 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config.py +100 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +159 -0
- wandelbots_api_client/models/optimizer_setup.py +145 -0
- wandelbots_api_client/models/out_of_workspace.py +92 -0
- wandelbots_api_client/models/path.py +109 -0
- wandelbots_api_client/models/path_cartesian_ptp.py +103 -0
- wandelbots_api_client/models/path_circle.py +108 -0
- wandelbots_api_client/models/path_cubic_spline.py +118 -0
- wandelbots_api_client/models/path_joint_ptp.py +96 -0
- wandelbots_api_client/models/path_line.py +103 -0
- wandelbots_api_client/models/pause_movement_request.py +95 -0
- wandelbots_api_client/models/pause_movement_response.py +96 -0
- wandelbots_api_client/models/pause_movement_response_pause_response.py +89 -0
- wandelbots_api_client/models/pause_on_io.py +96 -0
- wandelbots_api_client/models/payload.py +103 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request.py +131 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +150 -0
- wandelbots_api_client/models/plan_failed_on_trajectory_response.py +149 -0
- wandelbots_api_client/models/plan_failed_response.py +136 -0
- wandelbots_api_client/models/plan_request.py +127 -0
- wandelbots_api_client/models/plan_response.py +112 -0
- wandelbots_api_client/models/plan_successful_response.py +100 -0
- wandelbots_api_client/models/plan_trajectory_failed_response.py +106 -0
- wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +209 -0
- wandelbots_api_client/models/plan_trajectory_request.py +154 -0
- wandelbots_api_client/models/plan_trajectory_response.py +92 -0
- wandelbots_api_client/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/models/plane2.py +93 -0
- wandelbots_api_client/models/plane3.py +93 -0
- wandelbots_api_client/models/planned_motion.py +125 -0
- wandelbots_api_client/models/planner_pose.py +100 -0
- wandelbots_api_client/models/planning_limits.py +168 -0
- wandelbots_api_client/models/planning_limits_limit_range.py +87 -0
- wandelbots_api_client/models/playback_speed_request.py +94 -0
- wandelbots_api_client/models/playback_speed_response.py +96 -0
- wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +86 -0
- wandelbots_api_client/models/point_cloud.py +86 -0
- wandelbots_api_client/models/pose.py +107 -0
- wandelbots_api_client/models/pose2.py +93 -0
- wandelbots_api_client/models/program_metadata.py +100 -0
- wandelbots_api_client/models/program_run.py +168 -0
- wandelbots_api_client/models/program_run_object.py +103 -0
- wandelbots_api_client/models/program_run_state.py +37 -0
- wandelbots_api_client/models/program_runner_reference.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +87 -0
- wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +107 -0
- wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +119 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +102 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +94 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +94 -0
- wandelbots_api_client/models/quaternion.py +89 -0
- wandelbots_api_client/models/recipe_metadata.py +102 -0
- wandelbots_api_client/models/rectangle.py +87 -0
- wandelbots_api_client/models/rectangle2.py +95 -0
- wandelbots_api_client/models/rectangle3.py +101 -0
- wandelbots_api_client/models/rectangular_capsule.py +94 -0
- wandelbots_api_client/models/rectangular_capsule2.py +103 -0
- wandelbots_api_client/models/rectangular_capsule3.py +103 -0
- wandelbots_api_client/models/release_channel.py +34 -0
- wandelbots_api_client/models/request.py +142 -0
- wandelbots_api_client/models/request1.py +140 -0
- wandelbots_api_client/models/response_get_devices_devices_get_inner.py +321 -0
- wandelbots_api_client/models/response_get_value_programs_values_key_get.py +317 -0
- wandelbots_api_client/models/response_get_values_programs_values_get_value.py +322 -0
- wandelbots_api_client/models/robot_controller.py +108 -0
- wandelbots_api_client/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/models/robot_controller_state.py +191 -0
- wandelbots_api_client/models/robot_link_geometry.py +98 -0
- wandelbots_api_client/models/robot_state.py +101 -0
- wandelbots_api_client/models/robot_system_mode.py +37 -0
- wandelbots_api_client/models/robot_tcp.py +104 -0
- wandelbots_api_client/models/robot_tcps.py +109 -0
- wandelbots_api_client/models/rotation_angle_types.py +58 -0
- wandelbots_api_client/models/rotation_angles.py +91 -0
- wandelbots_api_client/models/safety_configuration.py +182 -0
- wandelbots_api_client/models/safety_setup.py +172 -0
- wandelbots_api_client/models/safety_setup_safety_settings.py +106 -0
- wandelbots_api_client/models/safety_setup_safety_zone.py +103 -0
- wandelbots_api_client/models/safety_zone.py +98 -0
- wandelbots_api_client/models/safety_zone_limits.py +96 -0
- wandelbots_api_client/models/safety_zone_violation.py +86 -0
- wandelbots_api_client/models/service_status.py +96 -0
- wandelbots_api_client/models/service_status_phase.py +46 -0
- wandelbots_api_client/models/service_status_severity.py +35 -0
- wandelbots_api_client/models/service_status_status.py +90 -0
- wandelbots_api_client/models/set_io.py +93 -0
- wandelbots_api_client/models/set_playback_speed.py +91 -0
- wandelbots_api_client/models/single_joint_limit.py +112 -0
- wandelbots_api_client/models/singularity.py +110 -0
- wandelbots_api_client/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/models/sphere.py +86 -0
- wandelbots_api_client/models/sphere2.py +94 -0
- wandelbots_api_client/models/sphere3.py +96 -0
- wandelbots_api_client/models/standstill.py +92 -0
- wandelbots_api_client/models/standstill_reason.py +36 -0
- wandelbots_api_client/models/standstill_standstill.py +99 -0
- wandelbots_api_client/models/start_movement_request.py +135 -0
- wandelbots_api_client/models/start_on_io.py +96 -0
- wandelbots_api_client/models/status.py +119 -0
- wandelbots_api_client/models/stop_response.py +109 -0
- wandelbots_api_client/models/store_value.py +349 -0
- wandelbots_api_client/models/stream_move_backward.py +90 -0
- wandelbots_api_client/models/stream_move_forward.py +90 -0
- wandelbots_api_client/models/stream_move_playback_speed.py +92 -0
- wandelbots_api_client/models/stream_move_request.py +207 -0
- wandelbots_api_client/models/stream_move_response.py +110 -0
- wandelbots_api_client/models/stream_move_to_trajectory.py +96 -0
- wandelbots_api_client/models/stream_stop.py +90 -0
- wandelbots_api_client/models/tcp_pose.py +105 -0
- wandelbots_api_client/models/tcp_pose_request.py +106 -0
- wandelbots_api_client/models/tool_geometry.py +111 -0
- wandelbots_api_client/models/trajectory_sample.py +139 -0
- wandelbots_api_client/models/trigger_object.py +110 -0
- wandelbots_api_client/models/trigger_type.py +33 -0
- wandelbots_api_client/models/universalrobots_controller.py +102 -0
- wandelbots_api_client/models/update_nova_version_request.py +87 -0
- wandelbots_api_client/models/update_program_metadata_request.py +88 -0
- wandelbots_api_client/models/update_recipe_metadata_request.py +88 -0
- wandelbots_api_client/models/update_trigger_request.py +100 -0
- wandelbots_api_client/models/validation_error.py +113 -0
- wandelbots_api_client/models/validation_error2.py +113 -0
- wandelbots_api_client/models/value.py +317 -0
- wandelbots_api_client/models/vector3d.py +88 -0
- wandelbots_api_client/models/version_number.py +113 -0
- wandelbots_api_client/models/virtual_controller.py +117 -0
- wandelbots_api_client/models/virtual_controller_types.py +153 -0
- wandelbots_api_client/models/virtual_robot_configuration.py +91 -0
- wandelbots_api_client/models/yaskawa_controller.py +99 -0
- wandelbots_api_client/py.typed +0 -0
- wandelbots_api_client/rest.py +188 -0
- wandelbots_api_client/v2/__init__.py +49 -0
- wandelbots_api_client/v2/api/__init__.py +55 -0
- wandelbots_api_client/v2/api/application_api.py +1532 -0
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2/api/cell_api.py +2163 -0
- wandelbots_api_client/v2/api/controller_api.py +3238 -0
- wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2/api/jogging_api.py +113 -0
- wandelbots_api_client/v2/api/kinematics_api.py +815 -0
- wandelbots_api_client/v2/api/license_api.py +877 -0
- wandelbots_api_client/v2/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2/api/program_api.py +988 -0
- wandelbots_api_client/v2/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2/api/system_api.py +2696 -0
- wandelbots_api_client/v2/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2/api/version_api.py +240 -0
- wandelbots_api_client/v2/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2/api_client.py +692 -0
- wandelbots_api_client/v2/api_response.py +20 -0
- wandelbots_api_client/v2/configuration.py +579 -0
- wandelbots_api_client/v2/exceptions.py +216 -0
- wandelbots_api_client/v2/models/__init__.py +376 -0
- wandelbots_api_client/v2/models/abb_controller.py +104 -0
- wandelbots_api_client/v2/models/abb_controller_egm_server.py +84 -0
- wandelbots_api_client/v2/models/activate_license_request.py +83 -0
- wandelbots_api_client/v2/models/add_trajectory_error.py +95 -0
- wandelbots_api_client/v2/models/add_trajectory_error_data.py +298 -0
- wandelbots_api_client/v2/models/add_trajectory_request.py +97 -0
- wandelbots_api_client/v2/models/add_trajectory_response.py +99 -0
- wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py +147 -0
- wandelbots_api_client/v2/models/api_version.py +83 -0
- wandelbots_api_client/v2/models/app.py +156 -0
- wandelbots_api_client/v2/models/behavior.py +35 -0
- wandelbots_api_client/v2/models/blending_auto.py +97 -0
- wandelbots_api_client/v2/models/blending_position.py +143 -0
- wandelbots_api_client/v2/models/blending_space.py +34 -0
- wandelbots_api_client/v2/models/boolean_value.py +91 -0
- wandelbots_api_client/v2/models/box.py +109 -0
- wandelbots_api_client/v2/models/bus_io_description.py +111 -0
- wandelbots_api_client/v2/models/bus_io_modbus_client.py +100 -0
- wandelbots_api_client/v2/models/bus_io_modbus_server.py +127 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +98 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +97 -0
- wandelbots_api_client/v2/models/bus_io_modbus_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_profinet.py +131 -0
- wandelbots_api_client/v2/models/bus_io_profinet_default_route.py +84 -0
- wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +85 -0
- wandelbots_api_client/v2/models/bus_io_profinet_network.py +101 -0
- wandelbots_api_client/v2/models/bus_io_profinet_slot.py +92 -0
- wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_type.py +223 -0
- wandelbots_api_client/v2/models/bus_ios_state.py +88 -0
- wandelbots_api_client/v2/models/bus_ios_state_enum.py +36 -0
- wandelbots_api_client/v2/models/capsule.py +94 -0
- wandelbots_api_client/v2/models/cartesian_limits.py +108 -0
- wandelbots_api_client/v2/models/cell.py +127 -0
- wandelbots_api_client/v2/models/cloud_config_status.py +164 -0
- wandelbots_api_client/v2/models/cloud_config_status_configured.py +97 -0
- wandelbots_api_client/v2/models/cloud_config_status_not_configured.py +90 -0
- wandelbots_api_client/v2/models/cloud_configuration.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error.py +87 -0
- wandelbots_api_client/v2/models/cloud_connection_error_error.py +275 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details_cloud_response.py +90 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error.py +106 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error_details.py +83 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_restart_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed_details.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response.py +104 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details_cloud_response.py +85 -0
- wandelbots_api_client/v2/models/cloud_connection_request.py +98 -0
- wandelbots_api_client/v2/models/cloud_disconnection_error.py +89 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py +90 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py +90 -0
- wandelbots_api_client/v2/models/cloud_registration_success_response.py +83 -0
- wandelbots_api_client/v2/models/collider.py +102 -0
- wandelbots_api_client/v2/models/collider_shape.py +278 -0
- wandelbots_api_client/v2/models/collision.py +107 -0
- wandelbots_api_client/v2/models/collision_contact.py +89 -0
- wandelbots_api_client/v2/models/collision_error.py +100 -0
- wandelbots_api_client/v2/models/collision_free_algorithm.py +164 -0
- wandelbots_api_client/v2/models/collision_motion_group.py +119 -0
- wandelbots_api_client/v2/models/collision_setup.py +130 -0
- wandelbots_api_client/v2/models/comparator.py +38 -0
- wandelbots_api_client/v2/models/configuration_archive_status.py +197 -0
- wandelbots_api_client/v2/models/configuration_archive_status_creating.py +94 -0
- wandelbots_api_client/v2/models/configuration_archive_status_error.py +91 -0
- wandelbots_api_client/v2/models/configuration_archive_status_success.py +90 -0
- wandelbots_api_client/v2/models/configuration_resource.py +104 -0
- wandelbots_api_client/v2/models/constrained_pose.py +87 -0
- wandelbots_api_client/v2/models/container_environment_inner.py +84 -0
- wandelbots_api_client/v2/models/container_image.py +110 -0
- wandelbots_api_client/v2/models/container_image_secrets_inner.py +83 -0
- wandelbots_api_client/v2/models/container_resources.py +87 -0
- wandelbots_api_client/v2/models/container_storage.py +94 -0
- wandelbots_api_client/v2/models/controller_description.py +97 -0
- wandelbots_api_client/v2/models/convex_hull.py +94 -0
- wandelbots_api_client/v2/models/coordinate_system.py +115 -0
- wandelbots_api_client/v2/models/coordinate_system_data.py +106 -0
- wandelbots_api_client/v2/models/cubic_spline_parameter.py +90 -0
- wandelbots_api_client/v2/models/cycle_time.py +86 -0
- wandelbots_api_client/v2/models/cylinder.py +92 -0
- wandelbots_api_client/v2/models/dh_parameter.py +98 -0
- wandelbots_api_client/v2/models/direction.py +34 -0
- wandelbots_api_client/v2/models/direction_constraint.py +107 -0
- wandelbots_api_client/v2/models/error.py +84 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/error_invalid_joint_count.py +98 -0
- wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
- wandelbots_api_client/v2/models/error_joint_position_collision.py +106 -0
- wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +91 -0
- wandelbots_api_client/v2/models/error_motion_group_key_mismatch.py +85 -0
- wandelbots_api_client/v2/models/error_unsupported_operation.py +90 -0
- wandelbots_api_client/v2/models/execute.py +95 -0
- wandelbots_api_client/v2/models/execute_details.py +164 -0
- wandelbots_api_client/v2/models/execute_jogging_request.py +204 -0
- wandelbots_api_client/v2/models/execute_jogging_response.py +246 -0
- wandelbots_api_client/v2/models/execute_trajectory_request.py +209 -0
- wandelbots_api_client/v2/models/execute_trajectory_response.py +246 -0
- wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +93 -0
- wandelbots_api_client/v2/models/external_joint_stream_request.py +97 -0
- wandelbots_api_client/v2/models/fanuc_controller.py +91 -0
- wandelbots_api_client/v2/models/feedback_collision.py +112 -0
- wandelbots_api_client/v2/models/feedback_commands_missing.py +90 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_is_not_increasing.py +100 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_not_at_start_pose.py +105 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_no_solution_exists.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/feedback_invalid_dof.py +101 -0
- wandelbots_api_client/v2/models/feedback_invalid_nan_value.py +91 -0
- wandelbots_api_client/v2/models/feedback_invalid_sampling_time.py +91 -0
- wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +99 -0
- wandelbots_api_client/v2/models/feedback_no_solution_in_current_configuration.py +100 -0
- wandelbots_api_client/v2/models/feedback_out_of_workspace.py +100 -0
- wandelbots_api_client/v2/models/feedback_singularity.py +99 -0
- wandelbots_api_client/v2/models/feedback_start_joints_missing.py +98 -0
- wandelbots_api_client/v2/models/feedback_torque_exceeded.py +98 -0
- wandelbots_api_client/v2/models/flag.py +83 -0
- wandelbots_api_client/v2/models/flange_payload.py +98 -0
- wandelbots_api_client/v2/models/float_value.py +91 -0
- wandelbots_api_client/v2/models/forward_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
- wandelbots_api_client/v2/models/forward_kinematics_response.py +93 -0
- wandelbots_api_client/v2/models/forward_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/get_trajectory_response.py +97 -0
- wandelbots_api_client/v2/models/http_validation_error.py +93 -0
- wandelbots_api_client/v2/models/image_credentials.py +85 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error.py +106 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error_inconsistent_trajectory_size.py +91 -0
- wandelbots_api_client/v2/models/initialize_jogging_request.py +95 -0
- wandelbots_api_client/v2/models/initialize_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/initialize_movement_request.py +112 -0
- wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +164 -0
- wandelbots_api_client/v2/models/initialize_movement_response.py +107 -0
- wandelbots_api_client/v2/models/integer_value.py +91 -0
- wandelbots_api_client/v2/models/invalid_dof_error.py +100 -0
- wandelbots_api_client/v2/models/invalid_dof_error_invalid_dof.py +86 -0
- wandelbots_api_client/v2/models/inverse_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/inverse_kinematics_request.py +152 -0
- wandelbots_api_client/v2/models/inverse_kinematics_response.py +83 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +164 -0
- wandelbots_api_client/v2/models/io_boolean_value.py +92 -0
- wandelbots_api_client/v2/models/io_boundary.py +183 -0
- wandelbots_api_client/v2/models/io_description.py +116 -0
- wandelbots_api_client/v2/models/io_direction.py +34 -0
- wandelbots_api_client/v2/models/io_float_value.py +92 -0
- wandelbots_api_client/v2/models/io_integer_value.py +94 -0
- wandelbots_api_client/v2/models/io_origin.py +34 -0
- wandelbots_api_client/v2/models/io_value.py +183 -0
- wandelbots_api_client/v2/models/io_value_type.py +35 -0
- wandelbots_api_client/v2/models/jogging_details.py +97 -0
- wandelbots_api_client/v2/models/jogging_details_state.py +275 -0
- wandelbots_api_client/v2/models/jogging_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/jogging_paused_near_collision.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_near_joint_limit.py +92 -0
- wandelbots_api_client/v2/models/jogging_paused_near_singularity.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/jogging_running.py +90 -0
- wandelbots_api_client/v2/models/joint_limit_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/joint_limits.py +101 -0
- wandelbots_api_client/v2/models/joint_ptp_motion.py +99 -0
- wandelbots_api_client/v2/models/joint_trajectory.py +89 -0
- wandelbots_api_client/v2/models/joint_type_enum.py +34 -0
- wandelbots_api_client/v2/models/joint_velocity_request.py +91 -0
- wandelbots_api_client/v2/models/joint_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/kinematic_model.py +118 -0
- wandelbots_api_client/v2/models/kuka_controller.py +106 -0
- wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +89 -0
- wandelbots_api_client/v2/models/license.py +121 -0
- wandelbots_api_client/v2/models/license_status.py +85 -0
- wandelbots_api_client/v2/models/license_status_enum.py +37 -0
- wandelbots_api_client/v2/models/limit_range.py +84 -0
- wandelbots_api_client/v2/models/limit_set.py +118 -0
- wandelbots_api_client/v2/models/limits_override.py +136 -0
- wandelbots_api_client/v2/models/list_trajectories_response.py +86 -0
- wandelbots_api_client/v2/models/location1_inner.py +153 -0
- wandelbots_api_client/v2/models/manufacturer.py +37 -0
- wandelbots_api_client/v2/models/merge_trajectories422_response.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error_error_feedback.py +209 -0
- wandelbots_api_client/v2/models/merge_trajectories_request.py +107 -0
- wandelbots_api_client/v2/models/merge_trajectories_response.py +109 -0
- wandelbots_api_client/v2/models/merge_trajectories_response_feedback_inner.py +147 -0
- wandelbots_api_client/v2/models/merge_trajectories_segment.py +126 -0
- wandelbots_api_client/v2/models/merge_trajectories_validation_error.py +109 -0
- wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +102 -0
- wandelbots_api_client/v2/models/modbus_io.py +109 -0
- wandelbots_api_client/v2/models/modbus_io_area.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_byte_order.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_data.py +105 -0
- wandelbots_api_client/v2/models/modbus_io_type_enum.py +36 -0
- wandelbots_api_client/v2/models/motion_command.py +106 -0
- wandelbots_api_client/v2/models/motion_command_blending.py +164 -0
- wandelbots_api_client/v2/models/motion_command_path.py +298 -0
- wandelbots_api_client/v2/models/motion_group_description.py +241 -0
- wandelbots_api_client/v2/models/motion_group_from_json.py +100 -0
- wandelbots_api_client/v2/models/motion_group_from_type.py +96 -0
- wandelbots_api_client/v2/models/motion_group_info.py +90 -0
- wandelbots_api_client/v2/models/motion_group_joints.py +97 -0
- wandelbots_api_client/v2/models/motion_group_setup.py +140 -0
- wandelbots_api_client/v2/models/motion_group_state.py +187 -0
- wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +83 -0
- wandelbots_api_client/v2/models/movement_error_response.py +91 -0
- wandelbots_api_client/v2/models/multi_collision_setup.py +115 -0
- wandelbots_api_client/v2/models/multi_error_invalid_joint_count.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_position_collision.py +99 -0
- wandelbots_api_client/v2/models/multi_joint_trajectory.py +93 -0
- wandelbots_api_client/v2/models/multi_search_collision_free422_response.py +97 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_request.py +149 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error.py +109 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error_all_of_data.py +197 -0
- wandelbots_api_client/v2/models/nan_value_error.py +100 -0
- wandelbots_api_client/v2/models/nan_value_error_nan_value.py +85 -0
- wandelbots_api_client/v2/models/network_device.py +85 -0
- wandelbots_api_client/v2/models/network_interface.py +86 -0
- wandelbots_api_client/v2/models/network_state.py +125 -0
- wandelbots_api_client/v2/models/op_mode.py +84 -0
- wandelbots_api_client/v2/models/operating_state.py +34 -0
- wandelbots_api_client/v2/models/operation_limits.py +106 -0
- wandelbots_api_client/v2/models/operation_mode.py +42 -0
- wandelbots_api_client/v2/models/orientation_type.py +58 -0
- wandelbots_api_client/v2/models/path_cartesian_ptp.py +100 -0
- wandelbots_api_client/v2/models/path_circle.py +105 -0
- wandelbots_api_client/v2/models/path_cubic_spline.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_cartesian_ptp.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_joint_ptp.py +102 -0
- wandelbots_api_client/v2/models/path_joint_ptp.py +93 -0
- wandelbots_api_client/v2/models/path_line.py +100 -0
- wandelbots_api_client/v2/models/pause_jogging_request.py +90 -0
- wandelbots_api_client/v2/models/pause_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/pause_movement_request.py +90 -0
- wandelbots_api_client/v2/models/pause_movement_response.py +91 -0
- wandelbots_api_client/v2/models/pause_on_io.py +99 -0
- wandelbots_api_client/v2/models/payload.py +98 -0
- wandelbots_api_client/v2/models/plan422_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_failed_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_request.py +118 -0
- wandelbots_api_client/v2/models/plan_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/plan_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +105 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +505 -0
- wandelbots_api_client/v2/models/plan_trajectory_request.py +113 -0
- wandelbots_api_client/v2/models/plan_trajectory_response.py +89 -0
- wandelbots_api_client/v2/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_validation_error.py +107 -0
- wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +275 -0
- wandelbots_api_client/v2/models/plane.py +90 -0
- wandelbots_api_client/v2/models/playback_speed_request.py +96 -0
- wandelbots_api_client/v2/models/playback_speed_response.py +91 -0
- wandelbots_api_client/v2/models/pose.py +90 -0
- wandelbots_api_client/v2/models/profinet_description.py +112 -0
- wandelbots_api_client/v2/models/profinet_input_output_config.py +98 -0
- wandelbots_api_client/v2/models/profinet_io.py +109 -0
- wandelbots_api_client/v2/models/profinet_io_data.py +105 -0
- wandelbots_api_client/v2/models/profinet_io_direction.py +35 -0
- wandelbots_api_client/v2/models/profinet_io_type_enum.py +42 -0
- wandelbots_api_client/v2/models/profinet_slot_description.py +106 -0
- wandelbots_api_client/v2/models/profinet_sub_slot_description.py +92 -0
- wandelbots_api_client/v2/models/program.py +105 -0
- wandelbots_api_client/v2/models/program_run.py +124 -0
- wandelbots_api_client/v2/models/program_run_state.py +37 -0
- wandelbots_api_client/v2/models/program_start_request.py +83 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint422_response.py +99 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_request.py +148 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_response.py +85 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error.py +111 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error_all_of_data.py +189 -0
- wandelbots_api_client/v2/models/rectangle.py +92 -0
- wandelbots_api_client/v2/models/rectangular_capsule.py +100 -0
- wandelbots_api_client/v2/models/release_channel.py +34 -0
- wandelbots_api_client/v2/models/robot_controller.py +105 -0
- wandelbots_api_client/v2/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/v2/models/robot_controller_configuration_request.py +99 -0
- wandelbots_api_client/v2/models/robot_controller_state.py +138 -0
- wandelbots_api_client/v2/models/robot_system_mode.py +37 -0
- wandelbots_api_client/v2/models/robot_tcp.py +110 -0
- wandelbots_api_client/v2/models/robot_tcp_data.py +108 -0
- wandelbots_api_client/v2/models/rrt_connect_algorithm.py +127 -0
- wandelbots_api_client/v2/models/safety_geometry.py +125 -0
- wandelbots_api_client/v2/models/safety_geometry_box.py +89 -0
- wandelbots_api_client/v2/models/safety_geometry_capsule.py +90 -0
- wandelbots_api_client/v2/models/safety_geometry_lozenge.py +97 -0
- wandelbots_api_client/v2/models/safety_geometry_plane.py +86 -0
- wandelbots_api_client/v2/models/safety_geometry_prism.py +88 -0
- wandelbots_api_client/v2/models/safety_geometry_sphere.py +87 -0
- wandelbots_api_client/v2/models/safety_state_type.py +48 -0
- wandelbots_api_client/v2/models/safety_zone.py +111 -0
- wandelbots_api_client/v2/models/safety_zone_pose.py +99 -0
- wandelbots_api_client/v2/models/safety_zones.py +97 -0
- wandelbots_api_client/v2/models/service_group.py +36 -0
- wandelbots_api_client/v2/models/service_status.py +96 -0
- wandelbots_api_client/v2/models/service_status_phase.py +46 -0
- wandelbots_api_client/v2/models/service_status_response.py +100 -0
- wandelbots_api_client/v2/models/service_status_severity.py +35 -0
- wandelbots_api_client/v2/models/service_status_status.py +87 -0
- wandelbots_api_client/v2/models/set_io.py +96 -0
- wandelbots_api_client/v2/models/settable_robot_system_mode.py +36 -0
- wandelbots_api_client/v2/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/v2/models/sphere.py +91 -0
- wandelbots_api_client/v2/models/start_movement_request.py +133 -0
- wandelbots_api_client/v2/models/start_movement_response.py +91 -0
- wandelbots_api_client/v2/models/start_on_io.py +99 -0
- wandelbots_api_client/v2/models/stream_io_values_response.py +103 -0
- wandelbots_api_client/v2/models/tcp_offset.py +88 -0
- wandelbots_api_client/v2/models/tcp_required_error.py +96 -0
- wandelbots_api_client/v2/models/tcp_velocity_request.py +110 -0
- wandelbots_api_client/v2/models/tcp_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/torque_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/torque_exceeded_error_torque_exceeded.py +86 -0
- wandelbots_api_client/v2/models/trajectory_data.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details_state.py +239 -0
- wandelbots_api_client/v2/models/trajectory_ended.py +90 -0
- wandelbots_api_client/v2/models/trajectory_id.py +93 -0
- wandelbots_api_client/v2/models/trajectory_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/trajectory_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/trajectory_running.py +94 -0
- wandelbots_api_client/v2/models/trajectory_section.py +84 -0
- wandelbots_api_client/v2/models/trajectory_wait_for_io.py +90 -0
- wandelbots_api_client/v2/models/unit_type.py +42 -0
- wandelbots_api_client/v2/models/universalrobots_controller.py +91 -0
- wandelbots_api_client/v2/models/update_cell_version_request.py +84 -0
- wandelbots_api_client/v2/models/update_nova_version_request.py +90 -0
- wandelbots_api_client/v2/models/validation_error.py +101 -0
- wandelbots_api_client/v2/models/validation_error2.py +85 -0
- wandelbots_api_client/v2/models/virtual_controller.py +113 -0
- wandelbots_api_client/v2/models/virtual_robot_configuration.py +88 -0
- wandelbots_api_client/v2/models/wait_for_io_event_request.py +93 -0
- wandelbots_api_client/v2/models/yaskawa_controller.py +91 -0
- wandelbots_api_client/v2/models/zod_validation_error.py +87 -0
- wandelbots_api_client/v2/models/zod_validation_error_error.py +108 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py +101 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py +153 -0
- wandelbots_api_client/v2/py.typed +0 -0
- wandelbots_api_client/v2/rest.py +188 -0
- wandelbots_api_client/v2_pydantic/__init__.py +49 -0
- wandelbots_api_client/v2_pydantic/api/__init__.py +55 -0
- wandelbots_api_client/v2_pydantic/api/application_api.py +1532 -0
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2_pydantic/api/cell_api.py +2163 -0
- wandelbots_api_client/v2_pydantic/api/controller_api.py +3238 -0
- wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2_pydantic/api/jogging_api.py +113 -0
- wandelbots_api_client/v2_pydantic/api/kinematics_api.py +811 -0
- wandelbots_api_client/v2_pydantic/api/license_api.py +877 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2_pydantic/api/program_api.py +988 -0
- wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2_pydantic/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2_pydantic/api/system_api.py +2696 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2_pydantic/api/version_api.py +240 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2_pydantic/api_client.py +692 -0
- wandelbots_api_client/v2_pydantic/api_response.py +20 -0
- wandelbots_api_client/v2_pydantic/configuration.py +579 -0
- wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
- wandelbots_api_client/v2_pydantic/models/__init__.py +748 -0
- wandelbots_api_client/v2_pydantic/models/models.py +5909 -0
- wandelbots_api_client/v2_pydantic/py.typed +0 -0
- wandelbots_api_client/v2_pydantic/rest.py +188 -0
- wandelbots_api_client-26.3.0.dist-info/METADATA +241 -0
- wandelbots_api_client-26.3.0.dist-info/RECORD +740 -0
- wandelbots_api_client-26.3.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,951 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Wandelbots NOVA API
|
|
5
|
+
|
|
6
|
+
Interact with robots in an easy and intuitive way.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.4.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from furl import furl
|
|
15
|
+
import json
|
|
16
|
+
import humps
|
|
17
|
+
import re
|
|
18
|
+
import warnings
|
|
19
|
+
import websockets
|
|
20
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
21
|
+
from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, Union
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from urllib.parse import quote
|
|
24
|
+
|
|
25
|
+
from pydantic import Field, StrictStr
|
|
26
|
+
from typing import Dict
|
|
27
|
+
from typing_extensions import Annotated
|
|
28
|
+
from wandelbots_api_client.models.collision_scene import CollisionScene
|
|
29
|
+
from wandelbots_api_client.models.collision_scene_assembly import CollisionSceneAssembly
|
|
30
|
+
|
|
31
|
+
from wandelbots_api_client.api_client import ApiClient, RequestSerialized
|
|
32
|
+
from wandelbots_api_client.api_response import ApiResponse
|
|
33
|
+
from wandelbots_api_client.rest import RESTResponseType
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class StoreCollisionScenesApi:
|
|
37
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
38
|
+
Ref: https://openapi-generator.tech
|
|
39
|
+
|
|
40
|
+
Do not edit the class manually.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
def __init__(self, api_client=None) -> None:
|
|
44
|
+
if api_client is None:
|
|
45
|
+
api_client = ApiClient.get_default()
|
|
46
|
+
self.api_client = api_client
|
|
47
|
+
|
|
48
|
+
@validate_call
|
|
49
|
+
async def delete_stored_collision_scene(
|
|
50
|
+
self,
|
|
51
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
52
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
53
|
+
_request_timeout: Union[
|
|
54
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
55
|
+
] = None,
|
|
56
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_content_type: Optional[StrictStr] = None,
|
|
58
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
60
|
+
) -> None:
|
|
61
|
+
"""Delete Scene
|
|
62
|
+
|
|
63
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored scene. <!-- theme: danger --> > This will delete persistently stored data.
|
|
64
|
+
|
|
65
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
66
|
+
:type cell: str
|
|
67
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
68
|
+
:type scene: str
|
|
69
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
70
|
+
number provided, it will be total request
|
|
71
|
+
timeout. It can also be a pair (tuple) of
|
|
72
|
+
(connection, read) timeouts.
|
|
73
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
74
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
75
|
+
request; this effectively ignores the
|
|
76
|
+
authentication in the spec for a single request.
|
|
77
|
+
:type _request_auth: dict, optional
|
|
78
|
+
:param _content_type: force content-type for the request.
|
|
79
|
+
:type _content_type: str, Optional
|
|
80
|
+
:param _headers: set to override the headers for a single
|
|
81
|
+
request; this effectively ignores the headers
|
|
82
|
+
in the spec for a single request.
|
|
83
|
+
:type _headers: dict, optional
|
|
84
|
+
:param _host_index: set to override the host_index for a single
|
|
85
|
+
request; this effectively ignores the host_index
|
|
86
|
+
in the spec for a single request.
|
|
87
|
+
:type _host_index: int, optional
|
|
88
|
+
:return: Returns the result object.
|
|
89
|
+
""" # noqa: E501
|
|
90
|
+
|
|
91
|
+
_param = self._delete_stored_collision_scene_serialize(
|
|
92
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
96
|
+
"204": None,
|
|
97
|
+
}
|
|
98
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
99
|
+
await response_data.read()
|
|
100
|
+
return self.api_client.response_deserialize(
|
|
101
|
+
response_data=response_data,
|
|
102
|
+
response_types_map=_response_types_map,
|
|
103
|
+
).data
|
|
104
|
+
|
|
105
|
+
@validate_call
|
|
106
|
+
async def delete_stored_collision_scene_with_http_info(
|
|
107
|
+
self,
|
|
108
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
109
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
110
|
+
_request_timeout: Union[
|
|
111
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
112
|
+
] = None,
|
|
113
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
114
|
+
_content_type: Optional[StrictStr] = None,
|
|
115
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
116
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
117
|
+
) -> ApiResponse[None]:
|
|
118
|
+
"""Delete Scene
|
|
119
|
+
|
|
120
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored scene. <!-- theme: danger --> > This will delete persistently stored data.
|
|
121
|
+
|
|
122
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
123
|
+
:type cell: str
|
|
124
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
125
|
+
:type scene: str
|
|
126
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
127
|
+
number provided, it will be total request
|
|
128
|
+
timeout. It can also be a pair (tuple) of
|
|
129
|
+
(connection, read) timeouts.
|
|
130
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
131
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
132
|
+
request; this effectively ignores the
|
|
133
|
+
authentication in the spec for a single request.
|
|
134
|
+
:type _request_auth: dict, optional
|
|
135
|
+
:param _content_type: force content-type for the request.
|
|
136
|
+
:type _content_type: str, Optional
|
|
137
|
+
:param _headers: set to override the headers for a single
|
|
138
|
+
request; this effectively ignores the headers
|
|
139
|
+
in the spec for a single request.
|
|
140
|
+
:type _headers: dict, optional
|
|
141
|
+
:param _host_index: set to override the host_index for a single
|
|
142
|
+
request; this effectively ignores the host_index
|
|
143
|
+
in the spec for a single request.
|
|
144
|
+
:type _host_index: int, optional
|
|
145
|
+
:return: Returns the result object.
|
|
146
|
+
""" # noqa: E501
|
|
147
|
+
|
|
148
|
+
_param = self._delete_stored_collision_scene_serialize(
|
|
149
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
150
|
+
)
|
|
151
|
+
|
|
152
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
153
|
+
"204": None,
|
|
154
|
+
}
|
|
155
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
156
|
+
await response_data.read()
|
|
157
|
+
return self.api_client.response_deserialize(
|
|
158
|
+
response_data=response_data,
|
|
159
|
+
response_types_map=_response_types_map,
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
@validate_call
|
|
163
|
+
async def delete_stored_collision_scene_without_preload_content(
|
|
164
|
+
self,
|
|
165
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
166
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
167
|
+
_request_timeout: Union[
|
|
168
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
169
|
+
] = None,
|
|
170
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
171
|
+
_content_type: Optional[StrictStr] = None,
|
|
172
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
173
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
174
|
+
) -> RESTResponseType:
|
|
175
|
+
"""Delete Scene
|
|
176
|
+
|
|
177
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Deletes the stored scene. <!-- theme: danger --> > This will delete persistently stored data.
|
|
178
|
+
|
|
179
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
180
|
+
:type cell: str
|
|
181
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
182
|
+
:type scene: str
|
|
183
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
184
|
+
number provided, it will be total request
|
|
185
|
+
timeout. It can also be a pair (tuple) of
|
|
186
|
+
(connection, read) timeouts.
|
|
187
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
188
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
189
|
+
request; this effectively ignores the
|
|
190
|
+
authentication in the spec for a single request.
|
|
191
|
+
:type _request_auth: dict, optional
|
|
192
|
+
:param _content_type: force content-type for the request.
|
|
193
|
+
:type _content_type: str, Optional
|
|
194
|
+
:param _headers: set to override the headers for a single
|
|
195
|
+
request; this effectively ignores the headers
|
|
196
|
+
in the spec for a single request.
|
|
197
|
+
:type _headers: dict, optional
|
|
198
|
+
:param _host_index: set to override the host_index for a single
|
|
199
|
+
request; this effectively ignores the host_index
|
|
200
|
+
in the spec for a single request.
|
|
201
|
+
:type _host_index: int, optional
|
|
202
|
+
:return: Returns the result object.
|
|
203
|
+
""" # noqa: E501
|
|
204
|
+
|
|
205
|
+
_param = self._delete_stored_collision_scene_serialize(
|
|
206
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
207
|
+
)
|
|
208
|
+
|
|
209
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
210
|
+
"204": None,
|
|
211
|
+
}
|
|
212
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
213
|
+
return response_data.response
|
|
214
|
+
|
|
215
|
+
def _delete_stored_collision_scene_serialize(
|
|
216
|
+
self,
|
|
217
|
+
cell,
|
|
218
|
+
scene,
|
|
219
|
+
_request_auth,
|
|
220
|
+
_content_type,
|
|
221
|
+
_headers,
|
|
222
|
+
_host_index,
|
|
223
|
+
) -> RequestSerialized:
|
|
224
|
+
|
|
225
|
+
_host = None
|
|
226
|
+
|
|
227
|
+
_collection_formats: Dict[str, str] = {}
|
|
228
|
+
|
|
229
|
+
_path_params: Dict[str, str] = {}
|
|
230
|
+
_query_params: List[Tuple[str, str]] = []
|
|
231
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
232
|
+
_form_params: List[Tuple[str, str]] = []
|
|
233
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
234
|
+
_body_params: Optional[bytes] = None
|
|
235
|
+
|
|
236
|
+
# process the path parameters
|
|
237
|
+
if cell is not None:
|
|
238
|
+
_path_params["cell"] = cell
|
|
239
|
+
if scene is not None:
|
|
240
|
+
_path_params["scene"] = scene
|
|
241
|
+
# process the query parameters
|
|
242
|
+
# process the header parameters
|
|
243
|
+
# process the form parameters
|
|
244
|
+
# process the body parameter
|
|
245
|
+
|
|
246
|
+
# authentication setting
|
|
247
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
248
|
+
|
|
249
|
+
return self.api_client.param_serialize(
|
|
250
|
+
method="DELETE",
|
|
251
|
+
resource_path="/cells/{cell}/store/collision/scenes/{scene}",
|
|
252
|
+
path_params=_path_params,
|
|
253
|
+
query_params=_query_params,
|
|
254
|
+
header_params=_header_params,
|
|
255
|
+
body=_body_params,
|
|
256
|
+
post_params=_form_params,
|
|
257
|
+
files=_files,
|
|
258
|
+
auth_settings=_auth_settings,
|
|
259
|
+
collection_formats=_collection_formats,
|
|
260
|
+
_host=_host,
|
|
261
|
+
_request_auth=_request_auth,
|
|
262
|
+
)
|
|
263
|
+
|
|
264
|
+
@validate_call
|
|
265
|
+
async def get_stored_collision_scene(
|
|
266
|
+
self,
|
|
267
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
268
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
269
|
+
_request_timeout: Union[
|
|
270
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
271
|
+
] = None,
|
|
272
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
273
|
+
_content_type: Optional[StrictStr] = None,
|
|
274
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
275
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
276
|
+
) -> CollisionScene:
|
|
277
|
+
"""Get Scene
|
|
278
|
+
|
|
279
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored scene.
|
|
280
|
+
|
|
281
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
282
|
+
:type cell: str
|
|
283
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
284
|
+
:type scene: str
|
|
285
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
286
|
+
number provided, it will be total request
|
|
287
|
+
timeout. It can also be a pair (tuple) of
|
|
288
|
+
(connection, read) timeouts.
|
|
289
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
290
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
291
|
+
request; this effectively ignores the
|
|
292
|
+
authentication in the spec for a single request.
|
|
293
|
+
:type _request_auth: dict, optional
|
|
294
|
+
:param _content_type: force content-type for the request.
|
|
295
|
+
:type _content_type: str, Optional
|
|
296
|
+
:param _headers: set to override the headers for a single
|
|
297
|
+
request; this effectively ignores the headers
|
|
298
|
+
in the spec for a single request.
|
|
299
|
+
:type _headers: dict, optional
|
|
300
|
+
:param _host_index: set to override the host_index for a single
|
|
301
|
+
request; this effectively ignores the host_index
|
|
302
|
+
in the spec for a single request.
|
|
303
|
+
:type _host_index: int, optional
|
|
304
|
+
:return: Returns the result object.
|
|
305
|
+
""" # noqa: E501
|
|
306
|
+
|
|
307
|
+
_param = self._get_stored_collision_scene_serialize(
|
|
308
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
309
|
+
)
|
|
310
|
+
|
|
311
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
312
|
+
"200": "CollisionScene",
|
|
313
|
+
"404": None,
|
|
314
|
+
}
|
|
315
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
316
|
+
await response_data.read()
|
|
317
|
+
return self.api_client.response_deserialize(
|
|
318
|
+
response_data=response_data,
|
|
319
|
+
response_types_map=_response_types_map,
|
|
320
|
+
).data
|
|
321
|
+
|
|
322
|
+
@validate_call
|
|
323
|
+
async def get_stored_collision_scene_with_http_info(
|
|
324
|
+
self,
|
|
325
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
326
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
327
|
+
_request_timeout: Union[
|
|
328
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
329
|
+
] = None,
|
|
330
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
331
|
+
_content_type: Optional[StrictStr] = None,
|
|
332
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
333
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
334
|
+
) -> ApiResponse[CollisionScene]:
|
|
335
|
+
"""Get Scene
|
|
336
|
+
|
|
337
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored scene.
|
|
338
|
+
|
|
339
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
340
|
+
:type cell: str
|
|
341
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
342
|
+
:type scene: str
|
|
343
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
344
|
+
number provided, it will be total request
|
|
345
|
+
timeout. It can also be a pair (tuple) of
|
|
346
|
+
(connection, read) timeouts.
|
|
347
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
348
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
349
|
+
request; this effectively ignores the
|
|
350
|
+
authentication in the spec for a single request.
|
|
351
|
+
:type _request_auth: dict, optional
|
|
352
|
+
:param _content_type: force content-type for the request.
|
|
353
|
+
:type _content_type: str, Optional
|
|
354
|
+
:param _headers: set to override the headers for a single
|
|
355
|
+
request; this effectively ignores the headers
|
|
356
|
+
in the spec for a single request.
|
|
357
|
+
:type _headers: dict, optional
|
|
358
|
+
:param _host_index: set to override the host_index for a single
|
|
359
|
+
request; this effectively ignores the host_index
|
|
360
|
+
in the spec for a single request.
|
|
361
|
+
:type _host_index: int, optional
|
|
362
|
+
:return: Returns the result object.
|
|
363
|
+
""" # noqa: E501
|
|
364
|
+
|
|
365
|
+
_param = self._get_stored_collision_scene_serialize(
|
|
366
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
367
|
+
)
|
|
368
|
+
|
|
369
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
370
|
+
"200": "CollisionScene",
|
|
371
|
+
"404": None,
|
|
372
|
+
}
|
|
373
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
374
|
+
await response_data.read()
|
|
375
|
+
return self.api_client.response_deserialize(
|
|
376
|
+
response_data=response_data,
|
|
377
|
+
response_types_map=_response_types_map,
|
|
378
|
+
)
|
|
379
|
+
|
|
380
|
+
@validate_call
|
|
381
|
+
async def get_stored_collision_scene_without_preload_content(
|
|
382
|
+
self,
|
|
383
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
384
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
385
|
+
_request_timeout: Union[
|
|
386
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
387
|
+
] = None,
|
|
388
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
389
|
+
_content_type: Optional[StrictStr] = None,
|
|
390
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
391
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
392
|
+
) -> RESTResponseType:
|
|
393
|
+
"""Get Scene
|
|
394
|
+
|
|
395
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns the stored scene.
|
|
396
|
+
|
|
397
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
398
|
+
:type cell: str
|
|
399
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
400
|
+
:type scene: str
|
|
401
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
402
|
+
number provided, it will be total request
|
|
403
|
+
timeout. It can also be a pair (tuple) of
|
|
404
|
+
(connection, read) timeouts.
|
|
405
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
406
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
407
|
+
request; this effectively ignores the
|
|
408
|
+
authentication in the spec for a single request.
|
|
409
|
+
:type _request_auth: dict, optional
|
|
410
|
+
:param _content_type: force content-type for the request.
|
|
411
|
+
:type _content_type: str, Optional
|
|
412
|
+
:param _headers: set to override the headers for a single
|
|
413
|
+
request; this effectively ignores the headers
|
|
414
|
+
in the spec for a single request.
|
|
415
|
+
:type _headers: dict, optional
|
|
416
|
+
:param _host_index: set to override the host_index for a single
|
|
417
|
+
request; this effectively ignores the host_index
|
|
418
|
+
in the spec for a single request.
|
|
419
|
+
:type _host_index: int, optional
|
|
420
|
+
:return: Returns the result object.
|
|
421
|
+
""" # noqa: E501
|
|
422
|
+
|
|
423
|
+
_param = self._get_stored_collision_scene_serialize(
|
|
424
|
+
cell=cell, scene=scene, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
425
|
+
)
|
|
426
|
+
|
|
427
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
428
|
+
"200": "CollisionScene",
|
|
429
|
+
"404": None,
|
|
430
|
+
}
|
|
431
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
432
|
+
return response_data.response
|
|
433
|
+
|
|
434
|
+
def _get_stored_collision_scene_serialize(
|
|
435
|
+
self,
|
|
436
|
+
cell,
|
|
437
|
+
scene,
|
|
438
|
+
_request_auth,
|
|
439
|
+
_content_type,
|
|
440
|
+
_headers,
|
|
441
|
+
_host_index,
|
|
442
|
+
) -> RequestSerialized:
|
|
443
|
+
|
|
444
|
+
_host = None
|
|
445
|
+
|
|
446
|
+
_collection_formats: Dict[str, str] = {}
|
|
447
|
+
|
|
448
|
+
_path_params: Dict[str, str] = {}
|
|
449
|
+
_query_params: List[Tuple[str, str]] = []
|
|
450
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
451
|
+
_form_params: List[Tuple[str, str]] = []
|
|
452
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
453
|
+
_body_params: Optional[bytes] = None
|
|
454
|
+
|
|
455
|
+
# process the path parameters
|
|
456
|
+
if cell is not None:
|
|
457
|
+
_path_params["cell"] = cell
|
|
458
|
+
if scene is not None:
|
|
459
|
+
_path_params["scene"] = scene
|
|
460
|
+
# process the query parameters
|
|
461
|
+
# process the header parameters
|
|
462
|
+
# process the form parameters
|
|
463
|
+
# process the body parameter
|
|
464
|
+
|
|
465
|
+
# set the HTTP header `Accept`
|
|
466
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
467
|
+
|
|
468
|
+
# authentication setting
|
|
469
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
470
|
+
|
|
471
|
+
return self.api_client.param_serialize(
|
|
472
|
+
method="GET",
|
|
473
|
+
resource_path="/cells/{cell}/store/collision/scenes/{scene}",
|
|
474
|
+
path_params=_path_params,
|
|
475
|
+
query_params=_query_params,
|
|
476
|
+
header_params=_header_params,
|
|
477
|
+
body=_body_params,
|
|
478
|
+
post_params=_form_params,
|
|
479
|
+
files=_files,
|
|
480
|
+
auth_settings=_auth_settings,
|
|
481
|
+
collection_formats=_collection_formats,
|
|
482
|
+
_host=_host,
|
|
483
|
+
_request_auth=_request_auth,
|
|
484
|
+
)
|
|
485
|
+
|
|
486
|
+
@validate_call
|
|
487
|
+
async def list_stored_collision_scenes(
|
|
488
|
+
self,
|
|
489
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
490
|
+
_request_timeout: Union[
|
|
491
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
492
|
+
] = None,
|
|
493
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
494
|
+
_content_type: Optional[StrictStr] = None,
|
|
495
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
496
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
497
|
+
) -> Dict[str, CollisionScene]:
|
|
498
|
+
"""List Scenes
|
|
499
|
+
|
|
500
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored scenes.
|
|
501
|
+
|
|
502
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
503
|
+
:type cell: str
|
|
504
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
505
|
+
number provided, it will be total request
|
|
506
|
+
timeout. It can also be a pair (tuple) of
|
|
507
|
+
(connection, read) timeouts.
|
|
508
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
509
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
510
|
+
request; this effectively ignores the
|
|
511
|
+
authentication in the spec for a single request.
|
|
512
|
+
:type _request_auth: dict, optional
|
|
513
|
+
:param _content_type: force content-type for the request.
|
|
514
|
+
:type _content_type: str, Optional
|
|
515
|
+
:param _headers: set to override the headers for a single
|
|
516
|
+
request; this effectively ignores the headers
|
|
517
|
+
in the spec for a single request.
|
|
518
|
+
:type _headers: dict, optional
|
|
519
|
+
:param _host_index: set to override the host_index for a single
|
|
520
|
+
request; this effectively ignores the host_index
|
|
521
|
+
in the spec for a single request.
|
|
522
|
+
:type _host_index: int, optional
|
|
523
|
+
:return: Returns the result object.
|
|
524
|
+
""" # noqa: E501
|
|
525
|
+
|
|
526
|
+
_param = self._list_stored_collision_scenes_serialize(
|
|
527
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
528
|
+
)
|
|
529
|
+
|
|
530
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
531
|
+
"200": "Dict[str, CollisionScene]",
|
|
532
|
+
}
|
|
533
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
534
|
+
await response_data.read()
|
|
535
|
+
return self.api_client.response_deserialize(
|
|
536
|
+
response_data=response_data,
|
|
537
|
+
response_types_map=_response_types_map,
|
|
538
|
+
).data
|
|
539
|
+
|
|
540
|
+
@validate_call
|
|
541
|
+
async def list_stored_collision_scenes_with_http_info(
|
|
542
|
+
self,
|
|
543
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
544
|
+
_request_timeout: Union[
|
|
545
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
546
|
+
] = None,
|
|
547
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
548
|
+
_content_type: Optional[StrictStr] = None,
|
|
549
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
550
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
551
|
+
) -> ApiResponse[Dict[str, CollisionScene]]:
|
|
552
|
+
"""List Scenes
|
|
553
|
+
|
|
554
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored scenes.
|
|
555
|
+
|
|
556
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
557
|
+
:type cell: str
|
|
558
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
559
|
+
number provided, it will be total request
|
|
560
|
+
timeout. It can also be a pair (tuple) of
|
|
561
|
+
(connection, read) timeouts.
|
|
562
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
563
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
564
|
+
request; this effectively ignores the
|
|
565
|
+
authentication in the spec for a single request.
|
|
566
|
+
:type _request_auth: dict, optional
|
|
567
|
+
:param _content_type: force content-type for the request.
|
|
568
|
+
:type _content_type: str, Optional
|
|
569
|
+
:param _headers: set to override the headers for a single
|
|
570
|
+
request; this effectively ignores the headers
|
|
571
|
+
in the spec for a single request.
|
|
572
|
+
:type _headers: dict, optional
|
|
573
|
+
:param _host_index: set to override the host_index for a single
|
|
574
|
+
request; this effectively ignores the host_index
|
|
575
|
+
in the spec for a single request.
|
|
576
|
+
:type _host_index: int, optional
|
|
577
|
+
:return: Returns the result object.
|
|
578
|
+
""" # noqa: E501
|
|
579
|
+
|
|
580
|
+
_param = self._list_stored_collision_scenes_serialize(
|
|
581
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
582
|
+
)
|
|
583
|
+
|
|
584
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
585
|
+
"200": "Dict[str, CollisionScene]",
|
|
586
|
+
}
|
|
587
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
588
|
+
await response_data.read()
|
|
589
|
+
return self.api_client.response_deserialize(
|
|
590
|
+
response_data=response_data,
|
|
591
|
+
response_types_map=_response_types_map,
|
|
592
|
+
)
|
|
593
|
+
|
|
594
|
+
@validate_call
|
|
595
|
+
async def list_stored_collision_scenes_without_preload_content(
|
|
596
|
+
self,
|
|
597
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
598
|
+
_request_timeout: Union[
|
|
599
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
600
|
+
] = None,
|
|
601
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
602
|
+
_content_type: Optional[StrictStr] = None,
|
|
603
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
604
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
605
|
+
) -> RESTResponseType:
|
|
606
|
+
"""List Scenes
|
|
607
|
+
|
|
608
|
+
**Required permissions:** `can_read_collision_world` - Read collision models and scenes ___ Returns a list of stored scenes.
|
|
609
|
+
|
|
610
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
611
|
+
:type cell: str
|
|
612
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
613
|
+
number provided, it will be total request
|
|
614
|
+
timeout. It can also be a pair (tuple) of
|
|
615
|
+
(connection, read) timeouts.
|
|
616
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
617
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
618
|
+
request; this effectively ignores the
|
|
619
|
+
authentication in the spec for a single request.
|
|
620
|
+
:type _request_auth: dict, optional
|
|
621
|
+
:param _content_type: force content-type for the request.
|
|
622
|
+
:type _content_type: str, Optional
|
|
623
|
+
:param _headers: set to override the headers for a single
|
|
624
|
+
request; this effectively ignores the headers
|
|
625
|
+
in the spec for a single request.
|
|
626
|
+
:type _headers: dict, optional
|
|
627
|
+
:param _host_index: set to override the host_index for a single
|
|
628
|
+
request; this effectively ignores the host_index
|
|
629
|
+
in the spec for a single request.
|
|
630
|
+
:type _host_index: int, optional
|
|
631
|
+
:return: Returns the result object.
|
|
632
|
+
""" # noqa: E501
|
|
633
|
+
|
|
634
|
+
_param = self._list_stored_collision_scenes_serialize(
|
|
635
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
636
|
+
)
|
|
637
|
+
|
|
638
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
639
|
+
"200": "Dict[str, CollisionScene]",
|
|
640
|
+
}
|
|
641
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
642
|
+
return response_data.response
|
|
643
|
+
|
|
644
|
+
def _list_stored_collision_scenes_serialize(
|
|
645
|
+
self,
|
|
646
|
+
cell,
|
|
647
|
+
_request_auth,
|
|
648
|
+
_content_type,
|
|
649
|
+
_headers,
|
|
650
|
+
_host_index,
|
|
651
|
+
) -> RequestSerialized:
|
|
652
|
+
|
|
653
|
+
_host = None
|
|
654
|
+
|
|
655
|
+
_collection_formats: Dict[str, str] = {}
|
|
656
|
+
|
|
657
|
+
_path_params: Dict[str, str] = {}
|
|
658
|
+
_query_params: List[Tuple[str, str]] = []
|
|
659
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
660
|
+
_form_params: List[Tuple[str, str]] = []
|
|
661
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
662
|
+
_body_params: Optional[bytes] = None
|
|
663
|
+
|
|
664
|
+
# process the path parameters
|
|
665
|
+
if cell is not None:
|
|
666
|
+
_path_params["cell"] = cell
|
|
667
|
+
# process the query parameters
|
|
668
|
+
# process the header parameters
|
|
669
|
+
# process the form parameters
|
|
670
|
+
# process the body parameter
|
|
671
|
+
|
|
672
|
+
# set the HTTP header `Accept`
|
|
673
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
674
|
+
|
|
675
|
+
# authentication setting
|
|
676
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
677
|
+
|
|
678
|
+
return self.api_client.param_serialize(
|
|
679
|
+
method="GET",
|
|
680
|
+
resource_path="/cells/{cell}/store/collision/scenes",
|
|
681
|
+
path_params=_path_params,
|
|
682
|
+
query_params=_query_params,
|
|
683
|
+
header_params=_header_params,
|
|
684
|
+
body=_body_params,
|
|
685
|
+
post_params=_form_params,
|
|
686
|
+
files=_files,
|
|
687
|
+
auth_settings=_auth_settings,
|
|
688
|
+
collection_formats=_collection_formats,
|
|
689
|
+
_host=_host,
|
|
690
|
+
_request_auth=_request_auth,
|
|
691
|
+
)
|
|
692
|
+
|
|
693
|
+
@validate_call
|
|
694
|
+
async def store_collision_scene(
|
|
695
|
+
self,
|
|
696
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
697
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
698
|
+
collision_scene_assembly: CollisionSceneAssembly,
|
|
699
|
+
_request_timeout: Union[
|
|
700
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
701
|
+
] = None,
|
|
702
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
703
|
+
_content_type: Optional[StrictStr] = None,
|
|
704
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
705
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
706
|
+
) -> CollisionScene:
|
|
707
|
+
"""Store Scene
|
|
708
|
+
|
|
709
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Creates or replaces the stored collision scene. The scene is assembled from components as defined in the request body. An error is returned if a stored object does not exist.
|
|
710
|
+
|
|
711
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
712
|
+
:type cell: str
|
|
713
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
714
|
+
:type scene: str
|
|
715
|
+
:param collision_scene_assembly: (required)
|
|
716
|
+
:type collision_scene_assembly: CollisionSceneAssembly
|
|
717
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
718
|
+
number provided, it will be total request
|
|
719
|
+
timeout. It can also be a pair (tuple) of
|
|
720
|
+
(connection, read) timeouts.
|
|
721
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
722
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
723
|
+
request; this effectively ignores the
|
|
724
|
+
authentication in the spec for a single request.
|
|
725
|
+
:type _request_auth: dict, optional
|
|
726
|
+
:param _content_type: force content-type for the request.
|
|
727
|
+
:type _content_type: str, Optional
|
|
728
|
+
:param _headers: set to override the headers for a single
|
|
729
|
+
request; this effectively ignores the headers
|
|
730
|
+
in the spec for a single request.
|
|
731
|
+
:type _headers: dict, optional
|
|
732
|
+
:param _host_index: set to override the host_index for a single
|
|
733
|
+
request; this effectively ignores the host_index
|
|
734
|
+
in the spec for a single request.
|
|
735
|
+
:type _host_index: int, optional
|
|
736
|
+
:return: Returns the result object.
|
|
737
|
+
""" # noqa: E501
|
|
738
|
+
|
|
739
|
+
_param = self._store_collision_scene_serialize(
|
|
740
|
+
cell=cell,
|
|
741
|
+
scene=scene,
|
|
742
|
+
collision_scene_assembly=collision_scene_assembly,
|
|
743
|
+
_request_auth=_request_auth,
|
|
744
|
+
_content_type=_content_type,
|
|
745
|
+
_headers=_headers,
|
|
746
|
+
_host_index=_host_index,
|
|
747
|
+
)
|
|
748
|
+
|
|
749
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
750
|
+
"200": "CollisionScene",
|
|
751
|
+
"404": None,
|
|
752
|
+
}
|
|
753
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
754
|
+
await response_data.read()
|
|
755
|
+
return self.api_client.response_deserialize(
|
|
756
|
+
response_data=response_data,
|
|
757
|
+
response_types_map=_response_types_map,
|
|
758
|
+
).data
|
|
759
|
+
|
|
760
|
+
@validate_call
|
|
761
|
+
async def store_collision_scene_with_http_info(
|
|
762
|
+
self,
|
|
763
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
764
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
765
|
+
collision_scene_assembly: CollisionSceneAssembly,
|
|
766
|
+
_request_timeout: Union[
|
|
767
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
768
|
+
] = None,
|
|
769
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
770
|
+
_content_type: Optional[StrictStr] = None,
|
|
771
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
772
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
773
|
+
) -> ApiResponse[CollisionScene]:
|
|
774
|
+
"""Store Scene
|
|
775
|
+
|
|
776
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Creates or replaces the stored collision scene. The scene is assembled from components as defined in the request body. An error is returned if a stored object does not exist.
|
|
777
|
+
|
|
778
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
779
|
+
:type cell: str
|
|
780
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
781
|
+
:type scene: str
|
|
782
|
+
:param collision_scene_assembly: (required)
|
|
783
|
+
:type collision_scene_assembly: CollisionSceneAssembly
|
|
784
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
785
|
+
number provided, it will be total request
|
|
786
|
+
timeout. It can also be a pair (tuple) of
|
|
787
|
+
(connection, read) timeouts.
|
|
788
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
789
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
790
|
+
request; this effectively ignores the
|
|
791
|
+
authentication in the spec for a single request.
|
|
792
|
+
:type _request_auth: dict, optional
|
|
793
|
+
:param _content_type: force content-type for the request.
|
|
794
|
+
:type _content_type: str, Optional
|
|
795
|
+
:param _headers: set to override the headers for a single
|
|
796
|
+
request; this effectively ignores the headers
|
|
797
|
+
in the spec for a single request.
|
|
798
|
+
:type _headers: dict, optional
|
|
799
|
+
:param _host_index: set to override the host_index for a single
|
|
800
|
+
request; this effectively ignores the host_index
|
|
801
|
+
in the spec for a single request.
|
|
802
|
+
:type _host_index: int, optional
|
|
803
|
+
:return: Returns the result object.
|
|
804
|
+
""" # noqa: E501
|
|
805
|
+
|
|
806
|
+
_param = self._store_collision_scene_serialize(
|
|
807
|
+
cell=cell,
|
|
808
|
+
scene=scene,
|
|
809
|
+
collision_scene_assembly=collision_scene_assembly,
|
|
810
|
+
_request_auth=_request_auth,
|
|
811
|
+
_content_type=_content_type,
|
|
812
|
+
_headers=_headers,
|
|
813
|
+
_host_index=_host_index,
|
|
814
|
+
)
|
|
815
|
+
|
|
816
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
817
|
+
"200": "CollisionScene",
|
|
818
|
+
"404": None,
|
|
819
|
+
}
|
|
820
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
821
|
+
await response_data.read()
|
|
822
|
+
return self.api_client.response_deserialize(
|
|
823
|
+
response_data=response_data,
|
|
824
|
+
response_types_map=_response_types_map,
|
|
825
|
+
)
|
|
826
|
+
|
|
827
|
+
@validate_call
|
|
828
|
+
async def store_collision_scene_without_preload_content(
|
|
829
|
+
self,
|
|
830
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
831
|
+
scene: Annotated[StrictStr, Field(description="Unique identifier addressing a collision scene.")],
|
|
832
|
+
collision_scene_assembly: CollisionSceneAssembly,
|
|
833
|
+
_request_timeout: Union[
|
|
834
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
835
|
+
] = None,
|
|
836
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
837
|
+
_content_type: Optional[StrictStr] = None,
|
|
838
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
839
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
840
|
+
) -> RESTResponseType:
|
|
841
|
+
"""Store Scene
|
|
842
|
+
|
|
843
|
+
**Required permissions:** `can_write_collision_world` - Write collision models and scenes ___ Creates or replaces the stored collision scene. The scene is assembled from components as defined in the request body. An error is returned if a stored object does not exist.
|
|
844
|
+
|
|
845
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
846
|
+
:type cell: str
|
|
847
|
+
:param scene: Unique identifier addressing a collision scene. (required)
|
|
848
|
+
:type scene: str
|
|
849
|
+
:param collision_scene_assembly: (required)
|
|
850
|
+
:type collision_scene_assembly: CollisionSceneAssembly
|
|
851
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
852
|
+
number provided, it will be total request
|
|
853
|
+
timeout. It can also be a pair (tuple) of
|
|
854
|
+
(connection, read) timeouts.
|
|
855
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
856
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
857
|
+
request; this effectively ignores the
|
|
858
|
+
authentication in the spec for a single request.
|
|
859
|
+
:type _request_auth: dict, optional
|
|
860
|
+
:param _content_type: force content-type for the request.
|
|
861
|
+
:type _content_type: str, Optional
|
|
862
|
+
:param _headers: set to override the headers for a single
|
|
863
|
+
request; this effectively ignores the headers
|
|
864
|
+
in the spec for a single request.
|
|
865
|
+
:type _headers: dict, optional
|
|
866
|
+
:param _host_index: set to override the host_index for a single
|
|
867
|
+
request; this effectively ignores the host_index
|
|
868
|
+
in the spec for a single request.
|
|
869
|
+
:type _host_index: int, optional
|
|
870
|
+
:return: Returns the result object.
|
|
871
|
+
""" # noqa: E501
|
|
872
|
+
|
|
873
|
+
_param = self._store_collision_scene_serialize(
|
|
874
|
+
cell=cell,
|
|
875
|
+
scene=scene,
|
|
876
|
+
collision_scene_assembly=collision_scene_assembly,
|
|
877
|
+
_request_auth=_request_auth,
|
|
878
|
+
_content_type=_content_type,
|
|
879
|
+
_headers=_headers,
|
|
880
|
+
_host_index=_host_index,
|
|
881
|
+
)
|
|
882
|
+
|
|
883
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
884
|
+
"200": "CollisionScene",
|
|
885
|
+
"404": None,
|
|
886
|
+
}
|
|
887
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
888
|
+
return response_data.response
|
|
889
|
+
|
|
890
|
+
def _store_collision_scene_serialize(
|
|
891
|
+
self,
|
|
892
|
+
cell,
|
|
893
|
+
scene,
|
|
894
|
+
collision_scene_assembly,
|
|
895
|
+
_request_auth,
|
|
896
|
+
_content_type,
|
|
897
|
+
_headers,
|
|
898
|
+
_host_index,
|
|
899
|
+
) -> RequestSerialized:
|
|
900
|
+
|
|
901
|
+
_host = None
|
|
902
|
+
|
|
903
|
+
_collection_formats: Dict[str, str] = {}
|
|
904
|
+
|
|
905
|
+
_path_params: Dict[str, str] = {}
|
|
906
|
+
_query_params: List[Tuple[str, str]] = []
|
|
907
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
908
|
+
_form_params: List[Tuple[str, str]] = []
|
|
909
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
910
|
+
_body_params: Optional[bytes] = None
|
|
911
|
+
|
|
912
|
+
# process the path parameters
|
|
913
|
+
if cell is not None:
|
|
914
|
+
_path_params["cell"] = cell
|
|
915
|
+
if scene is not None:
|
|
916
|
+
_path_params["scene"] = scene
|
|
917
|
+
# process the query parameters
|
|
918
|
+
# process the header parameters
|
|
919
|
+
# process the form parameters
|
|
920
|
+
# process the body parameter
|
|
921
|
+
if collision_scene_assembly is not None:
|
|
922
|
+
_body_params = collision_scene_assembly
|
|
923
|
+
|
|
924
|
+
# set the HTTP header `Accept`
|
|
925
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
926
|
+
|
|
927
|
+
# set the HTTP header `Content-Type`
|
|
928
|
+
if _content_type:
|
|
929
|
+
_header_params["Content-Type"] = _content_type
|
|
930
|
+
else:
|
|
931
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
932
|
+
if _default_content_type is not None:
|
|
933
|
+
_header_params["Content-Type"] = _default_content_type
|
|
934
|
+
|
|
935
|
+
# authentication setting
|
|
936
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
937
|
+
|
|
938
|
+
return self.api_client.param_serialize(
|
|
939
|
+
method="PUT",
|
|
940
|
+
resource_path="/cells/{cell}/store/collision/scenes/{scene}",
|
|
941
|
+
path_params=_path_params,
|
|
942
|
+
query_params=_query_params,
|
|
943
|
+
header_params=_header_params,
|
|
944
|
+
body=_body_params,
|
|
945
|
+
post_params=_form_params,
|
|
946
|
+
files=_files,
|
|
947
|
+
auth_settings=_auth_settings,
|
|
948
|
+
collection_formats=_collection_formats,
|
|
949
|
+
_host=_host,
|
|
950
|
+
_request_auth=_request_auth,
|
|
951
|
+
)
|