wandelbots-api-client 25.6.0.dev7__py3-none-any.whl → 25.10.0rc2__py3-none-any.whl

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