pulp-python-client 3.11.3__py3-none-any.whl → 3.12.1__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.
Potentially problematic release.
This version of pulp-python-client might be problematic. Click here for more details.
- {pulp_python_client-3.11.3.dist-info → pulp_python_client-3.12.1.dist-info}/METADATA +3 -3
- {pulp_python_client-3.11.3.dist-info → pulp_python_client-3.12.1.dist-info}/RECORD +22 -18
- {pulp_python_client-3.11.3.dist-info → pulp_python_client-3.12.1.dist-info}/WHEEL +1 -1
- pulpcore/client/pulp_python/__init__.py +5 -1
- pulpcore/client/pulp_python/api/distributions_pypi_api.py +506 -0
- pulpcore/client/pulp_python/api/publications_pypi_api.py +506 -0
- pulpcore/client/pulp_python/api/pypi_api.py +1 -1
- pulpcore/client/pulp_python/api/pypi_metadata_api.py +1 -1
- pulpcore/client/pulp_python/api/remotes_python_api.py +506 -0
- pulpcore/client/pulp_python/api/repositories_python_api.py +506 -0
- pulpcore/client/pulp_python/api_client.py +1 -1
- pulpcore/client/pulp_python/configuration.py +3 -3
- pulpcore/client/pulp_python/models/__init__.py +4 -0
- pulpcore/client/pulp_python/models/my_permissions_response.py +122 -0
- pulpcore/client/pulp_python/models/nested_role.py +177 -0
- pulpcore/client/pulp_python/models/nested_role_response.py +174 -0
- pulpcore/client/pulp_python/models/object_roles_response.py +122 -0
- pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -4
- pulpcore/client/pulp_python/models/patchedpython_python_remote.py +8 -8
- pulpcore/client/pulp_python/models/python_python_remote.py +8 -8
- pulpcore/client/pulp_python/models/python_python_remote_response.py +8 -8
- {pulp_python_client-3.11.3.dist-info → pulp_python_client-3.12.1.dist-info}/top_level.txt +0 -0
|
@@ -567,8 +567,8 @@ class PythonPythonRemote(object):
|
|
|
567
567
|
:type: float
|
|
568
568
|
"""
|
|
569
569
|
if (self.local_vars_configuration.client_side_validation and
|
|
570
|
-
total_timeout is not None and total_timeout < 0): # noqa: E501
|
|
571
|
-
raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
570
|
+
total_timeout is not None and total_timeout < 0.0): # noqa: E501
|
|
571
|
+
raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
572
572
|
|
|
573
573
|
self._total_timeout = total_timeout
|
|
574
574
|
|
|
@@ -593,8 +593,8 @@ class PythonPythonRemote(object):
|
|
|
593
593
|
:type: float
|
|
594
594
|
"""
|
|
595
595
|
if (self.local_vars_configuration.client_side_validation and
|
|
596
|
-
connect_timeout is not None and connect_timeout < 0): # noqa: E501
|
|
597
|
-
raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
596
|
+
connect_timeout is not None and connect_timeout < 0.0): # noqa: E501
|
|
597
|
+
raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
598
598
|
|
|
599
599
|
self._connect_timeout = connect_timeout
|
|
600
600
|
|
|
@@ -619,8 +619,8 @@ class PythonPythonRemote(object):
|
|
|
619
619
|
:type: float
|
|
620
620
|
"""
|
|
621
621
|
if (self.local_vars_configuration.client_side_validation and
|
|
622
|
-
sock_connect_timeout is not None and sock_connect_timeout < 0): # noqa: E501
|
|
623
|
-
raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
622
|
+
sock_connect_timeout is not None and sock_connect_timeout < 0.0): # noqa: E501
|
|
623
|
+
raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
624
624
|
|
|
625
625
|
self._sock_connect_timeout = sock_connect_timeout
|
|
626
626
|
|
|
@@ -645,8 +645,8 @@ class PythonPythonRemote(object):
|
|
|
645
645
|
:type: float
|
|
646
646
|
"""
|
|
647
647
|
if (self.local_vars_configuration.client_side_validation and
|
|
648
|
-
sock_read_timeout is not None and sock_read_timeout < 0): # noqa: E501
|
|
649
|
-
raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
648
|
+
sock_read_timeout is not None and sock_read_timeout < 0.0): # noqa: E501
|
|
649
|
+
raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
650
650
|
|
|
651
651
|
self._sock_read_timeout = sock_read_timeout
|
|
652
652
|
|
|
@@ -489,8 +489,8 @@ class PythonPythonRemoteResponse(object):
|
|
|
489
489
|
:type: float
|
|
490
490
|
"""
|
|
491
491
|
if (self.local_vars_configuration.client_side_validation and
|
|
492
|
-
total_timeout is not None and total_timeout < 0): # noqa: E501
|
|
493
|
-
raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
492
|
+
total_timeout is not None and total_timeout < 0.0): # noqa: E501
|
|
493
|
+
raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
494
494
|
|
|
495
495
|
self._total_timeout = total_timeout
|
|
496
496
|
|
|
@@ -515,8 +515,8 @@ class PythonPythonRemoteResponse(object):
|
|
|
515
515
|
:type: float
|
|
516
516
|
"""
|
|
517
517
|
if (self.local_vars_configuration.client_side_validation and
|
|
518
|
-
connect_timeout is not None and connect_timeout < 0): # noqa: E501
|
|
519
|
-
raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
518
|
+
connect_timeout is not None and connect_timeout < 0.0): # noqa: E501
|
|
519
|
+
raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
520
520
|
|
|
521
521
|
self._connect_timeout = connect_timeout
|
|
522
522
|
|
|
@@ -541,8 +541,8 @@ class PythonPythonRemoteResponse(object):
|
|
|
541
541
|
:type: float
|
|
542
542
|
"""
|
|
543
543
|
if (self.local_vars_configuration.client_side_validation and
|
|
544
|
-
sock_connect_timeout is not None and sock_connect_timeout < 0): # noqa: E501
|
|
545
|
-
raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
544
|
+
sock_connect_timeout is not None and sock_connect_timeout < 0.0): # noqa: E501
|
|
545
|
+
raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
546
546
|
|
|
547
547
|
self._sock_connect_timeout = sock_connect_timeout
|
|
548
548
|
|
|
@@ -567,8 +567,8 @@ class PythonPythonRemoteResponse(object):
|
|
|
567
567
|
:type: float
|
|
568
568
|
"""
|
|
569
569
|
if (self.local_vars_configuration.client_side_validation and
|
|
570
|
-
sock_read_timeout is not None and sock_read_timeout < 0): # noqa: E501
|
|
571
|
-
raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0`") # noqa: E501
|
|
570
|
+
sock_read_timeout is not None and sock_read_timeout < 0.0): # noqa: E501
|
|
571
|
+
raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
|
|
572
572
|
|
|
573
573
|
self._sock_read_timeout = sock_read_timeout
|
|
574
574
|
|
|
File without changes
|