pulp-python-client 3.12.2__tar.gz → 3.12.4__tar.gz

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 (122) hide show
  1. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/PKG-INFO +1 -1
  2. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/README.md +1 -1
  3. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulp_python_client.egg-info/PKG-INFO +1 -1
  4. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/__init__.py +1 -1
  5. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/content_packages_api.py +14 -8
  6. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/distributions_pypi_api.py +8 -2
  7. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/publications_pypi_api.py +17 -10
  8. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/remotes_python_api.py +8 -2
  9. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/repositories_python_api.py +12 -6
  10. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +13 -6
  11. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api_client.py +1 -1
  12. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/configuration.py +1 -1
  13. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +8 -8
  14. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_distribution_response.py +29 -1
  15. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_package_content_response.py +29 -1
  16. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_publication_response.py +29 -1
  17. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_remote.py +8 -8
  18. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_remote_response.py +37 -9
  19. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_repository_response.py +29 -1
  20. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/repository_version_response.py +29 -1
  21. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/setup.py +1 -1
  22. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginated_repository_version_response_list.py +2 -0
  23. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginatedpython_python_distribution_response_list.py +2 -0
  24. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginatedpython_python_package_content_response_list.py +2 -0
  25. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginatedpython_python_publication_response_list.py +2 -0
  26. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginatedpython_python_remote_response_list.py +10 -8
  27. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_paginatedpython_python_repository_response_list.py +2 -0
  28. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_patchedpython_python_remote.py +4 -4
  29. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_distribution_response.py +1 -0
  30. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_package_content_response.py +1 -0
  31. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_publication_response.py +1 -0
  32. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_remote.py +4 -4
  33. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_remote_response.py +5 -4
  34. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_repository_response.py +1 -0
  35. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repository_version_response.py +1 -0
  36. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulp_python_client.egg-info/SOURCES.txt +0 -0
  37. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulp_python_client.egg-info/dependency_links.txt +0 -0
  38. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulp_python_client.egg-info/requires.txt +0 -0
  39. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulp_python_client.egg-info/top_level.txt +0 -0
  40. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/__init__.py +0 -0
  41. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/__init__.py +0 -0
  42. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/__init__.py +0 -0
  43. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/pypi_api.py +0 -0
  44. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/pypi_legacy_api.py +0 -0
  45. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/pypi_metadata_api.py +0 -0
  46. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/api/pypi_simple_api.py +0 -0
  47. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/exceptions.py +0 -0
  48. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/__init__.py +0 -0
  49. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/async_operation_response.py +0 -0
  50. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/content_summary_response.py +0 -0
  51. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -0
  52. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/my_permissions_response.py +0 -0
  53. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/nested_role.py +0 -0
  54. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/nested_role_response.py +0 -0
  55. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/object_roles_response.py +0 -0
  56. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -0
  57. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/package_types_enum.py +0 -0
  58. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/package_upload.py +0 -0
  59. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -0
  60. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -0
  61. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -0
  62. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -0
  63. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -0
  64. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -0
  65. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -0
  66. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +0 -0
  67. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -0
  68. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/policy_enum.py +0 -0
  69. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_bander_remote.py +0 -0
  70. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_distribution.py +0 -0
  71. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_package_content.py +0 -0
  72. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_publication.py +0 -0
  73. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py +0 -0
  74. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/python_python_repository.py +0 -0
  75. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/repair.py +0 -0
  76. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -0
  77. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -0
  78. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/set_label.py +0 -0
  79. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/set_label_response.py +0 -0
  80. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/summary_response.py +0 -0
  81. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/unset_label.py +0 -0
  82. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/models/unset_label_response.py +0 -0
  83. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/pulpcore/client/pulp_python/rest.py +0 -0
  84. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/setup.cfg +0 -0
  85. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_async_operation_response.py +0 -0
  86. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_content_packages_api.py +0 -0
  87. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_content_summary_response.py +0 -0
  88. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_distributions_pypi_api.py +0 -0
  89. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_exclude_platforms_enum.py +0 -0
  90. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_my_permissions_response.py +0 -0
  91. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_nested_role.py +0 -0
  92. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_nested_role_response.py +0 -0
  93. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_object_roles_response.py +0 -0
  94. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_package_metadata_response.py +0 -0
  95. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_package_types_enum.py +0 -0
  96. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_package_upload.py +0 -0
  97. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_package_upload_task_response.py +0 -0
  98. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_patchedpython_python_distribution.py +0 -0
  99. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_patchedpython_python_repository.py +0 -0
  100. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_policy_enum.py +0 -0
  101. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_publications_pypi_api.py +0 -0
  102. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_pypi_api.py +0 -0
  103. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_pypi_legacy_api.py +0 -0
  104. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_pypi_metadata_api.py +0 -0
  105. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_pypi_simple_api.py +0 -0
  106. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_bander_remote.py +0 -0
  107. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_distribution.py +0 -0
  108. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_package_content.py +0 -0
  109. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_publication.py +0 -0
  110. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_remote_response_hidden_fields.py +0 -0
  111. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_python_python_repository.py +0 -0
  112. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_remotes_python_api.py +0 -0
  113. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repair.py +0 -0
  114. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repositories_python_api.py +0 -0
  115. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repositories_python_versions_api.py +0 -0
  116. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repository_add_remove_content.py +0 -0
  117. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_repository_sync_url.py +0 -0
  118. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_set_label.py +0 -0
  119. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_set_label_response.py +0 -0
  120. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_summary_response.py +0 -0
  121. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_unset_label.py +0 -0
  122. {pulp_python-client-3.12.2 → pulp_python-client-3.12.4}/test/test_unset_label_response.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp_python-client
3
- Version: 3.12.2
3
+ Version: 3.12.4
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -4,7 +4,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: v3
7
- - Package version: 3.12.2
7
+ - Package version: 3.12.4
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp-python-client
3
- Version: 3.12.2
3
+ Version: 3.12.4
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -15,7 +15,7 @@
15
15
 
16
16
  from __future__ import absolute_import
17
17
 
18
- __version__ = "3.12.2"
18
+ __version__ = "3.12.4"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi
@@ -324,12 +324,13 @@ class ContentPackagesApi(object):
324
324
  :param float orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
325
325
  :param str packagetype: Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist
326
326
  :param list[str] packagetype__in: Filter results where packagetype is in a comma-separated list of values
327
+ :param list[str] prn__in: Multiple values may be separated by commas.
327
328
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
328
329
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
329
- :param str q:
330
- :param str repository_version: Repository Version referenced by HREF
331
- :param str repository_version_added: Repository Version referenced by HREF
332
- :param str repository_version_removed: Repository Version referenced by HREF
330
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
331
+ :param str repository_version: Repository Version referenced by HREF/PRN
332
+ :param str repository_version_added: Repository Version referenced by HREF/PRN
333
+ :param str repository_version_removed: Repository Version referenced by HREF/PRN
333
334
  :param str requires_python: Filter results where requires_python matches value
334
335
  :param str requires_python__contains: Filter results where requires_python contains value
335
336
  :param list[str] requires_python__in: Filter results where requires_python is in a comma-separated list of values
@@ -381,12 +382,13 @@ class ContentPackagesApi(object):
381
382
  :param float orphaned_for: Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
382
383
  :param str packagetype: Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist
383
384
  :param list[str] packagetype__in: Filter results where packagetype is in a comma-separated list of values
385
+ :param list[str] prn__in: Multiple values may be separated by commas.
384
386
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
385
387
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
386
- :param str q:
387
- :param str repository_version: Repository Version referenced by HREF
388
- :param str repository_version_added: Repository Version referenced by HREF
389
- :param str repository_version_removed: Repository Version referenced by HREF
388
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
389
+ :param str repository_version: Repository Version referenced by HREF/PRN
390
+ :param str repository_version_added: Repository Version referenced by HREF/PRN
391
+ :param str repository_version_removed: Repository Version referenced by HREF/PRN
390
392
  :param str requires_python: Filter results where requires_python matches value
391
393
  :param str requires_python__contains: Filter results where requires_python contains value
392
394
  :param list[str] requires_python__in: Filter results where requires_python is in a comma-separated list of values
@@ -431,6 +433,7 @@ class ContentPackagesApi(object):
431
433
  'orphaned_for',
432
434
  'packagetype',
433
435
  'packagetype__in',
436
+ 'prn__in',
434
437
  'pulp_href__in',
435
438
  'pulp_id__in',
436
439
  'q',
@@ -509,6 +512,9 @@ class ContentPackagesApi(object):
509
512
  if 'packagetype__in' in local_var_params and local_var_params['packagetype__in'] is not None: # noqa: E501
510
513
  query_params.append(('packagetype__in', local_var_params['packagetype__in'])) # noqa: E501
511
514
  collection_formats['packagetype__in'] = 'csv' # noqa: E501
515
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
516
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
517
+ collection_formats['prn__in'] = 'csv' # noqa: E501
512
518
  if 'pulp_href__in' in local_var_params and local_var_params['pulp_href__in'] is not None: # noqa: E501
513
519
  query_params.append(('pulp_href__in', local_var_params['pulp_href__in'])) # noqa: E501
514
520
  collection_formats['pulp_href__in'] = 'csv' # noqa: E501
@@ -422,10 +422,11 @@ class DistributionsPypiApi(object):
422
422
  :param str name__startswith: Filter results where name starts with value
423
423
  :param int offset: The initial index from which to return the results.
424
424
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
425
+ :param list[str] prn__in: Multiple values may be separated by commas.
425
426
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
426
427
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
427
428
  :param str pulp_label_select: Filter labels by search string
428
- :param str q:
429
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
429
430
  :param str repository: Filter results where repository matches value
430
431
  :param list[str] repository__in: Filter results where repository is in a comma-separated list of values
431
432
  :param str with_content: Filter distributions based on the content served by them
@@ -471,10 +472,11 @@ class DistributionsPypiApi(object):
471
472
  :param str name__startswith: Filter results where name starts with value
472
473
  :param int offset: The initial index from which to return the results.
473
474
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
475
+ :param list[str] prn__in: Multiple values may be separated by commas.
474
476
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
475
477
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
476
478
  :param str pulp_label_select: Filter labels by search string
477
- :param str q:
479
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
478
480
  :param str repository: Filter results where repository matches value
479
481
  :param list[str] repository__in: Filter results where repository is in a comma-separated list of values
480
482
  :param str with_content: Filter distributions based on the content served by them
@@ -513,6 +515,7 @@ class DistributionsPypiApi(object):
513
515
  'name__startswith',
514
516
  'offset',
515
517
  'ordering',
518
+ 'prn__in',
516
519
  'pulp_href__in',
517
520
  'pulp_id__in',
518
521
  'pulp_label_select',
@@ -581,6 +584,9 @@ class DistributionsPypiApi(object):
581
584
  if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
582
585
  query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
583
586
  collection_formats['ordering'] = 'csv' # noqa: E501
587
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
588
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
589
+ collection_formats['prn__in'] = 'csv' # noqa: E501
584
590
  if 'pulp_href__in' in local_var_params and local_var_params['pulp_href__in'] is not None: # noqa: E501
585
591
  query_params.append(('pulp_href__in', local_var_params['pulp_href__in'])) # noqa: E501
586
592
  collection_formats['pulp_href__in'] = 'csv' # noqa: E501
@@ -402,11 +402,12 @@ class PublicationsPypiApi(object):
402
402
  >>> result = thread.get()
403
403
 
404
404
  :param async_req bool: execute request asynchronously
405
- :param str content: Content Unit referenced by HREF
406
- :param str content__in: Content Unit referenced by HREF
405
+ :param str content: Content Unit referenced by HREF/PRN
406
+ :param list[str] content__in: Multiple values may be separated by commas.
407
407
  :param int limit: Number of results to return per page.
408
408
  :param int offset: The initial index from which to return the results.
409
409
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
410
+ :param list[str] prn__in: Multiple values may be separated by commas.
410
411
  :param datetime pulp_created: Filter results where pulp_created matches value
411
412
  :param datetime pulp_created__gt: Filter results where pulp_created is greater than value
412
413
  :param datetime pulp_created__gte: Filter results where pulp_created is greater than or equal to value
@@ -415,9 +416,9 @@ class PublicationsPypiApi(object):
415
416
  :param list[datetime] pulp_created__range: Filter results where pulp_created is between two comma separated values
416
417
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
417
418
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
418
- :param str q:
419
- :param str repository: Repository referenced by HREF
420
- :param str repository_version: Repository Version referenced by HREF
419
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
420
+ :param str repository: Repository referenced by HREF/PRN
421
+ :param str repository_version: Repository Version referenced by HREF/PRN
421
422
  :param list[str] fields: A list of fields to include in the response.
422
423
  :param list[str] exclude_fields: A list of fields to exclude from the response.
423
424
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -444,11 +445,12 @@ class PublicationsPypiApi(object):
444
445
  >>> result = thread.get()
445
446
 
446
447
  :param async_req bool: execute request asynchronously
447
- :param str content: Content Unit referenced by HREF
448
- :param str content__in: Content Unit referenced by HREF
448
+ :param str content: Content Unit referenced by HREF/PRN
449
+ :param list[str] content__in: Multiple values may be separated by commas.
449
450
  :param int limit: Number of results to return per page.
450
451
  :param int offset: The initial index from which to return the results.
451
452
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
453
+ :param list[str] prn__in: Multiple values may be separated by commas.
452
454
  :param datetime pulp_created: Filter results where pulp_created matches value
453
455
  :param datetime pulp_created__gt: Filter results where pulp_created is greater than value
454
456
  :param datetime pulp_created__gte: Filter results where pulp_created is greater than or equal to value
@@ -457,9 +459,9 @@ class PublicationsPypiApi(object):
457
459
  :param list[datetime] pulp_created__range: Filter results where pulp_created is between two comma separated values
458
460
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
459
461
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
460
- :param str q:
461
- :param str repository: Repository referenced by HREF
462
- :param str repository_version: Repository Version referenced by HREF
462
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
463
+ :param str repository: Repository referenced by HREF/PRN
464
+ :param str repository_version: Repository Version referenced by HREF/PRN
463
465
  :param list[str] fields: A list of fields to include in the response.
464
466
  :param list[str] exclude_fields: A list of fields to exclude from the response.
465
467
  :param _return_http_data_only: response data without head status code
@@ -484,6 +486,7 @@ class PublicationsPypiApi(object):
484
486
  'limit',
485
487
  'offset',
486
488
  'ordering',
489
+ 'prn__in',
487
490
  'pulp_created',
488
491
  'pulp_created__gt',
489
492
  'pulp_created__gte',
@@ -525,6 +528,7 @@ class PublicationsPypiApi(object):
525
528
  query_params.append(('content', local_var_params['content'])) # noqa: E501
526
529
  if 'content__in' in local_var_params and local_var_params['content__in'] is not None: # noqa: E501
527
530
  query_params.append(('content__in', local_var_params['content__in'])) # noqa: E501
531
+ collection_formats['content__in'] = 'csv' # noqa: E501
528
532
  if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501
529
533
  query_params.append(('limit', local_var_params['limit'])) # noqa: E501
530
534
  if 'offset' in local_var_params and local_var_params['offset'] is not None: # noqa: E501
@@ -532,6 +536,9 @@ class PublicationsPypiApi(object):
532
536
  if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
533
537
  query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
534
538
  collection_formats['ordering'] = 'csv' # noqa: E501
539
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
540
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
541
+ collection_formats['prn__in'] = 'csv' # noqa: E501
535
542
  if 'pulp_created' in local_var_params and local_var_params['pulp_created'] is not None: # noqa: E501
536
543
  query_params.append(('pulp_created', local_var_params['pulp_created'])) # noqa: E501
537
544
  if 'pulp_created__gt' in local_var_params and local_var_params['pulp_created__gt'] is not None: # noqa: E501
@@ -553,6 +553,7 @@ class RemotesPythonApi(object):
553
553
  :param str name__startswith: Filter results where name starts with value
554
554
  :param int offset: The initial index from which to return the results.
555
555
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
556
+ :param list[str] prn__in: Multiple values may be separated by commas.
556
557
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
557
558
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
558
559
  :param str pulp_label_select: Filter labels by search string
@@ -562,7 +563,7 @@ class RemotesPythonApi(object):
562
563
  :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value
563
564
  :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value
564
565
  :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values
565
- :param str q:
566
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
566
567
  :param list[str] fields: A list of fields to include in the response.
567
568
  :param list[str] exclude_fields: A list of fields to exclude from the response.
568
569
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -601,6 +602,7 @@ class RemotesPythonApi(object):
601
602
  :param str name__startswith: Filter results where name starts with value
602
603
  :param int offset: The initial index from which to return the results.
603
604
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
605
+ :param list[str] prn__in: Multiple values may be separated by commas.
604
606
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
605
607
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
606
608
  :param str pulp_label_select: Filter labels by search string
@@ -610,7 +612,7 @@ class RemotesPythonApi(object):
610
612
  :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value
611
613
  :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value
612
614
  :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values
613
- :param str q:
615
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
614
616
  :param list[str] fields: A list of fields to include in the response.
615
617
  :param list[str] exclude_fields: A list of fields to exclude from the response.
616
618
  :param _return_http_data_only: response data without head status code
@@ -642,6 +644,7 @@ class RemotesPythonApi(object):
642
644
  'name__startswith',
643
645
  'offset',
644
646
  'ordering',
647
+ 'prn__in',
645
648
  'pulp_href__in',
646
649
  'pulp_id__in',
647
650
  'pulp_label_select',
@@ -704,6 +707,9 @@ class RemotesPythonApi(object):
704
707
  if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
705
708
  query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
706
709
  collection_formats['ordering'] = 'csv' # noqa: E501
710
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
711
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
712
+ collection_formats['prn__in'] = 'csv' # noqa: E501
707
713
  if 'pulp_href__in' in local_var_params and local_var_params['pulp_href__in'] is not None: # noqa: E501
708
714
  query_params.append(('pulp_href__in', local_var_params['pulp_href__in'])) # noqa: E501
709
715
  collection_formats['pulp_href__in'] = 'csv' # noqa: E501
@@ -406,7 +406,7 @@ class RepositoriesPythonApi(object):
406
406
  >>> result = thread.get()
407
407
 
408
408
  :param async_req bool: execute request asynchronously
409
- :param str latest_with_content: Content Unit referenced by HREF
409
+ :param str latest_with_content: Content Unit referenced by HREF/PRN
410
410
  :param int limit: Number of results to return per page.
411
411
  :param str name: Filter results where name matches value
412
412
  :param str name__contains: Filter results where name contains value
@@ -419,10 +419,11 @@ class RepositoriesPythonApi(object):
419
419
  :param str name__startswith: Filter results where name starts with value
420
420
  :param int offset: The initial index from which to return the results.
421
421
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
422
+ :param list[str] prn__in: Multiple values may be separated by commas.
422
423
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
423
424
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
424
425
  :param str pulp_label_select: Filter labels by search string
425
- :param str q:
426
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
426
427
  :param str remote: Foreign Key referenced by HREF
427
428
  :param int retain_repo_versions: Filter results where retain_repo_versions matches value
428
429
  :param int retain_repo_versions__gt: Filter results where retain_repo_versions is greater than value
@@ -432,7 +433,7 @@ class RepositoriesPythonApi(object):
432
433
  :param int retain_repo_versions__lte: Filter results where retain_repo_versions is less than or equal to value
433
434
  :param int retain_repo_versions__ne: Filter results where retain_repo_versions not equal to value
434
435
  :param list[int] retain_repo_versions__range: Filter results where retain_repo_versions is between two comma separated values
435
- :param str with_content: Content Unit referenced by HREF
436
+ :param str with_content: Content Unit referenced by HREF/PRN
436
437
  :param list[str] fields: A list of fields to include in the response.
437
438
  :param list[str] exclude_fields: A list of fields to exclude from the response.
438
439
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -459,7 +460,7 @@ class RepositoriesPythonApi(object):
459
460
  >>> result = thread.get()
460
461
 
461
462
  :param async_req bool: execute request asynchronously
462
- :param str latest_with_content: Content Unit referenced by HREF
463
+ :param str latest_with_content: Content Unit referenced by HREF/PRN
463
464
  :param int limit: Number of results to return per page.
464
465
  :param str name: Filter results where name matches value
465
466
  :param str name__contains: Filter results where name contains value
@@ -472,10 +473,11 @@ class RepositoriesPythonApi(object):
472
473
  :param str name__startswith: Filter results where name starts with value
473
474
  :param int offset: The initial index from which to return the results.
474
475
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
476
+ :param list[str] prn__in: Multiple values may be separated by commas.
475
477
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
476
478
  :param list[str] pulp_id__in: Multiple values may be separated by commas.
477
479
  :param str pulp_label_select: Filter labels by search string
478
- :param str q:
480
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
479
481
  :param str remote: Foreign Key referenced by HREF
480
482
  :param int retain_repo_versions: Filter results where retain_repo_versions matches value
481
483
  :param int retain_repo_versions__gt: Filter results where retain_repo_versions is greater than value
@@ -485,7 +487,7 @@ class RepositoriesPythonApi(object):
485
487
  :param int retain_repo_versions__lte: Filter results where retain_repo_versions is less than or equal to value
486
488
  :param int retain_repo_versions__ne: Filter results where retain_repo_versions not equal to value
487
489
  :param list[int] retain_repo_versions__range: Filter results where retain_repo_versions is between two comma separated values
488
- :param str with_content: Content Unit referenced by HREF
490
+ :param str with_content: Content Unit referenced by HREF/PRN
489
491
  :param list[str] fields: A list of fields to include in the response.
490
492
  :param list[str] exclude_fields: A list of fields to exclude from the response.
491
493
  :param _return_http_data_only: response data without head status code
@@ -518,6 +520,7 @@ class RepositoriesPythonApi(object):
518
520
  'name__startswith',
519
521
  'offset',
520
522
  'ordering',
523
+ 'prn__in',
521
524
  'pulp_href__in',
522
525
  'pulp_id__in',
523
526
  'pulp_label_select',
@@ -586,6 +589,9 @@ class RepositoriesPythonApi(object):
586
589
  if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
587
590
  query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
588
591
  collection_formats['ordering'] = 'csv' # noqa: E501
592
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
593
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
594
+ collection_formats['prn__in'] = 'csv' # noqa: E501
589
595
  if 'pulp_href__in' in local_var_params and local_var_params['pulp_href__in'] is not None: # noqa: E501
590
596
  query_params.append(('pulp_href__in', local_var_params['pulp_href__in'])) # noqa: E501
591
597
  collection_formats['pulp_href__in'] = 'csv' # noqa: E501
@@ -162,8 +162,8 @@ class RepositoriesPythonVersionsApi(object):
162
162
 
163
163
  :param async_req bool: execute request asynchronously
164
164
  :param str python_python_repository_href: (required)
165
- :param str content: Content Unit referenced by HREF
166
- :param str content__in: Content Unit referenced by HREF
165
+ :param str content: Content Unit referenced by HREF/PRN
166
+ :param list[str] content__in: Multiple values may be separated by commas.
167
167
  :param int limit: Number of results to return per page.
168
168
  :param int number: Filter results where number matches value
169
169
  :param int number__gt: Filter results where number is greater than value
@@ -173,6 +173,7 @@ class RepositoriesPythonVersionsApi(object):
173
173
  :param list[int] number__range: Filter results where number is between two comma separated values
174
174
  :param int offset: The initial index from which to return the results.
175
175
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
176
+ :param list[str] prn__in: Multiple values may be separated by commas.
176
177
  :param datetime pulp_created: Filter results where pulp_created matches value
177
178
  :param datetime pulp_created__gt: Filter results where pulp_created is greater than value
178
179
  :param datetime pulp_created__gte: Filter results where pulp_created is greater than or equal to value
@@ -180,7 +181,7 @@ class RepositoriesPythonVersionsApi(object):
180
181
  :param datetime pulp_created__lte: Filter results where pulp_created is less than or equal to value
181
182
  :param list[datetime] pulp_created__range: Filter results where pulp_created is between two comma separated values
182
183
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
183
- :param str q:
184
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
184
185
  :param list[str] fields: A list of fields to include in the response.
185
186
  :param list[str] exclude_fields: A list of fields to exclude from the response.
186
187
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -208,8 +209,8 @@ class RepositoriesPythonVersionsApi(object):
208
209
 
209
210
  :param async_req bool: execute request asynchronously
210
211
  :param str python_python_repository_href: (required)
211
- :param str content: Content Unit referenced by HREF
212
- :param str content__in: Content Unit referenced by HREF
212
+ :param str content: Content Unit referenced by HREF/PRN
213
+ :param list[str] content__in: Multiple values may be separated by commas.
213
214
  :param int limit: Number of results to return per page.
214
215
  :param int number: Filter results where number matches value
215
216
  :param int number__gt: Filter results where number is greater than value
@@ -219,6 +220,7 @@ class RepositoriesPythonVersionsApi(object):
219
220
  :param list[int] number__range: Filter results where number is between two comma separated values
220
221
  :param int offset: The initial index from which to return the results.
221
222
  :param list[str] ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
223
+ :param list[str] prn__in: Multiple values may be separated by commas.
222
224
  :param datetime pulp_created: Filter results where pulp_created matches value
223
225
  :param datetime pulp_created__gt: Filter results where pulp_created is greater than value
224
226
  :param datetime pulp_created__gte: Filter results where pulp_created is greater than or equal to value
@@ -226,7 +228,7 @@ class RepositoriesPythonVersionsApi(object):
226
228
  :param datetime pulp_created__lte: Filter results where pulp_created is less than or equal to value
227
229
  :param list[datetime] pulp_created__range: Filter results where pulp_created is between two comma separated values
228
230
  :param list[str] pulp_href__in: Multiple values may be separated by commas.
229
- :param str q:
231
+ :param str q: Filter results by using NOT, AND and OR operations on other filters
230
232
  :param list[str] fields: A list of fields to include in the response.
231
233
  :param list[str] exclude_fields: A list of fields to exclude from the response.
232
234
  :param _return_http_data_only: response data without head status code
@@ -258,6 +260,7 @@ class RepositoriesPythonVersionsApi(object):
258
260
  'number__range',
259
261
  'offset',
260
262
  'ordering',
263
+ 'prn__in',
261
264
  'pulp_created',
262
265
  'pulp_created__gt',
263
266
  'pulp_created__gte',
@@ -302,6 +305,7 @@ class RepositoriesPythonVersionsApi(object):
302
305
  query_params.append(('content', local_var_params['content'])) # noqa: E501
303
306
  if 'content__in' in local_var_params and local_var_params['content__in'] is not None: # noqa: E501
304
307
  query_params.append(('content__in', local_var_params['content__in'])) # noqa: E501
308
+ collection_formats['content__in'] = 'csv' # noqa: E501
305
309
  if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501
306
310
  query_params.append(('limit', local_var_params['limit'])) # noqa: E501
307
311
  if 'number' in local_var_params and local_var_params['number'] is not None: # noqa: E501
@@ -322,6 +326,9 @@ class RepositoriesPythonVersionsApi(object):
322
326
  if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
323
327
  query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
324
328
  collection_formats['ordering'] = 'csv' # noqa: E501
329
+ if 'prn__in' in local_var_params and local_var_params['prn__in'] is not None: # noqa: E501
330
+ query_params.append(('prn__in', local_var_params['prn__in'])) # noqa: E501
331
+ collection_formats['prn__in'] = 'csv' # noqa: E501
325
332
  if 'pulp_created' in local_var_params and local_var_params['pulp_created'] is not None: # noqa: E501
326
333
  query_params.append(('pulp_created', local_var_params['pulp_created'])) # noqa: E501
327
334
  if 'pulp_created__gt' in local_var_params and local_var_params['pulp_created__gt'] is not None: # noqa: E501
@@ -79,7 +79,7 @@ class ApiClient(object):
79
79
  self.default_headers[header_name] = header_value
80
80
  self.cookie = cookie
81
81
  # Set default User-Agent.
82
- self.user_agent = 'OpenAPI-Generator/3.12.2/python'
82
+ self.user_agent = 'OpenAPI-Generator/3.12.4/python'
83
83
  self.client_side_validation = configuration.client_side_validation
84
84
 
85
85
  def __enter__(self):
@@ -376,7 +376,7 @@ conf = pulpcore.client.pulp_python.Configuration(
376
376
  "OS: {env}\n"\
377
377
  "Python Version: {pyversion}\n"\
378
378
  "Version of the API: v3\n"\
379
- "SDK Package Version: 3.12.2".\
379
+ "SDK Package Version: 3.12.4".\
380
380
  format(env=sys.platform, pyversion=sys.version)
381
381
 
382
382
  def get_host_settings(self):
@@ -565,8 +565,8 @@ class PatchedpythonPythonRemote(object):
565
565
  :type: float
566
566
  """
567
567
  if (self.local_vars_configuration.client_side_validation and
568
- total_timeout is not None and total_timeout < 0): # noqa: E501
569
- raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0`") # noqa: E501
568
+ total_timeout is not None and total_timeout < 0.0): # noqa: E501
569
+ raise ValueError("Invalid value for `total_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
570
570
 
571
571
  self._total_timeout = total_timeout
572
572
 
@@ -591,8 +591,8 @@ class PatchedpythonPythonRemote(object):
591
591
  :type: float
592
592
  """
593
593
  if (self.local_vars_configuration.client_side_validation and
594
- connect_timeout is not None and connect_timeout < 0): # noqa: E501
595
- raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
594
+ connect_timeout is not None and connect_timeout < 0.0): # noqa: E501
595
+ raise ValueError("Invalid value for `connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
596
596
 
597
597
  self._connect_timeout = connect_timeout
598
598
 
@@ -617,8 +617,8 @@ class PatchedpythonPythonRemote(object):
617
617
  :type: float
618
618
  """
619
619
  if (self.local_vars_configuration.client_side_validation and
620
- sock_connect_timeout is not None and sock_connect_timeout < 0): # noqa: E501
621
- raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0`") # noqa: E501
620
+ sock_connect_timeout is not None and sock_connect_timeout < 0.0): # noqa: E501
621
+ raise ValueError("Invalid value for `sock_connect_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
622
622
 
623
623
  self._sock_connect_timeout = sock_connect_timeout
624
624
 
@@ -643,8 +643,8 @@ class PatchedpythonPythonRemote(object):
643
643
  :type: float
644
644
  """
645
645
  if (self.local_vars_configuration.client_side_validation and
646
- sock_read_timeout is not None and sock_read_timeout < 0): # noqa: E501
647
- raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0`") # noqa: E501
646
+ sock_read_timeout is not None and sock_read_timeout < 0.0): # noqa: E501
647
+ raise ValueError("Invalid value for `sock_read_timeout`, must be a value greater than or equal to `0.0`") # noqa: E501
648
648
 
649
649
  self._sock_read_timeout = sock_read_timeout
650
650
 
@@ -35,6 +35,7 @@ class PythonPythonDistributionResponse(object):
35
35
  """
36
36
  openapi_types = {
37
37
  'pulp_href': 'str',
38
+ 'prn': 'str',
38
39
  'pulp_created': 'datetime',
39
40
  'pulp_last_updated': 'datetime',
40
41
  'base_path': 'str',
@@ -52,6 +53,7 @@ class PythonPythonDistributionResponse(object):
52
53
 
53
54
  attribute_map = {
54
55
  'pulp_href': 'pulp_href',
56
+ 'prn': 'prn',
55
57
  'pulp_created': 'pulp_created',
56
58
  'pulp_last_updated': 'pulp_last_updated',
57
59
  'base_path': 'base_path',
@@ -67,13 +69,14 @@ class PythonPythonDistributionResponse(object):
67
69
  'remote': 'remote'
68
70
  }
69
71
 
70
- def __init__(self, pulp_href=None, pulp_created=None, pulp_last_updated=None, base_path=None, base_url=None, content_guard=None, no_content_change_since=None, hidden=False, pulp_labels=None, name=None, repository=None, publication=None, allow_uploads=True, remote=None, local_vars_configuration=None): # noqa: E501
72
+ def __init__(self, pulp_href=None, prn=None, pulp_created=None, pulp_last_updated=None, base_path=None, base_url=None, content_guard=None, no_content_change_since=None, hidden=False, pulp_labels=None, name=None, repository=None, publication=None, allow_uploads=True, remote=None, local_vars_configuration=None): # noqa: E501
71
73
  """PythonPythonDistributionResponse - a model defined in OpenAPI""" # noqa: E501
72
74
  if local_vars_configuration is None:
73
75
  local_vars_configuration = Configuration()
74
76
  self.local_vars_configuration = local_vars_configuration
75
77
 
76
78
  self._pulp_href = None
79
+ self._prn = None
77
80
  self._pulp_created = None
78
81
  self._pulp_last_updated = None
79
82
  self._base_path = None
@@ -91,6 +94,8 @@ class PythonPythonDistributionResponse(object):
91
94
 
92
95
  if pulp_href is not None:
93
96
  self.pulp_href = pulp_href
97
+ if prn is not None:
98
+ self.prn = prn
94
99
  if pulp_created is not None:
95
100
  self.pulp_created = pulp_created
96
101
  if pulp_last_updated is not None:
@@ -133,6 +138,29 @@ class PythonPythonDistributionResponse(object):
133
138
 
134
139
  self._pulp_href = pulp_href
135
140
 
141
+ @property
142
+ def prn(self):
143
+ """Gets the prn of this PythonPythonDistributionResponse. # noqa: E501
144
+
145
+ The Pulp Resource Name (PRN). # noqa: E501
146
+
147
+ :return: The prn of this PythonPythonDistributionResponse. # noqa: E501
148
+ :rtype: str
149
+ """
150
+ return self._prn
151
+
152
+ @prn.setter
153
+ def prn(self, prn):
154
+ """Sets the prn of this PythonPythonDistributionResponse.
155
+
156
+ The Pulp Resource Name (PRN). # noqa: E501
157
+
158
+ :param prn: The prn of this PythonPythonDistributionResponse. # noqa: E501
159
+ :type: str
160
+ """
161
+
162
+ self._prn = prn
163
+
136
164
  @property
137
165
  def pulp_created(self):
138
166
  """Gets the pulp_created of this PythonPythonDistributionResponse. # noqa: E501