waldur-api-client 8.0.8.dev180__py3-none-any.whl → 8.0.8.dev182__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.
- waldur_api_client/llms-full.txt +1 -1
- waldur_api_client/llms.txt +1 -1
- waldur_api_client/models/__init__.py +2 -0
- waldur_api_client/models/identity_bridge_request_gender_enum.py +10 -0
- waldur_api_client/models/identity_bridge_request_request.py +16 -5
- {waldur_api_client-8.0.8.dev180.dist-info → waldur_api_client-8.0.8.dev182.dist-info}/METADATA +1 -1
- {waldur_api_client-8.0.8.dev180.dist-info → waldur_api_client-8.0.8.dev182.dist-info}/RECORD +9 -8
- {waldur_api_client-8.0.8.dev180.dist-info → waldur_api_client-8.0.8.dev182.dist-info}/WHEEL +0 -0
- {waldur_api_client-8.0.8.dev180.dist-info → waldur_api_client-8.0.8.dev182.dist-info}/licenses/LICENSE +0 -0
waldur_api_client/llms-full.txt
CHANGED
waldur_api_client/llms.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Waldur API
|
|
2
2
|
|
|
3
|
-
> Auto-generated Python SDK for the Waldur API (version 8.0.8-rc.2-dev.
|
|
3
|
+
> Auto-generated Python SDK for the Waldur API (version 8.0.8-rc.2-dev.20260415021649).
|
|
4
4
|
> This SDK is generated from an OpenAPI specification using openapi-python-client.
|
|
5
5
|
|
|
6
6
|
## Quick Start
|
|
@@ -691,6 +691,7 @@ from .hypervisor_summary import HypervisorSummary
|
|
|
691
691
|
from .identity_bridge_allowed_fields import IdentityBridgeAllowedFields
|
|
692
692
|
from .identity_bridge_remove_request import IdentityBridgeRemoveRequest
|
|
693
693
|
from .identity_bridge_remove_result import IdentityBridgeRemoveResult
|
|
694
|
+
from .identity_bridge_request_gender_enum import IdentityBridgeRequestGenderEnum
|
|
694
695
|
from .identity_bridge_request_request import IdentityBridgeRequestRequest
|
|
695
696
|
from .identity_bridge_result import IdentityBridgeResult
|
|
696
697
|
from .identity_bridge_stats import IdentityBridgeStats
|
|
@@ -2990,6 +2991,7 @@ __all__ = (
|
|
|
2990
2991
|
"IdentityBridgeAllowedFields",
|
|
2991
2992
|
"IdentityBridgeRemoveRequest",
|
|
2992
2993
|
"IdentityBridgeRemoveResult",
|
|
2994
|
+
"IdentityBridgeRequestGenderEnum",
|
|
2993
2995
|
"IdentityBridgeRequestRequest",
|
|
2994
2996
|
"IdentityBridgeResult",
|
|
2995
2997
|
"IdentityBridgeStats",
|
|
@@ -6,6 +6,7 @@ from attrs import define as _attrs_define
|
|
|
6
6
|
from attrs import field as _attrs_field
|
|
7
7
|
from dateutil.parser import isoparse
|
|
8
8
|
|
|
9
|
+
from ..models.identity_bridge_request_gender_enum import IdentityBridgeRequestGenderEnum
|
|
9
10
|
from ..types import UNSET, Unset
|
|
10
11
|
|
|
11
12
|
T = TypeVar("T", bound="IdentityBridgeRequestRequest")
|
|
@@ -25,7 +26,7 @@ class IdentityBridgeRequestRequest:
|
|
|
25
26
|
civil_number (Union[Unset, str]):
|
|
26
27
|
phone_number (Union[Unset, str]):
|
|
27
28
|
identity_source (Union[Unset, str]):
|
|
28
|
-
gender (Union[None, Unset
|
|
29
|
+
gender (Union[IdentityBridgeRequestGenderEnum, None, Unset]):
|
|
29
30
|
personal_title (Union[Unset, str]):
|
|
30
31
|
birth_date (Union[None, Unset, datetime.date]):
|
|
31
32
|
place_of_birth (Union[Unset, str]):
|
|
@@ -48,7 +49,7 @@ class IdentityBridgeRequestRequest:
|
|
|
48
49
|
civil_number: Union[Unset, str] = UNSET
|
|
49
50
|
phone_number: Union[Unset, str] = UNSET
|
|
50
51
|
identity_source: Union[Unset, str] = UNSET
|
|
51
|
-
gender: Union[None, Unset
|
|
52
|
+
gender: Union[IdentityBridgeRequestGenderEnum, None, Unset] = UNSET
|
|
52
53
|
personal_title: Union[Unset, str] = UNSET
|
|
53
54
|
birth_date: Union[None, Unset, datetime.date] = UNSET
|
|
54
55
|
place_of_birth: Union[Unset, str] = UNSET
|
|
@@ -84,9 +85,11 @@ class IdentityBridgeRequestRequest:
|
|
|
84
85
|
|
|
85
86
|
identity_source = self.identity_source
|
|
86
87
|
|
|
87
|
-
gender: Union[None, Unset,
|
|
88
|
+
gender: Union[None, Unset, str]
|
|
88
89
|
if isinstance(self.gender, Unset):
|
|
89
90
|
gender = UNSET
|
|
91
|
+
elif isinstance(self.gender, IdentityBridgeRequestGenderEnum):
|
|
92
|
+
gender = self.gender.value
|
|
90
93
|
else:
|
|
91
94
|
gender = self.gender
|
|
92
95
|
|
|
@@ -192,12 +195,20 @@ class IdentityBridgeRequestRequest:
|
|
|
192
195
|
|
|
193
196
|
identity_source = d.pop("identity_source", UNSET)
|
|
194
197
|
|
|
195
|
-
def _parse_gender(data: object) -> Union[None, Unset
|
|
198
|
+
def _parse_gender(data: object) -> Union[IdentityBridgeRequestGenderEnum, None, Unset]:
|
|
196
199
|
if data is None:
|
|
197
200
|
return data
|
|
198
201
|
if isinstance(data, Unset):
|
|
199
202
|
return data
|
|
200
|
-
|
|
203
|
+
try:
|
|
204
|
+
if not isinstance(data, str):
|
|
205
|
+
raise TypeError()
|
|
206
|
+
gender_type_0 = IdentityBridgeRequestGenderEnum(data)
|
|
207
|
+
|
|
208
|
+
return gender_type_0
|
|
209
|
+
except: # noqa: E722
|
|
210
|
+
pass
|
|
211
|
+
return cast(Union[IdentityBridgeRequestGenderEnum, None, Unset], data)
|
|
201
212
|
|
|
202
213
|
gender = _parse_gender(d.pop("gender", UNSET))
|
|
203
214
|
|
{waldur_api_client-8.0.8.dev180.dist-info → waldur_api_client-8.0.8.dev182.dist-info}/RECORD
RENAMED
|
@@ -2743,9 +2743,9 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_
|
|
|
2743
2743
|
waldur_api_client/api-map.md,sha256=jvX7SrPUhBd4ntWa2bXQnCDmTVZW5qU2nhchs9RQhls,345436
|
|
2744
2744
|
waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
|
|
2745
2745
|
waldur_api_client/errors.py,sha256=UYHn64tnzy2ITApxz6jHW9KXUusxkd5iuqyKyCw5cq8,571
|
|
2746
|
-
waldur_api_client/llms-full.txt,sha256=
|
|
2747
|
-
waldur_api_client/llms.txt,sha256=
|
|
2748
|
-
waldur_api_client/models/__init__.py,sha256=
|
|
2746
|
+
waldur_api_client/llms-full.txt,sha256=oq6PPM3yfr6grC02qj1WTdb_iIi2Wjm2vNomG-xDOAI,771138
|
|
2747
|
+
waldur_api_client/llms.txt,sha256=v9Wr74S1siVzL9nsEv8akSkzau5Q28RB3iclbj5u2Ag,13725
|
|
2748
|
+
waldur_api_client/models/__init__.py,sha256=hJi2Uimoo_6DTFPmzfhncIgSs0K45cpwoS2njX_aOK0,217200
|
|
2749
2749
|
waldur_api_client/models/access_subnet.py,sha256=unDj1xpRJWj9Ia51twedRU9HcuWf4MYVnTCz-WGLTJk,2145
|
|
2750
2750
|
waldur_api_client/models/access_subnet_request.py,sha256=_OM-mgOmhOnbwqR9425rgdN-KWUxvz2ZgK20rGTeTrA,2005
|
|
2751
2751
|
waldur_api_client/models/access_type_enum.py,sha256=3zgFJNUOtaUpp3KGDZoplZ9fnZxm3cacSNLwgn2gosA,207
|
|
@@ -3417,7 +3417,8 @@ waldur_api_client/models/hypervisor_summary.py,sha256=mJxlWkkzFWSPltYvYbQI-kPEuA
|
|
|
3417
3417
|
waldur_api_client/models/identity_bridge_allowed_fields.py,sha256=N35hU_exCuTikou5HU51_dvEfX3UlYEOi0IHagQHDDw,1658
|
|
3418
3418
|
waldur_api_client/models/identity_bridge_remove_request.py,sha256=T7fLQsyLkm13sIxgJwbzUOvV8npBKpHezgKQtv_u9lM,1857
|
|
3419
3419
|
waldur_api_client/models/identity_bridge_remove_result.py,sha256=oaY5J7If_F4s7hIr20PRVpnLVjxZlFhznbvHnzXTol8,1768
|
|
3420
|
-
waldur_api_client/models/
|
|
3420
|
+
waldur_api_client/models/identity_bridge_request_gender_enum.py,sha256=es6PQh_JmRfBKdGnbmLAHx1hjOEJVt4l8IpUyyAiMD4,200
|
|
3421
|
+
waldur_api_client/models/identity_bridge_request_request.py,sha256=W8JV05xYQXaamUQ-C_xZqvye2MlGd1PoeYcN6StVCqI,10242
|
|
3421
3422
|
waldur_api_client/models/identity_bridge_result.py,sha256=21e67DPVSapop474tEzyyj73nOqRX_j_xcGsNXC7UfA,1973
|
|
3422
3423
|
waldur_api_client/models/identity_bridge_stats.py,sha256=h-u-zUQJdiE0fFFoC1Ksxg88n_QGoENijyb2zhMIj5s,4781
|
|
3423
3424
|
waldur_api_client/models/identity_bridge_user_status.py,sha256=lvYVubkG3ezDei6dQ1MRWR5zoGpQyiuqRilKZ-OTD6A,3419
|
|
@@ -4942,7 +4943,7 @@ waldur_api_client/models/zammadarticletype_enum.py,sha256=BPDZq_hO1gK6eSi4Z_2s_p
|
|
|
4942
4943
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
4943
4944
|
waldur_api_client/types.py,sha256=ZSn3mJeG6_KoPRQVkzh_-bMkaCht3nO3bkQg0tt1aN8,1381
|
|
4944
4945
|
waldur_api_client/utils.py,sha256=nzWBKV8bhpN3jdzAv8I5FuAdfMwAvmZPiNAD05e0_9c,907
|
|
4945
|
-
waldur_api_client-8.0.8.
|
|
4946
|
-
waldur_api_client-8.0.8.
|
|
4947
|
-
waldur_api_client-8.0.8.
|
|
4948
|
-
waldur_api_client-8.0.8.
|
|
4946
|
+
waldur_api_client-8.0.8.dev182.dist-info/METADATA,sha256=brunIJVjxdMVepIJ8M_clyGFfi29GEFJWSGmIXWuoZY,5925
|
|
4947
|
+
waldur_api_client-8.0.8.dev182.dist-info/WHEEL,sha256=Vz2fHgx6HFtSwhs8KvkHLqH5Ea4w1_rner5uNVGCeIE,88
|
|
4948
|
+
waldur_api_client-8.0.8.dev182.dist-info/licenses/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
4949
|
+
waldur_api_client-8.0.8.dev182.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|