pulp-python-client 3.12.5__py3-none-any.whl → 3.13.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.

Files changed (68) hide show
  1. pulp_python_client-3.13.1.dist-info/METADATA +17 -0
  2. pulp_python_client-3.13.1.dist-info/RECORD +64 -0
  3. {pulp_python_client-3.12.5.dist-info → pulp_python_client-3.13.1.dist-info}/WHEEL +1 -1
  4. pulpcore/client/pulp_python/__init__.py +9 -10
  5. pulpcore/client/pulp_python/api/__init__.py +1 -2
  6. pulpcore/client/pulp_python/api/content_packages_api.py +1800 -655
  7. pulpcore/client/pulp_python/api/distributions_pypi_api.py +3755 -1474
  8. pulpcore/client/pulp_python/api/publications_pypi_api.py +2574 -982
  9. pulpcore/client/pulp_python/api/pypi_api.py +302 -128
  10. pulpcore/client/pulp_python/api/pypi_legacy_api.py +326 -153
  11. pulpcore/client/pulp_python/api/pypi_metadata_api.py +319 -139
  12. pulpcore/client/pulp_python/api/pypi_simple_api.py +899 -382
  13. pulpcore/client/pulp_python/api/remotes_python_api.py +4092 -1589
  14. pulpcore/client/pulp_python/api/repositories_python_api.py +4380 -1719
  15. pulpcore/client/pulp_python/api/repositories_python_versions_api.py +1526 -561
  16. pulpcore/client/pulp_python/api_client.py +444 -313
  17. pulpcore/client/pulp_python/api_response.py +21 -0
  18. pulpcore/client/pulp_python/configuration.py +266 -73
  19. pulpcore/client/pulp_python/exceptions.py +99 -20
  20. pulpcore/client/pulp_python/models/__init__.py +5 -8
  21. pulpcore/client/pulp_python/models/async_operation_response.py +60 -96
  22. pulpcore/client/pulp_python/models/content_summary_response.py +70 -154
  23. pulpcore/client/pulp_python/models/exclude_platforms_enum.py +19 -82
  24. pulpcore/client/pulp_python/models/my_permissions_response.py +60 -94
  25. pulpcore/client/pulp_python/models/nested_role.py +71 -155
  26. pulpcore/client/pulp_python/models/nested_role_response.py +70 -152
  27. pulpcore/client/pulp_python/models/object_roles_response.py +70 -96
  28. pulpcore/client/pulp_python/models/package_metadata_response.py +91 -191
  29. pulpcore/client/pulp_python/models/package_types_enum.py +23 -86
  30. pulpcore/client/pulp_python/models/package_upload_task_response.py +85 -154
  31. pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +94 -181
  32. pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +94 -181
  33. pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +94 -181
  34. pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +94 -181
  35. pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +94 -181
  36. pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +94 -181
  37. pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +108 -330
  38. pulpcore/client/pulp_python/models/patchedpython_python_remote.py +204 -864
  39. pulpcore/client/pulp_python/models/patchedpython_python_repository.py +96 -249
  40. pulpcore/client/pulp_python/models/policy_enum.py +18 -81
  41. pulpcore/client/pulp_python/models/python_python_distribution.py +108 -332
  42. pulpcore/client/pulp_python/models/python_python_distribution_response.py +132 -490
  43. pulpcore/client/pulp_python/models/python_python_package_content_response.py +182 -972
  44. pulpcore/client/pulp_python/models/python_python_publication.py +68 -127
  45. pulpcore/client/pulp_python/models/python_python_publication_response.py +93 -269
  46. pulpcore/client/pulp_python/models/python_python_remote.py +204 -866
  47. pulpcore/client/pulp_python/models/python_python_remote_response.py +198 -839
  48. pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +90 -0
  49. pulpcore/client/pulp_python/models/python_python_repository.py +96 -250
  50. pulpcore/client/pulp_python/models/python_python_repository_response.py +122 -407
  51. pulpcore/client/pulp_python/models/repair.py +60 -95
  52. pulpcore/client/pulp_python/models/repository_add_remove_content.py +71 -157
  53. pulpcore/client/pulp_python/models/repository_sync_url.py +68 -129
  54. pulpcore/client/pulp_python/models/repository_version_response.py +104 -296
  55. pulpcore/client/pulp_python/models/set_label.py +80 -130
  56. pulpcore/client/pulp_python/models/set_label_response.py +80 -127
  57. pulpcore/client/pulp_python/models/summary_response.py +70 -160
  58. pulpcore/client/pulp_python/models/unset_label.py +75 -107
  59. pulpcore/client/pulp_python/models/unset_label_response.py +78 -129
  60. pulpcore/client/pulp_python/py.typed +0 -0
  61. pulpcore/client/pulp_python/rest.py +136 -170
  62. pulp_python_client-3.12.5.dist-info/METADATA +0 -17
  63. pulp_python_client-3.12.5.dist-info/RECORD +0 -65
  64. pulpcore/client/pulp_python/models/package_upload.py +0 -190
  65. pulpcore/client/pulp_python/models/python_bander_remote.py +0 -184
  66. pulpcore/client/pulp_python/models/python_python_package_content.py +0 -889
  67. pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py +0 -149
  68. {pulp_python_client-3.12.5.dist-info → pulp_python_client-3.13.1.dist-info}/top_level.txt +0 -0
@@ -1,149 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Pulp 3 API
5
-
6
- Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
7
-
8
- The version of the OpenAPI document: v3
9
- Contact: pulp-list@redhat.com
10
- Generated by: https://openapi-generator.tech
11
- """
12
-
13
-
14
- import pprint
15
- import re # noqa: F401
16
-
17
- import six
18
-
19
- from pulpcore.client.pulp_python.configuration import Configuration
20
-
21
-
22
- class PythonPythonRemoteResponseHiddenFields(object):
23
- """NOTE: This class is auto generated by OpenAPI Generator.
24
- Ref: https://openapi-generator.tech
25
-
26
- Do not edit the class manually.
27
- """
28
-
29
- """
30
- Attributes:
31
- openapi_types (dict): The key is attribute name
32
- and the value is attribute type.
33
- attribute_map (dict): The key is attribute name
34
- and the value is json key in definition.
35
- """
36
- openapi_types = {
37
- 'name': 'str',
38
- 'is_set': 'bool'
39
- }
40
-
41
- attribute_map = {
42
- 'name': 'name',
43
- 'is_set': 'is_set'
44
- }
45
-
46
- def __init__(self, name=None, is_set=None, local_vars_configuration=None): # noqa: E501
47
- """PythonPythonRemoteResponseHiddenFields - a model defined in OpenAPI""" # noqa: E501
48
- if local_vars_configuration is None:
49
- local_vars_configuration = Configuration()
50
- self.local_vars_configuration = local_vars_configuration
51
-
52
- self._name = None
53
- self._is_set = None
54
- self.discriminator = None
55
-
56
- self.name = name
57
- self.is_set = is_set
58
-
59
- @property
60
- def name(self):
61
- """Gets the name of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
62
-
63
-
64
- :return: The name of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
65
- :rtype: str
66
- """
67
- return self._name
68
-
69
- @name.setter
70
- def name(self, name):
71
- """Sets the name of this PythonPythonRemoteResponseHiddenFields.
72
-
73
-
74
- :param name: The name of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
75
- :type: str
76
- """
77
- if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
78
- raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
79
-
80
- self._name = name
81
-
82
- @property
83
- def is_set(self):
84
- """Gets the is_set of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
85
-
86
-
87
- :return: The is_set of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
88
- :rtype: bool
89
- """
90
- return self._is_set
91
-
92
- @is_set.setter
93
- def is_set(self, is_set):
94
- """Sets the is_set of this PythonPythonRemoteResponseHiddenFields.
95
-
96
-
97
- :param is_set: The is_set of this PythonPythonRemoteResponseHiddenFields. # noqa: E501
98
- :type: bool
99
- """
100
- if self.local_vars_configuration.client_side_validation and is_set is None: # noqa: E501
101
- raise ValueError("Invalid value for `is_set`, must not be `None`") # noqa: E501
102
-
103
- self._is_set = is_set
104
-
105
- def to_dict(self):
106
- """Returns the model properties as a dict"""
107
- result = {}
108
-
109
- for attr, _ in six.iteritems(self.openapi_types):
110
- value = getattr(self, attr)
111
- if isinstance(value, list):
112
- result[attr] = list(map(
113
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
114
- value
115
- ))
116
- elif hasattr(value, "to_dict"):
117
- result[attr] = value.to_dict()
118
- elif isinstance(value, dict):
119
- result[attr] = dict(map(
120
- lambda item: (item[0], item[1].to_dict())
121
- if hasattr(item[1], "to_dict") else item,
122
- value.items()
123
- ))
124
- else:
125
- result[attr] = value
126
-
127
- return result
128
-
129
- def to_str(self):
130
- """Returns the string representation of the model"""
131
- return pprint.pformat(self.to_dict())
132
-
133
- def __repr__(self):
134
- """For `print` and `pprint`"""
135
- return self.to_str()
136
-
137
- def __eq__(self, other):
138
- """Returns true if both objects are equal"""
139
- if not isinstance(other, PythonPythonRemoteResponseHiddenFields):
140
- return False
141
-
142
- return self.to_dict() == other.to_dict()
143
-
144
- def __ne__(self, other):
145
- """Returns true if both objects are not equal"""
146
- if not isinstance(other, PythonPythonRemoteResponseHiddenFields):
147
- return True
148
-
149
- return self.to_dict() != other.to_dict()