waldur-api-client 8.0.9.dev330__py3-none-any.whl → 8.0.9.dev332__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/constance_settings.py +9 -0
- waldur_api_client/models/constance_settings_request.py +9 -0
- waldur_api_client/models/constance_settings_request_form.py +9 -0
- waldur_api_client/models/constance_settings_request_multipart.py +14 -0
- waldur_api_client/models/user.py +10 -0
- waldur_api_client/models/user_field_enum.py +1 -0
- waldur_api_client/models/user_me.py +10 -0
- waldur_api_client/models/user_me_field_enum.py +1 -0
- {waldur_api_client-8.0.9.dev330.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/METADATA +1 -1
- {waldur_api_client-8.0.9.dev330.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/RECORD +14 -14
- {waldur_api_client-8.0.9.dev330.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/WHEEL +0 -0
- {waldur_api_client-8.0.9.dev330.dist-info → waldur_api_client-8.0.9.dev332.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.9-rc.
|
|
3
|
+
> Auto-generated Python SDK for the Waldur API (version 8.0.9-rc.25.dev.20260610233347).
|
|
4
4
|
> This SDK is generated from an OpenAPI specification using openapi-python-client.
|
|
5
5
|
|
|
6
6
|
## Quick Start
|
|
@@ -75,6 +75,7 @@ class ConstanceSettings:
|
|
|
75
75
|
k8s_job_timeout (Union[Unset, int]):
|
|
76
76
|
enable_strict_check_accepting_invitation (Union[Unset, bool]):
|
|
77
77
|
invitation_disable_multiple_roles (Union[Unset, bool]):
|
|
78
|
+
only_one_project_manager (Union[Unset, bool]):
|
|
78
79
|
default_idp (Union[BlankEnum, DEFAULTIDPEnum, Unset]):
|
|
79
80
|
docs_url (Union[Unset, str]):
|
|
80
81
|
short_page_title (Union[Unset, str]):
|
|
@@ -369,6 +370,7 @@ class ConstanceSettings:
|
|
|
369
370
|
k8s_job_timeout: Union[Unset, int] = UNSET
|
|
370
371
|
enable_strict_check_accepting_invitation: Union[Unset, bool] = UNSET
|
|
371
372
|
invitation_disable_multiple_roles: Union[Unset, bool] = UNSET
|
|
373
|
+
only_one_project_manager: Union[Unset, bool] = UNSET
|
|
372
374
|
default_idp: Union[BlankEnum, DEFAULTIDPEnum, Unset] = UNSET
|
|
373
375
|
docs_url: Union[Unset, str] = UNSET
|
|
374
376
|
short_page_title: Union[Unset, str] = UNSET
|
|
@@ -711,6 +713,8 @@ class ConstanceSettings:
|
|
|
711
713
|
|
|
712
714
|
invitation_disable_multiple_roles = self.invitation_disable_multiple_roles
|
|
713
715
|
|
|
716
|
+
only_one_project_manager = self.only_one_project_manager
|
|
717
|
+
|
|
714
718
|
default_idp: Union[Unset, str]
|
|
715
719
|
if isinstance(self.default_idp, Unset):
|
|
716
720
|
default_idp = UNSET
|
|
@@ -1508,6 +1512,8 @@ class ConstanceSettings:
|
|
|
1508
1512
|
field_dict["ENABLE_STRICT_CHECK_ACCEPTING_INVITATION"] = enable_strict_check_accepting_invitation
|
|
1509
1513
|
if invitation_disable_multiple_roles is not UNSET:
|
|
1510
1514
|
field_dict["INVITATION_DISABLE_MULTIPLE_ROLES"] = invitation_disable_multiple_roles
|
|
1515
|
+
if only_one_project_manager is not UNSET:
|
|
1516
|
+
field_dict["ONLY_ONE_PROJECT_MANAGER"] = only_one_project_manager
|
|
1511
1517
|
if default_idp is not UNSET:
|
|
1512
1518
|
field_dict["DEFAULT_IDP"] = default_idp
|
|
1513
1519
|
if docs_url is not UNSET:
|
|
@@ -2132,6 +2138,8 @@ class ConstanceSettings:
|
|
|
2132
2138
|
|
|
2133
2139
|
invitation_disable_multiple_roles = d.pop("INVITATION_DISABLE_MULTIPLE_ROLES", UNSET)
|
|
2134
2140
|
|
|
2141
|
+
only_one_project_manager = d.pop("ONLY_ONE_PROJECT_MANAGER", UNSET)
|
|
2142
|
+
|
|
2135
2143
|
def _parse_default_idp(data: object) -> Union[BlankEnum, DEFAULTIDPEnum, Unset]:
|
|
2136
2144
|
if isinstance(data, Unset):
|
|
2137
2145
|
return data
|
|
@@ -3095,6 +3103,7 @@ class ConstanceSettings:
|
|
|
3095
3103
|
k8s_job_timeout=k8s_job_timeout,
|
|
3096
3104
|
enable_strict_check_accepting_invitation=enable_strict_check_accepting_invitation,
|
|
3097
3105
|
invitation_disable_multiple_roles=invitation_disable_multiple_roles,
|
|
3106
|
+
only_one_project_manager=only_one_project_manager,
|
|
3098
3107
|
default_idp=default_idp,
|
|
3099
3108
|
docs_url=docs_url,
|
|
3100
3109
|
short_page_title=short_page_title,
|
|
@@ -77,6 +77,7 @@ class ConstanceSettingsRequest:
|
|
|
77
77
|
k8s_job_timeout (Union[Unset, int]):
|
|
78
78
|
enable_strict_check_accepting_invitation (Union[Unset, bool]):
|
|
79
79
|
invitation_disable_multiple_roles (Union[Unset, bool]):
|
|
80
|
+
only_one_project_manager (Union[Unset, bool]):
|
|
80
81
|
default_idp (Union[BlankEnum, DEFAULTIDPEnum, Unset]):
|
|
81
82
|
docs_url (Union[Unset, str]):
|
|
82
83
|
short_page_title (Union[Unset, str]):
|
|
@@ -371,6 +372,7 @@ class ConstanceSettingsRequest:
|
|
|
371
372
|
k8s_job_timeout: Union[Unset, int] = UNSET
|
|
372
373
|
enable_strict_check_accepting_invitation: Union[Unset, bool] = UNSET
|
|
373
374
|
invitation_disable_multiple_roles: Union[Unset, bool] = UNSET
|
|
375
|
+
only_one_project_manager: Union[Unset, bool] = UNSET
|
|
374
376
|
default_idp: Union[BlankEnum, DEFAULTIDPEnum, Unset] = UNSET
|
|
375
377
|
docs_url: Union[Unset, str] = UNSET
|
|
376
378
|
short_page_title: Union[Unset, str] = UNSET
|
|
@@ -713,6 +715,8 @@ class ConstanceSettingsRequest:
|
|
|
713
715
|
|
|
714
716
|
invitation_disable_multiple_roles = self.invitation_disable_multiple_roles
|
|
715
717
|
|
|
718
|
+
only_one_project_manager = self.only_one_project_manager
|
|
719
|
+
|
|
716
720
|
default_idp: Union[Unset, str]
|
|
717
721
|
if isinstance(self.default_idp, Unset):
|
|
718
722
|
default_idp = UNSET
|
|
@@ -1546,6 +1550,8 @@ class ConstanceSettingsRequest:
|
|
|
1546
1550
|
field_dict["ENABLE_STRICT_CHECK_ACCEPTING_INVITATION"] = enable_strict_check_accepting_invitation
|
|
1547
1551
|
if invitation_disable_multiple_roles is not UNSET:
|
|
1548
1552
|
field_dict["INVITATION_DISABLE_MULTIPLE_ROLES"] = invitation_disable_multiple_roles
|
|
1553
|
+
if only_one_project_manager is not UNSET:
|
|
1554
|
+
field_dict["ONLY_ONE_PROJECT_MANAGER"] = only_one_project_manager
|
|
1549
1555
|
if default_idp is not UNSET:
|
|
1550
1556
|
field_dict["DEFAULT_IDP"] = default_idp
|
|
1551
1557
|
if docs_url is not UNSET:
|
|
@@ -2172,6 +2178,8 @@ class ConstanceSettingsRequest:
|
|
|
2172
2178
|
|
|
2173
2179
|
invitation_disable_multiple_roles = d.pop("INVITATION_DISABLE_MULTIPLE_ROLES", UNSET)
|
|
2174
2180
|
|
|
2181
|
+
only_one_project_manager = d.pop("ONLY_ONE_PROJECT_MANAGER", UNSET)
|
|
2182
|
+
|
|
2175
2183
|
def _parse_default_idp(data: object) -> Union[BlankEnum, DEFAULTIDPEnum, Unset]:
|
|
2176
2184
|
if isinstance(data, Unset):
|
|
2177
2185
|
return data
|
|
@@ -3231,6 +3239,7 @@ class ConstanceSettingsRequest:
|
|
|
3231
3239
|
k8s_job_timeout=k8s_job_timeout,
|
|
3232
3240
|
enable_strict_check_accepting_invitation=enable_strict_check_accepting_invitation,
|
|
3233
3241
|
invitation_disable_multiple_roles=invitation_disable_multiple_roles,
|
|
3242
|
+
only_one_project_manager=only_one_project_manager,
|
|
3234
3243
|
default_idp=default_idp,
|
|
3235
3244
|
docs_url=docs_url,
|
|
3236
3245
|
short_page_title=short_page_title,
|
|
@@ -79,6 +79,7 @@ class ConstanceSettingsRequestForm:
|
|
|
79
79
|
k8s_job_timeout (Union[Unset, int]):
|
|
80
80
|
enable_strict_check_accepting_invitation (Union[Unset, bool]):
|
|
81
81
|
invitation_disable_multiple_roles (Union[Unset, bool]):
|
|
82
|
+
only_one_project_manager (Union[Unset, bool]):
|
|
82
83
|
default_idp (Union[BlankEnum, DEFAULTIDPEnum, Unset]):
|
|
83
84
|
docs_url (Union[Unset, str]):
|
|
84
85
|
short_page_title (Union[Unset, str]):
|
|
@@ -373,6 +374,7 @@ class ConstanceSettingsRequestForm:
|
|
|
373
374
|
k8s_job_timeout: Union[Unset, int] = UNSET
|
|
374
375
|
enable_strict_check_accepting_invitation: Union[Unset, bool] = UNSET
|
|
375
376
|
invitation_disable_multiple_roles: Union[Unset, bool] = UNSET
|
|
377
|
+
only_one_project_manager: Union[Unset, bool] = UNSET
|
|
376
378
|
default_idp: Union[BlankEnum, DEFAULTIDPEnum, Unset] = UNSET
|
|
377
379
|
docs_url: Union[Unset, str] = UNSET
|
|
378
380
|
short_page_title: Union[Unset, str] = UNSET
|
|
@@ -715,6 +717,8 @@ class ConstanceSettingsRequestForm:
|
|
|
715
717
|
|
|
716
718
|
invitation_disable_multiple_roles = self.invitation_disable_multiple_roles
|
|
717
719
|
|
|
720
|
+
only_one_project_manager = self.only_one_project_manager
|
|
721
|
+
|
|
718
722
|
default_idp: Union[Unset, str]
|
|
719
723
|
if isinstance(self.default_idp, Unset):
|
|
720
724
|
default_idp = UNSET
|
|
@@ -1548,6 +1552,8 @@ class ConstanceSettingsRequestForm:
|
|
|
1548
1552
|
field_dict["ENABLE_STRICT_CHECK_ACCEPTING_INVITATION"] = enable_strict_check_accepting_invitation
|
|
1549
1553
|
if invitation_disable_multiple_roles is not UNSET:
|
|
1550
1554
|
field_dict["INVITATION_DISABLE_MULTIPLE_ROLES"] = invitation_disable_multiple_roles
|
|
1555
|
+
if only_one_project_manager is not UNSET:
|
|
1556
|
+
field_dict["ONLY_ONE_PROJECT_MANAGER"] = only_one_project_manager
|
|
1551
1557
|
if default_idp is not UNSET:
|
|
1552
1558
|
field_dict["DEFAULT_IDP"] = default_idp
|
|
1553
1559
|
if docs_url is not UNSET:
|
|
@@ -2174,6 +2180,8 @@ class ConstanceSettingsRequestForm:
|
|
|
2174
2180
|
|
|
2175
2181
|
invitation_disable_multiple_roles = d.pop("INVITATION_DISABLE_MULTIPLE_ROLES", UNSET)
|
|
2176
2182
|
|
|
2183
|
+
only_one_project_manager = d.pop("ONLY_ONE_PROJECT_MANAGER", UNSET)
|
|
2184
|
+
|
|
2177
2185
|
def _parse_default_idp(data: object) -> Union[BlankEnum, DEFAULTIDPEnum, Unset]:
|
|
2178
2186
|
if isinstance(data, Unset):
|
|
2179
2187
|
return data
|
|
@@ -3235,6 +3243,7 @@ class ConstanceSettingsRequestForm:
|
|
|
3235
3243
|
k8s_job_timeout=k8s_job_timeout,
|
|
3236
3244
|
enable_strict_check_accepting_invitation=enable_strict_check_accepting_invitation,
|
|
3237
3245
|
invitation_disable_multiple_roles=invitation_disable_multiple_roles,
|
|
3246
|
+
only_one_project_manager=only_one_project_manager,
|
|
3238
3247
|
default_idp=default_idp,
|
|
3239
3248
|
docs_url=docs_url,
|
|
3240
3249
|
short_page_title=short_page_title,
|
|
@@ -80,6 +80,7 @@ class ConstanceSettingsRequestMultipart:
|
|
|
80
80
|
k8s_job_timeout (Union[Unset, int]):
|
|
81
81
|
enable_strict_check_accepting_invitation (Union[Unset, bool]):
|
|
82
82
|
invitation_disable_multiple_roles (Union[Unset, bool]):
|
|
83
|
+
only_one_project_manager (Union[Unset, bool]):
|
|
83
84
|
default_idp (Union[BlankEnum, DEFAULTIDPEnum, Unset]):
|
|
84
85
|
docs_url (Union[Unset, str]):
|
|
85
86
|
short_page_title (Union[Unset, str]):
|
|
@@ -374,6 +375,7 @@ class ConstanceSettingsRequestMultipart:
|
|
|
374
375
|
k8s_job_timeout: Union[Unset, int] = UNSET
|
|
375
376
|
enable_strict_check_accepting_invitation: Union[Unset, bool] = UNSET
|
|
376
377
|
invitation_disable_multiple_roles: Union[Unset, bool] = UNSET
|
|
378
|
+
only_one_project_manager: Union[Unset, bool] = UNSET
|
|
377
379
|
default_idp: Union[BlankEnum, DEFAULTIDPEnum, Unset] = UNSET
|
|
378
380
|
docs_url: Union[Unset, str] = UNSET
|
|
379
381
|
short_page_title: Union[Unset, str] = UNSET
|
|
@@ -716,6 +718,8 @@ class ConstanceSettingsRequestMultipart:
|
|
|
716
718
|
|
|
717
719
|
invitation_disable_multiple_roles = self.invitation_disable_multiple_roles
|
|
718
720
|
|
|
721
|
+
only_one_project_manager = self.only_one_project_manager
|
|
722
|
+
|
|
719
723
|
default_idp: Union[Unset, str]
|
|
720
724
|
if isinstance(self.default_idp, Unset):
|
|
721
725
|
default_idp = UNSET
|
|
@@ -1549,6 +1553,8 @@ class ConstanceSettingsRequestMultipart:
|
|
|
1549
1553
|
field_dict["ENABLE_STRICT_CHECK_ACCEPTING_INVITATION"] = enable_strict_check_accepting_invitation
|
|
1550
1554
|
if invitation_disable_multiple_roles is not UNSET:
|
|
1551
1555
|
field_dict["INVITATION_DISABLE_MULTIPLE_ROLES"] = invitation_disable_multiple_roles
|
|
1556
|
+
if only_one_project_manager is not UNSET:
|
|
1557
|
+
field_dict["ONLY_ONE_PROJECT_MANAGER"] = only_one_project_manager
|
|
1552
1558
|
if default_idp is not UNSET:
|
|
1553
1559
|
field_dict["DEFAULT_IDP"] = default_idp
|
|
1554
1560
|
if docs_url is not UNSET:
|
|
@@ -2249,6 +2255,11 @@ class ConstanceSettingsRequestMultipart:
|
|
|
2249
2255
|
)
|
|
2250
2256
|
)
|
|
2251
2257
|
|
|
2258
|
+
if not isinstance(self.only_one_project_manager, Unset):
|
|
2259
|
+
files.append(
|
|
2260
|
+
("ONLY_ONE_PROJECT_MANAGER", (None, str(self.only_one_project_manager).encode(), "text/plain"))
|
|
2261
|
+
)
|
|
2262
|
+
|
|
2252
2263
|
if not isinstance(self.default_idp, Unset):
|
|
2253
2264
|
if isinstance(self.default_idp, DEFAULTIDPEnum):
|
|
2254
2265
|
files.append(("DEFAULT_IDP", (None, str(self.default_idp.value).encode(), "text/plain")))
|
|
@@ -3897,6 +3908,8 @@ class ConstanceSettingsRequestMultipart:
|
|
|
3897
3908
|
|
|
3898
3909
|
invitation_disable_multiple_roles = d.pop("INVITATION_DISABLE_MULTIPLE_ROLES", UNSET)
|
|
3899
3910
|
|
|
3911
|
+
only_one_project_manager = d.pop("ONLY_ONE_PROJECT_MANAGER", UNSET)
|
|
3912
|
+
|
|
3900
3913
|
def _parse_default_idp(data: object) -> Union[BlankEnum, DEFAULTIDPEnum, Unset]:
|
|
3901
3914
|
if isinstance(data, Unset):
|
|
3902
3915
|
return data
|
|
@@ -4958,6 +4971,7 @@ class ConstanceSettingsRequestMultipart:
|
|
|
4958
4971
|
k8s_job_timeout=k8s_job_timeout,
|
|
4959
4972
|
enable_strict_check_accepting_invitation=enable_strict_check_accepting_invitation,
|
|
4960
4973
|
invitation_disable_multiple_roles=invitation_disable_multiple_roles,
|
|
4974
|
+
only_one_project_manager=only_one_project_manager,
|
|
4961
4975
|
default_idp=default_idp,
|
|
4962
4976
|
docs_url=docs_url,
|
|
4963
4977
|
short_page_title=short_page_title,
|
waldur_api_client/models/user.py
CHANGED
|
@@ -86,6 +86,8 @@ class User:
|
|
|
86
86
|
active_isds (Union[Unset, Any]): List of ISDs that have asserted this user exists. User is deactivated when this
|
|
87
87
|
becomes empty.
|
|
88
88
|
deactivation_reason (Union[Unset, str]): Reason why the user was deactivated. Visible to staff and support.
|
|
89
|
+
is_admin_deactivated (Union[Unset, bool]): Designates that the user was deactivated by an administrator and must
|
|
90
|
+
not be reactivated automatically by the role-sync task. Visible to staff and support.
|
|
89
91
|
"""
|
|
90
92
|
|
|
91
93
|
url: Union[Unset, str] = UNSET
|
|
@@ -144,6 +146,7 @@ class User:
|
|
|
144
146
|
managed_isds: Union[Unset, Any] = UNSET
|
|
145
147
|
active_isds: Union[Unset, Any] = UNSET
|
|
146
148
|
deactivation_reason: Union[Unset, str] = UNSET
|
|
149
|
+
is_admin_deactivated: Union[Unset, bool] = UNSET
|
|
147
150
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
148
151
|
|
|
149
152
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -316,6 +319,8 @@ class User:
|
|
|
316
319
|
|
|
317
320
|
deactivation_reason = self.deactivation_reason
|
|
318
321
|
|
|
322
|
+
is_admin_deactivated = self.is_admin_deactivated
|
|
323
|
+
|
|
319
324
|
field_dict: dict[str, Any] = {}
|
|
320
325
|
field_dict.update(self.additional_properties)
|
|
321
326
|
field_dict.update({})
|
|
@@ -431,6 +436,8 @@ class User:
|
|
|
431
436
|
field_dict["active_isds"] = active_isds
|
|
432
437
|
if deactivation_reason is not UNSET:
|
|
433
438
|
field_dict["deactivation_reason"] = deactivation_reason
|
|
439
|
+
if is_admin_deactivated is not UNSET:
|
|
440
|
+
field_dict["is_admin_deactivated"] = is_admin_deactivated
|
|
434
441
|
|
|
435
442
|
return field_dict
|
|
436
443
|
|
|
@@ -669,6 +676,8 @@ class User:
|
|
|
669
676
|
|
|
670
677
|
deactivation_reason = d.pop("deactivation_reason", UNSET)
|
|
671
678
|
|
|
679
|
+
is_admin_deactivated = d.pop("is_admin_deactivated", UNSET)
|
|
680
|
+
|
|
672
681
|
user = cls(
|
|
673
682
|
url=url,
|
|
674
683
|
uuid=uuid,
|
|
@@ -726,6 +735,7 @@ class User:
|
|
|
726
735
|
managed_isds=managed_isds,
|
|
727
736
|
active_isds=active_isds,
|
|
728
737
|
deactivation_reason=deactivation_reason,
|
|
738
|
+
is_admin_deactivated=is_admin_deactivated,
|
|
729
739
|
)
|
|
730
740
|
|
|
731
741
|
user.additional_properties = d
|
|
@@ -87,6 +87,8 @@ class UserMe:
|
|
|
87
87
|
active_isds (Union[Unset, Any]): List of ISDs that have asserted this user exists. User is deactivated when this
|
|
88
88
|
becomes empty.
|
|
89
89
|
deactivation_reason (Union[Unset, str]): Reason why the user was deactivated. Visible to staff and support.
|
|
90
|
+
is_admin_deactivated (Union[Unset, bool]): Designates that the user was deactivated by an administrator and must
|
|
91
|
+
not be reactivated automatically by the role-sync task. Visible to staff and support.
|
|
90
92
|
profile_completeness (Union[Unset, ProfileCompleteness]):
|
|
91
93
|
"""
|
|
92
94
|
|
|
@@ -146,6 +148,7 @@ class UserMe:
|
|
|
146
148
|
managed_isds: Union[Unset, Any] = UNSET
|
|
147
149
|
active_isds: Union[Unset, Any] = UNSET
|
|
148
150
|
deactivation_reason: Union[Unset, str] = UNSET
|
|
151
|
+
is_admin_deactivated: Union[Unset, bool] = UNSET
|
|
149
152
|
profile_completeness: Union[Unset, "ProfileCompleteness"] = UNSET
|
|
150
153
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
151
154
|
|
|
@@ -315,6 +318,8 @@ class UserMe:
|
|
|
315
318
|
|
|
316
319
|
deactivation_reason = self.deactivation_reason
|
|
317
320
|
|
|
321
|
+
is_admin_deactivated = self.is_admin_deactivated
|
|
322
|
+
|
|
318
323
|
profile_completeness: Union[Unset, dict[str, Any]] = UNSET
|
|
319
324
|
if not isinstance(self.profile_completeness, Unset):
|
|
320
325
|
profile_completeness = self.profile_completeness.to_dict()
|
|
@@ -434,6 +439,8 @@ class UserMe:
|
|
|
434
439
|
field_dict["active_isds"] = active_isds
|
|
435
440
|
if deactivation_reason is not UNSET:
|
|
436
441
|
field_dict["deactivation_reason"] = deactivation_reason
|
|
442
|
+
if is_admin_deactivated is not UNSET:
|
|
443
|
+
field_dict["is_admin_deactivated"] = is_admin_deactivated
|
|
437
444
|
if profile_completeness is not UNSET:
|
|
438
445
|
field_dict["profile_completeness"] = profile_completeness
|
|
439
446
|
|
|
@@ -668,6 +675,8 @@ class UserMe:
|
|
|
668
675
|
|
|
669
676
|
deactivation_reason = d.pop("deactivation_reason", UNSET)
|
|
670
677
|
|
|
678
|
+
is_admin_deactivated = d.pop("is_admin_deactivated", UNSET)
|
|
679
|
+
|
|
671
680
|
_profile_completeness = d.pop("profile_completeness", UNSET)
|
|
672
681
|
profile_completeness: Union[Unset, ProfileCompleteness]
|
|
673
682
|
if isinstance(_profile_completeness, Unset):
|
|
@@ -732,6 +741,7 @@ class UserMe:
|
|
|
732
741
|
managed_isds=managed_isds,
|
|
733
742
|
active_isds=active_isds,
|
|
734
743
|
deactivation_reason=deactivation_reason,
|
|
744
|
+
is_admin_deactivated=is_admin_deactivated,
|
|
735
745
|
profile_completeness=profile_completeness,
|
|
736
746
|
)
|
|
737
747
|
|
{waldur_api_client-8.0.9.dev330.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/RECORD
RENAMED
|
@@ -2931,8 +2931,8 @@ waldur_api_client/api/vmware_virtual_machine/vmware_virtual_machine_web_console_
|
|
|
2931
2931
|
waldur_api_client/api-map.md,sha256=XLF0rxJmUaUCDbvf3fhSO8Twths14kLrSfFvG2eX2g4,370099
|
|
2932
2932
|
waldur_api_client/client.py,sha256=GLq-qDZKHfSA_9duhz0MTPeaAkXUlvuHHWCRzsPcE5Y,11727
|
|
2933
2933
|
waldur_api_client/errors.py,sha256=UYHn64tnzy2ITApxz6jHW9KXUusxkd5iuqyKyCw5cq8,571
|
|
2934
|
-
waldur_api_client/llms-full.txt,sha256=
|
|
2935
|
-
waldur_api_client/llms.txt,sha256=
|
|
2934
|
+
waldur_api_client/llms-full.txt,sha256=QT9gkSy07Olq112y0E6T3sAcLrbzm9LYhhvBGbWmIZ8,827394
|
|
2935
|
+
waldur_api_client/llms.txt,sha256=Kc9zLpUQXzE__0Txvc8J24wJFv-PChtWmcW5td6F8S8,14639
|
|
2936
2936
|
waldur_api_client/models/__init__.py,sha256=2o0KzrwTSeMruFdIanBiXIC21Dug7c_rC1tOdc1QMtY,234046
|
|
2937
2937
|
waldur_api_client/models/access_project.py,sha256=oMD_LlZ48i2YhFjPCAVSyb5a1-AEh8a5YYrJ6olBx_w,2165
|
|
2938
2938
|
waldur_api_client/models/access_resource.py,sha256=mN0bhw0tfmIHDwC0jDCDFDDVlaVtZwDdgRIlbc-g0gY,1635
|
|
@@ -3367,13 +3367,13 @@ waldur_api_client/models/conflict_summary_response_by_status.py,sha256=06YlF4plP
|
|
|
3367
3367
|
waldur_api_client/models/conflict_summary_response_by_type.py,sha256=jitBjwNl5bWkq4FLHRkWd4XuKvwVYOhNzdIUmQtzj1A,1299
|
|
3368
3368
|
waldur_api_client/models/connection_stats.py,sha256=PYnOVJOMo46jzsy2kxNO_OsZhdylxRVCzoRI1ufOENA,2840
|
|
3369
3369
|
waldur_api_client/models/console_url.py,sha256=HYH5Ej9g2olUyvdnUrxDGR_LA042eoQmXlbzcJdP2JU,1422
|
|
3370
|
-
waldur_api_client/models/constance_settings.py,sha256=
|
|
3370
|
+
waldur_api_client/models/constance_settings.py,sha256=Yc4DGrBsi61OvIc1HkrAK8vP3HjxVy6eVn7ANUWuQgY,171110
|
|
3371
3371
|
waldur_api_client/models/constance_settings_loginlogomultilingual.py,sha256=HF-Hz3QIiYs5fbVFh-QS7rnEJ4mHsdbhmo3OtGOeZKk,1884
|
|
3372
|
-
waldur_api_client/models/constance_settings_request.py,sha256=
|
|
3373
|
-
waldur_api_client/models/constance_settings_request_form.py,sha256=
|
|
3372
|
+
waldur_api_client/models/constance_settings_request.py,sha256=0va879960QEP86NK-mSCvBHOZu7r9XAc0Gue6gsVR_o,176233
|
|
3373
|
+
waldur_api_client/models/constance_settings_request_form.py,sha256=136MFckRVyHO5Zmbx-aQTKDqQoXNejbfDhM7e01EyPE,176337
|
|
3374
3374
|
waldur_api_client/models/constance_settings_request_form_loginlogomultilingual.py,sha256=kZXM3AidUtEjpS5crE9NlZkujchdD1EQ_TiNrZyKIDA,2427
|
|
3375
3375
|
waldur_api_client/models/constance_settings_request_loginlogomultilingual.py,sha256=NgonQ07wxpJqz12DUv1F1wGL-YXndqZ-1Km9h1IliWs,2404
|
|
3376
|
-
waldur_api_client/models/constance_settings_request_multipart.py,sha256=
|
|
3376
|
+
waldur_api_client/models/constance_settings_request_multipart.py,sha256=zVm-wjOEdkklLQ0UB2H6w4oAR6ct38N4SWuUrjwKFPg,254391
|
|
3377
3377
|
waldur_api_client/models/constance_settings_request_multipart_loginlogomultilingual.py,sha256=cpVYzHTbNb-oyp4xP19Tz6A5yxFKNSCH8Xr1YglkVZ0,2452
|
|
3378
3378
|
waldur_api_client/models/consumption_statistics_response.py,sha256=gwOpRDbSNvGqkdqlcM-X4jx7dy2eB4W0uRhpH-t-MJw,3874
|
|
3379
3379
|
waldur_api_client/models/consumption_status_response.py,sha256=Ao-bolVxECMfn69skKe2CC_ImwvYR2ja8S-BOuErVEQ,3879
|
|
@@ -5204,7 +5204,7 @@ waldur_api_client/models/update_pool_request.py,sha256=OCIOt5WiyjGp_9pP0XtBy6lRh
|
|
|
5204
5204
|
waldur_api_client/models/urgency_enum.py,sha256=xnL-SiuuGM4trybS-S8Sr1Fu13a8bVgbkmP2VWIKVk4,172
|
|
5205
5205
|
waldur_api_client/models/usage.py,sha256=JrXkeubs5DTsXleOg4YhEBdPUVG9guBsJYU67rZcPQA,1434
|
|
5206
5206
|
waldur_api_client/models/usage_timeseries_bucket.py,sha256=4srCuTHQw5tHfAgM1JKGY23lp89tsJRnWFl3YOcFCZA,1849
|
|
5207
|
-
waldur_api_client/models/user.py,sha256=
|
|
5207
|
+
waldur_api_client/models/user.py,sha256=mOrjh3bZ3ZBLYQ7jg9LKhoQ7wugbh6-VdV-NLNM-Btk,29710
|
|
5208
5208
|
waldur_api_client/models/user_action.py,sha256=dBVjTWQt71LawLCbW_Uveyg2pRAIZHjCtA58peOsimk,15478
|
|
5209
5209
|
waldur_api_client/models/user_action_execution.py,sha256=yMNCkcPYHQtNlQ1kiNgNvGPF3Vb4tEPBlNn3bCCfFeY,3110
|
|
5210
5210
|
waldur_api_client/models/user_action_provider.py,sha256=S0kYMcibJnvUWyeaSyCiduHFT4WO9IvWJVbDeq9CBiM,4030
|
|
@@ -5228,7 +5228,7 @@ waldur_api_client/models/user_data_access.py,sha256=23CnIgBN9EMyWtP9whW65lSVRp-T
|
|
|
5228
5228
|
waldur_api_client/models/user_data_access_log.py,sha256=E6qWHkK--3raVqeFviULN0ln3Hr2WBhq3VRuU1662lc,5101
|
|
5229
5229
|
waldur_api_client/models/user_data_access_log_context.py,sha256=lskE896qCJSPGb1QfUmpVw2ev35loUNsFjhpiAA3FFA,1274
|
|
5230
5230
|
waldur_api_client/models/user_email_change_request.py,sha256=1VqzZ20plnwS8j9eytAHH5GnVnf5gar7CYDA6TtXfG8,1508
|
|
5231
|
-
waldur_api_client/models/user_field_enum.py,sha256=
|
|
5231
|
+
waldur_api_client/models/user_field_enum.py,sha256=myW4W5smxX_oUle4pUyZKPyhbMJoVmUiZ8bfyiVKX1w,2336
|
|
5232
5232
|
waldur_api_client/models/user_has_resource_access.py,sha256=H5-Wz5DIviXEmOaITGw74BXTUXYwCEgXSvpZCzXXS_g,1555
|
|
5233
5233
|
waldur_api_client/models/user_identity_source_count.py,sha256=_faXjGw_eXjwpmNLzLY0gZFYS1je9fI1E4stxXnbB0I,1798
|
|
5234
5234
|
waldur_api_client/models/user_info.py,sha256=r8Q5nP6-WY7bJ4_gz6aVGMmO84_lNe9OrD79iQtMFGs,2349
|
|
@@ -5237,8 +5237,8 @@ waldur_api_client/models/user_job_title_count.py,sha256=7BY9OTpxG0pp720M4rBm3mMU
|
|
|
5237
5237
|
waldur_api_client/models/user_language_count.py,sha256=FkeRPOIF19QMRZs1JBWSK3H2oBm0AyEaVG-nXphw7K8,1663
|
|
5238
5238
|
waldur_api_client/models/user_mapping.py,sha256=j8njg38DdzV1PA2q6wJnZnwz4UwHzJZKc3c36nv5cPM,1966
|
|
5239
5239
|
waldur_api_client/models/user_mapping_map.py,sha256=gGYXgOIeeeUi-bEqe58ywKAcAYjngUugep5P6FzNdiQ,2317
|
|
5240
|
-
waldur_api_client/models/user_me.py,sha256=
|
|
5241
|
-
waldur_api_client/models/user_me_field_enum.py,sha256=
|
|
5240
|
+
waldur_api_client/models/user_me.py,sha256=4HQ0Ew6ZS6SBCOZu_K6yVY9GPgkrUca-kYTi42Ltr7Y,30272
|
|
5241
|
+
waldur_api_client/models/user_me_field_enum.py,sha256=ETHd_a25eNZ0UnU7LAU1qkcIMdt3F9eTplzkRYeoywo,2388
|
|
5242
5242
|
waldur_api_client/models/user_nationality_stats.py,sha256=pO6junVItY8rKkqDE90OeiFbT5BHDV2xmeGZXqTvsz0,1741
|
|
5243
5243
|
waldur_api_client/models/user_offering_consent.py,sha256=eX25dy5leJ6ZOo--O-w-sOGChjYGWJQv-bZz5aeBZIQ,6407
|
|
5244
5244
|
waldur_api_client/models/user_offering_consent_create.py,sha256=sE2xqXFtr5FTu-69igONwBdmFGrv04ig772Iq0Dzoec,1588
|
|
@@ -5325,7 +5325,7 @@ waldur_api_client/models/zammadarticletype_enum.py,sha256=BPDZq_hO1gK6eSi4Z_2s_p
|
|
|
5325
5325
|
waldur_api_client/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5326
5326
|
waldur_api_client/types.py,sha256=ZSn3mJeG6_KoPRQVkzh_-bMkaCht3nO3bkQg0tt1aN8,1381
|
|
5327
5327
|
waldur_api_client/utils.py,sha256=nzWBKV8bhpN3jdzAv8I5FuAdfMwAvmZPiNAD05e0_9c,907
|
|
5328
|
-
waldur_api_client-8.0.9.
|
|
5329
|
-
waldur_api_client-8.0.9.
|
|
5330
|
-
waldur_api_client-8.0.9.
|
|
5331
|
-
waldur_api_client-8.0.9.
|
|
5328
|
+
waldur_api_client-8.0.9.dev332.dist-info/METADATA,sha256=a_mgs7KDdOP5DsC3ek5Yd4TM2rpBGSukUagzwdvjRps,5925
|
|
5329
|
+
waldur_api_client-8.0.9.dev332.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
|
|
5330
|
+
waldur_api_client-8.0.9.dev332.dist-info/licenses/LICENSE,sha256=ggoC8v8nQf3HIDGLzIB6VMlzLScX8tIpNhFa0s8UYxw,1072
|
|
5331
|
+
waldur_api_client-8.0.9.dev332.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|