wandelbots_api_client 26.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandelbots_api_client/__init__.py +48 -0
- wandelbots_api_client/api/__init__.py +63 -0
- wandelbots_api_client/api/application_api.py +1514 -0
- wandelbots_api_client/api/cell_api.py +1424 -0
- wandelbots_api_client/api/controller_api.py +2951 -0
- wandelbots_api_client/api/controller_ios_api.py +1205 -0
- wandelbots_api_client/api/coordinate_systems_api.py +1267 -0
- wandelbots_api_client/api/device_configuration_api.py +1193 -0
- wandelbots_api_client/api/library_program_api.py +1326 -0
- wandelbots_api_client/api/library_program_metadata_api.py +1090 -0
- wandelbots_api_client/api/library_recipe_api.py +1351 -0
- wandelbots_api_client/api/library_recipe_metadata_api.py +1050 -0
- wandelbots_api_client/api/license_api.py +865 -0
- wandelbots_api_client/api/motion_api.py +3596 -0
- wandelbots_api_client/api/motion_group_api.py +956 -0
- wandelbots_api_client/api/motion_group_infos_api.py +2611 -0
- wandelbots_api_client/api/motion_group_jogging_api.py +685 -0
- wandelbots_api_client/api/motion_group_kinematic_api.py +1055 -0
- wandelbots_api_client/api/program_api.py +1987 -0
- wandelbots_api_client/api/program_operator_api.py +1881 -0
- wandelbots_api_client/api/program_values_api.py +1444 -0
- wandelbots_api_client/api/store_collision_components_api.py +3074 -0
- wandelbots_api_client/api/store_collision_scenes_api.py +951 -0
- wandelbots_api_client/api/store_object_api.py +1387 -0
- wandelbots_api_client/api/system_api.py +1075 -0
- wandelbots_api_client/api/version_api.py +237 -0
- wandelbots_api_client/api/virtual_robot_api.py +1583 -0
- wandelbots_api_client/api/virtual_robot_behavior_api.py +649 -0
- wandelbots_api_client/api/virtual_robot_mode_api.py +1467 -0
- wandelbots_api_client/api/virtual_robot_setup_api.py +2116 -0
- wandelbots_api_client/api_client.py +688 -0
- wandelbots_api_client/api_response.py +20 -0
- wandelbots_api_client/authorization.py +243 -0
- wandelbots_api_client/configuration.py +579 -0
- wandelbots_api_client/exceptions.py +216 -0
- wandelbots_api_client/models/__init__.py +316 -0
- wandelbots_api_client/models/abb_controller.py +112 -0
- wandelbots_api_client/models/abb_controller_egm_server.py +87 -0
- wandelbots_api_client/models/activate_license_request.py +86 -0
- wandelbots_api_client/models/add_request.py +95 -0
- wandelbots_api_client/models/all_joint_positions_request.py +96 -0
- wandelbots_api_client/models/all_joint_positions_response.py +109 -0
- wandelbots_api_client/models/api_version.py +86 -0
- wandelbots_api_client/models/app.py +148 -0
- wandelbots_api_client/models/array_input.py +114 -0
- wandelbots_api_client/models/array_output.py +116 -0
- wandelbots_api_client/models/behavior.py +35 -0
- wandelbots_api_client/models/blending_auto.py +99 -0
- wandelbots_api_client/models/blending_position.py +97 -0
- wandelbots_api_client/models/box.py +98 -0
- wandelbots_api_client/models/box2.py +112 -0
- wandelbots_api_client/models/box3.py +112 -0
- wandelbots_api_client/models/capsule.py +87 -0
- wandelbots_api_client/models/capsule2.py +97 -0
- wandelbots_api_client/models/capsule3.py +101 -0
- wandelbots_api_client/models/capture.py +86 -0
- wandelbots_api_client/models/cell.py +142 -0
- wandelbots_api_client/models/circle.py +99 -0
- wandelbots_api_client/models/code_with_arguments.py +108 -0
- wandelbots_api_client/models/collection_value.py +322 -0
- wandelbots_api_client/models/collider.py +105 -0
- wandelbots_api_client/models/collider_input.py +105 -0
- wandelbots_api_client/models/collider_output.py +105 -0
- wandelbots_api_client/models/collider_output_shape.py +242 -0
- wandelbots_api_client/models/collider_shape.py +280 -0
- wandelbots_api_client/models/collision.py +110 -0
- wandelbots_api_client/models/collision_contact.py +92 -0
- wandelbots_api_client/models/collision_motion_group.py +124 -0
- wandelbots_api_client/models/collision_motion_group_assembly.py +128 -0
- wandelbots_api_client/models/collision_robot_configuration_input.py +121 -0
- wandelbots_api_client/models/collision_robot_configuration_output.py +121 -0
- wandelbots_api_client/models/collision_scene.py +117 -0
- wandelbots_api_client/models/collision_scene_assembly.py +133 -0
- wandelbots_api_client/models/command.py +140 -0
- wandelbots_api_client/models/command_settings.py +104 -0
- wandelbots_api_client/models/comparator.py +39 -0
- wandelbots_api_client/models/compound.py +114 -0
- wandelbots_api_client/models/container_environment_inner.py +87 -0
- wandelbots_api_client/models/container_image.py +122 -0
- wandelbots_api_client/models/container_image_secrets_inner.py +86 -0
- wandelbots_api_client/models/container_resources.py +89 -0
- wandelbots_api_client/models/container_storage.py +97 -0
- wandelbots_api_client/models/controller_capabilities.py +89 -0
- wandelbots_api_client/models/controller_instance.py +148 -0
- wandelbots_api_client/models/controller_instance_list.py +109 -0
- wandelbots_api_client/models/convex_hull.py +109 -0
- wandelbots_api_client/models/convex_hull2.py +97 -0
- wandelbots_api_client/models/convex_hull3.py +97 -0
- wandelbots_api_client/models/coordinate_system.py +108 -0
- wandelbots_api_client/models/coordinate_systems.py +109 -0
- wandelbots_api_client/models/create_program_run200_response.py +88 -0
- wandelbots_api_client/models/create_program_run_request.py +86 -0
- wandelbots_api_client/models/create_trigger200_response.py +86 -0
- wandelbots_api_client/models/create_trigger_request.py +101 -0
- wandelbots_api_client/models/cubic_spline.py +109 -0
- wandelbots_api_client/models/cubic_spline_cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cubic_spline_parameter.py +93 -0
- wandelbots_api_client/models/cycle_time.py +86 -0
- wandelbots_api_client/models/cylinder.py +87 -0
- wandelbots_api_client/models/cylinder2.py +95 -0
- wandelbots_api_client/models/cylinder3.py +101 -0
- wandelbots_api_client/models/devices_inner.py +321 -0
- wandelbots_api_client/models/dh_parameter.py +98 -0
- wandelbots_api_client/models/direction.py +34 -0
- wandelbots_api_client/models/direction_jogging_request.py +136 -0
- wandelbots_api_client/models/error.py +87 -0
- wandelbots_api_client/models/execute_trajectory_request.py +182 -0
- wandelbots_api_client/models/execute_trajectory_response.py +223 -0
- wandelbots_api_client/models/execution_result.py +113 -0
- wandelbots_api_client/models/external_joint_stream_datapoint.py +96 -0
- wandelbots_api_client/models/external_joint_stream_datapoint_value.py +96 -0
- wandelbots_api_client/models/fanuc_controller.py +99 -0
- wandelbots_api_client/models/feedback_collision.py +126 -0
- wandelbots_api_client/models/feedback_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/models/feedback_out_of_workspace.py +103 -0
- wandelbots_api_client/models/feedback_singularity.py +102 -0
- wandelbots_api_client/models/flag.py +86 -0
- wandelbots_api_client/models/force_vector.py +103 -0
- wandelbots_api_client/models/geometry.py +167 -0
- wandelbots_api_client/models/get_all_program_runs200_response.py +109 -0
- wandelbots_api_client/models/get_all_triggers200_response.py +109 -0
- wandelbots_api_client/models/get_mode_response.py +87 -0
- wandelbots_api_client/models/get_trajectory_response.py +112 -0
- wandelbots_api_client/models/get_trajectory_sample_response.py +90 -0
- wandelbots_api_client/models/google_protobuf_any.py +102 -0
- wandelbots_api_client/models/http_exception_response.py +86 -0
- wandelbots_api_client/models/http_validation_error.py +109 -0
- wandelbots_api_client/models/http_validation_error2.py +109 -0
- wandelbots_api_client/models/image_credentials.py +88 -0
- wandelbots_api_client/models/info_service_capabilities.py +110 -0
- wandelbots_api_client/models/initialize_movement_request.py +111 -0
- wandelbots_api_client/models/initialize_movement_response.py +96 -0
- wandelbots_api_client/models/initialize_movement_response_init_response.py +89 -0
- wandelbots_api_client/models/io.py +105 -0
- wandelbots_api_client/models/io_description.py +156 -0
- wandelbots_api_client/models/io_value.py +104 -0
- wandelbots_api_client/models/ios.py +109 -0
- wandelbots_api_client/models/jogging_response.py +117 -0
- wandelbots_api_client/models/jogging_service_capabilities.py +87 -0
- wandelbots_api_client/models/joint_jogging_request.py +108 -0
- wandelbots_api_client/models/joint_limit.py +123 -0
- wandelbots_api_client/models/joint_limit_exceeded.py +96 -0
- wandelbots_api_client/models/joint_position_request.py +104 -0
- wandelbots_api_client/models/joint_trajectory.py +117 -0
- wandelbots_api_client/models/joints.py +86 -0
- wandelbots_api_client/models/kinematic_service_capabilities.py +96 -0
- wandelbots_api_client/models/kuka_controller.py +112 -0
- wandelbots_api_client/models/kuka_controller_rsi_server.py +92 -0
- wandelbots_api_client/models/license.py +124 -0
- wandelbots_api_client/models/license_status.py +88 -0
- wandelbots_api_client/models/license_status_enum.py +37 -0
- wandelbots_api_client/models/limit_settings.py +223 -0
- wandelbots_api_client/models/limits_override.py +132 -0
- wandelbots_api_client/models/list_io_descriptions_response.py +109 -0
- wandelbots_api_client/models/list_io_values_response.py +109 -0
- wandelbots_api_client/models/list_payloads_response.py +109 -0
- wandelbots_api_client/models/list_program_metadata_response.py +109 -0
- wandelbots_api_client/models/list_recipe_metadata_response.py +109 -0
- wandelbots_api_client/models/list_response.py +109 -0
- wandelbots_api_client/models/list_tcps_response.py +112 -0
- wandelbots_api_client/models/location_inner.py +153 -0
- wandelbots_api_client/models/location_inner1.py +142 -0
- wandelbots_api_client/models/manufacturer.py +37 -0
- wandelbots_api_client/models/mode_change_response.py +97 -0
- wandelbots_api_client/models/motion_command.py +109 -0
- wandelbots_api_client/models/motion_command_blending.py +164 -0
- wandelbots_api_client/models/motion_command_path.py +221 -0
- wandelbots_api_client/models/motion_group_behavior_getter.py +87 -0
- wandelbots_api_client/models/motion_group_info.py +88 -0
- wandelbots_api_client/models/motion_group_infos.py +109 -0
- wandelbots_api_client/models/motion_group_instance.py +101 -0
- wandelbots_api_client/models/motion_group_instance_list.py +109 -0
- wandelbots_api_client/models/motion_group_joints.py +100 -0
- wandelbots_api_client/models/motion_group_physical.py +105 -0
- wandelbots_api_client/models/motion_group_specification.py +136 -0
- wandelbots_api_client/models/motion_group_state.py +180 -0
- wandelbots_api_client/models/motion_group_state_joint_limit_reached.py +86 -0
- wandelbots_api_client/models/motion_group_state_response.py +103 -0
- wandelbots_api_client/models/motion_id.py +88 -0
- wandelbots_api_client/models/motion_ids_list_response.py +89 -0
- wandelbots_api_client/models/motion_vector.py +103 -0
- wandelbots_api_client/models/mounting.py +98 -0
- wandelbots_api_client/models/move_request.py +162 -0
- wandelbots_api_client/models/move_response.py +91 -0
- wandelbots_api_client/models/move_to_trajectory_via_joint_ptp_request.py +107 -0
- wandelbots_api_client/models/movement.py +90 -0
- wandelbots_api_client/models/movement_error.py +90 -0
- wandelbots_api_client/models/movement_error_error.py +86 -0
- wandelbots_api_client/models/movement_movement.py +98 -0
- wandelbots_api_client/models/op_mode.py +93 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config.py +100 -0
- wandelbots_api_client/models/opcua_node_value_trigger_config_node_value.py +159 -0
- wandelbots_api_client/models/optimizer_setup.py +145 -0
- wandelbots_api_client/models/out_of_workspace.py +92 -0
- wandelbots_api_client/models/path.py +109 -0
- wandelbots_api_client/models/path_cartesian_ptp.py +103 -0
- wandelbots_api_client/models/path_circle.py +108 -0
- wandelbots_api_client/models/path_cubic_spline.py +118 -0
- wandelbots_api_client/models/path_joint_ptp.py +96 -0
- wandelbots_api_client/models/path_line.py +103 -0
- wandelbots_api_client/models/pause_movement_request.py +95 -0
- wandelbots_api_client/models/pause_movement_response.py +96 -0
- wandelbots_api_client/models/pause_movement_response_pause_response.py +89 -0
- wandelbots_api_client/models/pause_on_io.py +96 -0
- wandelbots_api_client/models/payload.py +103 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request.py +131 -0
- wandelbots_api_client/models/plan_collision_free_ptp_request_target.py +150 -0
- wandelbots_api_client/models/plan_failed_on_trajectory_response.py +149 -0
- wandelbots_api_client/models/plan_failed_response.py +136 -0
- wandelbots_api_client/models/plan_request.py +127 -0
- wandelbots_api_client/models/plan_response.py +112 -0
- wandelbots_api_client/models/plan_successful_response.py +100 -0
- wandelbots_api_client/models/plan_trajectory_failed_response.py +106 -0
- wandelbots_api_client/models/plan_trajectory_failed_response_error_feedback.py +209 -0
- wandelbots_api_client/models/plan_trajectory_request.py +154 -0
- wandelbots_api_client/models/plan_trajectory_response.py +92 -0
- wandelbots_api_client/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/models/plane2.py +93 -0
- wandelbots_api_client/models/plane3.py +93 -0
- wandelbots_api_client/models/planned_motion.py +125 -0
- wandelbots_api_client/models/planner_pose.py +100 -0
- wandelbots_api_client/models/planning_limits.py +168 -0
- wandelbots_api_client/models/planning_limits_limit_range.py +87 -0
- wandelbots_api_client/models/playback_speed_request.py +94 -0
- wandelbots_api_client/models/playback_speed_response.py +96 -0
- wandelbots_api_client/models/playback_speed_response_playback_speed_response.py +86 -0
- wandelbots_api_client/models/point_cloud.py +86 -0
- wandelbots_api_client/models/pose.py +107 -0
- wandelbots_api_client/models/pose2.py +93 -0
- wandelbots_api_client/models/program_metadata.py +100 -0
- wandelbots_api_client/models/program_run.py +168 -0
- wandelbots_api_client/models/program_run_object.py +103 -0
- wandelbots_api_client/models/program_run_state.py +37 -0
- wandelbots_api_client/models/program_runner_reference.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_core_pose.py +88 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_orientation.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_pose.py +87 -0
- wandelbots_api_client/models/pyjectory_datatypes_serializer_position.py +87 -0
- wandelbots_api_client/models/pyriphery_etcd_etcd_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_hardware_isaac_isaac_configuration.py +101 -0
- wandelbots_api_client/models/pyriphery_opcua_opcua_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_pyrae_controller_controller_configuration.py +107 -0
- wandelbots_api_client/models/pyriphery_pyrae_robot_robot_configuration.py +119 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_input.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_configurable_collision_scene_configurable_collision_scene_configuration_output.py +130 -0
- wandelbots_api_client/models/pyriphery_robotics_robotcell_timer_configuration.py +102 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_robot_with_view_open3d_configuration.py +99 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_io_configuration.py +94 -0
- wandelbots_api_client/models/pyriphery_robotics_simulation_simulated_opcua_configuration.py +94 -0
- wandelbots_api_client/models/quaternion.py +89 -0
- wandelbots_api_client/models/recipe_metadata.py +102 -0
- wandelbots_api_client/models/rectangle.py +87 -0
- wandelbots_api_client/models/rectangle2.py +95 -0
- wandelbots_api_client/models/rectangle3.py +101 -0
- wandelbots_api_client/models/rectangular_capsule.py +94 -0
- wandelbots_api_client/models/rectangular_capsule2.py +103 -0
- wandelbots_api_client/models/rectangular_capsule3.py +103 -0
- wandelbots_api_client/models/release_channel.py +34 -0
- wandelbots_api_client/models/request.py +142 -0
- wandelbots_api_client/models/request1.py +140 -0
- wandelbots_api_client/models/response_get_devices_devices_get_inner.py +321 -0
- wandelbots_api_client/models/response_get_value_programs_values_key_get.py +317 -0
- wandelbots_api_client/models/response_get_values_programs_values_get_value.py +322 -0
- wandelbots_api_client/models/robot_controller.py +108 -0
- wandelbots_api_client/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/models/robot_controller_state.py +191 -0
- wandelbots_api_client/models/robot_link_geometry.py +98 -0
- wandelbots_api_client/models/robot_state.py +101 -0
- wandelbots_api_client/models/robot_system_mode.py +37 -0
- wandelbots_api_client/models/robot_tcp.py +104 -0
- wandelbots_api_client/models/robot_tcps.py +109 -0
- wandelbots_api_client/models/rotation_angle_types.py +58 -0
- wandelbots_api_client/models/rotation_angles.py +91 -0
- wandelbots_api_client/models/safety_configuration.py +182 -0
- wandelbots_api_client/models/safety_setup.py +172 -0
- wandelbots_api_client/models/safety_setup_safety_settings.py +106 -0
- wandelbots_api_client/models/safety_setup_safety_zone.py +103 -0
- wandelbots_api_client/models/safety_zone.py +98 -0
- wandelbots_api_client/models/safety_zone_limits.py +96 -0
- wandelbots_api_client/models/safety_zone_violation.py +86 -0
- wandelbots_api_client/models/service_status.py +96 -0
- wandelbots_api_client/models/service_status_phase.py +46 -0
- wandelbots_api_client/models/service_status_severity.py +35 -0
- wandelbots_api_client/models/service_status_status.py +90 -0
- wandelbots_api_client/models/set_io.py +93 -0
- wandelbots_api_client/models/set_playback_speed.py +91 -0
- wandelbots_api_client/models/single_joint_limit.py +112 -0
- wandelbots_api_client/models/singularity.py +110 -0
- wandelbots_api_client/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/models/sphere.py +86 -0
- wandelbots_api_client/models/sphere2.py +94 -0
- wandelbots_api_client/models/sphere3.py +96 -0
- wandelbots_api_client/models/standstill.py +92 -0
- wandelbots_api_client/models/standstill_reason.py +36 -0
- wandelbots_api_client/models/standstill_standstill.py +99 -0
- wandelbots_api_client/models/start_movement_request.py +135 -0
- wandelbots_api_client/models/start_on_io.py +96 -0
- wandelbots_api_client/models/status.py +119 -0
- wandelbots_api_client/models/stop_response.py +109 -0
- wandelbots_api_client/models/store_value.py +349 -0
- wandelbots_api_client/models/stream_move_backward.py +90 -0
- wandelbots_api_client/models/stream_move_forward.py +90 -0
- wandelbots_api_client/models/stream_move_playback_speed.py +92 -0
- wandelbots_api_client/models/stream_move_request.py +207 -0
- wandelbots_api_client/models/stream_move_response.py +110 -0
- wandelbots_api_client/models/stream_move_to_trajectory.py +96 -0
- wandelbots_api_client/models/stream_stop.py +90 -0
- wandelbots_api_client/models/tcp_pose.py +105 -0
- wandelbots_api_client/models/tcp_pose_request.py +106 -0
- wandelbots_api_client/models/tool_geometry.py +111 -0
- wandelbots_api_client/models/trajectory_sample.py +139 -0
- wandelbots_api_client/models/trigger_object.py +110 -0
- wandelbots_api_client/models/trigger_type.py +33 -0
- wandelbots_api_client/models/universalrobots_controller.py +102 -0
- wandelbots_api_client/models/update_nova_version_request.py +87 -0
- wandelbots_api_client/models/update_program_metadata_request.py +88 -0
- wandelbots_api_client/models/update_recipe_metadata_request.py +88 -0
- wandelbots_api_client/models/update_trigger_request.py +100 -0
- wandelbots_api_client/models/validation_error.py +113 -0
- wandelbots_api_client/models/validation_error2.py +113 -0
- wandelbots_api_client/models/value.py +317 -0
- wandelbots_api_client/models/vector3d.py +88 -0
- wandelbots_api_client/models/version_number.py +113 -0
- wandelbots_api_client/models/virtual_controller.py +117 -0
- wandelbots_api_client/models/virtual_controller_types.py +153 -0
- wandelbots_api_client/models/virtual_robot_configuration.py +91 -0
- wandelbots_api_client/models/yaskawa_controller.py +99 -0
- wandelbots_api_client/py.typed +0 -0
- wandelbots_api_client/rest.py +188 -0
- wandelbots_api_client/v2/__init__.py +49 -0
- wandelbots_api_client/v2/api/__init__.py +55 -0
- wandelbots_api_client/v2/api/application_api.py +1532 -0
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2/api/cell_api.py +2163 -0
- wandelbots_api_client/v2/api/controller_api.py +3238 -0
- wandelbots_api_client/v2/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2/api/jogging_api.py +113 -0
- wandelbots_api_client/v2/api/kinematics_api.py +815 -0
- wandelbots_api_client/v2/api/license_api.py +877 -0
- wandelbots_api_client/v2/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2/api/program_api.py +988 -0
- wandelbots_api_client/v2/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2/api/system_api.py +2696 -0
- wandelbots_api_client/v2/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2/api/version_api.py +240 -0
- wandelbots_api_client/v2/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2/api_client.py +692 -0
- wandelbots_api_client/v2/api_response.py +20 -0
- wandelbots_api_client/v2/configuration.py +579 -0
- wandelbots_api_client/v2/exceptions.py +216 -0
- wandelbots_api_client/v2/models/__init__.py +376 -0
- wandelbots_api_client/v2/models/abb_controller.py +104 -0
- wandelbots_api_client/v2/models/abb_controller_egm_server.py +84 -0
- wandelbots_api_client/v2/models/activate_license_request.py +83 -0
- wandelbots_api_client/v2/models/add_trajectory_error.py +95 -0
- wandelbots_api_client/v2/models/add_trajectory_error_data.py +298 -0
- wandelbots_api_client/v2/models/add_trajectory_request.py +97 -0
- wandelbots_api_client/v2/models/add_trajectory_response.py +99 -0
- wandelbots_api_client/v2/models/add_virtual_controller_motion_group_request.py +147 -0
- wandelbots_api_client/v2/models/api_version.py +83 -0
- wandelbots_api_client/v2/models/app.py +156 -0
- wandelbots_api_client/v2/models/behavior.py +35 -0
- wandelbots_api_client/v2/models/blending_auto.py +97 -0
- wandelbots_api_client/v2/models/blending_position.py +143 -0
- wandelbots_api_client/v2/models/blending_space.py +34 -0
- wandelbots_api_client/v2/models/boolean_value.py +91 -0
- wandelbots_api_client/v2/models/box.py +109 -0
- wandelbots_api_client/v2/models/bus_io_description.py +111 -0
- wandelbots_api_client/v2/models/bus_io_modbus_client.py +100 -0
- wandelbots_api_client/v2/models/bus_io_modbus_server.py +127 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_client.py +98 -0
- wandelbots_api_client/v2/models/bus_io_modbus_tcp_server.py +97 -0
- wandelbots_api_client/v2/models/bus_io_modbus_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_profinet.py +131 -0
- wandelbots_api_client/v2/models/bus_io_profinet_default_route.py +84 -0
- wandelbots_api_client/v2/models/bus_io_profinet_ip_config.py +85 -0
- wandelbots_api_client/v2/models/bus_io_profinet_network.py +101 -0
- wandelbots_api_client/v2/models/bus_io_profinet_slot.py +92 -0
- wandelbots_api_client/v2/models/bus_io_profinet_virtual.py +90 -0
- wandelbots_api_client/v2/models/bus_io_type.py +223 -0
- wandelbots_api_client/v2/models/bus_ios_state.py +88 -0
- wandelbots_api_client/v2/models/bus_ios_state_enum.py +36 -0
- wandelbots_api_client/v2/models/capsule.py +94 -0
- wandelbots_api_client/v2/models/cartesian_limits.py +108 -0
- wandelbots_api_client/v2/models/cell.py +127 -0
- wandelbots_api_client/v2/models/cloud_config_status.py +164 -0
- wandelbots_api_client/v2/models/cloud_config_status_configured.py +97 -0
- wandelbots_api_client/v2/models/cloud_config_status_not_configured.py +90 -0
- wandelbots_api_client/v2/models/cloud_configuration.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error.py +87 -0
- wandelbots_api_client/v2/models/cloud_connection_error_error.py +275 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_invalid_token_details_cloud_response.py +90 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error.py +106 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_error_details.py +83 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_connection_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_leafnode_restart_timeout.py +91 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed.py +102 -0
- wandelbots_api_client/v2/models/cloud_connection_error_nats_failed_details.py +84 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response.py +104 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details.py +95 -0
- wandelbots_api_client/v2/models/cloud_connection_error_unexpected_response_details_cloud_response.py +85 -0
- wandelbots_api_client/v2/models/cloud_connection_request.py +98 -0
- wandelbots_api_client/v2/models/cloud_disconnection_error.py +89 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py +90 -0
- wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py +90 -0
- wandelbots_api_client/v2/models/cloud_registration_success_response.py +83 -0
- wandelbots_api_client/v2/models/collider.py +102 -0
- wandelbots_api_client/v2/models/collider_shape.py +278 -0
- wandelbots_api_client/v2/models/collision.py +107 -0
- wandelbots_api_client/v2/models/collision_contact.py +89 -0
- wandelbots_api_client/v2/models/collision_error.py +100 -0
- wandelbots_api_client/v2/models/collision_free_algorithm.py +164 -0
- wandelbots_api_client/v2/models/collision_motion_group.py +119 -0
- wandelbots_api_client/v2/models/collision_setup.py +130 -0
- wandelbots_api_client/v2/models/comparator.py +38 -0
- wandelbots_api_client/v2/models/configuration_archive_status.py +197 -0
- wandelbots_api_client/v2/models/configuration_archive_status_creating.py +94 -0
- wandelbots_api_client/v2/models/configuration_archive_status_error.py +91 -0
- wandelbots_api_client/v2/models/configuration_archive_status_success.py +90 -0
- wandelbots_api_client/v2/models/configuration_resource.py +104 -0
- wandelbots_api_client/v2/models/constrained_pose.py +87 -0
- wandelbots_api_client/v2/models/container_environment_inner.py +84 -0
- wandelbots_api_client/v2/models/container_image.py +110 -0
- wandelbots_api_client/v2/models/container_image_secrets_inner.py +83 -0
- wandelbots_api_client/v2/models/container_resources.py +87 -0
- wandelbots_api_client/v2/models/container_storage.py +94 -0
- wandelbots_api_client/v2/models/controller_description.py +97 -0
- wandelbots_api_client/v2/models/convex_hull.py +94 -0
- wandelbots_api_client/v2/models/coordinate_system.py +115 -0
- wandelbots_api_client/v2/models/coordinate_system_data.py +106 -0
- wandelbots_api_client/v2/models/cubic_spline_parameter.py +90 -0
- wandelbots_api_client/v2/models/cycle_time.py +86 -0
- wandelbots_api_client/v2/models/cylinder.py +92 -0
- wandelbots_api_client/v2/models/dh_parameter.py +98 -0
- wandelbots_api_client/v2/models/direction.py +34 -0
- wandelbots_api_client/v2/models/direction_constraint.py +107 -0
- wandelbots_api_client/v2/models/error.py +84 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/error_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/error_invalid_joint_count.py +98 -0
- wandelbots_api_client/v2/models/error_joint_limit_exceeded.py +103 -0
- wandelbots_api_client/v2/models/error_joint_position_collision.py +106 -0
- wandelbots_api_client/v2/models/error_max_iterations_exceeded.py +91 -0
- wandelbots_api_client/v2/models/error_motion_group_key_mismatch.py +85 -0
- wandelbots_api_client/v2/models/error_unsupported_operation.py +90 -0
- wandelbots_api_client/v2/models/execute.py +95 -0
- wandelbots_api_client/v2/models/execute_details.py +164 -0
- wandelbots_api_client/v2/models/execute_jogging_request.py +204 -0
- wandelbots_api_client/v2/models/execute_jogging_response.py +246 -0
- wandelbots_api_client/v2/models/execute_trajectory_request.py +209 -0
- wandelbots_api_client/v2/models/execute_trajectory_response.py +246 -0
- wandelbots_api_client/v2/models/external_joint_stream_datapoint.py +93 -0
- wandelbots_api_client/v2/models/external_joint_stream_request.py +97 -0
- wandelbots_api_client/v2/models/fanuc_controller.py +91 -0
- wandelbots_api_client/v2/models/feedback_collision.py +112 -0
- wandelbots_api_client/v2/models/feedback_commands_missing.py +90 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_is_not_increasing.py +100 -0
- wandelbots_api_client/v2/models/feedback_cubic_spline_not_at_start_pose.py +105 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_no_solution_exists.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_met.py +93 -0
- wandelbots_api_client/v2/models/feedback_direction_constraint_not_normalized.py +96 -0
- wandelbots_api_client/v2/models/feedback_invalid_dof.py +101 -0
- wandelbots_api_client/v2/models/feedback_invalid_nan_value.py +91 -0
- wandelbots_api_client/v2/models/feedback_invalid_sampling_time.py +91 -0
- wandelbots_api_client/v2/models/feedback_joint_limit_exceeded.py +99 -0
- wandelbots_api_client/v2/models/feedback_no_solution_in_current_configuration.py +100 -0
- wandelbots_api_client/v2/models/feedback_out_of_workspace.py +100 -0
- wandelbots_api_client/v2/models/feedback_singularity.py +99 -0
- wandelbots_api_client/v2/models/feedback_start_joints_missing.py +98 -0
- wandelbots_api_client/v2/models/feedback_torque_exceeded.py +98 -0
- wandelbots_api_client/v2/models/flag.py +83 -0
- wandelbots_api_client/v2/models/flange_payload.py +98 -0
- wandelbots_api_client/v2/models/float_value.py +91 -0
- wandelbots_api_client/v2/models/forward_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/forward_kinematics_request.py +104 -0
- wandelbots_api_client/v2/models/forward_kinematics_response.py +93 -0
- wandelbots_api_client/v2/models/forward_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/get_trajectory_response.py +97 -0
- wandelbots_api_client/v2/models/http_validation_error.py +93 -0
- wandelbots_api_client/v2/models/image_credentials.py +85 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error.py +106 -0
- wandelbots_api_client/v2/models/inconsistent_trajectory_size_error_inconsistent_trajectory_size.py +91 -0
- wandelbots_api_client/v2/models/initialize_jogging_request.py +95 -0
- wandelbots_api_client/v2/models/initialize_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/initialize_movement_request.py +112 -0
- wandelbots_api_client/v2/models/initialize_movement_request_trajectory.py +164 -0
- wandelbots_api_client/v2/models/initialize_movement_response.py +107 -0
- wandelbots_api_client/v2/models/integer_value.py +91 -0
- wandelbots_api_client/v2/models/invalid_dof_error.py +100 -0
- wandelbots_api_client/v2/models/invalid_dof_error_invalid_dof.py +86 -0
- wandelbots_api_client/v2/models/inverse_kinematics422_response.py +97 -0
- wandelbots_api_client/v2/models/inverse_kinematics_request.py +152 -0
- wandelbots_api_client/v2/models/inverse_kinematics_response.py +83 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error.py +107 -0
- wandelbots_api_client/v2/models/inverse_kinematics_validation_error_all_of_data.py +164 -0
- wandelbots_api_client/v2/models/io_boolean_value.py +92 -0
- wandelbots_api_client/v2/models/io_boundary.py +183 -0
- wandelbots_api_client/v2/models/io_description.py +116 -0
- wandelbots_api_client/v2/models/io_direction.py +34 -0
- wandelbots_api_client/v2/models/io_float_value.py +92 -0
- wandelbots_api_client/v2/models/io_integer_value.py +94 -0
- wandelbots_api_client/v2/models/io_origin.py +34 -0
- wandelbots_api_client/v2/models/io_value.py +183 -0
- wandelbots_api_client/v2/models/io_value_type.py +35 -0
- wandelbots_api_client/v2/models/jogging_details.py +97 -0
- wandelbots_api_client/v2/models/jogging_details_state.py +275 -0
- wandelbots_api_client/v2/models/jogging_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/jogging_paused_near_collision.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_near_joint_limit.py +92 -0
- wandelbots_api_client/v2/models/jogging_paused_near_singularity.py +91 -0
- wandelbots_api_client/v2/models/jogging_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/jogging_running.py +90 -0
- wandelbots_api_client/v2/models/joint_limit_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/joint_limits.py +101 -0
- wandelbots_api_client/v2/models/joint_ptp_motion.py +99 -0
- wandelbots_api_client/v2/models/joint_trajectory.py +89 -0
- wandelbots_api_client/v2/models/joint_type_enum.py +34 -0
- wandelbots_api_client/v2/models/joint_velocity_request.py +91 -0
- wandelbots_api_client/v2/models/joint_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/kinematic_model.py +118 -0
- wandelbots_api_client/v2/models/kuka_controller.py +106 -0
- wandelbots_api_client/v2/models/kuka_controller_rsi_server.py +89 -0
- wandelbots_api_client/v2/models/license.py +121 -0
- wandelbots_api_client/v2/models/license_status.py +85 -0
- wandelbots_api_client/v2/models/license_status_enum.py +37 -0
- wandelbots_api_client/v2/models/limit_range.py +84 -0
- wandelbots_api_client/v2/models/limit_set.py +118 -0
- wandelbots_api_client/v2/models/limits_override.py +136 -0
- wandelbots_api_client/v2/models/list_trajectories_response.py +86 -0
- wandelbots_api_client/v2/models/location1_inner.py +153 -0
- wandelbots_api_client/v2/models/manufacturer.py +37 -0
- wandelbots_api_client/v2/models/merge_trajectories422_response.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error.py +97 -0
- wandelbots_api_client/v2/models/merge_trajectories_error_error_feedback.py +209 -0
- wandelbots_api_client/v2/models/merge_trajectories_request.py +107 -0
- wandelbots_api_client/v2/models/merge_trajectories_response.py +109 -0
- wandelbots_api_client/v2/models/merge_trajectories_response_feedback_inner.py +147 -0
- wandelbots_api_client/v2/models/merge_trajectories_segment.py +126 -0
- wandelbots_api_client/v2/models/merge_trajectories_validation_error.py +109 -0
- wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py +102 -0
- wandelbots_api_client/v2/models/modbus_io.py +109 -0
- wandelbots_api_client/v2/models/modbus_io_area.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_byte_order.py +37 -0
- wandelbots_api_client/v2/models/modbus_io_data.py +105 -0
- wandelbots_api_client/v2/models/modbus_io_type_enum.py +36 -0
- wandelbots_api_client/v2/models/motion_command.py +106 -0
- wandelbots_api_client/v2/models/motion_command_blending.py +164 -0
- wandelbots_api_client/v2/models/motion_command_path.py +298 -0
- wandelbots_api_client/v2/models/motion_group_description.py +241 -0
- wandelbots_api_client/v2/models/motion_group_from_json.py +100 -0
- wandelbots_api_client/v2/models/motion_group_from_type.py +96 -0
- wandelbots_api_client/v2/models/motion_group_info.py +90 -0
- wandelbots_api_client/v2/models/motion_group_joints.py +97 -0
- wandelbots_api_client/v2/models/motion_group_setup.py +140 -0
- wandelbots_api_client/v2/models/motion_group_state.py +187 -0
- wandelbots_api_client/v2/models/motion_group_state_joint_limit_reached.py +83 -0
- wandelbots_api_client/v2/models/movement_error_response.py +91 -0
- wandelbots_api_client/v2/models/multi_collision_setup.py +115 -0
- wandelbots_api_client/v2/models/multi_error_invalid_joint_count.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_limit_exceeded.py +101 -0
- wandelbots_api_client/v2/models/multi_error_joint_position_collision.py +99 -0
- wandelbots_api_client/v2/models/multi_joint_trajectory.py +93 -0
- wandelbots_api_client/v2/models/multi_search_collision_free422_response.py +97 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_request.py +149 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error.py +109 -0
- wandelbots_api_client/v2/models/multi_search_collision_free_validation_error_all_of_data.py +197 -0
- wandelbots_api_client/v2/models/nan_value_error.py +100 -0
- wandelbots_api_client/v2/models/nan_value_error_nan_value.py +85 -0
- wandelbots_api_client/v2/models/network_device.py +85 -0
- wandelbots_api_client/v2/models/network_interface.py +86 -0
- wandelbots_api_client/v2/models/network_state.py +125 -0
- wandelbots_api_client/v2/models/op_mode.py +84 -0
- wandelbots_api_client/v2/models/operating_state.py +34 -0
- wandelbots_api_client/v2/models/operation_limits.py +106 -0
- wandelbots_api_client/v2/models/operation_mode.py +42 -0
- wandelbots_api_client/v2/models/orientation_type.py +58 -0
- wandelbots_api_client/v2/models/path_cartesian_ptp.py +100 -0
- wandelbots_api_client/v2/models/path_circle.py +105 -0
- wandelbots_api_client/v2/models/path_cubic_spline.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_cartesian_ptp.py +106 -0
- wandelbots_api_client/v2/models/path_direction_constrained_joint_ptp.py +102 -0
- wandelbots_api_client/v2/models/path_joint_ptp.py +93 -0
- wandelbots_api_client/v2/models/path_line.py +100 -0
- wandelbots_api_client/v2/models/pause_jogging_request.py +90 -0
- wandelbots_api_client/v2/models/pause_jogging_response.py +91 -0
- wandelbots_api_client/v2/models/pause_movement_request.py +90 -0
- wandelbots_api_client/v2/models/pause_movement_response.py +91 -0
- wandelbots_api_client/v2/models/pause_on_io.py +99 -0
- wandelbots_api_client/v2/models/payload.py +98 -0
- wandelbots_api_client/v2/models/plan422_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_failed_response.py +93 -0
- wandelbots_api_client/v2/models/plan_collision_free_request.py +118 -0
- wandelbots_api_client/v2/models/plan_collision_free_response.py +89 -0
- wandelbots_api_client/v2/models/plan_collision_free_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response.py +105 -0
- wandelbots_api_client/v2/models/plan_trajectory_failed_response_error_feedback.py +505 -0
- wandelbots_api_client/v2/models/plan_trajectory_request.py +113 -0
- wandelbots_api_client/v2/models/plan_trajectory_response.py +89 -0
- wandelbots_api_client/v2/models/plan_trajectory_response_response.py +147 -0
- wandelbots_api_client/v2/models/plan_validation_error.py +107 -0
- wandelbots_api_client/v2/models/plan_validation_error_all_of_data.py +275 -0
- wandelbots_api_client/v2/models/plane.py +90 -0
- wandelbots_api_client/v2/models/playback_speed_request.py +96 -0
- wandelbots_api_client/v2/models/playback_speed_response.py +91 -0
- wandelbots_api_client/v2/models/pose.py +90 -0
- wandelbots_api_client/v2/models/profinet_description.py +112 -0
- wandelbots_api_client/v2/models/profinet_input_output_config.py +98 -0
- wandelbots_api_client/v2/models/profinet_io.py +109 -0
- wandelbots_api_client/v2/models/profinet_io_data.py +105 -0
- wandelbots_api_client/v2/models/profinet_io_direction.py +35 -0
- wandelbots_api_client/v2/models/profinet_io_type_enum.py +42 -0
- wandelbots_api_client/v2/models/profinet_slot_description.py +106 -0
- wandelbots_api_client/v2/models/profinet_sub_slot_description.py +92 -0
- wandelbots_api_client/v2/models/program.py +105 -0
- wandelbots_api_client/v2/models/program_run.py +124 -0
- wandelbots_api_client/v2/models/program_run_state.py +37 -0
- wandelbots_api_client/v2/models/program_start_request.py +83 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint422_response.py +99 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_request.py +148 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_response.py +85 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error.py +111 -0
- wandelbots_api_client/v2/models/project_joint_position_direction_constraint_validation_error_all_of_data.py +189 -0
- wandelbots_api_client/v2/models/rectangle.py +92 -0
- wandelbots_api_client/v2/models/rectangular_capsule.py +100 -0
- wandelbots_api_client/v2/models/release_channel.py +34 -0
- wandelbots_api_client/v2/models/robot_controller.py +105 -0
- wandelbots_api_client/v2/models/robot_controller_configuration.py +262 -0
- wandelbots_api_client/v2/models/robot_controller_configuration_request.py +99 -0
- wandelbots_api_client/v2/models/robot_controller_state.py +138 -0
- wandelbots_api_client/v2/models/robot_system_mode.py +37 -0
- wandelbots_api_client/v2/models/robot_tcp.py +110 -0
- wandelbots_api_client/v2/models/robot_tcp_data.py +108 -0
- wandelbots_api_client/v2/models/rrt_connect_algorithm.py +127 -0
- wandelbots_api_client/v2/models/safety_geometry.py +125 -0
- wandelbots_api_client/v2/models/safety_geometry_box.py +89 -0
- wandelbots_api_client/v2/models/safety_geometry_capsule.py +90 -0
- wandelbots_api_client/v2/models/safety_geometry_lozenge.py +97 -0
- wandelbots_api_client/v2/models/safety_geometry_plane.py +86 -0
- wandelbots_api_client/v2/models/safety_geometry_prism.py +88 -0
- wandelbots_api_client/v2/models/safety_geometry_sphere.py +87 -0
- wandelbots_api_client/v2/models/safety_state_type.py +48 -0
- wandelbots_api_client/v2/models/safety_zone.py +111 -0
- wandelbots_api_client/v2/models/safety_zone_pose.py +99 -0
- wandelbots_api_client/v2/models/safety_zones.py +97 -0
- wandelbots_api_client/v2/models/service_group.py +36 -0
- wandelbots_api_client/v2/models/service_status.py +96 -0
- wandelbots_api_client/v2/models/service_status_phase.py +46 -0
- wandelbots_api_client/v2/models/service_status_response.py +100 -0
- wandelbots_api_client/v2/models/service_status_severity.py +35 -0
- wandelbots_api_client/v2/models/service_status_status.py +87 -0
- wandelbots_api_client/v2/models/set_io.py +96 -0
- wandelbots_api_client/v2/models/settable_robot_system_mode.py +36 -0
- wandelbots_api_client/v2/models/singularity_type_enum.py +35 -0
- wandelbots_api_client/v2/models/sphere.py +91 -0
- wandelbots_api_client/v2/models/start_movement_request.py +133 -0
- wandelbots_api_client/v2/models/start_movement_response.py +91 -0
- wandelbots_api_client/v2/models/start_on_io.py +99 -0
- wandelbots_api_client/v2/models/stream_io_values_response.py +103 -0
- wandelbots_api_client/v2/models/tcp_offset.py +88 -0
- wandelbots_api_client/v2/models/tcp_required_error.py +96 -0
- wandelbots_api_client/v2/models/tcp_velocity_request.py +110 -0
- wandelbots_api_client/v2/models/tcp_velocity_response.py +91 -0
- wandelbots_api_client/v2/models/torque_exceeded_error.py +102 -0
- wandelbots_api_client/v2/models/torque_exceeded_error_torque_exceeded.py +86 -0
- wandelbots_api_client/v2/models/trajectory_data.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details.py +106 -0
- wandelbots_api_client/v2/models/trajectory_details_state.py +239 -0
- wandelbots_api_client/v2/models/trajectory_ended.py +90 -0
- wandelbots_api_client/v2/models/trajectory_id.py +93 -0
- wandelbots_api_client/v2/models/trajectory_paused_by_user.py +90 -0
- wandelbots_api_client/v2/models/trajectory_paused_on_io.py +90 -0
- wandelbots_api_client/v2/models/trajectory_running.py +94 -0
- wandelbots_api_client/v2/models/trajectory_section.py +84 -0
- wandelbots_api_client/v2/models/trajectory_wait_for_io.py +90 -0
- wandelbots_api_client/v2/models/unit_type.py +42 -0
- wandelbots_api_client/v2/models/universalrobots_controller.py +91 -0
- wandelbots_api_client/v2/models/update_cell_version_request.py +84 -0
- wandelbots_api_client/v2/models/update_nova_version_request.py +90 -0
- wandelbots_api_client/v2/models/validation_error.py +101 -0
- wandelbots_api_client/v2/models/validation_error2.py +85 -0
- wandelbots_api_client/v2/models/virtual_controller.py +113 -0
- wandelbots_api_client/v2/models/virtual_robot_configuration.py +88 -0
- wandelbots_api_client/v2/models/wait_for_io_event_request.py +93 -0
- wandelbots_api_client/v2/models/yaskawa_controller.py +91 -0
- wandelbots_api_client/v2/models/zod_validation_error.py +87 -0
- wandelbots_api_client/v2/models/zod_validation_error_error.py +108 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py +101 -0
- wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py +153 -0
- wandelbots_api_client/v2/py.typed +0 -0
- wandelbots_api_client/v2/rest.py +188 -0
- wandelbots_api_client/v2_pydantic/__init__.py +49 -0
- wandelbots_api_client/v2_pydantic/api/__init__.py +55 -0
- wandelbots_api_client/v2_pydantic/api/application_api.py +1532 -0
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +4534 -0
- wandelbots_api_client/v2_pydantic/api/cell_api.py +2163 -0
- wandelbots_api_client/v2_pydantic/api/controller_api.py +3238 -0
- wandelbots_api_client/v2_pydantic/api/controller_inputs_outputs_api.py +1244 -0
- wandelbots_api_client/v2_pydantic/api/jogging_api.py +113 -0
- wandelbots_api_client/v2_pydantic/api/kinematics_api.py +811 -0
- wandelbots_api_client/v2_pydantic/api/license_api.py +877 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_api.py +689 -0
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +1222 -0
- wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py +760 -0
- wandelbots_api_client/v2_pydantic/api/program_api.py +988 -0
- wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py +485 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_components_api.py +3479 -0
- wandelbots_api_client/v2_pydantic/api/store_collision_setups_api.py +1169 -0
- wandelbots_api_client/v2_pydantic/api/store_object_api.py +1414 -0
- wandelbots_api_client/v2_pydantic/api/system_api.py +2696 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_caching_api.py +1339 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +115 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_planning_api.py +1067 -0
- wandelbots_api_client/v2_pydantic/api/version_api.py +240 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py +5303 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py +863 -0
- wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py +895 -0
- wandelbots_api_client/v2_pydantic/api_client.py +692 -0
- wandelbots_api_client/v2_pydantic/api_response.py +20 -0
- wandelbots_api_client/v2_pydantic/configuration.py +579 -0
- wandelbots_api_client/v2_pydantic/exceptions.py +216 -0
- wandelbots_api_client/v2_pydantic/models/__init__.py +748 -0
- wandelbots_api_client/v2_pydantic/models/models.py +5909 -0
- wandelbots_api_client/v2_pydantic/py.typed +0 -0
- wandelbots_api_client/v2_pydantic/rest.py +188 -0
- wandelbots_api_client-26.3.0.dist-info/METADATA +241 -0
- wandelbots_api_client-26.3.0.dist-info/RECORD +740 -0
- wandelbots_api_client-26.3.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,1514 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Wandelbots NOVA API
|
|
5
|
+
|
|
6
|
+
Interact with robots in an easy and intuitive way.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.4.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from furl import furl
|
|
15
|
+
import json
|
|
16
|
+
import humps
|
|
17
|
+
import re
|
|
18
|
+
import warnings
|
|
19
|
+
import websockets
|
|
20
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
21
|
+
from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, Union
|
|
22
|
+
from typing_extensions import Annotated
|
|
23
|
+
from urllib.parse import quote
|
|
24
|
+
|
|
25
|
+
from pydantic import Field, StrictStr
|
|
26
|
+
from typing import List, Optional
|
|
27
|
+
from typing_extensions import Annotated
|
|
28
|
+
from wandelbots_api_client.models.app import App
|
|
29
|
+
|
|
30
|
+
from wandelbots_api_client.api_client import ApiClient, RequestSerialized
|
|
31
|
+
from wandelbots_api_client.api_response import ApiResponse
|
|
32
|
+
from wandelbots_api_client.rest import RESTResponseType
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class ApplicationApi:
|
|
36
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
37
|
+
Ref: https://openapi-generator.tech
|
|
38
|
+
|
|
39
|
+
Do not edit the class manually.
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
def __init__(self, api_client=None) -> None:
|
|
43
|
+
if api_client is None:
|
|
44
|
+
api_client = ApiClient.get_default()
|
|
45
|
+
self.api_client = api_client
|
|
46
|
+
|
|
47
|
+
@validate_call
|
|
48
|
+
async def add_app(
|
|
49
|
+
self,
|
|
50
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
51
|
+
app: App,
|
|
52
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
53
|
+
_request_timeout: Union[
|
|
54
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
55
|
+
] = None,
|
|
56
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_content_type: Optional[StrictStr] = None,
|
|
58
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
59
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
60
|
+
) -> None:
|
|
61
|
+
"""Add Application
|
|
62
|
+
|
|
63
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The endpoint where the API is reachable from the container serving the Application. > - `BASE_PATH`: The root path of the deployed Application. It will be reachable via: http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell where the application is deployed.
|
|
64
|
+
|
|
65
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
66
|
+
:type cell: str
|
|
67
|
+
:param app: (required)
|
|
68
|
+
:type app: App
|
|
69
|
+
:param completion_timeout:
|
|
70
|
+
:type completion_timeout: int
|
|
71
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
72
|
+
number provided, it will be total request
|
|
73
|
+
timeout. It can also be a pair (tuple) of
|
|
74
|
+
(connection, read) timeouts.
|
|
75
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
76
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
77
|
+
request; this effectively ignores the
|
|
78
|
+
authentication in the spec for a single request.
|
|
79
|
+
:type _request_auth: dict, optional
|
|
80
|
+
:param _content_type: force content-type for the request.
|
|
81
|
+
:type _content_type: str, Optional
|
|
82
|
+
:param _headers: set to override the headers for a single
|
|
83
|
+
request; this effectively ignores the headers
|
|
84
|
+
in the spec for a single request.
|
|
85
|
+
:type _headers: dict, optional
|
|
86
|
+
:param _host_index: set to override the host_index for a single
|
|
87
|
+
request; this effectively ignores the host_index
|
|
88
|
+
in the spec for a single request.
|
|
89
|
+
:type _host_index: int, optional
|
|
90
|
+
:return: Returns the result object.
|
|
91
|
+
""" # noqa: E501
|
|
92
|
+
|
|
93
|
+
_param = self._add_app_serialize(
|
|
94
|
+
cell=cell,
|
|
95
|
+
app=app,
|
|
96
|
+
completion_timeout=completion_timeout,
|
|
97
|
+
_request_auth=_request_auth,
|
|
98
|
+
_content_type=_content_type,
|
|
99
|
+
_headers=_headers,
|
|
100
|
+
_host_index=_host_index,
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
104
|
+
"200": None,
|
|
105
|
+
"202": None,
|
|
106
|
+
"409": None,
|
|
107
|
+
}
|
|
108
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
109
|
+
await response_data.read()
|
|
110
|
+
return self.api_client.response_deserialize(
|
|
111
|
+
response_data=response_data,
|
|
112
|
+
response_types_map=_response_types_map,
|
|
113
|
+
).data
|
|
114
|
+
|
|
115
|
+
@validate_call
|
|
116
|
+
async def add_app_with_http_info(
|
|
117
|
+
self,
|
|
118
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
119
|
+
app: App,
|
|
120
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
121
|
+
_request_timeout: Union[
|
|
122
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
123
|
+
] = None,
|
|
124
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_content_type: Optional[StrictStr] = None,
|
|
126
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
127
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
128
|
+
) -> ApiResponse[None]:
|
|
129
|
+
"""Add Application
|
|
130
|
+
|
|
131
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The endpoint where the API is reachable from the container serving the Application. > - `BASE_PATH`: The root path of the deployed Application. It will be reachable via: http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell where the application is deployed.
|
|
132
|
+
|
|
133
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
134
|
+
:type cell: str
|
|
135
|
+
:param app: (required)
|
|
136
|
+
:type app: App
|
|
137
|
+
:param completion_timeout:
|
|
138
|
+
:type completion_timeout: int
|
|
139
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
140
|
+
number provided, it will be total request
|
|
141
|
+
timeout. It can also be a pair (tuple) of
|
|
142
|
+
(connection, read) timeouts.
|
|
143
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
144
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
145
|
+
request; this effectively ignores the
|
|
146
|
+
authentication in the spec for a single request.
|
|
147
|
+
:type _request_auth: dict, optional
|
|
148
|
+
:param _content_type: force content-type for the request.
|
|
149
|
+
:type _content_type: str, Optional
|
|
150
|
+
:param _headers: set to override the headers for a single
|
|
151
|
+
request; this effectively ignores the headers
|
|
152
|
+
in the spec for a single request.
|
|
153
|
+
:type _headers: dict, optional
|
|
154
|
+
:param _host_index: set to override the host_index for a single
|
|
155
|
+
request; this effectively ignores the host_index
|
|
156
|
+
in the spec for a single request.
|
|
157
|
+
:type _host_index: int, optional
|
|
158
|
+
:return: Returns the result object.
|
|
159
|
+
""" # noqa: E501
|
|
160
|
+
|
|
161
|
+
_param = self._add_app_serialize(
|
|
162
|
+
cell=cell,
|
|
163
|
+
app=app,
|
|
164
|
+
completion_timeout=completion_timeout,
|
|
165
|
+
_request_auth=_request_auth,
|
|
166
|
+
_content_type=_content_type,
|
|
167
|
+
_headers=_headers,
|
|
168
|
+
_host_index=_host_index,
|
|
169
|
+
)
|
|
170
|
+
|
|
171
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
172
|
+
"200": None,
|
|
173
|
+
"202": None,
|
|
174
|
+
"409": None,
|
|
175
|
+
}
|
|
176
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
177
|
+
await response_data.read()
|
|
178
|
+
return self.api_client.response_deserialize(
|
|
179
|
+
response_data=response_data,
|
|
180
|
+
response_types_map=_response_types_map,
|
|
181
|
+
)
|
|
182
|
+
|
|
183
|
+
@validate_call
|
|
184
|
+
async def add_app_without_preload_content(
|
|
185
|
+
self,
|
|
186
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
187
|
+
app: App,
|
|
188
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
189
|
+
_request_timeout: Union[
|
|
190
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
191
|
+
] = None,
|
|
192
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
193
|
+
_content_type: Optional[StrictStr] = None,
|
|
194
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
195
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
196
|
+
) -> RESTResponseType:
|
|
197
|
+
"""Add Application
|
|
198
|
+
|
|
199
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The endpoint where the API is reachable from the container serving the Application. > - `BASE_PATH`: The root path of the deployed Application. It will be reachable via: http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell where the application is deployed.
|
|
200
|
+
|
|
201
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
202
|
+
:type cell: str
|
|
203
|
+
:param app: (required)
|
|
204
|
+
:type app: App
|
|
205
|
+
:param completion_timeout:
|
|
206
|
+
:type completion_timeout: int
|
|
207
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
208
|
+
number provided, it will be total request
|
|
209
|
+
timeout. It can also be a pair (tuple) of
|
|
210
|
+
(connection, read) timeouts.
|
|
211
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
212
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
213
|
+
request; this effectively ignores the
|
|
214
|
+
authentication in the spec for a single request.
|
|
215
|
+
:type _request_auth: dict, optional
|
|
216
|
+
:param _content_type: force content-type for the request.
|
|
217
|
+
:type _content_type: str, Optional
|
|
218
|
+
:param _headers: set to override the headers for a single
|
|
219
|
+
request; this effectively ignores the headers
|
|
220
|
+
in the spec for a single request.
|
|
221
|
+
:type _headers: dict, optional
|
|
222
|
+
:param _host_index: set to override the host_index for a single
|
|
223
|
+
request; this effectively ignores the host_index
|
|
224
|
+
in the spec for a single request.
|
|
225
|
+
:type _host_index: int, optional
|
|
226
|
+
:return: Returns the result object.
|
|
227
|
+
""" # noqa: E501
|
|
228
|
+
|
|
229
|
+
_param = self._add_app_serialize(
|
|
230
|
+
cell=cell,
|
|
231
|
+
app=app,
|
|
232
|
+
completion_timeout=completion_timeout,
|
|
233
|
+
_request_auth=_request_auth,
|
|
234
|
+
_content_type=_content_type,
|
|
235
|
+
_headers=_headers,
|
|
236
|
+
_host_index=_host_index,
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
240
|
+
"200": None,
|
|
241
|
+
"202": None,
|
|
242
|
+
"409": None,
|
|
243
|
+
}
|
|
244
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
245
|
+
return response_data.response
|
|
246
|
+
|
|
247
|
+
def _add_app_serialize(
|
|
248
|
+
self,
|
|
249
|
+
cell,
|
|
250
|
+
app,
|
|
251
|
+
completion_timeout,
|
|
252
|
+
_request_auth,
|
|
253
|
+
_content_type,
|
|
254
|
+
_headers,
|
|
255
|
+
_host_index,
|
|
256
|
+
) -> RequestSerialized:
|
|
257
|
+
|
|
258
|
+
_host = None
|
|
259
|
+
|
|
260
|
+
_collection_formats: Dict[str, str] = {}
|
|
261
|
+
|
|
262
|
+
_path_params: Dict[str, str] = {}
|
|
263
|
+
_query_params: List[Tuple[str, str]] = []
|
|
264
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
265
|
+
_form_params: List[Tuple[str, str]] = []
|
|
266
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
267
|
+
_body_params: Optional[bytes] = None
|
|
268
|
+
|
|
269
|
+
# process the path parameters
|
|
270
|
+
if cell is not None:
|
|
271
|
+
_path_params["cell"] = cell
|
|
272
|
+
# process the query parameters
|
|
273
|
+
if completion_timeout is not None:
|
|
274
|
+
_query_params.append(("completionTimeout", completion_timeout))
|
|
275
|
+
|
|
276
|
+
# process the header parameters
|
|
277
|
+
# process the form parameters
|
|
278
|
+
# process the body parameter
|
|
279
|
+
if app is not None:
|
|
280
|
+
_body_params = app
|
|
281
|
+
|
|
282
|
+
# set the HTTP header `Content-Type`
|
|
283
|
+
if _content_type:
|
|
284
|
+
_header_params["Content-Type"] = _content_type
|
|
285
|
+
else:
|
|
286
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
287
|
+
if _default_content_type is not None:
|
|
288
|
+
_header_params["Content-Type"] = _default_content_type
|
|
289
|
+
|
|
290
|
+
# authentication setting
|
|
291
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
292
|
+
|
|
293
|
+
return self.api_client.param_serialize(
|
|
294
|
+
method="POST",
|
|
295
|
+
resource_path="/cells/{cell}/apps",
|
|
296
|
+
path_params=_path_params,
|
|
297
|
+
query_params=_query_params,
|
|
298
|
+
header_params=_header_params,
|
|
299
|
+
body=_body_params,
|
|
300
|
+
post_params=_form_params,
|
|
301
|
+
files=_files,
|
|
302
|
+
auth_settings=_auth_settings,
|
|
303
|
+
collection_formats=_collection_formats,
|
|
304
|
+
_host=_host,
|
|
305
|
+
_request_auth=_request_auth,
|
|
306
|
+
)
|
|
307
|
+
|
|
308
|
+
@validate_call
|
|
309
|
+
async def clear_apps(
|
|
310
|
+
self,
|
|
311
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
312
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
313
|
+
_request_timeout: Union[
|
|
314
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
315
|
+
] = None,
|
|
316
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
317
|
+
_content_type: Optional[StrictStr] = None,
|
|
318
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
319
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
320
|
+
) -> None:
|
|
321
|
+
"""Clear Applications
|
|
322
|
+
|
|
323
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
|
|
324
|
+
|
|
325
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
326
|
+
:type cell: str
|
|
327
|
+
:param completion_timeout:
|
|
328
|
+
:type completion_timeout: int
|
|
329
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
330
|
+
number provided, it will be total request
|
|
331
|
+
timeout. It can also be a pair (tuple) of
|
|
332
|
+
(connection, read) timeouts.
|
|
333
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
334
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
335
|
+
request; this effectively ignores the
|
|
336
|
+
authentication in the spec for a single request.
|
|
337
|
+
:type _request_auth: dict, optional
|
|
338
|
+
:param _content_type: force content-type for the request.
|
|
339
|
+
:type _content_type: str, Optional
|
|
340
|
+
:param _headers: set to override the headers for a single
|
|
341
|
+
request; this effectively ignores the headers
|
|
342
|
+
in the spec for a single request.
|
|
343
|
+
:type _headers: dict, optional
|
|
344
|
+
:param _host_index: set to override the host_index for a single
|
|
345
|
+
request; this effectively ignores the host_index
|
|
346
|
+
in the spec for a single request.
|
|
347
|
+
:type _host_index: int, optional
|
|
348
|
+
:return: Returns the result object.
|
|
349
|
+
""" # noqa: E501
|
|
350
|
+
|
|
351
|
+
_param = self._clear_apps_serialize(
|
|
352
|
+
cell=cell,
|
|
353
|
+
completion_timeout=completion_timeout,
|
|
354
|
+
_request_auth=_request_auth,
|
|
355
|
+
_content_type=_content_type,
|
|
356
|
+
_headers=_headers,
|
|
357
|
+
_host_index=_host_index,
|
|
358
|
+
)
|
|
359
|
+
|
|
360
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
361
|
+
"200": None,
|
|
362
|
+
"202": None,
|
|
363
|
+
"404": "Error",
|
|
364
|
+
}
|
|
365
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
366
|
+
await response_data.read()
|
|
367
|
+
return self.api_client.response_deserialize(
|
|
368
|
+
response_data=response_data,
|
|
369
|
+
response_types_map=_response_types_map,
|
|
370
|
+
).data
|
|
371
|
+
|
|
372
|
+
@validate_call
|
|
373
|
+
async def clear_apps_with_http_info(
|
|
374
|
+
self,
|
|
375
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
376
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
377
|
+
_request_timeout: Union[
|
|
378
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
379
|
+
] = None,
|
|
380
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
381
|
+
_content_type: Optional[StrictStr] = None,
|
|
382
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
383
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
384
|
+
) -> ApiResponse[None]:
|
|
385
|
+
"""Clear Applications
|
|
386
|
+
|
|
387
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
|
|
388
|
+
|
|
389
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
390
|
+
:type cell: str
|
|
391
|
+
:param completion_timeout:
|
|
392
|
+
:type completion_timeout: int
|
|
393
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
394
|
+
number provided, it will be total request
|
|
395
|
+
timeout. It can also be a pair (tuple) of
|
|
396
|
+
(connection, read) timeouts.
|
|
397
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
398
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
399
|
+
request; this effectively ignores the
|
|
400
|
+
authentication in the spec for a single request.
|
|
401
|
+
:type _request_auth: dict, optional
|
|
402
|
+
:param _content_type: force content-type for the request.
|
|
403
|
+
:type _content_type: str, Optional
|
|
404
|
+
:param _headers: set to override the headers for a single
|
|
405
|
+
request; this effectively ignores the headers
|
|
406
|
+
in the spec for a single request.
|
|
407
|
+
:type _headers: dict, optional
|
|
408
|
+
:param _host_index: set to override the host_index for a single
|
|
409
|
+
request; this effectively ignores the host_index
|
|
410
|
+
in the spec for a single request.
|
|
411
|
+
:type _host_index: int, optional
|
|
412
|
+
:return: Returns the result object.
|
|
413
|
+
""" # noqa: E501
|
|
414
|
+
|
|
415
|
+
_param = self._clear_apps_serialize(
|
|
416
|
+
cell=cell,
|
|
417
|
+
completion_timeout=completion_timeout,
|
|
418
|
+
_request_auth=_request_auth,
|
|
419
|
+
_content_type=_content_type,
|
|
420
|
+
_headers=_headers,
|
|
421
|
+
_host_index=_host_index,
|
|
422
|
+
)
|
|
423
|
+
|
|
424
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
425
|
+
"200": None,
|
|
426
|
+
"202": None,
|
|
427
|
+
"404": "Error",
|
|
428
|
+
}
|
|
429
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
430
|
+
await response_data.read()
|
|
431
|
+
return self.api_client.response_deserialize(
|
|
432
|
+
response_data=response_data,
|
|
433
|
+
response_types_map=_response_types_map,
|
|
434
|
+
)
|
|
435
|
+
|
|
436
|
+
@validate_call
|
|
437
|
+
async def clear_apps_without_preload_content(
|
|
438
|
+
self,
|
|
439
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
440
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
441
|
+
_request_timeout: Union[
|
|
442
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
443
|
+
] = None,
|
|
444
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
445
|
+
_content_type: Optional[StrictStr] = None,
|
|
446
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
447
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
448
|
+
) -> RESTResponseType:
|
|
449
|
+
"""Clear Applications
|
|
450
|
+
|
|
451
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete all GUI applications from the cell.
|
|
452
|
+
|
|
453
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
454
|
+
:type cell: str
|
|
455
|
+
:param completion_timeout:
|
|
456
|
+
:type completion_timeout: int
|
|
457
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
458
|
+
number provided, it will be total request
|
|
459
|
+
timeout. It can also be a pair (tuple) of
|
|
460
|
+
(connection, read) timeouts.
|
|
461
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
462
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
463
|
+
request; this effectively ignores the
|
|
464
|
+
authentication in the spec for a single request.
|
|
465
|
+
:type _request_auth: dict, optional
|
|
466
|
+
:param _content_type: force content-type for the request.
|
|
467
|
+
:type _content_type: str, Optional
|
|
468
|
+
:param _headers: set to override the headers for a single
|
|
469
|
+
request; this effectively ignores the headers
|
|
470
|
+
in the spec for a single request.
|
|
471
|
+
:type _headers: dict, optional
|
|
472
|
+
:param _host_index: set to override the host_index for a single
|
|
473
|
+
request; this effectively ignores the host_index
|
|
474
|
+
in the spec for a single request.
|
|
475
|
+
:type _host_index: int, optional
|
|
476
|
+
:return: Returns the result object.
|
|
477
|
+
""" # noqa: E501
|
|
478
|
+
|
|
479
|
+
_param = self._clear_apps_serialize(
|
|
480
|
+
cell=cell,
|
|
481
|
+
completion_timeout=completion_timeout,
|
|
482
|
+
_request_auth=_request_auth,
|
|
483
|
+
_content_type=_content_type,
|
|
484
|
+
_headers=_headers,
|
|
485
|
+
_host_index=_host_index,
|
|
486
|
+
)
|
|
487
|
+
|
|
488
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
489
|
+
"200": None,
|
|
490
|
+
"202": None,
|
|
491
|
+
"404": "Error",
|
|
492
|
+
}
|
|
493
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
494
|
+
return response_data.response
|
|
495
|
+
|
|
496
|
+
def _clear_apps_serialize(
|
|
497
|
+
self,
|
|
498
|
+
cell,
|
|
499
|
+
completion_timeout,
|
|
500
|
+
_request_auth,
|
|
501
|
+
_content_type,
|
|
502
|
+
_headers,
|
|
503
|
+
_host_index,
|
|
504
|
+
) -> RequestSerialized:
|
|
505
|
+
|
|
506
|
+
_host = None
|
|
507
|
+
|
|
508
|
+
_collection_formats: Dict[str, str] = {}
|
|
509
|
+
|
|
510
|
+
_path_params: Dict[str, str] = {}
|
|
511
|
+
_query_params: List[Tuple[str, str]] = []
|
|
512
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
513
|
+
_form_params: List[Tuple[str, str]] = []
|
|
514
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
515
|
+
_body_params: Optional[bytes] = None
|
|
516
|
+
|
|
517
|
+
# process the path parameters
|
|
518
|
+
if cell is not None:
|
|
519
|
+
_path_params["cell"] = cell
|
|
520
|
+
# process the query parameters
|
|
521
|
+
if completion_timeout is not None:
|
|
522
|
+
_query_params.append(("completionTimeout", completion_timeout))
|
|
523
|
+
|
|
524
|
+
# process the header parameters
|
|
525
|
+
# process the form parameters
|
|
526
|
+
# process the body parameter
|
|
527
|
+
|
|
528
|
+
# set the HTTP header `Accept`
|
|
529
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
530
|
+
|
|
531
|
+
# authentication setting
|
|
532
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
533
|
+
|
|
534
|
+
return self.api_client.param_serialize(
|
|
535
|
+
method="DELETE",
|
|
536
|
+
resource_path="/cells/{cell}/apps",
|
|
537
|
+
path_params=_path_params,
|
|
538
|
+
query_params=_query_params,
|
|
539
|
+
header_params=_header_params,
|
|
540
|
+
body=_body_params,
|
|
541
|
+
post_params=_form_params,
|
|
542
|
+
files=_files,
|
|
543
|
+
auth_settings=_auth_settings,
|
|
544
|
+
collection_formats=_collection_formats,
|
|
545
|
+
_host=_host,
|
|
546
|
+
_request_auth=_request_auth,
|
|
547
|
+
)
|
|
548
|
+
|
|
549
|
+
@validate_call
|
|
550
|
+
async def delete_app(
|
|
551
|
+
self,
|
|
552
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
553
|
+
app: StrictStr,
|
|
554
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
555
|
+
_request_timeout: Union[
|
|
556
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
557
|
+
] = None,
|
|
558
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
559
|
+
_content_type: Optional[StrictStr] = None,
|
|
560
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
561
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
562
|
+
) -> None:
|
|
563
|
+
"""Delete Application
|
|
564
|
+
|
|
565
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
|
|
566
|
+
|
|
567
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
568
|
+
:type cell: str
|
|
569
|
+
:param app: (required)
|
|
570
|
+
:type app: str
|
|
571
|
+
:param completion_timeout:
|
|
572
|
+
:type completion_timeout: int
|
|
573
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
574
|
+
number provided, it will be total request
|
|
575
|
+
timeout. It can also be a pair (tuple) of
|
|
576
|
+
(connection, read) timeouts.
|
|
577
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
578
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
579
|
+
request; this effectively ignores the
|
|
580
|
+
authentication in the spec for a single request.
|
|
581
|
+
:type _request_auth: dict, optional
|
|
582
|
+
:param _content_type: force content-type for the request.
|
|
583
|
+
:type _content_type: str, Optional
|
|
584
|
+
:param _headers: set to override the headers for a single
|
|
585
|
+
request; this effectively ignores the headers
|
|
586
|
+
in the spec for a single request.
|
|
587
|
+
:type _headers: dict, optional
|
|
588
|
+
:param _host_index: set to override the host_index for a single
|
|
589
|
+
request; this effectively ignores the host_index
|
|
590
|
+
in the spec for a single request.
|
|
591
|
+
:type _host_index: int, optional
|
|
592
|
+
:return: Returns the result object.
|
|
593
|
+
""" # noqa: E501
|
|
594
|
+
|
|
595
|
+
_param = self._delete_app_serialize(
|
|
596
|
+
cell=cell,
|
|
597
|
+
app=app,
|
|
598
|
+
completion_timeout=completion_timeout,
|
|
599
|
+
_request_auth=_request_auth,
|
|
600
|
+
_content_type=_content_type,
|
|
601
|
+
_headers=_headers,
|
|
602
|
+
_host_index=_host_index,
|
|
603
|
+
)
|
|
604
|
+
|
|
605
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
606
|
+
"200": None,
|
|
607
|
+
"202": None,
|
|
608
|
+
"404": "Error",
|
|
609
|
+
}
|
|
610
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
611
|
+
await response_data.read()
|
|
612
|
+
return self.api_client.response_deserialize(
|
|
613
|
+
response_data=response_data,
|
|
614
|
+
response_types_map=_response_types_map,
|
|
615
|
+
).data
|
|
616
|
+
|
|
617
|
+
@validate_call
|
|
618
|
+
async def delete_app_with_http_info(
|
|
619
|
+
self,
|
|
620
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
621
|
+
app: StrictStr,
|
|
622
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
623
|
+
_request_timeout: Union[
|
|
624
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
625
|
+
] = None,
|
|
626
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
627
|
+
_content_type: Optional[StrictStr] = None,
|
|
628
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
629
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
630
|
+
) -> ApiResponse[None]:
|
|
631
|
+
"""Delete Application
|
|
632
|
+
|
|
633
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
|
|
634
|
+
|
|
635
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
636
|
+
:type cell: str
|
|
637
|
+
:param app: (required)
|
|
638
|
+
:type app: str
|
|
639
|
+
:param completion_timeout:
|
|
640
|
+
:type completion_timeout: int
|
|
641
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
642
|
+
number provided, it will be total request
|
|
643
|
+
timeout. It can also be a pair (tuple) of
|
|
644
|
+
(connection, read) timeouts.
|
|
645
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
646
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
647
|
+
request; this effectively ignores the
|
|
648
|
+
authentication in the spec for a single request.
|
|
649
|
+
:type _request_auth: dict, optional
|
|
650
|
+
:param _content_type: force content-type for the request.
|
|
651
|
+
:type _content_type: str, Optional
|
|
652
|
+
:param _headers: set to override the headers for a single
|
|
653
|
+
request; this effectively ignores the headers
|
|
654
|
+
in the spec for a single request.
|
|
655
|
+
:type _headers: dict, optional
|
|
656
|
+
:param _host_index: set to override the host_index for a single
|
|
657
|
+
request; this effectively ignores the host_index
|
|
658
|
+
in the spec for a single request.
|
|
659
|
+
:type _host_index: int, optional
|
|
660
|
+
:return: Returns the result object.
|
|
661
|
+
""" # noqa: E501
|
|
662
|
+
|
|
663
|
+
_param = self._delete_app_serialize(
|
|
664
|
+
cell=cell,
|
|
665
|
+
app=app,
|
|
666
|
+
completion_timeout=completion_timeout,
|
|
667
|
+
_request_auth=_request_auth,
|
|
668
|
+
_content_type=_content_type,
|
|
669
|
+
_headers=_headers,
|
|
670
|
+
_host_index=_host_index,
|
|
671
|
+
)
|
|
672
|
+
|
|
673
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
674
|
+
"200": None,
|
|
675
|
+
"202": None,
|
|
676
|
+
"404": "Error",
|
|
677
|
+
}
|
|
678
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
679
|
+
await response_data.read()
|
|
680
|
+
return self.api_client.response_deserialize(
|
|
681
|
+
response_data=response_data,
|
|
682
|
+
response_types_map=_response_types_map,
|
|
683
|
+
)
|
|
684
|
+
|
|
685
|
+
@validate_call
|
|
686
|
+
async def delete_app_without_preload_content(
|
|
687
|
+
self,
|
|
688
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
689
|
+
app: StrictStr,
|
|
690
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
691
|
+
_request_timeout: Union[
|
|
692
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
693
|
+
] = None,
|
|
694
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
695
|
+
_content_type: Optional[StrictStr] = None,
|
|
696
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
697
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
698
|
+
) -> RESTResponseType:
|
|
699
|
+
"""Delete Application
|
|
700
|
+
|
|
701
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Delete a GUI application from the cell.
|
|
702
|
+
|
|
703
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
704
|
+
:type cell: str
|
|
705
|
+
:param app: (required)
|
|
706
|
+
:type app: str
|
|
707
|
+
:param completion_timeout:
|
|
708
|
+
:type completion_timeout: int
|
|
709
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
710
|
+
number provided, it will be total request
|
|
711
|
+
timeout. It can also be a pair (tuple) of
|
|
712
|
+
(connection, read) timeouts.
|
|
713
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
714
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
715
|
+
request; this effectively ignores the
|
|
716
|
+
authentication in the spec for a single request.
|
|
717
|
+
:type _request_auth: dict, optional
|
|
718
|
+
:param _content_type: force content-type for the request.
|
|
719
|
+
:type _content_type: str, Optional
|
|
720
|
+
:param _headers: set to override the headers for a single
|
|
721
|
+
request; this effectively ignores the headers
|
|
722
|
+
in the spec for a single request.
|
|
723
|
+
:type _headers: dict, optional
|
|
724
|
+
:param _host_index: set to override the host_index for a single
|
|
725
|
+
request; this effectively ignores the host_index
|
|
726
|
+
in the spec for a single request.
|
|
727
|
+
:type _host_index: int, optional
|
|
728
|
+
:return: Returns the result object.
|
|
729
|
+
""" # noqa: E501
|
|
730
|
+
|
|
731
|
+
_param = self._delete_app_serialize(
|
|
732
|
+
cell=cell,
|
|
733
|
+
app=app,
|
|
734
|
+
completion_timeout=completion_timeout,
|
|
735
|
+
_request_auth=_request_auth,
|
|
736
|
+
_content_type=_content_type,
|
|
737
|
+
_headers=_headers,
|
|
738
|
+
_host_index=_host_index,
|
|
739
|
+
)
|
|
740
|
+
|
|
741
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
742
|
+
"200": None,
|
|
743
|
+
"202": None,
|
|
744
|
+
"404": "Error",
|
|
745
|
+
}
|
|
746
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
747
|
+
return response_data.response
|
|
748
|
+
|
|
749
|
+
def _delete_app_serialize(
|
|
750
|
+
self,
|
|
751
|
+
cell,
|
|
752
|
+
app,
|
|
753
|
+
completion_timeout,
|
|
754
|
+
_request_auth,
|
|
755
|
+
_content_type,
|
|
756
|
+
_headers,
|
|
757
|
+
_host_index,
|
|
758
|
+
) -> RequestSerialized:
|
|
759
|
+
|
|
760
|
+
_host = None
|
|
761
|
+
|
|
762
|
+
_collection_formats: Dict[str, str] = {}
|
|
763
|
+
|
|
764
|
+
_path_params: Dict[str, str] = {}
|
|
765
|
+
_query_params: List[Tuple[str, str]] = []
|
|
766
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
767
|
+
_form_params: List[Tuple[str, str]] = []
|
|
768
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
769
|
+
_body_params: Optional[bytes] = None
|
|
770
|
+
|
|
771
|
+
# process the path parameters
|
|
772
|
+
if cell is not None:
|
|
773
|
+
_path_params["cell"] = cell
|
|
774
|
+
if app is not None:
|
|
775
|
+
_path_params["app"] = app
|
|
776
|
+
# process the query parameters
|
|
777
|
+
if completion_timeout is not None:
|
|
778
|
+
_query_params.append(("completionTimeout", completion_timeout))
|
|
779
|
+
|
|
780
|
+
# process the header parameters
|
|
781
|
+
# process the form parameters
|
|
782
|
+
# process the body parameter
|
|
783
|
+
|
|
784
|
+
# set the HTTP header `Accept`
|
|
785
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
786
|
+
|
|
787
|
+
# authentication setting
|
|
788
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
789
|
+
|
|
790
|
+
return self.api_client.param_serialize(
|
|
791
|
+
method="DELETE",
|
|
792
|
+
resource_path="/cells/{cell}/apps/{app}",
|
|
793
|
+
path_params=_path_params,
|
|
794
|
+
query_params=_query_params,
|
|
795
|
+
header_params=_header_params,
|
|
796
|
+
body=_body_params,
|
|
797
|
+
post_params=_form_params,
|
|
798
|
+
files=_files,
|
|
799
|
+
auth_settings=_auth_settings,
|
|
800
|
+
collection_formats=_collection_formats,
|
|
801
|
+
_host=_host,
|
|
802
|
+
_request_auth=_request_auth,
|
|
803
|
+
)
|
|
804
|
+
|
|
805
|
+
@validate_call
|
|
806
|
+
async def get_app(
|
|
807
|
+
self,
|
|
808
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
809
|
+
app: StrictStr,
|
|
810
|
+
_request_timeout: Union[
|
|
811
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
812
|
+
] = None,
|
|
813
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
814
|
+
_content_type: Optional[StrictStr] = None,
|
|
815
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
816
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
817
|
+
) -> App:
|
|
818
|
+
"""Configuration
|
|
819
|
+
|
|
820
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the 'Update Configuration' endpoint.
|
|
821
|
+
|
|
822
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
823
|
+
:type cell: str
|
|
824
|
+
:param app: (required)
|
|
825
|
+
:type app: str
|
|
826
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
827
|
+
number provided, it will be total request
|
|
828
|
+
timeout. It can also be a pair (tuple) of
|
|
829
|
+
(connection, read) timeouts.
|
|
830
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
831
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
832
|
+
request; this effectively ignores the
|
|
833
|
+
authentication in the spec for a single request.
|
|
834
|
+
:type _request_auth: dict, optional
|
|
835
|
+
:param _content_type: force content-type for the request.
|
|
836
|
+
:type _content_type: str, Optional
|
|
837
|
+
:param _headers: set to override the headers for a single
|
|
838
|
+
request; this effectively ignores the headers
|
|
839
|
+
in the spec for a single request.
|
|
840
|
+
:type _headers: dict, optional
|
|
841
|
+
:param _host_index: set to override the host_index for a single
|
|
842
|
+
request; this effectively ignores the host_index
|
|
843
|
+
in the spec for a single request.
|
|
844
|
+
:type _host_index: int, optional
|
|
845
|
+
:return: Returns the result object.
|
|
846
|
+
""" # noqa: E501
|
|
847
|
+
|
|
848
|
+
_param = self._get_app_serialize(
|
|
849
|
+
cell=cell, app=app, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
850
|
+
)
|
|
851
|
+
|
|
852
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
853
|
+
"200": "App",
|
|
854
|
+
"404": "Error",
|
|
855
|
+
}
|
|
856
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
857
|
+
await response_data.read()
|
|
858
|
+
return self.api_client.response_deserialize(
|
|
859
|
+
response_data=response_data,
|
|
860
|
+
response_types_map=_response_types_map,
|
|
861
|
+
).data
|
|
862
|
+
|
|
863
|
+
@validate_call
|
|
864
|
+
async def get_app_with_http_info(
|
|
865
|
+
self,
|
|
866
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
867
|
+
app: StrictStr,
|
|
868
|
+
_request_timeout: Union[
|
|
869
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
870
|
+
] = None,
|
|
871
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
872
|
+
_content_type: Optional[StrictStr] = None,
|
|
873
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
874
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
875
|
+
) -> ApiResponse[App]:
|
|
876
|
+
"""Configuration
|
|
877
|
+
|
|
878
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the 'Update Configuration' endpoint.
|
|
879
|
+
|
|
880
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
881
|
+
:type cell: str
|
|
882
|
+
:param app: (required)
|
|
883
|
+
:type app: str
|
|
884
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
885
|
+
number provided, it will be total request
|
|
886
|
+
timeout. It can also be a pair (tuple) of
|
|
887
|
+
(connection, read) timeouts.
|
|
888
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
889
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
890
|
+
request; this effectively ignores the
|
|
891
|
+
authentication in the spec for a single request.
|
|
892
|
+
:type _request_auth: dict, optional
|
|
893
|
+
:param _content_type: force content-type for the request.
|
|
894
|
+
:type _content_type: str, Optional
|
|
895
|
+
:param _headers: set to override the headers for a single
|
|
896
|
+
request; this effectively ignores the headers
|
|
897
|
+
in the spec for a single request.
|
|
898
|
+
:type _headers: dict, optional
|
|
899
|
+
:param _host_index: set to override the host_index for a single
|
|
900
|
+
request; this effectively ignores the host_index
|
|
901
|
+
in the spec for a single request.
|
|
902
|
+
:type _host_index: int, optional
|
|
903
|
+
:return: Returns the result object.
|
|
904
|
+
""" # noqa: E501
|
|
905
|
+
|
|
906
|
+
_param = self._get_app_serialize(
|
|
907
|
+
cell=cell, app=app, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
908
|
+
)
|
|
909
|
+
|
|
910
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
911
|
+
"200": "App",
|
|
912
|
+
"404": "Error",
|
|
913
|
+
}
|
|
914
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
915
|
+
await response_data.read()
|
|
916
|
+
return self.api_client.response_deserialize(
|
|
917
|
+
response_data=response_data,
|
|
918
|
+
response_types_map=_response_types_map,
|
|
919
|
+
)
|
|
920
|
+
|
|
921
|
+
@validate_call
|
|
922
|
+
async def get_app_without_preload_content(
|
|
923
|
+
self,
|
|
924
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
925
|
+
app: StrictStr,
|
|
926
|
+
_request_timeout: Union[
|
|
927
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
928
|
+
] = None,
|
|
929
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
930
|
+
_content_type: Optional[StrictStr] = None,
|
|
931
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
932
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
933
|
+
) -> RESTResponseType:
|
|
934
|
+
"""Configuration
|
|
935
|
+
|
|
936
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the 'Update Configuration' endpoint.
|
|
937
|
+
|
|
938
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
939
|
+
:type cell: str
|
|
940
|
+
:param app: (required)
|
|
941
|
+
:type app: str
|
|
942
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
943
|
+
number provided, it will be total request
|
|
944
|
+
timeout. It can also be a pair (tuple) of
|
|
945
|
+
(connection, read) timeouts.
|
|
946
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
947
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
948
|
+
request; this effectively ignores the
|
|
949
|
+
authentication in the spec for a single request.
|
|
950
|
+
:type _request_auth: dict, optional
|
|
951
|
+
:param _content_type: force content-type for the request.
|
|
952
|
+
:type _content_type: str, Optional
|
|
953
|
+
:param _headers: set to override the headers for a single
|
|
954
|
+
request; this effectively ignores the headers
|
|
955
|
+
in the spec for a single request.
|
|
956
|
+
:type _headers: dict, optional
|
|
957
|
+
:param _host_index: set to override the host_index for a single
|
|
958
|
+
request; this effectively ignores the host_index
|
|
959
|
+
in the spec for a single request.
|
|
960
|
+
:type _host_index: int, optional
|
|
961
|
+
:return: Returns the result object.
|
|
962
|
+
""" # noqa: E501
|
|
963
|
+
|
|
964
|
+
_param = self._get_app_serialize(
|
|
965
|
+
cell=cell, app=app, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
966
|
+
)
|
|
967
|
+
|
|
968
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
969
|
+
"200": "App",
|
|
970
|
+
"404": "Error",
|
|
971
|
+
}
|
|
972
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
973
|
+
return response_data.response
|
|
974
|
+
|
|
975
|
+
def _get_app_serialize(
|
|
976
|
+
self,
|
|
977
|
+
cell,
|
|
978
|
+
app,
|
|
979
|
+
_request_auth,
|
|
980
|
+
_content_type,
|
|
981
|
+
_headers,
|
|
982
|
+
_host_index,
|
|
983
|
+
) -> RequestSerialized:
|
|
984
|
+
|
|
985
|
+
_host = None
|
|
986
|
+
|
|
987
|
+
_collection_formats: Dict[str, str] = {}
|
|
988
|
+
|
|
989
|
+
_path_params: Dict[str, str] = {}
|
|
990
|
+
_query_params: List[Tuple[str, str]] = []
|
|
991
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
992
|
+
_form_params: List[Tuple[str, str]] = []
|
|
993
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
994
|
+
_body_params: Optional[bytes] = None
|
|
995
|
+
|
|
996
|
+
# process the path parameters
|
|
997
|
+
if cell is not None:
|
|
998
|
+
_path_params["cell"] = cell
|
|
999
|
+
if app is not None:
|
|
1000
|
+
_path_params["app"] = app
|
|
1001
|
+
# process the query parameters
|
|
1002
|
+
# process the header parameters
|
|
1003
|
+
# process the form parameters
|
|
1004
|
+
# process the body parameter
|
|
1005
|
+
|
|
1006
|
+
# set the HTTP header `Accept`
|
|
1007
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1008
|
+
|
|
1009
|
+
# authentication setting
|
|
1010
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1011
|
+
|
|
1012
|
+
return self.api_client.param_serialize(
|
|
1013
|
+
method="GET",
|
|
1014
|
+
resource_path="/cells/{cell}/apps/{app}",
|
|
1015
|
+
path_params=_path_params,
|
|
1016
|
+
query_params=_query_params,
|
|
1017
|
+
header_params=_header_params,
|
|
1018
|
+
body=_body_params,
|
|
1019
|
+
post_params=_form_params,
|
|
1020
|
+
files=_files,
|
|
1021
|
+
auth_settings=_auth_settings,
|
|
1022
|
+
collection_formats=_collection_formats,
|
|
1023
|
+
_host=_host,
|
|
1024
|
+
_request_auth=_request_auth,
|
|
1025
|
+
)
|
|
1026
|
+
|
|
1027
|
+
@validate_call
|
|
1028
|
+
async def list_apps(
|
|
1029
|
+
self,
|
|
1030
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1031
|
+
_request_timeout: Union[
|
|
1032
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1033
|
+
] = None,
|
|
1034
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1035
|
+
_content_type: Optional[StrictStr] = None,
|
|
1036
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1037
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1038
|
+
) -> List[str]:
|
|
1039
|
+
"""List Applications
|
|
1040
|
+
|
|
1041
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ List all GUI applications that have been added to a cell. with the 'Add Application' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
1042
|
+
|
|
1043
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1044
|
+
:type cell: str
|
|
1045
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1046
|
+
number provided, it will be total request
|
|
1047
|
+
timeout. It can also be a pair (tuple) of
|
|
1048
|
+
(connection, read) timeouts.
|
|
1049
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1050
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1051
|
+
request; this effectively ignores the
|
|
1052
|
+
authentication in the spec for a single request.
|
|
1053
|
+
:type _request_auth: dict, optional
|
|
1054
|
+
:param _content_type: force content-type for the request.
|
|
1055
|
+
:type _content_type: str, Optional
|
|
1056
|
+
:param _headers: set to override the headers for a single
|
|
1057
|
+
request; this effectively ignores the headers
|
|
1058
|
+
in the spec for a single request.
|
|
1059
|
+
:type _headers: dict, optional
|
|
1060
|
+
:param _host_index: set to override the host_index for a single
|
|
1061
|
+
request; this effectively ignores the host_index
|
|
1062
|
+
in the spec for a single request.
|
|
1063
|
+
:type _host_index: int, optional
|
|
1064
|
+
:return: Returns the result object.
|
|
1065
|
+
""" # noqa: E501
|
|
1066
|
+
|
|
1067
|
+
_param = self._list_apps_serialize(
|
|
1068
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
1069
|
+
)
|
|
1070
|
+
|
|
1071
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1072
|
+
"200": "List[str]",
|
|
1073
|
+
}
|
|
1074
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1075
|
+
await response_data.read()
|
|
1076
|
+
return self.api_client.response_deserialize(
|
|
1077
|
+
response_data=response_data,
|
|
1078
|
+
response_types_map=_response_types_map,
|
|
1079
|
+
).data
|
|
1080
|
+
|
|
1081
|
+
@validate_call
|
|
1082
|
+
async def list_apps_with_http_info(
|
|
1083
|
+
self,
|
|
1084
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1085
|
+
_request_timeout: Union[
|
|
1086
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1087
|
+
] = None,
|
|
1088
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1089
|
+
_content_type: Optional[StrictStr] = None,
|
|
1090
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1091
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1092
|
+
) -> ApiResponse[List[str]]:
|
|
1093
|
+
"""List Applications
|
|
1094
|
+
|
|
1095
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ List all GUI applications that have been added to a cell. with the 'Add Application' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
1096
|
+
|
|
1097
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1098
|
+
:type cell: str
|
|
1099
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1100
|
+
number provided, it will be total request
|
|
1101
|
+
timeout. It can also be a pair (tuple) of
|
|
1102
|
+
(connection, read) timeouts.
|
|
1103
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1104
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1105
|
+
request; this effectively ignores the
|
|
1106
|
+
authentication in the spec for a single request.
|
|
1107
|
+
:type _request_auth: dict, optional
|
|
1108
|
+
:param _content_type: force content-type for the request.
|
|
1109
|
+
:type _content_type: str, Optional
|
|
1110
|
+
:param _headers: set to override the headers for a single
|
|
1111
|
+
request; this effectively ignores the headers
|
|
1112
|
+
in the spec for a single request.
|
|
1113
|
+
:type _headers: dict, optional
|
|
1114
|
+
:param _host_index: set to override the host_index for a single
|
|
1115
|
+
request; this effectively ignores the host_index
|
|
1116
|
+
in the spec for a single request.
|
|
1117
|
+
:type _host_index: int, optional
|
|
1118
|
+
:return: Returns the result object.
|
|
1119
|
+
""" # noqa: E501
|
|
1120
|
+
|
|
1121
|
+
_param = self._list_apps_serialize(
|
|
1122
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
1123
|
+
)
|
|
1124
|
+
|
|
1125
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1126
|
+
"200": "List[str]",
|
|
1127
|
+
}
|
|
1128
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1129
|
+
await response_data.read()
|
|
1130
|
+
return self.api_client.response_deserialize(
|
|
1131
|
+
response_data=response_data,
|
|
1132
|
+
response_types_map=_response_types_map,
|
|
1133
|
+
)
|
|
1134
|
+
|
|
1135
|
+
@validate_call
|
|
1136
|
+
async def list_apps_without_preload_content(
|
|
1137
|
+
self,
|
|
1138
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1139
|
+
_request_timeout: Union[
|
|
1140
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1141
|
+
] = None,
|
|
1142
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1143
|
+
_content_type: Optional[StrictStr] = None,
|
|
1144
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1145
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1146
|
+
) -> RESTResponseType:
|
|
1147
|
+
"""List Applications
|
|
1148
|
+
|
|
1149
|
+
**Required permissions:** `can_access_apps` - View application configurations ___ List all GUI applications that have been added to a cell. with the 'Add Application' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
1150
|
+
|
|
1151
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1152
|
+
:type cell: str
|
|
1153
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1154
|
+
number provided, it will be total request
|
|
1155
|
+
timeout. It can also be a pair (tuple) of
|
|
1156
|
+
(connection, read) timeouts.
|
|
1157
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1158
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1159
|
+
request; this effectively ignores the
|
|
1160
|
+
authentication in the spec for a single request.
|
|
1161
|
+
:type _request_auth: dict, optional
|
|
1162
|
+
:param _content_type: force content-type for the request.
|
|
1163
|
+
:type _content_type: str, Optional
|
|
1164
|
+
:param _headers: set to override the headers for a single
|
|
1165
|
+
request; this effectively ignores the headers
|
|
1166
|
+
in the spec for a single request.
|
|
1167
|
+
:type _headers: dict, optional
|
|
1168
|
+
:param _host_index: set to override the host_index for a single
|
|
1169
|
+
request; this effectively ignores the host_index
|
|
1170
|
+
in the spec for a single request.
|
|
1171
|
+
:type _host_index: int, optional
|
|
1172
|
+
:return: Returns the result object.
|
|
1173
|
+
""" # noqa: E501
|
|
1174
|
+
|
|
1175
|
+
_param = self._list_apps_serialize(
|
|
1176
|
+
cell=cell, _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
1177
|
+
)
|
|
1178
|
+
|
|
1179
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1180
|
+
"200": "List[str]",
|
|
1181
|
+
}
|
|
1182
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1183
|
+
return response_data.response
|
|
1184
|
+
|
|
1185
|
+
def _list_apps_serialize(
|
|
1186
|
+
self,
|
|
1187
|
+
cell,
|
|
1188
|
+
_request_auth,
|
|
1189
|
+
_content_type,
|
|
1190
|
+
_headers,
|
|
1191
|
+
_host_index,
|
|
1192
|
+
) -> RequestSerialized:
|
|
1193
|
+
|
|
1194
|
+
_host = None
|
|
1195
|
+
|
|
1196
|
+
_collection_formats: Dict[str, str] = {}
|
|
1197
|
+
|
|
1198
|
+
_path_params: Dict[str, str] = {}
|
|
1199
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1200
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1201
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1202
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1203
|
+
_body_params: Optional[bytes] = None
|
|
1204
|
+
|
|
1205
|
+
# process the path parameters
|
|
1206
|
+
if cell is not None:
|
|
1207
|
+
_path_params["cell"] = cell
|
|
1208
|
+
# process the query parameters
|
|
1209
|
+
# process the header parameters
|
|
1210
|
+
# process the form parameters
|
|
1211
|
+
# process the body parameter
|
|
1212
|
+
|
|
1213
|
+
# set the HTTP header `Accept`
|
|
1214
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1215
|
+
|
|
1216
|
+
# authentication setting
|
|
1217
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1218
|
+
|
|
1219
|
+
return self.api_client.param_serialize(
|
|
1220
|
+
method="GET",
|
|
1221
|
+
resource_path="/cells/{cell}/apps",
|
|
1222
|
+
path_params=_path_params,
|
|
1223
|
+
query_params=_query_params,
|
|
1224
|
+
header_params=_header_params,
|
|
1225
|
+
body=_body_params,
|
|
1226
|
+
post_params=_form_params,
|
|
1227
|
+
files=_files,
|
|
1228
|
+
auth_settings=_auth_settings,
|
|
1229
|
+
collection_formats=_collection_formats,
|
|
1230
|
+
_host=_host,
|
|
1231
|
+
_request_auth=_request_auth,
|
|
1232
|
+
)
|
|
1233
|
+
|
|
1234
|
+
@validate_call
|
|
1235
|
+
async def update_app(
|
|
1236
|
+
self,
|
|
1237
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1238
|
+
app: StrictStr,
|
|
1239
|
+
app2: App,
|
|
1240
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
1241
|
+
_request_timeout: Union[
|
|
1242
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1243
|
+
] = None,
|
|
1244
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1245
|
+
_content_type: Optional[StrictStr] = None,
|
|
1246
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1247
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1248
|
+
) -> None:
|
|
1249
|
+
"""Update Configuration
|
|
1250
|
+
|
|
1251
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
|
|
1252
|
+
|
|
1253
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1254
|
+
:type cell: str
|
|
1255
|
+
:param app: (required)
|
|
1256
|
+
:type app: str
|
|
1257
|
+
:param app2: (required)
|
|
1258
|
+
:type app2: App
|
|
1259
|
+
:param completion_timeout:
|
|
1260
|
+
:type completion_timeout: int
|
|
1261
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1262
|
+
number provided, it will be total request
|
|
1263
|
+
timeout. It can also be a pair (tuple) of
|
|
1264
|
+
(connection, read) timeouts.
|
|
1265
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1266
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1267
|
+
request; this effectively ignores the
|
|
1268
|
+
authentication in the spec for a single request.
|
|
1269
|
+
:type _request_auth: dict, optional
|
|
1270
|
+
:param _content_type: force content-type for the request.
|
|
1271
|
+
:type _content_type: str, Optional
|
|
1272
|
+
:param _headers: set to override the headers for a single
|
|
1273
|
+
request; this effectively ignores the headers
|
|
1274
|
+
in the spec for a single request.
|
|
1275
|
+
:type _headers: dict, optional
|
|
1276
|
+
:param _host_index: set to override the host_index for a single
|
|
1277
|
+
request; this effectively ignores the host_index
|
|
1278
|
+
in the spec for a single request.
|
|
1279
|
+
:type _host_index: int, optional
|
|
1280
|
+
:return: Returns the result object.
|
|
1281
|
+
""" # noqa: E501
|
|
1282
|
+
|
|
1283
|
+
_param = self._update_app_serialize(
|
|
1284
|
+
cell=cell,
|
|
1285
|
+
app=app,
|
|
1286
|
+
app2=app2,
|
|
1287
|
+
completion_timeout=completion_timeout,
|
|
1288
|
+
_request_auth=_request_auth,
|
|
1289
|
+
_content_type=_content_type,
|
|
1290
|
+
_headers=_headers,
|
|
1291
|
+
_host_index=_host_index,
|
|
1292
|
+
)
|
|
1293
|
+
|
|
1294
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1295
|
+
"200": None,
|
|
1296
|
+
"202": None,
|
|
1297
|
+
"400": "Error",
|
|
1298
|
+
"404": "Error",
|
|
1299
|
+
}
|
|
1300
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1301
|
+
await response_data.read()
|
|
1302
|
+
return self.api_client.response_deserialize(
|
|
1303
|
+
response_data=response_data,
|
|
1304
|
+
response_types_map=_response_types_map,
|
|
1305
|
+
).data
|
|
1306
|
+
|
|
1307
|
+
@validate_call
|
|
1308
|
+
async def update_app_with_http_info(
|
|
1309
|
+
self,
|
|
1310
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1311
|
+
app: StrictStr,
|
|
1312
|
+
app2: App,
|
|
1313
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
1314
|
+
_request_timeout: Union[
|
|
1315
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1316
|
+
] = None,
|
|
1317
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1318
|
+
_content_type: Optional[StrictStr] = None,
|
|
1319
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1320
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1321
|
+
) -> ApiResponse[None]:
|
|
1322
|
+
"""Update Configuration
|
|
1323
|
+
|
|
1324
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
|
|
1325
|
+
|
|
1326
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1327
|
+
:type cell: str
|
|
1328
|
+
:param app: (required)
|
|
1329
|
+
:type app: str
|
|
1330
|
+
:param app2: (required)
|
|
1331
|
+
:type app2: App
|
|
1332
|
+
:param completion_timeout:
|
|
1333
|
+
:type completion_timeout: int
|
|
1334
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1335
|
+
number provided, it will be total request
|
|
1336
|
+
timeout. It can also be a pair (tuple) of
|
|
1337
|
+
(connection, read) timeouts.
|
|
1338
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1339
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1340
|
+
request; this effectively ignores the
|
|
1341
|
+
authentication in the spec for a single request.
|
|
1342
|
+
:type _request_auth: dict, optional
|
|
1343
|
+
:param _content_type: force content-type for the request.
|
|
1344
|
+
:type _content_type: str, Optional
|
|
1345
|
+
:param _headers: set to override the headers for a single
|
|
1346
|
+
request; this effectively ignores the headers
|
|
1347
|
+
in the spec for a single request.
|
|
1348
|
+
:type _headers: dict, optional
|
|
1349
|
+
:param _host_index: set to override the host_index for a single
|
|
1350
|
+
request; this effectively ignores the host_index
|
|
1351
|
+
in the spec for a single request.
|
|
1352
|
+
:type _host_index: int, optional
|
|
1353
|
+
:return: Returns the result object.
|
|
1354
|
+
""" # noqa: E501
|
|
1355
|
+
|
|
1356
|
+
_param = self._update_app_serialize(
|
|
1357
|
+
cell=cell,
|
|
1358
|
+
app=app,
|
|
1359
|
+
app2=app2,
|
|
1360
|
+
completion_timeout=completion_timeout,
|
|
1361
|
+
_request_auth=_request_auth,
|
|
1362
|
+
_content_type=_content_type,
|
|
1363
|
+
_headers=_headers,
|
|
1364
|
+
_host_index=_host_index,
|
|
1365
|
+
)
|
|
1366
|
+
|
|
1367
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1368
|
+
"200": None,
|
|
1369
|
+
"202": None,
|
|
1370
|
+
"400": "Error",
|
|
1371
|
+
"404": "Error",
|
|
1372
|
+
}
|
|
1373
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1374
|
+
await response_data.read()
|
|
1375
|
+
return self.api_client.response_deserialize(
|
|
1376
|
+
response_data=response_data,
|
|
1377
|
+
response_types_map=_response_types_map,
|
|
1378
|
+
)
|
|
1379
|
+
|
|
1380
|
+
@validate_call
|
|
1381
|
+
async def update_app_without_preload_content(
|
|
1382
|
+
self,
|
|
1383
|
+
cell: Annotated[StrictStr, Field(description="Unique identifier addressing a cell in all API calls. ")],
|
|
1384
|
+
app: StrictStr,
|
|
1385
|
+
app2: App,
|
|
1386
|
+
completion_timeout: Optional[Annotated[int, Field(strict=True, ge=1)]] = None,
|
|
1387
|
+
_request_timeout: Union[
|
|
1388
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
1389
|
+
] = None,
|
|
1390
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1391
|
+
_content_type: Optional[StrictStr] = None,
|
|
1392
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1393
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1394
|
+
) -> RESTResponseType:
|
|
1395
|
+
"""Update Configuration
|
|
1396
|
+
|
|
1397
|
+
**Required permissions:** `can_manage_apps` - Install, update, or remove applications ___ Update the configuration of a GUI application in the cell.
|
|
1398
|
+
|
|
1399
|
+
:param cell: Unique identifier addressing a cell in all API calls. (required)
|
|
1400
|
+
:type cell: str
|
|
1401
|
+
:param app: (required)
|
|
1402
|
+
:type app: str
|
|
1403
|
+
:param app2: (required)
|
|
1404
|
+
:type app2: App
|
|
1405
|
+
:param completion_timeout:
|
|
1406
|
+
:type completion_timeout: int
|
|
1407
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1408
|
+
number provided, it will be total request
|
|
1409
|
+
timeout. It can also be a pair (tuple) of
|
|
1410
|
+
(connection, read) timeouts.
|
|
1411
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1412
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1413
|
+
request; this effectively ignores the
|
|
1414
|
+
authentication in the spec for a single request.
|
|
1415
|
+
:type _request_auth: dict, optional
|
|
1416
|
+
:param _content_type: force content-type for the request.
|
|
1417
|
+
:type _content_type: str, Optional
|
|
1418
|
+
:param _headers: set to override the headers for a single
|
|
1419
|
+
request; this effectively ignores the headers
|
|
1420
|
+
in the spec for a single request.
|
|
1421
|
+
:type _headers: dict, optional
|
|
1422
|
+
:param _host_index: set to override the host_index for a single
|
|
1423
|
+
request; this effectively ignores the host_index
|
|
1424
|
+
in the spec for a single request.
|
|
1425
|
+
:type _host_index: int, optional
|
|
1426
|
+
:return: Returns the result object.
|
|
1427
|
+
""" # noqa: E501
|
|
1428
|
+
|
|
1429
|
+
_param = self._update_app_serialize(
|
|
1430
|
+
cell=cell,
|
|
1431
|
+
app=app,
|
|
1432
|
+
app2=app2,
|
|
1433
|
+
completion_timeout=completion_timeout,
|
|
1434
|
+
_request_auth=_request_auth,
|
|
1435
|
+
_content_type=_content_type,
|
|
1436
|
+
_headers=_headers,
|
|
1437
|
+
_host_index=_host_index,
|
|
1438
|
+
)
|
|
1439
|
+
|
|
1440
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1441
|
+
"200": None,
|
|
1442
|
+
"202": None,
|
|
1443
|
+
"400": "Error",
|
|
1444
|
+
"404": "Error",
|
|
1445
|
+
}
|
|
1446
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
1447
|
+
return response_data.response
|
|
1448
|
+
|
|
1449
|
+
def _update_app_serialize(
|
|
1450
|
+
self,
|
|
1451
|
+
cell,
|
|
1452
|
+
app,
|
|
1453
|
+
app2,
|
|
1454
|
+
completion_timeout,
|
|
1455
|
+
_request_auth,
|
|
1456
|
+
_content_type,
|
|
1457
|
+
_headers,
|
|
1458
|
+
_host_index,
|
|
1459
|
+
) -> RequestSerialized:
|
|
1460
|
+
|
|
1461
|
+
_host = None
|
|
1462
|
+
|
|
1463
|
+
_collection_formats: Dict[str, str] = {}
|
|
1464
|
+
|
|
1465
|
+
_path_params: Dict[str, str] = {}
|
|
1466
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1467
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1468
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1469
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1470
|
+
_body_params: Optional[bytes] = None
|
|
1471
|
+
|
|
1472
|
+
# process the path parameters
|
|
1473
|
+
if cell is not None:
|
|
1474
|
+
_path_params["cell"] = cell
|
|
1475
|
+
if app is not None:
|
|
1476
|
+
_path_params["app"] = app
|
|
1477
|
+
# process the query parameters
|
|
1478
|
+
if completion_timeout is not None:
|
|
1479
|
+
_query_params.append(("completionTimeout", completion_timeout))
|
|
1480
|
+
|
|
1481
|
+
# process the header parameters
|
|
1482
|
+
# process the form parameters
|
|
1483
|
+
# process the body parameter
|
|
1484
|
+
if app2 is not None:
|
|
1485
|
+
_body_params = app2
|
|
1486
|
+
|
|
1487
|
+
# set the HTTP header `Accept`
|
|
1488
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
1489
|
+
|
|
1490
|
+
# set the HTTP header `Content-Type`
|
|
1491
|
+
if _content_type:
|
|
1492
|
+
_header_params["Content-Type"] = _content_type
|
|
1493
|
+
else:
|
|
1494
|
+
_default_content_type = self.api_client.select_header_content_type(["application/json"])
|
|
1495
|
+
if _default_content_type is not None:
|
|
1496
|
+
_header_params["Content-Type"] = _default_content_type
|
|
1497
|
+
|
|
1498
|
+
# authentication setting
|
|
1499
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
1500
|
+
|
|
1501
|
+
return self.api_client.param_serialize(
|
|
1502
|
+
method="PUT",
|
|
1503
|
+
resource_path="/cells/{cell}/apps/{app}",
|
|
1504
|
+
path_params=_path_params,
|
|
1505
|
+
query_params=_query_params,
|
|
1506
|
+
header_params=_header_params,
|
|
1507
|
+
body=_body_params,
|
|
1508
|
+
post_params=_form_params,
|
|
1509
|
+
files=_files,
|
|
1510
|
+
auth_settings=_auth_settings,
|
|
1511
|
+
collection_formats=_collection_formats,
|
|
1512
|
+
_host=_host,
|
|
1513
|
+
_request_auth=_request_auth,
|
|
1514
|
+
)
|