wandelbots-isaacsim-api 2.2.2__tar.gz → 2.4.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. wandelbots_isaacsim_api-2.4.6/PKG-INFO +27 -0
  2. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/README.md +2 -2
  3. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/pyproject.toml +1 -1
  4. wandelbots_isaacsim_api-2.4.6/setup.cfg +7 -0
  5. wandelbots_isaacsim_api-2.4.6/setup.py +51 -0
  6. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/__init__.py +2 -2
  7. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/collision_world_api.py +1 -1
  8. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/default_api.py +1 -1
  9. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/manipulators_motion_group_api.py +49 -49
  10. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/periphery_camera_api.py +1 -1
  11. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/prims_api.py +1 -1
  12. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/stage_api.py +1 -1
  13. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/teaching_api.py +1 -1
  14. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/trajectory_api.py +1 -1
  15. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/ui_api.py +1 -1
  16. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api_client.py +2 -2
  17. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/configuration.py +3 -3
  18. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/exceptions.py +1 -1
  19. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/__init__.py +1 -1
  20. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/auth0_credentials.py +1 -1
  21. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_apply_relative_pose.py +1 -1
  22. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_assign_default_poses.py +1 -1
  23. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_reset_to_default_poses.py +1 -1
  24. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_set_joint_state.py +1 -1
  25. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_set_prim_metadata.py +1 -1
  26. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_set_prim_visibility.py +1 -1
  27. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_set_semantic_label.py +1 -1
  28. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_update_colliders.py +1 -1
  29. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/body_update_pose.py +1 -1
  30. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/bounding_box2_d.py +1 -1
  31. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/bounding_box3_d.py +1 -1
  32. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/box.py +1 -1
  33. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/box_sweep_parameters.py +1 -1
  34. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/capsule.py +1 -1
  35. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/collider.py +1 -1
  36. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/convex_hull.py +1 -1
  37. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/create_ghost_object.py +1 -1
  38. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/custom_prim.py +1 -1
  39. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/custom_prim_data.py +1 -1
  40. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/cylinder.py +1 -1
  41. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/ghost_object.py +1 -1
  42. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/ghost_object_source.py +1 -1
  43. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/gizmo_prim.py +1 -1
  44. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/http_validation_error.py +1 -1
  45. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/instance_segmentation_data.py +1 -1
  46. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/instance_segmentation_info.py +1 -1
  47. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/motion_group_configuration.py +1 -1
  48. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/motion_stream_configuration.py +1 -1
  49. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/patch_trajectory_data.py +1 -1
  50. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/plane.py +1 -1
  51. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/point_cloud.py +1 -1
  52. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/pose.py +1 -1
  53. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/pose_position_inner.py +1 -1
  54. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/prim.py +1 -1
  55. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/prim_selection.py +1 -1
  56. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/quat_pose.py +1 -1
  57. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/relative_pose_mode.py +1 -1
  58. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/response_get_pose.py +1 -1
  59. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/response_get_relative_pose.py +1 -1
  60. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/response_list_default_poses_value.py +1 -1
  61. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/semantic_segmentation_data.py +1 -1
  62. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/semantic_segmentation_info.py +1 -1
  63. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/shape.py +1 -1
  64. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/simulation_state.py +1 -1
  65. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/sphere.py +1 -1
  66. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/sphere_sweep_parameters.py +1 -1
  67. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/stage_units.py +1 -1
  68. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/sweep_arguments.py +1 -1
  69. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/tcp_source.py +1 -1
  70. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/trajectory_data.py +1 -1
  71. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/trajectory_marker.py +1 -1
  72. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/trajectory_object.py +1 -1
  73. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/trajectory_options.py +1 -1
  74. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/usd_stage_model.py +1 -1
  75. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/validation_error.py +1 -1
  76. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/validation_error_loc_inner.py +1 -1
  77. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/models/ws_pose.py +1 -1
  78. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/rest.py +1 -1
  79. wandelbots_isaacsim_api-2.4.6/wandelbots_isaacsim_api.egg-info/PKG-INFO +27 -0
  80. wandelbots_isaacsim_api-2.4.6/wandelbots_isaacsim_api.egg-info/SOURCES.txt +91 -0
  81. wandelbots_isaacsim_api-2.4.6/wandelbots_isaacsim_api.egg-info/dependency_links.txt +1 -0
  82. wandelbots_isaacsim_api-2.4.6/wandelbots_isaacsim_api.egg-info/requires.txt +6 -0
  83. wandelbots_isaacsim_api-2.4.6/wandelbots_isaacsim_api.egg-info/top_level.txt +1 -0
  84. wandelbots_isaacsim_api-2.2.2/PKG-INFO +0 -60
  85. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/LICENSE +0 -0
  86. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api/__init__.py +0 -0
  87. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/api_response.py +0 -0
  88. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/collision/__init__.py +0 -0
  89. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/collision/utils.py +0 -0
  90. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/py.typed +0 -0
  91. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/trajectory/__init__.py +0 -0
  92. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/trajectory/trajectory_viewer.py +0 -0
  93. {wandelbots_isaacsim_api-2.2.2 → wandelbots_isaacsim_api-2.4.6}/wandelbots_isaacsim_api/trajectory/utils.py +0 -0
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: wandelbots-isaacsim-api
3
+ Version: 2.4.6
4
+ Summary: Wandelbots Omniservice
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,Wandelbots Omniservice
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: aiohttp>=3.8.4
14
+ Requires-Dist: aiohttp-retry>=2.8.3
15
+ Requires-Dist: pydantic>=2
16
+ Requires-Dist: typing-extensions>=4.7.1
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: keywords
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: summary
25
+
26
+ A microservice-based framework for managing Omniverse functionalities
27
+
@@ -1,7 +1,7 @@
1
1
  # wandelbots-isaacsim-api
2
2
  A microservice-based framework for managing Omniverse functionalities
3
- - Compatible API version: 2.2.2 (can be found at the home screen of your instance -> API)
4
- - Package version: 2.2.2
3
+ - Compatible API version: 2.4.6 (can be found at the home screen of your instance -> API)
4
+ - Package version: 2.4.6
5
5
 
6
6
  Sign up for our [Wandelbots Developers Beta program](https://www.wandelbots.com/developers-beta) to get access to the Wandelbots API.
7
7
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wandelbots-isaacsim-api"
3
- version = "2.2.2"
3
+ version = "2.4.6"
4
4
  description = "Wandelbots IsaacSim Python Client: A microservice-based framework for managing Omniverse functionalities"
5
5
  authors = ["Wandelbots GmbH <contact@wandelbots.com>"]
6
6
  license = "Apache-2.0"
@@ -0,0 +1,7 @@
1
+ [flake8]
2
+ max-line-length = 99
3
+
4
+ [egg_info]
5
+ tag_build =
6
+ tag_date = 0
7
+
@@ -0,0 +1,51 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wandelbots Omniservice
5
+
6
+ A microservice-based framework for managing Omniverse functionalities
7
+
8
+ The version of the OpenAPI document: 2.4.6
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from setuptools import setup, find_packages # noqa: H301
16
+
17
+ # To install the library, run the following
18
+ #
19
+ # python setup.py install
20
+ #
21
+ # prerequisite: setuptools
22
+ # http://pypi.python.org/pypi/setuptools
23
+ NAME = "wandelbots-isaacsim-api"
24
+ VERSION = "2.4.6"
25
+ PYTHON_REQUIRES = ">= 3.8"
26
+ REQUIRES = [
27
+ "urllib3 >= 1.25.3, < 3.0.0",
28
+ "python-dateutil >= 2.8.2",
29
+ "aiohttp >= 3.8.4",
30
+ "aiohttp-retry >= 2.8.3",
31
+ "pydantic >= 2",
32
+ "typing-extensions >= 4.7.1",
33
+ ]
34
+
35
+ setup(
36
+ name=NAME,
37
+ version=VERSION,
38
+ description="Wandelbots Omniservice",
39
+ author="OpenAPI Generator community",
40
+ author_email="team@openapitools.org",
41
+ url="",
42
+ keywords=["OpenAPI", "OpenAPI-Generator", "Wandelbots Omniservice"],
43
+ install_requires=REQUIRES,
44
+ packages=find_packages(exclude=["test", "tests"]),
45
+ include_package_data=True,
46
+ long_description_content_type='text/markdown',
47
+ long_description="""\
48
+ A microservice-based framework for managing Omniverse functionalities
49
+ """, # noqa: E501
50
+ package_data={"wandelbots_isaacsim_api": ["py.typed"]},
51
+ )
@@ -7,14 +7,14 @@
7
7
 
8
8
  A microservice-based framework for managing Omniverse functionalities
9
9
 
10
- The version of the OpenAPI document: 2.2.2
10
+ The version of the OpenAPI document: 2.4.6
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "2.2.2"
17
+ __version__ = "2.4.6"
18
18
 
19
19
  from . import models
20
20
  from . import api
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -563,7 +563,7 @@ class ManipulatorsMotionGroupApi:
563
563
  @validate_call
564
564
  async def get_motion_group(
565
565
  self,
566
- motion_group_name: StrictStr,
566
+ prim_path: StrictStr,
567
567
  _request_timeout: Union[
568
568
  None,
569
569
  Annotated[StrictFloat, Field(gt=0)],
@@ -581,8 +581,8 @@ class ManipulatorsMotionGroupApi:
581
581
 
582
582
  Get the configuration of a motion_group
583
583
 
584
- :param motion_group_name: (required)
585
- :type motion_group_name: str
584
+ :param prim_path: (required)
585
+ :type prim_path: str
586
586
  :param _request_timeout: timeout setting for this request. If one
587
587
  number provided, it will be total request
588
588
  timeout. It can also be a pair (tuple) of
@@ -606,7 +606,7 @@ class ManipulatorsMotionGroupApi:
606
606
  """ # noqa: E501
607
607
 
608
608
  _param = self._get_motion_group_serialize(
609
- motion_group_name=motion_group_name,
609
+ prim_path=prim_path,
610
610
  _request_auth=_request_auth,
611
611
  _content_type=_content_type,
612
612
  _headers=_headers,
@@ -632,7 +632,7 @@ class ManipulatorsMotionGroupApi:
632
632
  @validate_call
633
633
  async def get_motion_group_with_http_info(
634
634
  self,
635
- motion_group_name: StrictStr,
635
+ prim_path: StrictStr,
636
636
  _request_timeout: Union[
637
637
  None,
638
638
  Annotated[StrictFloat, Field(gt=0)],
@@ -650,8 +650,8 @@ class ManipulatorsMotionGroupApi:
650
650
 
651
651
  Get the configuration of a motion_group
652
652
 
653
- :param motion_group_name: (required)
654
- :type motion_group_name: str
653
+ :param prim_path: (required)
654
+ :type prim_path: str
655
655
  :param _request_timeout: timeout setting for this request. If one
656
656
  number provided, it will be total request
657
657
  timeout. It can also be a pair (tuple) of
@@ -675,7 +675,7 @@ class ManipulatorsMotionGroupApi:
675
675
  """ # noqa: E501
676
676
 
677
677
  _param = self._get_motion_group_serialize(
678
- motion_group_name=motion_group_name,
678
+ prim_path=prim_path,
679
679
  _request_auth=_request_auth,
680
680
  _content_type=_content_type,
681
681
  _headers=_headers,
@@ -701,7 +701,7 @@ class ManipulatorsMotionGroupApi:
701
701
  @validate_call
702
702
  async def get_motion_group_without_preload_content(
703
703
  self,
704
- motion_group_name: StrictStr,
704
+ prim_path: StrictStr,
705
705
  _request_timeout: Union[
706
706
  None,
707
707
  Annotated[StrictFloat, Field(gt=0)],
@@ -719,8 +719,8 @@ class ManipulatorsMotionGroupApi:
719
719
 
720
720
  Get the configuration of a motion_group
721
721
 
722
- :param motion_group_name: (required)
723
- :type motion_group_name: str
722
+ :param prim_path: (required)
723
+ :type prim_path: str
724
724
  :param _request_timeout: timeout setting for this request. If one
725
725
  number provided, it will be total request
726
726
  timeout. It can also be a pair (tuple) of
@@ -744,7 +744,7 @@ class ManipulatorsMotionGroupApi:
744
744
  """ # noqa: E501
745
745
 
746
746
  _param = self._get_motion_group_serialize(
747
- motion_group_name=motion_group_name,
747
+ prim_path=prim_path,
748
748
  _request_auth=_request_auth,
749
749
  _content_type=_content_type,
750
750
  _headers=_headers,
@@ -765,7 +765,7 @@ class ManipulatorsMotionGroupApi:
765
765
 
766
766
  def _get_motion_group_serialize(
767
767
  self,
768
- motion_group_name,
768
+ prim_path,
769
769
  _request_auth,
770
770
  _content_type,
771
771
  _headers,
@@ -785,8 +785,8 @@ class ManipulatorsMotionGroupApi:
785
785
  _body_params: Optional[bytes] = None
786
786
 
787
787
  # process the path parameters
788
- if motion_group_name is not None:
789
- _path_params['motion_group_name'] = motion_group_name
788
+ if prim_path is not None:
789
+ _path_params['prim_path'] = prim_path
790
790
  # process the query parameters
791
791
  # process the header parameters
792
792
  # process the form parameters
@@ -807,7 +807,7 @@ class ManipulatorsMotionGroupApi:
807
807
 
808
808
  return self.api_client.param_serialize(
809
809
  method='GET',
810
- resource_path='/manipulators/motion-groups/{motion_group_name}',
810
+ resource_path='/manipulators/motion-groups/{prim_path}',
811
811
  path_params=_path_params,
812
812
  query_params=_query_params,
813
813
  header_params=_header_params,
@@ -1066,7 +1066,7 @@ class ManipulatorsMotionGroupApi:
1066
1066
  @validate_call
1067
1067
  async def remove_motion_group(
1068
1068
  self,
1069
- motion_group_name: StrictStr,
1069
+ prim_path: StrictStr,
1070
1070
  _request_timeout: Union[
1071
1071
  None,
1072
1072
  Annotated[StrictFloat, Field(gt=0)],
@@ -1084,8 +1084,8 @@ class ManipulatorsMotionGroupApi:
1084
1084
 
1085
1085
  Remove a motion_group
1086
1086
 
1087
- :param motion_group_name: (required)
1088
- :type motion_group_name: str
1087
+ :param prim_path: (required)
1088
+ :type prim_path: str
1089
1089
  :param _request_timeout: timeout setting for this request. If one
1090
1090
  number provided, it will be total request
1091
1091
  timeout. It can also be a pair (tuple) of
@@ -1109,7 +1109,7 @@ class ManipulatorsMotionGroupApi:
1109
1109
  """ # noqa: E501
1110
1110
 
1111
1111
  _param = self._remove_motion_group_serialize(
1112
- motion_group_name=motion_group_name,
1112
+ prim_path=prim_path,
1113
1113
  _request_auth=_request_auth,
1114
1114
  _content_type=_content_type,
1115
1115
  _headers=_headers,
@@ -1135,7 +1135,7 @@ class ManipulatorsMotionGroupApi:
1135
1135
  @validate_call
1136
1136
  async def remove_motion_group_with_http_info(
1137
1137
  self,
1138
- motion_group_name: StrictStr,
1138
+ prim_path: StrictStr,
1139
1139
  _request_timeout: Union[
1140
1140
  None,
1141
1141
  Annotated[StrictFloat, Field(gt=0)],
@@ -1153,8 +1153,8 @@ class ManipulatorsMotionGroupApi:
1153
1153
 
1154
1154
  Remove a motion_group
1155
1155
 
1156
- :param motion_group_name: (required)
1157
- :type motion_group_name: str
1156
+ :param prim_path: (required)
1157
+ :type prim_path: str
1158
1158
  :param _request_timeout: timeout setting for this request. If one
1159
1159
  number provided, it will be total request
1160
1160
  timeout. It can also be a pair (tuple) of
@@ -1178,7 +1178,7 @@ class ManipulatorsMotionGroupApi:
1178
1178
  """ # noqa: E501
1179
1179
 
1180
1180
  _param = self._remove_motion_group_serialize(
1181
- motion_group_name=motion_group_name,
1181
+ prim_path=prim_path,
1182
1182
  _request_auth=_request_auth,
1183
1183
  _content_type=_content_type,
1184
1184
  _headers=_headers,
@@ -1204,7 +1204,7 @@ class ManipulatorsMotionGroupApi:
1204
1204
  @validate_call
1205
1205
  async def remove_motion_group_without_preload_content(
1206
1206
  self,
1207
- motion_group_name: StrictStr,
1207
+ prim_path: StrictStr,
1208
1208
  _request_timeout: Union[
1209
1209
  None,
1210
1210
  Annotated[StrictFloat, Field(gt=0)],
@@ -1222,8 +1222,8 @@ class ManipulatorsMotionGroupApi:
1222
1222
 
1223
1223
  Remove a motion_group
1224
1224
 
1225
- :param motion_group_name: (required)
1226
- :type motion_group_name: str
1225
+ :param prim_path: (required)
1226
+ :type prim_path: str
1227
1227
  :param _request_timeout: timeout setting for this request. If one
1228
1228
  number provided, it will be total request
1229
1229
  timeout. It can also be a pair (tuple) of
@@ -1247,7 +1247,7 @@ class ManipulatorsMotionGroupApi:
1247
1247
  """ # noqa: E501
1248
1248
 
1249
1249
  _param = self._remove_motion_group_serialize(
1250
- motion_group_name=motion_group_name,
1250
+ prim_path=prim_path,
1251
1251
  _request_auth=_request_auth,
1252
1252
  _content_type=_content_type,
1253
1253
  _headers=_headers,
@@ -1268,7 +1268,7 @@ class ManipulatorsMotionGroupApi:
1268
1268
 
1269
1269
  def _remove_motion_group_serialize(
1270
1270
  self,
1271
- motion_group_name,
1271
+ prim_path,
1272
1272
  _request_auth,
1273
1273
  _content_type,
1274
1274
  _headers,
@@ -1288,8 +1288,8 @@ class ManipulatorsMotionGroupApi:
1288
1288
  _body_params: Optional[bytes] = None
1289
1289
 
1290
1290
  # process the path parameters
1291
- if motion_group_name is not None:
1292
- _path_params['motion_group_name'] = motion_group_name
1291
+ if prim_path is not None:
1292
+ _path_params['prim_path'] = prim_path
1293
1293
  # process the query parameters
1294
1294
  # process the header parameters
1295
1295
  # process the form parameters
@@ -1310,7 +1310,7 @@ class ManipulatorsMotionGroupApi:
1310
1310
 
1311
1311
  return self.api_client.param_serialize(
1312
1312
  method='DELETE',
1313
- resource_path='/manipulators/motion-groups/{motion_group_name}',
1313
+ resource_path='/manipulators/motion-groups/{prim_path}',
1314
1314
  path_params=_path_params,
1315
1315
  query_params=_query_params,
1316
1316
  header_params=_header_params,
@@ -1328,7 +1328,7 @@ class ManipulatorsMotionGroupApi:
1328
1328
  @validate_call
1329
1329
  async def update_motion_group_stream(
1330
1330
  self,
1331
- motion_group_name: StrictStr,
1331
+ prim_path: StrictStr,
1332
1332
  motion_stream_configuration: MotionStreamConfiguration,
1333
1333
  _request_timeout: Union[
1334
1334
  None,
@@ -1347,8 +1347,8 @@ class ManipulatorsMotionGroupApi:
1347
1347
 
1348
1348
  Update motion_group motion stream configuration. While it is possible to update the motion while simulating, its not guaranteed that all relations will directly pick up the new config
1349
1349
 
1350
- :param motion_group_name: (required)
1351
- :type motion_group_name: str
1350
+ :param prim_path: (required)
1351
+ :type prim_path: str
1352
1352
  :param motion_stream_configuration: (required)
1353
1353
  :type motion_stream_configuration: MotionStreamConfiguration
1354
1354
  :param _request_timeout: timeout setting for this request. If one
@@ -1374,7 +1374,7 @@ class ManipulatorsMotionGroupApi:
1374
1374
  """ # noqa: E501
1375
1375
 
1376
1376
  _param = self._update_motion_group_stream_serialize(
1377
- motion_group_name=motion_group_name,
1377
+ prim_path=prim_path,
1378
1378
  motion_stream_configuration=motion_stream_configuration,
1379
1379
  _request_auth=_request_auth,
1380
1380
  _content_type=_content_type,
@@ -1402,7 +1402,7 @@ class ManipulatorsMotionGroupApi:
1402
1402
  @validate_call
1403
1403
  async def update_motion_group_stream_with_http_info(
1404
1404
  self,
1405
- motion_group_name: StrictStr,
1405
+ prim_path: StrictStr,
1406
1406
  motion_stream_configuration: MotionStreamConfiguration,
1407
1407
  _request_timeout: Union[
1408
1408
  None,
@@ -1421,8 +1421,8 @@ class ManipulatorsMotionGroupApi:
1421
1421
 
1422
1422
  Update motion_group motion stream configuration. While it is possible to update the motion while simulating, its not guaranteed that all relations will directly pick up the new config
1423
1423
 
1424
- :param motion_group_name: (required)
1425
- :type motion_group_name: str
1424
+ :param prim_path: (required)
1425
+ :type prim_path: str
1426
1426
  :param motion_stream_configuration: (required)
1427
1427
  :type motion_stream_configuration: MotionStreamConfiguration
1428
1428
  :param _request_timeout: timeout setting for this request. If one
@@ -1448,7 +1448,7 @@ class ManipulatorsMotionGroupApi:
1448
1448
  """ # noqa: E501
1449
1449
 
1450
1450
  _param = self._update_motion_group_stream_serialize(
1451
- motion_group_name=motion_group_name,
1451
+ prim_path=prim_path,
1452
1452
  motion_stream_configuration=motion_stream_configuration,
1453
1453
  _request_auth=_request_auth,
1454
1454
  _content_type=_content_type,
@@ -1476,7 +1476,7 @@ class ManipulatorsMotionGroupApi:
1476
1476
  @validate_call
1477
1477
  async def update_motion_group_stream_without_preload_content(
1478
1478
  self,
1479
- motion_group_name: StrictStr,
1479
+ prim_path: StrictStr,
1480
1480
  motion_stream_configuration: MotionStreamConfiguration,
1481
1481
  _request_timeout: Union[
1482
1482
  None,
@@ -1495,8 +1495,8 @@ class ManipulatorsMotionGroupApi:
1495
1495
 
1496
1496
  Update motion_group motion stream configuration. While it is possible to update the motion while simulating, its not guaranteed that all relations will directly pick up the new config
1497
1497
 
1498
- :param motion_group_name: (required)
1499
- :type motion_group_name: str
1498
+ :param prim_path: (required)
1499
+ :type prim_path: str
1500
1500
  :param motion_stream_configuration: (required)
1501
1501
  :type motion_stream_configuration: MotionStreamConfiguration
1502
1502
  :param _request_timeout: timeout setting for this request. If one
@@ -1522,7 +1522,7 @@ class ManipulatorsMotionGroupApi:
1522
1522
  """ # noqa: E501
1523
1523
 
1524
1524
  _param = self._update_motion_group_stream_serialize(
1525
- motion_group_name=motion_group_name,
1525
+ prim_path=prim_path,
1526
1526
  motion_stream_configuration=motion_stream_configuration,
1527
1527
  _request_auth=_request_auth,
1528
1528
  _content_type=_content_type,
@@ -1545,7 +1545,7 @@ class ManipulatorsMotionGroupApi:
1545
1545
 
1546
1546
  def _update_motion_group_stream_serialize(
1547
1547
  self,
1548
- motion_group_name,
1548
+ prim_path,
1549
1549
  motion_stream_configuration,
1550
1550
  _request_auth,
1551
1551
  _content_type,
@@ -1566,8 +1566,8 @@ class ManipulatorsMotionGroupApi:
1566
1566
  _body_params: Optional[bytes] = None
1567
1567
 
1568
1568
  # process the path parameters
1569
- if motion_group_name is not None:
1570
- _path_params['motion_group_name'] = motion_group_name
1569
+ if prim_path is not None:
1570
+ _path_params['prim_path'] = prim_path
1571
1571
  # process the query parameters
1572
1572
  # process the header parameters
1573
1573
  # process the form parameters
@@ -1603,7 +1603,7 @@ class ManipulatorsMotionGroupApi:
1603
1603
 
1604
1604
  return self.api_client.param_serialize(
1605
1605
  method='PUT',
1606
- resource_path='/manipulators/motion-groups/{motion_group_name}',
1606
+ resource_path='/manipulators/motion-groups/{prim_path}',
1607
1607
  path_params=_path_params,
1608
1608
  query_params=_query_params,
1609
1609
  header_params=_header_params,
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'Wandelbots-IsaacSim-Api-Client/2.2.2'
93
+ self.user_agent = 'Wandelbots-IsaacSim-Api-Client/2.4.6'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  async def __aenter__(self):
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -489,8 +489,8 @@ class Configuration:
489
489
  return "Python SDK Debug Report:\n"\
490
490
  "OS: {env}\n"\
491
491
  "Python Version: {pyversion}\n"\
492
- "Version of the API: 2.2.2\n"\
493
- "SDK Package Version: 2.2.2".\
492
+ "Version of the API: 2.4.6\n"\
493
+ "SDK Package Version: 2.4.6".\
494
494
  format(env=sys.platform, pyversion=sys.version)
495
495
 
496
496
  def get_host_settings(self) -> List[HostSetting]:
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -6,7 +6,7 @@
6
6
 
7
7
  A microservice-based framework for managing Omniverse functionalities
8
8
 
9
- The version of the OpenAPI document: 2.2.2
9
+ The version of the OpenAPI document: 2.4.6
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
12
12
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  A microservice-based framework for managing Omniverse functionalities
7
7
 
8
- The version of the OpenAPI document: 2.2.2
8
+ The version of the OpenAPI document: 2.4.6
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.