pulp-python-client 3.18.0__py3-none-any.whl → 3.19.0__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.

Files changed (47) hide show
  1. pulp_python_client-3.19.0.dist-info/METADATA +287 -0
  2. {pulp_python_client-3.18.0.dist-info → pulp_python_client-3.19.0.dist-info}/RECORD +46 -46
  3. pulpcore/client/pulp_python/__init__.py +121 -59
  4. pulpcore/client/pulp_python/api/content_packages_api.py +748 -6
  5. pulpcore/client/pulp_python/api_client.py +6 -2
  6. pulpcore/client/pulp_python/configuration.py +10 -3
  7. pulpcore/client/pulp_python/exceptions.py +17 -0
  8. pulpcore/client/pulp_python/models/async_operation_response.py +8 -0
  9. pulpcore/client/pulp_python/models/content_summary_response.py +8 -0
  10. pulpcore/client/pulp_python/models/my_permissions_response.py +8 -0
  11. pulpcore/client/pulp_python/models/nested_role.py +8 -0
  12. pulpcore/client/pulp_python/models/nested_role_response.py +8 -0
  13. pulpcore/client/pulp_python/models/object_roles_response.py +8 -0
  14. pulpcore/client/pulp_python/models/package_metadata_response.py +8 -0
  15. pulpcore/client/pulp_python/models/package_upload_task_response.py +8 -0
  16. pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +8 -0
  17. pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +8 -0
  18. pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +8 -0
  19. pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +8 -0
  20. pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +8 -0
  21. pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +8 -0
  22. pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +8 -0
  23. pulpcore/client/pulp_python/models/patchedpython_python_remote.py +8 -0
  24. pulpcore/client/pulp_python/models/patchedpython_python_repository.py +8 -0
  25. pulpcore/client/pulp_python/models/python_python_distribution.py +8 -0
  26. pulpcore/client/pulp_python/models/python_python_distribution_response.py +8 -0
  27. pulpcore/client/pulp_python/models/python_python_package_content_response.py +9 -1
  28. pulpcore/client/pulp_python/models/python_python_publication.py +8 -0
  29. pulpcore/client/pulp_python/models/python_python_publication_response.py +8 -0
  30. pulpcore/client/pulp_python/models/python_python_remote.py +8 -0
  31. pulpcore/client/pulp_python/models/python_python_remote_response.py +8 -0
  32. pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +8 -0
  33. pulpcore/client/pulp_python/models/python_python_repository.py +8 -0
  34. pulpcore/client/pulp_python/models/python_python_repository_response.py +8 -0
  35. pulpcore/client/pulp_python/models/repair.py +8 -0
  36. pulpcore/client/pulp_python/models/repository_add_remove_content.py +8 -0
  37. pulpcore/client/pulp_python/models/repository_sync_url.py +8 -0
  38. pulpcore/client/pulp_python/models/repository_version_response.py +8 -0
  39. pulpcore/client/pulp_python/models/set_label.py +8 -0
  40. pulpcore/client/pulp_python/models/set_label_response.py +8 -0
  41. pulpcore/client/pulp_python/models/summary_response.py +8 -0
  42. pulpcore/client/pulp_python/models/unset_label.py +8 -0
  43. pulpcore/client/pulp_python/models/unset_label_response.py +8 -0
  44. pulpcore/client/pulp_python/rest.py +1 -0
  45. pulp_python_client-3.18.0.dist-info/METADATA +0 -17
  46. {pulp_python_client-3.18.0.dist-info → pulp_python_client-3.19.0.dist-info}/WHEEL +0 -0
  47. {pulp_python_client-3.18.0.dist-info → pulp_python_client-3.19.0.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,14 @@ from typing import Any, ClassVar, Dict, List
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
25
25
 
26
+
27
+ class OneOf:
28
+ @staticmethod
29
+ def from_dict(obj, *args, **kwargs):
30
+ """Noop override to fix missing OneOf import/implementation."""
31
+ return obj
32
+
33
+
26
34
  class SummaryResponse(BaseModel):
27
35
  """
28
36
  A Serializer for summary information of an index.
@@ -24,6 +24,14 @@ from typing_extensions import Annotated
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
+
28
+ class OneOf:
29
+ @staticmethod
30
+ def from_dict(obj, *args, **kwargs):
31
+ """Noop override to fix missing OneOf import/implementation."""
32
+ return obj
33
+
34
+
27
35
  class UnsetLabel(BaseModel):
28
36
  """
29
37
  Serializer for synchronously UNsetting a label.
@@ -24,6 +24,14 @@ from typing_extensions import Annotated
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
+
28
+ class OneOf:
29
+ @staticmethod
30
+ def from_dict(obj, *args, **kwargs):
31
+ """Noop override to fix missing OneOf import/implementation."""
32
+ return obj
33
+
34
+
27
35
  class UnsetLabelResponse(BaseModel):
28
36
  """
29
37
  Serializer for synchronously UNsetting a label.
@@ -77,6 +77,7 @@ class RESTClientObject:
77
77
  "ca_certs": configuration.ssl_ca_cert,
78
78
  "cert_file": configuration.cert_file,
79
79
  "key_file": configuration.key_file,
80
+ "ca_cert_data": configuration.ca_cert_data,
80
81
  }
81
82
  if configuration.assert_hostname is not None:
82
83
  pool_args['assert_hostname'] = (
@@ -1,17 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pulp-python-client
3
- Version: 3.18.0
4
- Summary: Pulp 3 API
5
- Home-page:
6
- Author: Pulp Team
7
- Author-email: pulp-list@redhat.com
8
- License: GPLv2+
9
- Keywords: pulp,pulpcore,client,Pulp 3 API
10
- Description-Content-Type: text/markdown
11
- Requires-Dist: urllib3<3.0.0,>=1.25.3
12
- Requires-Dist: python-dateutil<2.10.0,>=2.8.1
13
- Requires-Dist: pydantic>=2
14
- Requires-Dist: typing-extensions>=4.7.1
15
-
16
- Fetch, Upload, Organize, and Distribute Software Packages
17
-