waldur-api-client 8.0.9.dev331__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-8.0.9.dev331.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/METADATA +1 -1
- {waldur_api_client-8.0.9.dev331.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/RECORD +10 -10
- {waldur_api_client-8.0.9.dev331.dist-info → waldur_api_client-8.0.9.dev332.dist-info}/WHEEL +0 -0
- {waldur_api_client-8.0.9.dev331.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-8.0.9.dev331.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
|
|
@@ -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
|