wandelbots_api_client 26.6.0.dev51__py3-none-any.whl → 26.6.0.dev53__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/v2/__init__.py +1 -1
- wandelbots_api_client/v2/api/nova_cloud_api.py +199 -0
- wandelbots_api_client/v2/api_client.py +1 -1
- wandelbots_api_client/v2/configuration.py +1 -1
- wandelbots_api_client/v2/models/__init__.py +3 -0
- wandelbots_api_client/v2/models/cartesian_limits.py +10 -6
- wandelbots_api_client/v2/models/cloud_status.py +104 -0
- wandelbots_api_client/v2/models/cloud_status_checks.py +93 -0
- wandelbots_api_client/v2/models/cloud_status_errors.py +93 -0
- wandelbots_api_client/v2/models/joint_limits.py +6 -5
- wandelbots_api_client/v2/models/limit_range.py +3 -3
- wandelbots_api_client/v2_pydantic/__init__.py +1 -1
- wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py +199 -0
- wandelbots_api_client/v2_pydantic/api_client.py +1 -1
- wandelbots_api_client/v2_pydantic/configuration.py +1 -1
- wandelbots_api_client/v2_pydantic/models/__init__.py +8 -2
- wandelbots_api_client/v2_pydantic/models/models.py +72 -1
- {wandelbots_api_client-26.6.0.dev51.dist-info → wandelbots_api_client-26.6.0.dev53.dist-info}/METADATA +2 -2
- {wandelbots_api_client-26.6.0.dev51.dist-info → wandelbots_api_client-26.6.0.dev53.dist-info}/RECORD +20 -17
- {wandelbots_api_client-26.6.0.dev51.dist-info → wandelbots_api_client-26.6.0.dev53.dist-info}/WHEEL +0 -0
|
@@ -29,6 +29,7 @@ from wandelbots_api_client.v2.models.cloud_config_status import CloudConfigStatu
|
|
|
29
29
|
from wandelbots_api_client.v2.models.cloud_connection_request import CloudConnectionRequest
|
|
30
30
|
from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnected import CloudDisconnectionStatusDisconnected
|
|
31
31
|
from wandelbots_api_client.v2.models.cloud_registration_success_response import CloudRegistrationSuccessResponse
|
|
32
|
+
from wandelbots_api_client.v2.models.cloud_status import CloudStatus
|
|
32
33
|
|
|
33
34
|
from wandelbots_api_client.v2.api_client import ApiClient, RequestSerialized
|
|
34
35
|
from wandelbots_api_client.v2.api_response import ApiResponse
|
|
@@ -561,6 +562,204 @@ class NOVACloudApi:
|
|
|
561
562
|
_request_auth=_request_auth,
|
|
562
563
|
)
|
|
563
564
|
|
|
565
|
+
@validate_call
|
|
566
|
+
async def get_cloud_status(
|
|
567
|
+
self,
|
|
568
|
+
_request_timeout: Union[
|
|
569
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
570
|
+
] = None,
|
|
571
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
572
|
+
_content_type: Optional[StrictStr] = None,
|
|
573
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
574
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
575
|
+
) -> CloudStatus:
|
|
576
|
+
"""Get Connection Status
|
|
577
|
+
|
|
578
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
579
|
+
|
|
580
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
581
|
+
number provided, it will be total request
|
|
582
|
+
timeout. It can also be a pair (tuple) of
|
|
583
|
+
(connection, read) timeouts.
|
|
584
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
585
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
586
|
+
request; this effectively ignores the
|
|
587
|
+
authentication in the spec for a single request.
|
|
588
|
+
:type _request_auth: dict, optional
|
|
589
|
+
:param _content_type: force content-type for the request.
|
|
590
|
+
:type _content_type: str, Optional
|
|
591
|
+
:param _headers: set to override the headers for a single
|
|
592
|
+
request; this effectively ignores the headers
|
|
593
|
+
in the spec for a single request.
|
|
594
|
+
:type _headers: dict, optional
|
|
595
|
+
:param _host_index: set to override the host_index for a single
|
|
596
|
+
request; this effectively ignores the host_index
|
|
597
|
+
in the spec for a single request.
|
|
598
|
+
:type _host_index: int, optional
|
|
599
|
+
:return: Returns the result object.
|
|
600
|
+
""" # noqa: E501
|
|
601
|
+
|
|
602
|
+
_param = self._get_cloud_status_serialize(
|
|
603
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
604
|
+
)
|
|
605
|
+
|
|
606
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
607
|
+
"200": "CloudStatus",
|
|
608
|
+
}
|
|
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 get_cloud_status_with_http_info(
|
|
619
|
+
self,
|
|
620
|
+
_request_timeout: Union[
|
|
621
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
622
|
+
] = None,
|
|
623
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
624
|
+
_content_type: Optional[StrictStr] = None,
|
|
625
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
626
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
627
|
+
) -> ApiResponse[CloudStatus]:
|
|
628
|
+
"""Get Connection Status
|
|
629
|
+
|
|
630
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
631
|
+
|
|
632
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
633
|
+
number provided, it will be total request
|
|
634
|
+
timeout. It can also be a pair (tuple) of
|
|
635
|
+
(connection, read) timeouts.
|
|
636
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
637
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
638
|
+
request; this effectively ignores the
|
|
639
|
+
authentication in the spec for a single request.
|
|
640
|
+
:type _request_auth: dict, optional
|
|
641
|
+
:param _content_type: force content-type for the request.
|
|
642
|
+
:type _content_type: str, Optional
|
|
643
|
+
:param _headers: set to override the headers for a single
|
|
644
|
+
request; this effectively ignores the headers
|
|
645
|
+
in the spec for a single request.
|
|
646
|
+
:type _headers: dict, optional
|
|
647
|
+
:param _host_index: set to override the host_index for a single
|
|
648
|
+
request; this effectively ignores the host_index
|
|
649
|
+
in the spec for a single request.
|
|
650
|
+
:type _host_index: int, optional
|
|
651
|
+
:return: Returns the result object.
|
|
652
|
+
""" # noqa: E501
|
|
653
|
+
|
|
654
|
+
_param = self._get_cloud_status_serialize(
|
|
655
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
656
|
+
)
|
|
657
|
+
|
|
658
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
659
|
+
"200": "CloudStatus",
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
663
|
+
await response_data.read()
|
|
664
|
+
return self.api_client.response_deserialize(
|
|
665
|
+
response_data=response_data,
|
|
666
|
+
response_types_map=_response_types_map,
|
|
667
|
+
)
|
|
668
|
+
|
|
669
|
+
@validate_call
|
|
670
|
+
async def get_cloud_status_without_preload_content(
|
|
671
|
+
self,
|
|
672
|
+
_request_timeout: Union[
|
|
673
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
674
|
+
] = None,
|
|
675
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
676
|
+
_content_type: Optional[StrictStr] = None,
|
|
677
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
678
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
679
|
+
) -> RESTResponseType:
|
|
680
|
+
"""Get Connection Status
|
|
681
|
+
|
|
682
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
683
|
+
|
|
684
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
685
|
+
number provided, it will be total request
|
|
686
|
+
timeout. It can also be a pair (tuple) of
|
|
687
|
+
(connection, read) timeouts.
|
|
688
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
689
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
690
|
+
request; this effectively ignores the
|
|
691
|
+
authentication in the spec for a single request.
|
|
692
|
+
:type _request_auth: dict, optional
|
|
693
|
+
:param _content_type: force content-type for the request.
|
|
694
|
+
:type _content_type: str, Optional
|
|
695
|
+
:param _headers: set to override the headers for a single
|
|
696
|
+
request; this effectively ignores the headers
|
|
697
|
+
in the spec for a single request.
|
|
698
|
+
:type _headers: dict, optional
|
|
699
|
+
:param _host_index: set to override the host_index for a single
|
|
700
|
+
request; this effectively ignores the host_index
|
|
701
|
+
in the spec for a single request.
|
|
702
|
+
:type _host_index: int, optional
|
|
703
|
+
:return: Returns the result object.
|
|
704
|
+
""" # noqa: E501
|
|
705
|
+
|
|
706
|
+
_param = self._get_cloud_status_serialize(
|
|
707
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
708
|
+
)
|
|
709
|
+
|
|
710
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
711
|
+
"200": "CloudStatus",
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
715
|
+
return response_data.response
|
|
716
|
+
|
|
717
|
+
def _get_cloud_status_serialize(
|
|
718
|
+
self,
|
|
719
|
+
_request_auth,
|
|
720
|
+
_content_type,
|
|
721
|
+
_headers,
|
|
722
|
+
_host_index,
|
|
723
|
+
) -> RequestSerialized:
|
|
724
|
+
|
|
725
|
+
_host = None
|
|
726
|
+
|
|
727
|
+
_collection_formats: Dict[str, str] = {}
|
|
728
|
+
|
|
729
|
+
_path_params: Dict[str, str] = {}
|
|
730
|
+
_query_params: List[Tuple[str, str]] = []
|
|
731
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
732
|
+
_form_params: List[Tuple[str, str]] = []
|
|
733
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
734
|
+
_body_params: Optional[bytes] = None
|
|
735
|
+
|
|
736
|
+
# process the path parameters
|
|
737
|
+
# process the query parameters
|
|
738
|
+
# process the header parameters
|
|
739
|
+
# process the form parameters
|
|
740
|
+
# process the body parameter
|
|
741
|
+
|
|
742
|
+
# set the HTTP header `Accept`
|
|
743
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
744
|
+
|
|
745
|
+
# authentication setting
|
|
746
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
747
|
+
|
|
748
|
+
return self.api_client.param_serialize(
|
|
749
|
+
method="GET",
|
|
750
|
+
resource_path="/experimental/cloud/status",
|
|
751
|
+
path_params=_path_params,
|
|
752
|
+
query_params=_query_params,
|
|
753
|
+
header_params=_header_params,
|
|
754
|
+
body=_body_params,
|
|
755
|
+
post_params=_form_params,
|
|
756
|
+
files=_files,
|
|
757
|
+
auth_settings=_auth_settings,
|
|
758
|
+
collection_formats=_collection_formats,
|
|
759
|
+
_host=_host,
|
|
760
|
+
_request_auth=_request_auth,
|
|
761
|
+
)
|
|
762
|
+
|
|
564
763
|
@validate_call
|
|
565
764
|
async def get_nova_cloud_config(
|
|
566
765
|
self,
|
|
@@ -85,7 +85,7 @@ class ApiClient:
|
|
|
85
85
|
self.default_headers[header_name] = header_value
|
|
86
86
|
self.cookie = cookie
|
|
87
87
|
# Set default User-Agent.
|
|
88
|
-
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev53"
|
|
89
89
|
self.client_side_validation = configuration.client_side_validation
|
|
90
90
|
|
|
91
91
|
async def __aenter__(self):
|
|
@@ -512,7 +512,7 @@ class Configuration:
|
|
|
512
512
|
"OS: {env}\n"
|
|
513
513
|
"Python Version: {pyversion}\n"
|
|
514
514
|
"Version of the API: 2.6.0 dev\n"
|
|
515
|
-
"SDK Package Version: 26.6.0.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev53".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -84,6 +84,9 @@ from wandelbots_api_client.v2.models.cloud_disconnection_error import CloudDisco
|
|
|
84
84
|
from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnected import CloudDisconnectionStatusDisconnected
|
|
85
85
|
from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnecting import CloudDisconnectionStatusDisconnecting
|
|
86
86
|
from wandelbots_api_client.v2.models.cloud_registration_success_response import CloudRegistrationSuccessResponse
|
|
87
|
+
from wandelbots_api_client.v2.models.cloud_status import CloudStatus
|
|
88
|
+
from wandelbots_api_client.v2.models.cloud_status_checks import CloudStatusChecks
|
|
89
|
+
from wandelbots_api_client.v2.models.cloud_status_errors import CloudStatusErrors
|
|
87
90
|
from wandelbots_api_client.v2.models.collider import Collider
|
|
88
91
|
from wandelbots_api_client.v2.models.collider_shape import ColliderShape
|
|
89
92
|
from wandelbots_api_client.v2.models.collider_value import ColliderValue
|
|
@@ -28,15 +28,19 @@ class CartesianLimits(BaseModel):
|
|
|
28
28
|
CartesianLimits
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
|
|
31
|
-
velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
-
acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Cartesian velocity limit in mm/s.")
|
|
32
|
+
acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Cartesian acceleration limit in mm/s².")
|
|
33
33
|
jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
34
|
-
default=None,
|
|
34
|
+
default=None,
|
|
35
|
+
description="Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
36
|
+
)
|
|
37
|
+
orientation_velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Orientation velocity limit in rad/s.")
|
|
38
|
+
orientation_acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
39
|
+
default=None, description="Orientation acceleration limit in rad/s²."
|
|
35
40
|
)
|
|
36
|
-
orientation_velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
37
|
-
orientation_acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
38
41
|
orientation_jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
39
|
-
default=None,
|
|
42
|
+
default=None,
|
|
43
|
+
description="Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
40
44
|
)
|
|
41
45
|
__properties: ClassVar[List[str]] = [
|
|
42
46
|
"velocity",
|
|
@@ -0,0 +1,104 @@
|
|
|
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: 2.6.0 dev
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from datetime import datetime
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from wandelbots_api_client.v2.models.cloud_status_checks import CloudStatusChecks
|
|
23
|
+
from wandelbots_api_client.v2.models.cloud_status_errors import CloudStatusErrors
|
|
24
|
+
from typing import Optional, Set
|
|
25
|
+
from typing_extensions import Self
|
|
26
|
+
from pydantic_core import to_jsonable_python
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class CloudStatus(BaseModel):
|
|
30
|
+
"""
|
|
31
|
+
CloudStatus
|
|
32
|
+
""" # noqa: E501
|
|
33
|
+
|
|
34
|
+
ready: StrictBool = Field(
|
|
35
|
+
description="Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails."
|
|
36
|
+
)
|
|
37
|
+
checks: CloudStatusChecks
|
|
38
|
+
errors: CloudStatusErrors
|
|
39
|
+
checked_at: datetime = Field(description="Timestamp at which the reachability checks were performed (RFC 3339).")
|
|
40
|
+
__properties: ClassVar[List[str]] = ["ready", "checks", "errors", "checked_at"]
|
|
41
|
+
|
|
42
|
+
model_config = ConfigDict(
|
|
43
|
+
validate_by_name=True,
|
|
44
|
+
validate_by_alias=True,
|
|
45
|
+
validate_assignment=True,
|
|
46
|
+
protected_namespaces=(),
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
def to_str(self) -> str:
|
|
50
|
+
"""Returns the string representation of the model using alias"""
|
|
51
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
52
|
+
|
|
53
|
+
def to_json(self) -> str:
|
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
|
55
|
+
return json.dumps(to_jsonable_python(self.to_dict()))
|
|
56
|
+
|
|
57
|
+
@classmethod
|
|
58
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
59
|
+
"""Create an instance of CloudStatus from a JSON string"""
|
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
|
61
|
+
|
|
62
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
63
|
+
"""Return the dictionary representation of the model using alias.
|
|
64
|
+
|
|
65
|
+
This has the following differences from calling pydantic's
|
|
66
|
+
`self.model_dump(by_alias=True)`:
|
|
67
|
+
|
|
68
|
+
* `None` is only added to the output dict for nullable fields that
|
|
69
|
+
were set at model initialization. Other fields with value `None`
|
|
70
|
+
are ignored.
|
|
71
|
+
"""
|
|
72
|
+
excluded_fields: Set[str] = set([])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of checks
|
|
80
|
+
if self.checks:
|
|
81
|
+
_dict["checks"] = self.checks.to_dict()
|
|
82
|
+
# override the default output from pydantic by calling `to_dict()` of errors
|
|
83
|
+
if self.errors:
|
|
84
|
+
_dict["errors"] = self.errors.to_dict()
|
|
85
|
+
return _dict
|
|
86
|
+
|
|
87
|
+
@classmethod
|
|
88
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
89
|
+
"""Create an instance of CloudStatus from a dict"""
|
|
90
|
+
if obj is None:
|
|
91
|
+
return None
|
|
92
|
+
|
|
93
|
+
if not isinstance(obj, dict):
|
|
94
|
+
return cls.model_validate(obj)
|
|
95
|
+
|
|
96
|
+
_obj = cls.model_validate(
|
|
97
|
+
{
|
|
98
|
+
"ready": obj.get("ready"),
|
|
99
|
+
"checks": CloudStatusChecks.from_dict(obj["checks"]) if obj.get("checks") is not None else None,
|
|
100
|
+
"errors": CloudStatusErrors.from_dict(obj["errors"]) if obj.get("errors") is not None else None,
|
|
101
|
+
"checked_at": obj.get("checked_at"),
|
|
102
|
+
}
|
|
103
|
+
)
|
|
104
|
+
return _obj
|
|
@@ -0,0 +1,93 @@
|
|
|
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: 2.6.0 dev
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, StrictBool
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from typing import Optional, Set
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
from pydantic_core import to_jsonable_python
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class CloudStatusChecks(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
|
|
31
|
+
is_configured: Optional[StrictBool] = None
|
|
32
|
+
can_connect_nats: Optional[StrictBool] = None
|
|
33
|
+
can_ping_nats: Optional[StrictBool] = None
|
|
34
|
+
can_reach_openfga: Optional[StrictBool] = None
|
|
35
|
+
__properties: ClassVar[List[str]] = ["is_configured", "can_connect_nats", "can_ping_nats", "can_reach_openfga"]
|
|
36
|
+
|
|
37
|
+
model_config = ConfigDict(
|
|
38
|
+
validate_by_name=True,
|
|
39
|
+
validate_by_alias=True,
|
|
40
|
+
validate_assignment=True,
|
|
41
|
+
protected_namespaces=(),
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""Returns the JSON representation of the model using alias"""
|
|
50
|
+
return json.dumps(to_jsonable_python(self.to_dict()))
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
54
|
+
"""Create an instance of CloudStatusChecks from a JSON string"""
|
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
|
56
|
+
|
|
57
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
58
|
+
"""Return the dictionary representation of the model using alias.
|
|
59
|
+
|
|
60
|
+
This has the following differences from calling pydantic's
|
|
61
|
+
`self.model_dump(by_alias=True)`:
|
|
62
|
+
|
|
63
|
+
* `None` is only added to the output dict for nullable fields that
|
|
64
|
+
were set at model initialization. Other fields with value `None`
|
|
65
|
+
are ignored.
|
|
66
|
+
"""
|
|
67
|
+
excluded_fields: Set[str] = set([])
|
|
68
|
+
|
|
69
|
+
_dict = self.model_dump(
|
|
70
|
+
by_alias=True,
|
|
71
|
+
exclude=excluded_fields,
|
|
72
|
+
exclude_none=True,
|
|
73
|
+
)
|
|
74
|
+
return _dict
|
|
75
|
+
|
|
76
|
+
@classmethod
|
|
77
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
78
|
+
"""Create an instance of CloudStatusChecks from a dict"""
|
|
79
|
+
if obj is None:
|
|
80
|
+
return None
|
|
81
|
+
|
|
82
|
+
if not isinstance(obj, dict):
|
|
83
|
+
return cls.model_validate(obj)
|
|
84
|
+
|
|
85
|
+
_obj = cls.model_validate(
|
|
86
|
+
{
|
|
87
|
+
"is_configured": obj.get("is_configured"),
|
|
88
|
+
"can_connect_nats": obj.get("can_connect_nats"),
|
|
89
|
+
"can_ping_nats": obj.get("can_ping_nats"),
|
|
90
|
+
"can_reach_openfga": obj.get("can_reach_openfga"),
|
|
91
|
+
}
|
|
92
|
+
)
|
|
93
|
+
return _obj
|
|
@@ -0,0 +1,93 @@
|
|
|
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: 2.6.0 dev
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
import pprint
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
import json
|
|
18
|
+
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
|
+
from typing import Optional, Set
|
|
22
|
+
from typing_extensions import Self
|
|
23
|
+
from pydantic_core import to_jsonable_python
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class CloudStatusErrors(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
Failure reason for each failed check, to help diagnose what is wrong.
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
|
|
31
|
+
is_configured: Optional[StrictStr] = None
|
|
32
|
+
can_connect_nats: Optional[StrictStr] = None
|
|
33
|
+
can_ping_nats: Optional[StrictStr] = None
|
|
34
|
+
can_reach_openfga: Optional[StrictStr] = None
|
|
35
|
+
__properties: ClassVar[List[str]] = ["is_configured", "can_connect_nats", "can_ping_nats", "can_reach_openfga"]
|
|
36
|
+
|
|
37
|
+
model_config = ConfigDict(
|
|
38
|
+
validate_by_name=True,
|
|
39
|
+
validate_by_alias=True,
|
|
40
|
+
validate_assignment=True,
|
|
41
|
+
protected_namespaces=(),
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
def to_str(self) -> str:
|
|
45
|
+
"""Returns the string representation of the model using alias"""
|
|
46
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
47
|
+
|
|
48
|
+
def to_json(self) -> str:
|
|
49
|
+
"""Returns the JSON representation of the model using alias"""
|
|
50
|
+
return json.dumps(to_jsonable_python(self.to_dict()))
|
|
51
|
+
|
|
52
|
+
@classmethod
|
|
53
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
54
|
+
"""Create an instance of CloudStatusErrors from a JSON string"""
|
|
55
|
+
return cls.from_dict(json.loads(json_str))
|
|
56
|
+
|
|
57
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
58
|
+
"""Return the dictionary representation of the model using alias.
|
|
59
|
+
|
|
60
|
+
This has the following differences from calling pydantic's
|
|
61
|
+
`self.model_dump(by_alias=True)`:
|
|
62
|
+
|
|
63
|
+
* `None` is only added to the output dict for nullable fields that
|
|
64
|
+
were set at model initialization. Other fields with value `None`
|
|
65
|
+
are ignored.
|
|
66
|
+
"""
|
|
67
|
+
excluded_fields: Set[str] = set([])
|
|
68
|
+
|
|
69
|
+
_dict = self.model_dump(
|
|
70
|
+
by_alias=True,
|
|
71
|
+
exclude=excluded_fields,
|
|
72
|
+
exclude_none=True,
|
|
73
|
+
)
|
|
74
|
+
return _dict
|
|
75
|
+
|
|
76
|
+
@classmethod
|
|
77
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
78
|
+
"""Create an instance of CloudStatusErrors from a dict"""
|
|
79
|
+
if obj is None:
|
|
80
|
+
return None
|
|
81
|
+
|
|
82
|
+
if not isinstance(obj, dict):
|
|
83
|
+
return cls.model_validate(obj)
|
|
84
|
+
|
|
85
|
+
_obj = cls.model_validate(
|
|
86
|
+
{
|
|
87
|
+
"is_configured": obj.get("is_configured"),
|
|
88
|
+
"can_connect_nats": obj.get("can_connect_nats"),
|
|
89
|
+
"can_ping_nats": obj.get("can_ping_nats"),
|
|
90
|
+
"can_reach_openfga": obj.get("can_reach_openfga"),
|
|
91
|
+
}
|
|
92
|
+
)
|
|
93
|
+
return _obj
|
|
@@ -29,13 +29,14 @@ class JointLimits(BaseModel):
|
|
|
29
29
|
JointLimits
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
|
|
32
|
-
position: Optional[LimitRange] = None
|
|
33
|
-
velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
34
|
-
acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
+
position: Optional[LimitRange] = Field(default=None, description="Joint position limits in rad.")
|
|
33
|
+
velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint velocity limit in rad/s.")
|
|
34
|
+
acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint acceleration limit in rad/s².")
|
|
35
35
|
jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
36
|
-
default=None,
|
|
36
|
+
default=None,
|
|
37
|
+
description="Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
37
38
|
)
|
|
38
|
-
torque: Optional[Union[StrictFloat, StrictInt]] = None
|
|
39
|
+
torque: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint torque limit in Nm.")
|
|
39
40
|
__properties: ClassVar[List[str]] = ["position", "velocity", "acceleration", "jerk", "torque"]
|
|
40
41
|
|
|
41
42
|
model_config = ConfigDict(
|
|
@@ -16,7 +16,7 @@ import pprint
|
|
|
16
16
|
import re # noqa: F401
|
|
17
17
|
import json
|
|
18
18
|
|
|
19
|
-
from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
20
20
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
21
21
|
from typing import Optional, Set
|
|
22
22
|
from typing_extensions import Self
|
|
@@ -28,8 +28,8 @@ class LimitRange(BaseModel):
|
|
|
28
28
|
The upper_limit must be greater then the lower_limit.
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
|
|
31
|
-
lower_limit: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
-
upper_limit: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
lower_limit: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Lower position limit in rad.")
|
|
32
|
+
upper_limit: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Upper position limit in rad.")
|
|
33
33
|
__properties: ClassVar[List[str]] = ["lower_limit", "upper_limit"]
|
|
34
34
|
|
|
35
35
|
model_config = ConfigDict(
|
|
@@ -29,6 +29,7 @@ from wandelbots_api_client.v2_pydantic.models import CloudConfigStatus
|
|
|
29
29
|
from wandelbots_api_client.v2_pydantic.models import CloudConnectionRequest
|
|
30
30
|
from wandelbots_api_client.v2_pydantic.models import CloudDisconnectionStatusDisconnected
|
|
31
31
|
from wandelbots_api_client.v2_pydantic.models import CloudRegistrationSuccessResponse
|
|
32
|
+
from wandelbots_api_client.v2_pydantic.models import CloudStatus
|
|
32
33
|
|
|
33
34
|
from wandelbots_api_client.v2_pydantic.api_client import ApiClient, RequestSerialized
|
|
34
35
|
from wandelbots_api_client.v2_pydantic.api_response import ApiResponse
|
|
@@ -561,6 +562,204 @@ class NOVACloudApi:
|
|
|
561
562
|
_request_auth=_request_auth,
|
|
562
563
|
)
|
|
563
564
|
|
|
565
|
+
@validate_call
|
|
566
|
+
async def get_cloud_status(
|
|
567
|
+
self,
|
|
568
|
+
_request_timeout: Union[
|
|
569
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
570
|
+
] = None,
|
|
571
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
572
|
+
_content_type: Optional[StrictStr] = None,
|
|
573
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
574
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
575
|
+
) -> CloudStatus:
|
|
576
|
+
"""Get Connection Status
|
|
577
|
+
|
|
578
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
579
|
+
|
|
580
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
581
|
+
number provided, it will be total request
|
|
582
|
+
timeout. It can also be a pair (tuple) of
|
|
583
|
+
(connection, read) timeouts.
|
|
584
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
585
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
586
|
+
request; this effectively ignores the
|
|
587
|
+
authentication in the spec for a single request.
|
|
588
|
+
:type _request_auth: dict, optional
|
|
589
|
+
:param _content_type: force content-type for the request.
|
|
590
|
+
:type _content_type: str, Optional
|
|
591
|
+
:param _headers: set to override the headers for a single
|
|
592
|
+
request; this effectively ignores the headers
|
|
593
|
+
in the spec for a single request.
|
|
594
|
+
:type _headers: dict, optional
|
|
595
|
+
:param _host_index: set to override the host_index for a single
|
|
596
|
+
request; this effectively ignores the host_index
|
|
597
|
+
in the spec for a single request.
|
|
598
|
+
:type _host_index: int, optional
|
|
599
|
+
:return: Returns the result object.
|
|
600
|
+
""" # noqa: E501
|
|
601
|
+
|
|
602
|
+
_param = self._get_cloud_status_serialize(
|
|
603
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
604
|
+
)
|
|
605
|
+
|
|
606
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
607
|
+
"200": "CloudStatus",
|
|
608
|
+
}
|
|
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 get_cloud_status_with_http_info(
|
|
619
|
+
self,
|
|
620
|
+
_request_timeout: Union[
|
|
621
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
622
|
+
] = None,
|
|
623
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
624
|
+
_content_type: Optional[StrictStr] = None,
|
|
625
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
626
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
627
|
+
) -> ApiResponse[CloudStatus]:
|
|
628
|
+
"""Get Connection Status
|
|
629
|
+
|
|
630
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
631
|
+
|
|
632
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
633
|
+
number provided, it will be total request
|
|
634
|
+
timeout. It can also be a pair (tuple) of
|
|
635
|
+
(connection, read) timeouts.
|
|
636
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
637
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
638
|
+
request; this effectively ignores the
|
|
639
|
+
authentication in the spec for a single request.
|
|
640
|
+
:type _request_auth: dict, optional
|
|
641
|
+
:param _content_type: force content-type for the request.
|
|
642
|
+
:type _content_type: str, Optional
|
|
643
|
+
:param _headers: set to override the headers for a single
|
|
644
|
+
request; this effectively ignores the headers
|
|
645
|
+
in the spec for a single request.
|
|
646
|
+
:type _headers: dict, optional
|
|
647
|
+
:param _host_index: set to override the host_index for a single
|
|
648
|
+
request; this effectively ignores the host_index
|
|
649
|
+
in the spec for a single request.
|
|
650
|
+
:type _host_index: int, optional
|
|
651
|
+
:return: Returns the result object.
|
|
652
|
+
""" # noqa: E501
|
|
653
|
+
|
|
654
|
+
_param = self._get_cloud_status_serialize(
|
|
655
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
656
|
+
)
|
|
657
|
+
|
|
658
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
659
|
+
"200": "CloudStatus",
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
663
|
+
await response_data.read()
|
|
664
|
+
return self.api_client.response_deserialize(
|
|
665
|
+
response_data=response_data,
|
|
666
|
+
response_types_map=_response_types_map,
|
|
667
|
+
)
|
|
668
|
+
|
|
669
|
+
@validate_call
|
|
670
|
+
async def get_cloud_status_without_preload_content(
|
|
671
|
+
self,
|
|
672
|
+
_request_timeout: Union[
|
|
673
|
+
None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
|
|
674
|
+
] = None,
|
|
675
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
676
|
+
_content_type: Optional[StrictStr] = None,
|
|
677
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
678
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
679
|
+
) -> RESTResponseType:
|
|
680
|
+
"""Get Connection Status
|
|
681
|
+
|
|
682
|
+
**Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
|
|
683
|
+
|
|
684
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
685
|
+
number provided, it will be total request
|
|
686
|
+
timeout. It can also be a pair (tuple) of
|
|
687
|
+
(connection, read) timeouts.
|
|
688
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
689
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
690
|
+
request; this effectively ignores the
|
|
691
|
+
authentication in the spec for a single request.
|
|
692
|
+
:type _request_auth: dict, optional
|
|
693
|
+
:param _content_type: force content-type for the request.
|
|
694
|
+
:type _content_type: str, Optional
|
|
695
|
+
:param _headers: set to override the headers for a single
|
|
696
|
+
request; this effectively ignores the headers
|
|
697
|
+
in the spec for a single request.
|
|
698
|
+
:type _headers: dict, optional
|
|
699
|
+
:param _host_index: set to override the host_index for a single
|
|
700
|
+
request; this effectively ignores the host_index
|
|
701
|
+
in the spec for a single request.
|
|
702
|
+
:type _host_index: int, optional
|
|
703
|
+
:return: Returns the result object.
|
|
704
|
+
""" # noqa: E501
|
|
705
|
+
|
|
706
|
+
_param = self._get_cloud_status_serialize(
|
|
707
|
+
_request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
|
|
708
|
+
)
|
|
709
|
+
|
|
710
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
711
|
+
"200": "CloudStatus",
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
|
|
715
|
+
return response_data.response
|
|
716
|
+
|
|
717
|
+
def _get_cloud_status_serialize(
|
|
718
|
+
self,
|
|
719
|
+
_request_auth,
|
|
720
|
+
_content_type,
|
|
721
|
+
_headers,
|
|
722
|
+
_host_index,
|
|
723
|
+
) -> RequestSerialized:
|
|
724
|
+
|
|
725
|
+
_host = None
|
|
726
|
+
|
|
727
|
+
_collection_formats: Dict[str, str] = {}
|
|
728
|
+
|
|
729
|
+
_path_params: Dict[str, str] = {}
|
|
730
|
+
_query_params: List[Tuple[str, str]] = []
|
|
731
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
732
|
+
_form_params: List[Tuple[str, str]] = []
|
|
733
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
734
|
+
_body_params: Optional[bytes] = None
|
|
735
|
+
|
|
736
|
+
# process the path parameters
|
|
737
|
+
# process the query parameters
|
|
738
|
+
# process the header parameters
|
|
739
|
+
# process the form parameters
|
|
740
|
+
# process the body parameter
|
|
741
|
+
|
|
742
|
+
# set the HTTP header `Accept`
|
|
743
|
+
_header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
|
|
744
|
+
|
|
745
|
+
# authentication setting
|
|
746
|
+
_auth_settings: List[str] = ["BearerAuth"]
|
|
747
|
+
|
|
748
|
+
return self.api_client.param_serialize(
|
|
749
|
+
method="GET",
|
|
750
|
+
resource_path="/experimental/cloud/status",
|
|
751
|
+
path_params=_path_params,
|
|
752
|
+
query_params=_query_params,
|
|
753
|
+
header_params=_header_params,
|
|
754
|
+
body=_body_params,
|
|
755
|
+
post_params=_form_params,
|
|
756
|
+
files=_files,
|
|
757
|
+
auth_settings=_auth_settings,
|
|
758
|
+
collection_formats=_collection_formats,
|
|
759
|
+
_host=_host,
|
|
760
|
+
_request_auth=_request_auth,
|
|
761
|
+
)
|
|
762
|
+
|
|
564
763
|
@validate_call
|
|
565
764
|
async def get_nova_cloud_config(
|
|
566
765
|
self,
|
|
@@ -85,7 +85,7 @@ class ApiClient:
|
|
|
85
85
|
self.default_headers[header_name] = header_value
|
|
86
86
|
self.cookie = cookie
|
|
87
87
|
# Set default User-Agent.
|
|
88
|
-
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev53"
|
|
89
89
|
self.client_side_validation = configuration.client_side_validation
|
|
90
90
|
|
|
91
91
|
async def __aenter__(self):
|
|
@@ -512,7 +512,7 @@ class Configuration:
|
|
|
512
512
|
"OS: {env}\n"
|
|
513
513
|
"Python Version: {pyversion}\n"
|
|
514
514
|
"Version of the API: 2.6.0 dev\n"
|
|
515
|
-
"SDK Package Version: 26.6.0.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev53".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
|
-
# filename:
|
|
3
|
-
# timestamp: 2026-07-
|
|
2
|
+
# filename: tmp4vui4_qz
|
|
3
|
+
# timestamp: 2026-07-03T07:17:32+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -72,6 +72,9 @@ from .models import (
|
|
|
72
72
|
CloudRegistrationSuccessResponse,
|
|
73
73
|
CloudResponse,
|
|
74
74
|
CloudResponse1,
|
|
75
|
+
CloudStatus,
|
|
76
|
+
CloudStatusChecks,
|
|
77
|
+
CloudStatusErrors,
|
|
75
78
|
Collider,
|
|
76
79
|
ColliderDictionary,
|
|
77
80
|
ColliderValue,
|
|
@@ -510,6 +513,9 @@ __all__ = [
|
|
|
510
513
|
"CloudRegistrationSuccessResponse",
|
|
511
514
|
"CloudResponse",
|
|
512
515
|
"CloudResponse1",
|
|
516
|
+
"CloudStatus",
|
|
517
|
+
"CloudStatusChecks",
|
|
518
|
+
"CloudStatusErrors",
|
|
513
519
|
"Collider",
|
|
514
520
|
"ColliderDictionary",
|
|
515
521
|
"ColliderValue",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: models.yaml
|
|
3
|
-
# timestamp: 2026-07-
|
|
3
|
+
# timestamp: 2026-07-03T07:17:32+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
|
|
@@ -1914,37 +1914,73 @@ class LimitRange(BaseModel):
|
|
|
1914
1914
|
"""
|
|
1915
1915
|
|
|
1916
1916
|
lower_limit: float | None = None
|
|
1917
|
+
"""
|
|
1918
|
+
Lower position limit in rad.
|
|
1919
|
+
"""
|
|
1917
1920
|
upper_limit: float | None = None
|
|
1921
|
+
"""
|
|
1922
|
+
Upper position limit in rad.
|
|
1923
|
+
"""
|
|
1918
1924
|
|
|
1919
1925
|
|
|
1920
1926
|
class JointLimits(BaseModel):
|
|
1921
1927
|
position: LimitRange | None = None
|
|
1928
|
+
"""
|
|
1929
|
+
Joint position limits in rad.
|
|
1930
|
+
"""
|
|
1922
1931
|
velocity: float | None = None
|
|
1932
|
+
"""
|
|
1933
|
+
Joint velocity limit in rad/s.
|
|
1934
|
+
"""
|
|
1923
1935
|
acceleration: float | None = None
|
|
1936
|
+
"""
|
|
1937
|
+
Joint acceleration limit in rad/s².
|
|
1938
|
+
"""
|
|
1924
1939
|
jerk: float | None = None
|
|
1925
1940
|
"""
|
|
1941
|
+
Joint jerk limit in rad/s³.
|
|
1942
|
+
|
|
1926
1943
|
> **NOTE**
|
|
1927
1944
|
>
|
|
1928
1945
|
> This limit type is experimental and its behavior may change in future releases.
|
|
1929
1946
|
|
|
1930
1947
|
"""
|
|
1931
1948
|
torque: float | None = None
|
|
1949
|
+
"""
|
|
1950
|
+
Joint torque limit in Nm.
|
|
1951
|
+
"""
|
|
1932
1952
|
|
|
1933
1953
|
|
|
1934
1954
|
class CartesianLimits(BaseModel):
|
|
1935
1955
|
velocity: float | None = None
|
|
1956
|
+
"""
|
|
1957
|
+
Cartesian velocity limit in mm/s.
|
|
1958
|
+
"""
|
|
1936
1959
|
acceleration: float | None = None
|
|
1960
|
+
"""
|
|
1961
|
+
Cartesian acceleration limit in mm/s².
|
|
1962
|
+
"""
|
|
1937
1963
|
jerk: float | None = None
|
|
1938
1964
|
"""
|
|
1965
|
+
Cartesian jerk limit in mm/s³.
|
|
1966
|
+
|
|
1939
1967
|
> **NOTE**
|
|
1940
1968
|
>
|
|
1941
1969
|
> This limit type is experimental and its behavior may change in future releases.
|
|
1942
1970
|
|
|
1943
1971
|
"""
|
|
1944
1972
|
orientation_velocity: float | None = None
|
|
1973
|
+
"""
|
|
1974
|
+
Orientation velocity limit in rad/s.
|
|
1975
|
+
"""
|
|
1945
1976
|
orientation_acceleration: float | None = None
|
|
1977
|
+
"""
|
|
1978
|
+
Orientation acceleration limit in rad/s².
|
|
1979
|
+
"""
|
|
1946
1980
|
orientation_jerk: float | None = None
|
|
1947
1981
|
"""
|
|
1982
|
+
Orientation jerk limit in rad/s³.
|
|
1983
|
+
|
|
1948
1984
|
> **NOTE**
|
|
1949
1985
|
>
|
|
1950
1986
|
> This limit type is experimental and its behavior may change in future releases.
|
|
@@ -6019,6 +6055,41 @@ class CloudDisconnectionError(BaseModel):
|
|
|
6019
6055
|
error: CloudConnectionErrorLeafnodeRestartTimeout
|
|
6020
6056
|
|
|
6021
6057
|
|
|
6058
|
+
class CloudStatusChecks(BaseModel):
|
|
6059
|
+
"""
|
|
6060
|
+
Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
|
|
6061
|
+
"""
|
|
6062
|
+
|
|
6063
|
+
is_configured: bool | None = None
|
|
6064
|
+
can_connect_nats: bool | None = None
|
|
6065
|
+
can_ping_nats: bool | None = None
|
|
6066
|
+
can_reach_openfga: bool | None = None
|
|
6067
|
+
|
|
6068
|
+
|
|
6069
|
+
class CloudStatusErrors(BaseModel):
|
|
6070
|
+
"""
|
|
6071
|
+
Failure reason for each failed check, to help diagnose what is wrong.
|
|
6072
|
+
"""
|
|
6073
|
+
|
|
6074
|
+
is_configured: str | None = None
|
|
6075
|
+
can_connect_nats: str | None = None
|
|
6076
|
+
can_ping_nats: str | None = None
|
|
6077
|
+
can_reach_openfga: str | None = None
|
|
6078
|
+
|
|
6079
|
+
|
|
6080
|
+
class CloudStatus(BaseModel):
|
|
6081
|
+
ready: bool = Field(..., examples=[False])
|
|
6082
|
+
"""
|
|
6083
|
+
Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
|
|
6084
|
+
"""
|
|
6085
|
+
checks: CloudStatusChecks
|
|
6086
|
+
errors: CloudStatusErrors
|
|
6087
|
+
checked_at: AwareDatetime = Field(..., examples=["2026-06-23T12:34:56.000Z"])
|
|
6088
|
+
"""
|
|
6089
|
+
Timestamp at which the reachability checks were performed (RFC 3339).
|
|
6090
|
+
"""
|
|
6091
|
+
|
|
6092
|
+
|
|
6022
6093
|
class MotionGroupInfo(BaseModel):
|
|
6023
6094
|
motion_group: str
|
|
6024
6095
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wandelbots_api_client
|
|
3
|
-
Version: 26.6.0.
|
|
3
|
+
Version: 26.6.0.dev53
|
|
4
4
|
Summary: Wandelbots Python Client: Interact with robots in an easy and intuitive way.
|
|
5
5
|
Author: Copyright (c) 2025 Wandelbots GmbH
|
|
6
6
|
Author-email: Copyright (c) 2025 Wandelbots GmbH <contact@wandelbots.com>
|
|
@@ -31,7 +31,7 @@ Description-Content-Type: text/markdown
|
|
|
31
31
|
Interact with robots in an easy and intuitive way.
|
|
32
32
|
|
|
33
33
|
- Compatible API version: 2.6.0 dev (can be found at the home screen of your instance -> API)
|
|
34
|
-
- Package version: 26.6.0.
|
|
34
|
+
- Package version: 26.6.0.dev53
|
|
35
35
|
|
|
36
36
|
## Requirements.
|
|
37
37
|
Python >=3.9, Python < 4.0
|
{wandelbots_api_client-26.6.0.dev51.dist-info → wandelbots_api_client-26.6.0.dev53.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
wandelbots_api_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
wandelbots_api_client/authorization.py,sha256=9AuS2mZ4a5fmbumMuK52rhgMvCj_hPrfaAIayj1Ecks,7914
|
|
3
|
-
wandelbots_api_client/v2/__init__.py,sha256=
|
|
3
|
+
wandelbots_api_client/v2/__init__.py,sha256=DrDdDgyt_z1Sv3lUz8dNYFoIMIp9yFFi9LRqMJ1lG2U,1032
|
|
4
4
|
wandelbots_api_client/v2/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
|
|
5
5
|
wandelbots_api_client/v2/api/application_api.py,sha256=nVY1ZFCeazTJOou0UKhtAaFURbixCIFAl-AIAFvn4-8,69559
|
|
6
6
|
wandelbots_api_client/v2/api/bus_inputs_outputs_api.py,sha256=3V_7OHnjzC0LnS-jAnEhb_Yv90TGnAP-egURffcUIcs,267414
|
|
@@ -12,7 +12,7 @@ wandelbots_api_client/v2/api/kinematics_api.py,sha256=F_utXvXRXBghgTxvFmrT3b9j3s
|
|
|
12
12
|
wandelbots_api_client/v2/api/license_api.py,sha256=7o_JyRCOvC0_Wdh6_rnm9C2bts8-vTUJR5iI8Yq05Gs,39538
|
|
13
13
|
wandelbots_api_client/v2/api/motion_group_api.py,sha256=CByNFNC4GrQTyXlQbltQ2vC9PZpyBn4sWtRYykRdNJQ,32988
|
|
14
14
|
wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=C6DZken6vr23QD9kL9-dAe4Vi4xFX3A9jme50uFDZ6I,156302
|
|
15
|
-
wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=
|
|
15
|
+
wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=ZLo3BE0gk79salFAN8iFnUoy9QZHi8G2mpj28uXLtQY,48633
|
|
16
16
|
wandelbots_api_client/v2/api/program_api.py,sha256=8wzRU05gL_6Gjezm9yJ3e4wHq7ADeKL0yCCaNQGL4A4,44678
|
|
17
17
|
wandelbots_api_client/v2/api/robot_configurations_api.py,sha256=6klutuPMM7Hi4fmp1v5wnoNrYGuQ-d2kHpq7hwVS7zw,22115
|
|
18
18
|
wandelbots_api_client/v2/api/session_api.py,sha256=qXBZyKdhP3Xpe8DxlbtbiVW8wAGoaIc_oydZL7jjlZY,11450
|
|
@@ -27,11 +27,11 @@ wandelbots_api_client/v2/api/version_api.py,sha256=1dAhtFz73CmB6F8fMOgsLGjCWq4w6
|
|
|
27
27
|
wandelbots_api_client/v2/api/virtual_controller_api.py,sha256=nQ_rkwRufKGKGHB3QIjm7i771tqKRJGlt8nGxWupMPI,291431
|
|
28
28
|
wandelbots_api_client/v2/api/virtual_controller_behavior_api.py,sha256=ByeJFFto88jrhAu8LpXAuHosXXIKpks5rSY8ZOWUdG4,41046
|
|
29
29
|
wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py,sha256=OcQg8mxoQqZLHpByvSY3iqWNLia8rsxlvdpwlc02wb0,42027
|
|
30
|
-
wandelbots_api_client/v2/api_client.py,sha256=
|
|
30
|
+
wandelbots_api_client/v2/api_client.py,sha256=9SWbkiGQ6SaQGIYhPRshoLfSI2hCrXXQM1BnJkVYtu8,27803
|
|
31
31
|
wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
32
|
-
wandelbots_api_client/v2/configuration.py,sha256=
|
|
32
|
+
wandelbots_api_client/v2/configuration.py,sha256=qBN6dHqv4a0JY5WjEXqLM4GFYpQ6bs2Q_ZI0p2jrpTs,18047
|
|
33
33
|
wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
34
|
-
wandelbots_api_client/v2/models/__init__.py,sha256=
|
|
34
|
+
wandelbots_api_client/v2/models/__init__.py,sha256=ThlfWpgeycjbjxIS-pi-GWE5DoATVWPDq2L8E3sTIiQ,36901
|
|
35
35
|
wandelbots_api_client/v2/models/abb_confdata.py,sha256=lXK9rOsDRyCc2urbmVISftopF5LEbANjZ1R-1jXeLNg,3378
|
|
36
36
|
wandelbots_api_client/v2/models/abb_configured_pose.py,sha256=Lg-eaUD80RzyQRshY3vm5BIq3_qFPZdz3kQk0ue9w_w,3144
|
|
37
37
|
wandelbots_api_client/v2/models/abb_controller.py,sha256=P7QY_bKvz5fbW_nub4o2yROATVzb8xNr4cBetw5reSk,3741
|
|
@@ -71,7 +71,7 @@ wandelbots_api_client/v2/models/bus_ios_state.py,sha256=st831QL96BOETvr1rIZdtN0M
|
|
|
71
71
|
wandelbots_api_client/v2/models/bus_ios_state_enum.py,sha256=qoB4vwa_spVIz3tCp9MTmYWNR7vAsTdAmQc0-wSf1NM,914
|
|
72
72
|
wandelbots_api_client/v2/models/capability_entry.py,sha256=Ywsx3KkQbo3o7GyQKvf7fh9iy6PvZvl0cAhs5NVCDWY,2943
|
|
73
73
|
wandelbots_api_client/v2/models/capsule.py,sha256=dXpffO6bfkaB42noxwZ0ZLVDzA7XA0UvyNGt4bTFlfY,3156
|
|
74
|
-
wandelbots_api_client/v2/models/cartesian_limits.py,sha256=
|
|
74
|
+
wandelbots_api_client/v2/models/cartesian_limits.py,sha256=_dbhDq1YPr1Ir6CnoEKwNyf8vaYcckXmdRt0tp65-f0,3995
|
|
75
75
|
wandelbots_api_client/v2/models/cartesian_velocity.py,sha256=N5vDStSHZq9UapPi1SPdfMTlV-mO32WO8XmA34BBxgo,3017
|
|
76
76
|
wandelbots_api_client/v2/models/cell.py,sha256=SLSGOxSjNHjfcsovR8IXJX35eZGdfbHBDM7TkG0ANkU,5615
|
|
77
77
|
wandelbots_api_client/v2/models/cloud_config_status.py,sha256=3ekBU8MA8h7vLC8xMhTrQFhhmqjfGI_VkH1GTGcoOik,6716
|
|
@@ -97,6 +97,9 @@ wandelbots_api_client/v2/models/cloud_disconnection_error.py,sha256=XG7BHHfyDHPx
|
|
|
97
97
|
wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py,sha256=xCM0pQDhe6NC0Eh1OTdLQS20DppGYzvRQbd8oMimCG0,2748
|
|
98
98
|
wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py,sha256=2_cqQkdGDMUSWWiwj5XNTpb-1wvJV_TCAxs0tIx6kFE,2754
|
|
99
99
|
wandelbots_api_client/v2/models/cloud_registration_success_response.py,sha256=PxRYoJrT_CKAK1TvzXKGuFNCgwzYsIX4RuKEPh_atUE,2615
|
|
100
|
+
wandelbots_api_client/v2/models/cloud_status.py,sha256=Q-r-7D2BXDYo9ntlQ4lXHMkh__b-SW40ykmMxa_cft4,3623
|
|
101
|
+
wandelbots_api_client/v2/models/cloud_status_checks.py,sha256=GlAhhswvThnLpoICtMVOt-rQDbIj8zPgxnt4cpA7aV4,2999
|
|
102
|
+
wandelbots_api_client/v2/models/cloud_status_errors.py,sha256=zuUElXBz6P6eRqauV_-5dsjW7SH31z3os4RkCeIdFjU,2958
|
|
100
103
|
wandelbots_api_client/v2/models/collider.py,sha256=2Kj9-IIJyZLSJizJ2G7qhojgRjYHrQuJfqIsSwkKG4w,3868
|
|
101
104
|
wandelbots_api_client/v2/models/collider_shape.py,sha256=lNAo31_AwAk5qeY26y8R9ZYYpSPrHs7oUX-3nG2niBA,11012
|
|
102
105
|
wandelbots_api_client/v2/models/collider_value.py,sha256=TdUMBJMv8rAzeOR-XNCxONaUkS1pxO865BLYWUf_0Mg,3204
|
|
@@ -226,7 +229,7 @@ wandelbots_api_client/v2/models/jogging_paused_near_singularity.py,sha256=kQMj1E
|
|
|
226
229
|
wandelbots_api_client/v2/models/jogging_paused_on_io.py,sha256=QTea7znfVtneFQP6_1QUAS31hGexTnorDgggv17llKc,2686
|
|
227
230
|
wandelbots_api_client/v2/models/jogging_running.py,sha256=2kfib7qWWn7MpxguvPsrOlL2xadWdOckeuT-UfO_cVE,2642
|
|
228
231
|
wandelbots_api_client/v2/models/joint_limit_exceeded_error.py,sha256=aADZMwn8pY3yYlxrVbB1pjLJtc8h6xvNn7E3Cq4iLyY,3377
|
|
229
|
-
wandelbots_api_client/v2/models/joint_limits.py,sha256=
|
|
232
|
+
wandelbots_api_client/v2/models/joint_limits.py,sha256=aNop7lkaMNWPns12XABCLLPxJsLo_dOH_0eECxjX-1Y,3698
|
|
230
233
|
wandelbots_api_client/v2/models/joint_ptp_motion.py,sha256=zxcg1RQrFgMntZnmaY4_UwPWf8H_WfpcIxwRU5SweyE,3784
|
|
231
234
|
wandelbots_api_client/v2/models/joint_trajectory.py,sha256=S6I2q6zl4GYmTgHO2zBKhygfzgirsc5NEjvhgAll0VU,3061
|
|
232
235
|
wandelbots_api_client/v2/models/joint_type_enum.py,sha256=-lNqYhM-IdqO5woXrdv9TzZFQIbTH9ufo8Bf7k2_lTo,723
|
|
@@ -249,7 +252,7 @@ wandelbots_api_client/v2/models/kuka_status_and_turn_bits.py,sha256=Iow1RV8fhpVs
|
|
|
249
252
|
wandelbots_api_client/v2/models/license.py,sha256=5E8t2S2IEPb4SHEQwQ4Ms38plOJHp8TkmRaahvFMI6Y,4591
|
|
250
253
|
wandelbots_api_client/v2/models/license_status.py,sha256=F5CIzHj88A9lSJUKQAdb8CdIDIgBgo_SmTDUUpviFkM,2552
|
|
251
254
|
wandelbots_api_client/v2/models/license_status_enum.py,sha256=XrhkLwPTbQOTPzj5S8cLxsHaXDBZp3nQiFwJckUsTzg,795
|
|
252
|
-
wandelbots_api_client/v2/models/limit_range.py,sha256=
|
|
255
|
+
wandelbots_api_client/v2/models/limit_range.py,sha256=SeLp7a08p2DPY31cPdwb74XrcMg9-zGXFYqIjxoBIQE,2749
|
|
253
256
|
wandelbots_api_client/v2/models/limit_set.py,sha256=aXg4feOVDlmmANpDUb7CsmkfuMI2foTlYIpM6GftfEY,4490
|
|
254
257
|
wandelbots_api_client/v2/models/limits_override.py,sha256=_aC4-UGq7YOn0ns06CbghnaywEDA_k6lU4v9HlgLtAY,5533
|
|
255
258
|
wandelbots_api_client/v2/models/link_chain_value.py,sha256=RJCt4rBgWRoeYIqKhlzbUL8hRfjjzTZN5N_ZORBub5Q,3712
|
|
@@ -437,7 +440,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
|
|
|
437
440
|
wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
|
|
438
441
|
wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
442
|
wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
|
|
440
|
-
wandelbots_api_client/v2_pydantic/__init__.py,sha256=
|
|
443
|
+
wandelbots_api_client/v2_pydantic/__init__.py,sha256=oPKLQ3nYmzijqRwr2zvGoYvnMOotXfmuvbGP0yTiI2s,1041
|
|
441
444
|
wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
|
|
442
445
|
wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
|
|
443
446
|
wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=CKmqk0PsMcT0Cp-2zEQDIS65dTWJJonJ83vkCAWEjn8,267356
|
|
@@ -449,7 +452,7 @@ wandelbots_api_client/v2_pydantic/api/kinematics_api.py,sha256=kbOn-NaGtHtPoEJeF
|
|
|
449
452
|
wandelbots_api_client/v2_pydantic/api/license_api.py,sha256=YIglT4yT4C_Rl4UIegWXwPpD2T7vGaGOaJha8POQ02U,39544
|
|
450
453
|
wandelbots_api_client/v2_pydantic/api/motion_group_api.py,sha256=X8yc2jwOB87mh1XkGJLyKXverOWrBkElNzSoC1qefQU,32989
|
|
451
454
|
wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=G2oBtaa1eLwSmfAPUDpgQoBos85zZY8jNxGI0TkAslU,156246
|
|
452
|
-
wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=
|
|
455
|
+
wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=IbJPl6EPuq1SNWLAyRFFLpPBFE601YVgr_t_vg3nsIo,48571
|
|
453
456
|
wandelbots_api_client/v2_pydantic/api/program_api.py,sha256=3NkIGAfWvKNNocckgH-672f_RLa9_oUYv5zS_fBCxR4,44690
|
|
454
457
|
wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py,sha256=dcNwNhPc8uf6SOOPUH30eODK4sO1R611fdnR62Gs0AY,22104
|
|
455
458
|
wandelbots_api_client/v2_pydantic/api/session_api.py,sha256=wPHSQJnGbNlnZSx1Ljffm30C412oCJdJWFydd_LmNmo,11469
|
|
@@ -464,14 +467,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
|
|
|
464
467
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
|
|
465
468
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
|
|
466
469
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
|
|
467
|
-
wandelbots_api_client/v2_pydantic/api_client.py,sha256=
|
|
470
|
+
wandelbots_api_client/v2_pydantic/api_client.py,sha256=OvkpOomBMZylQlmleFzDrx60oDaLt2OuyfRapMMZxM8,27857
|
|
468
471
|
wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
469
|
-
wandelbots_api_client/v2_pydantic/configuration.py,sha256=
|
|
472
|
+
wandelbots_api_client/v2_pydantic/configuration.py,sha256=EGsuu6l4sbrSp8L1z9n_e2aY6KfyosAMFarS9s3jdKo,18056
|
|
470
473
|
wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
471
|
-
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=
|
|
472
|
-
wandelbots_api_client/v2_pydantic/models/models.py,sha256=
|
|
474
|
+
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=oyDl7J3MJW7i_hGDhcGQnGLaSXB91dYmWJMTIjFT0IM,22659
|
|
475
|
+
wandelbots_api_client/v2_pydantic/models/models.py,sha256=4trCLBPBFCEVOACE0Xylr1B4DDN1LteFcdWRSontulg,212758
|
|
473
476
|
wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
474
477
|
wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
|
|
475
|
-
wandelbots_api_client-26.6.0.
|
|
476
|
-
wandelbots_api_client-26.6.0.
|
|
477
|
-
wandelbots_api_client-26.6.0.
|
|
478
|
+
wandelbots_api_client-26.6.0.dev53.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
|
|
479
|
+
wandelbots_api_client-26.6.0.dev53.dist-info/METADATA,sha256=JigFk3Lb8HAUdJjCgs0Q6agqUQEE56QfD3MOOkVcqXg,1411
|
|
480
|
+
wandelbots_api_client-26.6.0.dev53.dist-info/RECORD,,
|
{wandelbots_api_client-26.6.0.dev51.dist-info → wandelbots_api_client-26.6.0.dev53.dist-info}/WHEEL
RENAMED
|
File without changes
|