pulp-ansible-client 0.29.2__tar.gz → 0.29.3__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.
Files changed (325) hide show
  1. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/PKG-INFO +4 -2
  2. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/README.md +3 -1
  3. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulp_ansible_client.egg-info/PKG-INFO +4 -2
  4. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulp_ansible_client.egg-info/SOURCES.txt +4 -0
  5. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/__init__.py +5 -1
  6. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_collection_signatures_api.py +16 -1
  7. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_collection_versions_api.py +31 -16
  8. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api_client.py +1 -1
  9. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/configuration.py +1 -1
  10. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/__init__.py +2 -0
  11. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_remote.py +9 -9
  12. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response.py +10 -10
  13. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_version_response.py +6 -6
  14. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_git_remote.py +56 -56
  15. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_git_remote_response.py +40 -40
  16. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_role_remote.py +9 -9
  17. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_role_remote_response.py +10 -10
  18. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_role_response.py +6 -6
  19. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py +9 -9
  20. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patchedansible_git_remote.py +56 -56
  21. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py +9 -9
  22. pulp_ansible_client-0.29.3/pulpcore/client/pulp_ansible/models/remote_network_config.py +178 -0
  23. pulp_ansible_client-0.29.3/pulpcore/client/pulp_ansible/models/remote_network_config_response.py +148 -0
  24. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pyproject.toml +1 -1
  25. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/setup.py +1 -1
  26. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_role_remote_response.py +11 -11
  27. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_role_remote_response_list.py +22 -22
  28. pulp_ansible_client-0.29.3/test/test_remote_network_config.py +70 -0
  29. pulp_ansible_client-0.29.3/test/test_remote_network_config_response.py +65 -0
  30. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulp_ansible_client.egg-info/dependency_links.txt +0 -0
  31. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulp_ansible_client.egg-info/requires.txt +0 -0
  32. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulp_ansible_client.egg-info/top_level.txt +0 -0
  33. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/__init__.py +0 -0
  34. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/__init__.py +0 -0
  35. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/__init__.py +0 -0
  36. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/ansible_collections_api.py +0 -0
  37. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/ansible_copy_api.py +0 -0
  38. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/api_plugin_ansible_search_collection_versions_api.py +0 -0
  39. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/api_roles_api.py +0 -0
  40. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/collection_import_api.py +0 -0
  41. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_collection_deprecations_api.py +0 -0
  42. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_collection_marks_api.py +0 -0
  43. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_namespaces_api.py +0 -0
  44. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/content_roles_api.py +0 -0
  45. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/distributions_ansible_api.py +0 -0
  46. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_api.py +0 -0
  47. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_api.py +0 -0
  48. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_artifacts_collections_api.py +0 -0
  49. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_collection_versions_all_api.py +0 -0
  50. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_collections_all_api.py +0 -0
  51. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_collections_api.py +0 -0
  52. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_collections_versions_api.py +0 -0
  53. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_collections_versions_docs_blob_api.py +0 -0
  54. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_namespaces_api.py +0 -0
  55. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_client_configuration_api.py +0 -0
  56. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_collections_api.py +0 -0
  57. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_all_versions_api.py +0 -0
  58. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_api.py +0 -0
  59. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_artifacts_api.py +0 -0
  60. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_api.py +0 -0
  61. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.py +0 -0
  62. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_api.py +0 -0
  63. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.py +0 -0
  64. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_artifacts_collections_v3_api.py +0 -0
  65. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_api.py +0 -0
  66. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_api.py +0 -0
  67. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_artifacts_collections_api.py +0 -0
  68. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_collection_versions_all_api.py +0 -0
  69. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_collections_all_api.py +0 -0
  70. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_collections_api.py +0 -0
  71. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_collections_versions_api.py +0 -0
  72. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_collections_versions_docs_blob_api.py +0 -0
  73. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_namespaces_api.py +0 -0
  74. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api.py +0 -0
  75. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_collections_api.py +0 -0
  76. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_versions_api.py +0 -0
  77. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_api.py +0 -0
  78. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_artifacts_api.py +0 -0
  79. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api.py +0 -0
  80. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.py +0 -0
  81. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_api.py +0 -0
  82. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.py +0 -0
  83. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_default_api_v3_plugin_ansible_search_collection_versions_api.py +0 -0
  84. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/pulp_ansible_tags_api.py +0 -0
  85. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/remotes_collection_api.py +0 -0
  86. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/remotes_git_api.py +0 -0
  87. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/remotes_role_api.py +0 -0
  88. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/repositories_ansible_api.py +0 -0
  89. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/repositories_ansible_versions_api.py +0 -0
  90. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api/versions_api.py +0 -0
  91. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/api_response.py +0 -0
  92. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/exceptions.py +0 -0
  93. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_collection_deprecated.py +0 -0
  94. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_collection_deprecated_response.py +0 -0
  95. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution.py +0 -0
  96. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution_response.py +0 -0
  97. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_namespace_metadata.py +0 -0
  98. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_namespace_metadata_response.py +0 -0
  99. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_repository.py +0 -0
  100. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_ansible_repository_response.py +0 -0
  101. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response_hidden_fields_inner.py +0 -0
  102. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_response.py +0 -0
  103. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_version_mark.py +0 -0
  104. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_version_mark_response.py +0 -0
  105. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_collection_version_signature_response.py +0 -0
  106. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_repository_mark.py +0 -0
  107. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_repository_rebuild.py +0 -0
  108. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_repository_signature.py +0 -0
  109. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_repository_sync_url.py +0 -0
  110. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/ansible_role.py +0 -0
  111. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/artifact_ref_response.py +0 -0
  112. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/async_operation_response.py +0 -0
  113. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/client_configuration_response.py +0 -0
  114. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_import_detail_response.py +0 -0
  115. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_metadata_response.py +0 -0
  116. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_namespace_response.py +0 -0
  117. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_ref_response.py +0 -0
  118. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_response.py +0 -0
  119. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_summary_response.py +0 -0
  120. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_summary_response_tags_inner.py +0 -0
  121. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_copy_move.py +0 -0
  122. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_docs_response.py +0 -0
  123. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_list_response.py +0 -0
  124. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_response.py +0 -0
  125. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_search_list.py +0 -0
  126. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_search_list_response.py +0 -0
  127. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/collection_version_signature_response.py +0 -0
  128. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/content_summary_response.py +0 -0
  129. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/copy.py +0 -0
  130. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/galaxy_role_response.py +0 -0
  131. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/galaxy_role_version_response.py +0 -0
  132. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/my_permissions_response.py +0 -0
  133. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/namespace_link.py +0 -0
  134. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/namespace_link_response.py +0 -0
  135. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/nested_role.py +0 -0
  136. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/nested_role_response.py +0 -0
  137. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/object_roles_response.py +0 -0
  138. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_collection_response_list.py +0 -0
  139. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_links.py +0 -0
  140. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_meta.py +0 -0
  141. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_collection_version_list_response_list.py +0 -0
  142. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_collection_version_search_list_response_list.py +0 -0
  143. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_response_list.py +0 -0
  144. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_version_response_list.py +0 -0
  145. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_repository_version_response_list.py +0 -0
  146. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginated_tag_response_list.py +0 -0
  147. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_collection_deprecated_response_list.py +0 -0
  148. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_distribution_response_list.py +0 -0
  149. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_namespace_metadata_response_list.py +0 -0
  150. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_repository_response_list.py +0 -0
  151. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_collection_remote_response_list.py +0 -0
  152. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_collection_response_list.py +0 -0
  153. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_mark_response_list.py +0 -0
  154. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_response_list.py +0 -0
  155. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_signature_response_list.py +0 -0
  156. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_git_remote_response_list.py +0 -0
  157. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_role_remote_response_list.py +0 -0
  158. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/paginatedansible_role_response_list.py +0 -0
  159. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patched_collection.py +0 -0
  160. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patchedansible_ansible_distribution.py +0 -0
  161. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/patchedansible_ansible_repository.py +0 -0
  162. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/policy_enum.py +0 -0
  163. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repair.py +0 -0
  164. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repo_metadata_response.py +0 -0
  165. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repository.py +0 -0
  166. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repository_add_remove_content.py +0 -0
  167. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repository_response.py +0 -0
  168. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/repository_version_response.py +0 -0
  169. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/set_label.py +0 -0
  170. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/set_label_response.py +0 -0
  171. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/tag_response.py +0 -0
  172. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/unpaginated_collection_version_response.py +0 -0
  173. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/unset_label.py +0 -0
  174. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/models/unset_label_response.py +0 -0
  175. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/py.typed +0 -0
  176. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/pulpcore/client/pulp_ansible/rest.py +0 -0
  177. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/setup.cfg +0 -0
  178. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_collection_deprecated.py +0 -0
  179. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_collection_deprecated_response.py +0 -0
  180. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_distribution.py +0 -0
  181. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_distribution_response.py +0 -0
  182. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_namespace_metadata.py +0 -0
  183. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_namespace_metadata_response.py +0 -0
  184. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_repository.py +0 -0
  185. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_ansible_repository_response.py +0 -0
  186. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_remote.py +5 -5
  187. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_remote_response.py +10 -10
  188. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_remote_response_hidden_fields_inner.py +0 -0
  189. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_response.py +0 -0
  190. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_version_mark.py +0 -0
  191. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_version_mark_response.py +0 -0
  192. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_version_response.py +4 -4
  193. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collection_version_signature_response.py +0 -0
  194. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_collections_api.py +0 -0
  195. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_copy_api.py +0 -0
  196. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_git_remote.py +16 -16
  197. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_git_remote_response.py +19 -19
  198. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_repository_mark.py +0 -0
  199. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_repository_rebuild.py +0 -0
  200. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_repository_signature.py +0 -0
  201. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_repository_sync_url.py +0 -0
  202. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_role.py +0 -0
  203. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_role_remote.py +5 -5
  204. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_ansible_role_response.py +4 -4
  205. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_api_plugin_ansible_search_collection_versions_api.py +0 -0
  206. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_api_roles_api.py +0 -0
  207. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_artifact_ref_response.py +0 -0
  208. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_async_operation_response.py +0 -0
  209. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_client_configuration_response.py +0 -0
  210. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_import_api.py +0 -0
  211. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_import_detail_response.py +0 -0
  212. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_metadata_response.py +0 -0
  213. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_namespace_response.py +0 -0
  214. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_ref_response.py +0 -0
  215. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_response.py +0 -0
  216. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_summary_response.py +0 -0
  217. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_summary_response_tags_inner.py +0 -0
  218. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_copy_move.py +0 -0
  219. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_docs_response.py +0 -0
  220. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_list_response.py +0 -0
  221. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_response.py +0 -0
  222. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_search_list.py +0 -0
  223. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_search_list_response.py +0 -0
  224. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_collection_version_signature_response.py +0 -0
  225. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_collection_deprecations_api.py +0 -0
  226. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_collection_marks_api.py +0 -0
  227. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_collection_signatures_api.py +0 -0
  228. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_collection_versions_api.py +0 -0
  229. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_namespaces_api.py +0 -0
  230. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_roles_api.py +0 -0
  231. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_content_summary_response.py +0 -0
  232. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_copy.py +0 -0
  233. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_distributions_ansible_api.py +0 -0
  234. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_galaxy_role_response.py +0 -0
  235. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_galaxy_role_version_response.py +0 -0
  236. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_my_permissions_response.py +0 -0
  237. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_namespace_link.py +0 -0
  238. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_namespace_link_response.py +0 -0
  239. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_nested_role.py +0 -0
  240. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_nested_role_response.py +0 -0
  241. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_object_roles_response.py +0 -0
  242. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_collection_response_list.py +0 -0
  243. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_collection_response_list_links.py +0 -0
  244. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_collection_response_list_meta.py +0 -0
  245. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_collection_version_list_response_list.py +0 -0
  246. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_collection_version_search_list_response_list.py +0 -0
  247. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_galaxy_role_response_list.py +0 -0
  248. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_galaxy_role_version_response_list.py +0 -0
  249. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_repository_version_response_list.py +0 -0
  250. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginated_tag_response_list.py +0 -0
  251. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_ansible_collection_deprecated_response_list.py +0 -0
  252. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_ansible_distribution_response_list.py +0 -0
  253. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_ansible_namespace_metadata_response_list.py +0 -0
  254. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_ansible_repository_response_list.py +0 -0
  255. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_collection_remote_response_list.py +20 -20
  256. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_collection_response_list.py +0 -0
  257. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_collection_version_mark_response_list.py +0 -0
  258. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_collection_version_response_list.py +8 -8
  259. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_collection_version_signature_response_list.py +0 -0
  260. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_git_remote_response_list.py +38 -38
  261. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_paginatedansible_role_response_list.py +8 -8
  262. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patched_collection.py +0 -0
  263. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patchedansible_ansible_distribution.py +0 -0
  264. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patchedansible_ansible_repository.py +0 -0
  265. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patchedansible_collection_remote.py +5 -5
  266. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patchedansible_git_remote.py +16 -16
  267. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_patchedansible_role_remote.py +5 -5
  268. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_policy_enum.py +0 -0
  269. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_api.py +0 -0
  270. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_api.py +0 -0
  271. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_artifacts_collections_api.py +0 -0
  272. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_collection_versions_all_api.py +0 -0
  273. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_collections_all_api.py +0 -0
  274. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_collections_api.py +0 -0
  275. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_collections_versions_api.py +0 -0
  276. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_collections_versions_docs_blob_api.py +0 -0
  277. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_namespaces_api.py +0 -0
  278. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_client_configuration_api.py +0 -0
  279. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_all_collections_api.py +0 -0
  280. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_all_versions_api.py +0 -0
  281. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_api.py +0 -0
  282. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_artifacts_api.py +0 -0
  283. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_index_api.py +0 -0
  284. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.py +0 -0
  285. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_api.py +0 -0
  286. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.py +0 -0
  287. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_artifacts_collections_v3_api.py +0 -0
  288. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_api.py +0 -0
  289. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_api.py +0 -0
  290. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_artifacts_collections_api.py +0 -0
  291. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_collection_versions_all_api.py +0 -0
  292. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_collections_all_api.py +0 -0
  293. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_collections_api.py +0 -0
  294. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_collections_versions_api.py +0 -0
  295. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_collections_versions_docs_blob_api.py +0 -0
  296. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_namespaces_api.py +0 -0
  297. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_client_configuration_api.py +0 -0
  298. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_collections_api.py +0 -0
  299. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_all_versions_api.py +0 -0
  300. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_api.py +0 -0
  301. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_artifacts_api.py +0 -0
  302. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_api.py +0 -0
  303. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.py +0 -0
  304. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_docs_blob_api.py +0 -0
  305. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.py +0 -0
  306. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_default_api_v3_plugin_ansible_search_collection_versions_api.py +0 -0
  307. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_pulp_ansible_tags_api.py +0 -0
  308. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_remotes_collection_api.py +0 -0
  309. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_remotes_git_api.py +0 -0
  310. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_remotes_role_api.py +0 -0
  311. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repair.py +0 -0
  312. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repo_metadata_response.py +0 -0
  313. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repositories_ansible_api.py +0 -0
  314. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repositories_ansible_versions_api.py +0 -0
  315. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repository.py +0 -0
  316. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repository_add_remove_content.py +0 -0
  317. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repository_response.py +0 -0
  318. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_repository_version_response.py +0 -0
  319. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_set_label.py +0 -0
  320. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_set_label_response.py +0 -0
  321. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_tag_response.py +0 -0
  322. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_unpaginated_collection_version_response.py +0 -0
  323. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_unset_label.py +0 -0
  324. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_unset_label_response.py +0 -0
  325. {pulp_ansible_client-0.29.2 → pulp_ansible_client-0.29.3}/test/test_versions_api.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulp_ansible-client
3
- Version: 0.29.2
3
+ Version: 0.29.3
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -24,7 +24,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
24
24
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
25
25
 
26
26
  - API version: v3
27
- - Package version: 0.29.2
27
+ - Package version: 0.29.3
28
28
  - Generator version: 7.14.0
29
29
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
30
30
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -398,6 +398,8 @@ Class | Method | HTTP request | Description
398
398
  - [PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
399
399
  - [PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
400
400
  - [PolicyEnum](docs/PolicyEnum.md)
401
+ - [RemoteNetworkConfig](docs/RemoteNetworkConfig.md)
402
+ - [RemoteNetworkConfigResponse](docs/RemoteNetworkConfigResponse.md)
401
403
  - [Repair](docs/Repair.md)
402
404
  - [RepoMetadataResponse](docs/RepoMetadataResponse.md)
403
405
  - [Repository](docs/Repository.md)
@@ -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: 0.29.2
7
+ - Package version: 0.29.3
8
8
  - Generator version: 7.14.0
9
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -378,6 +378,8 @@ Class | Method | HTTP request | Description
378
378
  - [PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
379
379
  - [PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
380
380
  - [PolicyEnum](docs/PolicyEnum.md)
381
+ - [RemoteNetworkConfig](docs/RemoteNetworkConfig.md)
382
+ - [RemoteNetworkConfigResponse](docs/RemoteNetworkConfigResponse.md)
381
383
  - [Repair](docs/Repair.md)
382
384
  - [RepoMetadataResponse](docs/RepoMetadataResponse.md)
383
385
  - [Repository](docs/Repository.md)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulp_ansible-client
3
- Version: 0.29.2
3
+ Version: 0.29.3
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -24,7 +24,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
24
24
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
25
25
 
26
26
  - API version: v3
27
- - Package version: 0.29.2
27
+ - Package version: 0.29.3
28
28
  - Generator version: 7.14.0
29
29
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
30
30
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -398,6 +398,8 @@ Class | Method | HTTP request | Description
398
398
  - [PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
399
399
  - [PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
400
400
  - [PolicyEnum](docs/PolicyEnum.md)
401
+ - [RemoteNetworkConfig](docs/RemoteNetworkConfig.md)
402
+ - [RemoteNetworkConfigResponse](docs/RemoteNetworkConfigResponse.md)
401
403
  - [Repair](docs/Repair.md)
402
404
  - [RepoMetadataResponse](docs/RepoMetadataResponse.md)
403
405
  - [Repository](docs/Repository.md)
@@ -156,6 +156,8 @@ pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py
156
156
  pulpcore/client/pulp_ansible/models/patchedansible_git_remote.py
157
157
  pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py
158
158
  pulpcore/client/pulp_ansible/models/policy_enum.py
159
+ pulpcore/client/pulp_ansible/models/remote_network_config.py
160
+ pulpcore/client/pulp_ansible/models/remote_network_config_response.py
159
161
  pulpcore/client/pulp_ansible/models/repair.py
160
162
  pulpcore/client/pulp_ansible/models/repo_metadata_response.py
161
163
  pulpcore/client/pulp_ansible/models/repository.py
@@ -300,6 +302,8 @@ test/test_pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_v
300
302
  test/test_pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.py
301
303
  test/test_pulp_ansible_default_api_v3_plugin_ansible_search_collection_versions_api.py
302
304
  test/test_pulp_ansible_tags_api.py
305
+ test/test_remote_network_config.py
306
+ test/test_remote_network_config_response.py
303
307
  test/test_remotes_collection_api.py
304
308
  test/test_remotes_git_api.py
305
309
  test/test_remotes_role_api.py
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "0.29.2"
18
+ __version__ = "0.29.3"
19
19
 
20
20
  # Define package exports
21
21
  __all__ = [
@@ -166,6 +166,8 @@ __all__ = [
166
166
  "PatchedansibleGitRemote",
167
167
  "PatchedansibleRoleRemote",
168
168
  "PolicyEnum",
169
+ "RemoteNetworkConfig",
170
+ "RemoteNetworkConfigResponse",
169
171
  "Repair",
170
172
  "RepoMetadataResponse",
171
173
  "Repository",
@@ -332,6 +334,8 @@ from pulpcore.client.pulp_ansible.models.patchedansible_collection_remote import
332
334
  from pulpcore.client.pulp_ansible.models.patchedansible_git_remote import PatchedansibleGitRemote as PatchedansibleGitRemote
333
335
  from pulpcore.client.pulp_ansible.models.patchedansible_role_remote import PatchedansibleRoleRemote as PatchedansibleRoleRemote
334
336
  from pulpcore.client.pulp_ansible.models.policy_enum import PolicyEnum as PolicyEnum
337
+ from pulpcore.client.pulp_ansible.models.remote_network_config import RemoteNetworkConfig as RemoteNetworkConfig
338
+ from pulpcore.client.pulp_ansible.models.remote_network_config_response import RemoteNetworkConfigResponse as RemoteNetworkConfigResponse
335
339
  from pulpcore.client.pulp_ansible.models.repair import Repair as Repair
336
340
  from pulpcore.client.pulp_ansible.models.repo_metadata_response import RepoMetadataResponse as RepoMetadataResponse
337
341
  from pulpcore.client.pulp_ansible.models.repository import Repository as Repository
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictBytes, StrictFloat, StrictInt, StrictStr, field_validator
21
- from typing import Dict, List, Optional, Tuple, Union
21
+ from typing import Any, Dict, List, Optional, Tuple, Union
22
22
  from typing_extensions import Annotated
23
23
  from pulpcore.client.pulp_ansible.models.ansible_collection_version_signature_response import AnsibleCollectionVersionSignatureResponse
24
24
  from pulpcore.client.pulp_ansible.models.async_operation_response import AsyncOperationResponse
@@ -56,6 +56,7 @@ class ContentCollectionSignaturesApi:
56
56
  file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
57
57
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
58
58
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
59
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
59
60
  _request_timeout: Union[
60
61
  None,
61
62
  Annotated[StrictFloat, Field(gt=0)],
@@ -87,6 +88,8 @@ class ContentCollectionSignaturesApi:
87
88
  :type upload: str
88
89
  :param file_url: A url that Pulp can download and turn into the content unit.
89
90
  :type file_url: str
91
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
92
+ :type downloader_config: RemoteNetworkConfig
90
93
  :param _request_timeout: timeout setting for this request. If one
91
94
  number provided, it will be total request
92
95
  timeout. It can also be a pair (tuple) of
@@ -117,6 +120,7 @@ class ContentCollectionSignaturesApi:
117
120
  file=file,
118
121
  upload=upload,
119
122
  file_url=file_url,
123
+ downloader_config=downloader_config,
120
124
  _request_auth=_request_auth,
121
125
  _content_type=_content_type,
122
126
  _headers=_headers,
@@ -147,6 +151,7 @@ class ContentCollectionSignaturesApi:
147
151
  file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
148
152
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
149
153
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
154
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
150
155
  _request_timeout: Union[
151
156
  None,
152
157
  Annotated[StrictFloat, Field(gt=0)],
@@ -178,6 +183,8 @@ class ContentCollectionSignaturesApi:
178
183
  :type upload: str
179
184
  :param file_url: A url that Pulp can download and turn into the content unit.
180
185
  :type file_url: str
186
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
187
+ :type downloader_config: RemoteNetworkConfig
181
188
  :param _request_timeout: timeout setting for this request. If one
182
189
  number provided, it will be total request
183
190
  timeout. It can also be a pair (tuple) of
@@ -208,6 +215,7 @@ class ContentCollectionSignaturesApi:
208
215
  file=file,
209
216
  upload=upload,
210
217
  file_url=file_url,
218
+ downloader_config=downloader_config,
211
219
  _request_auth=_request_auth,
212
220
  _content_type=_content_type,
213
221
  _headers=_headers,
@@ -238,6 +246,7 @@ class ContentCollectionSignaturesApi:
238
246
  file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
239
247
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
240
248
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
249
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
241
250
  _request_timeout: Union[
242
251
  None,
243
252
  Annotated[StrictFloat, Field(gt=0)],
@@ -269,6 +278,8 @@ class ContentCollectionSignaturesApi:
269
278
  :type upload: str
270
279
  :param file_url: A url that Pulp can download and turn into the content unit.
271
280
  :type file_url: str
281
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
282
+ :type downloader_config: RemoteNetworkConfig
272
283
  :param _request_timeout: timeout setting for this request. If one
273
284
  number provided, it will be total request
274
285
  timeout. It can also be a pair (tuple) of
@@ -299,6 +310,7 @@ class ContentCollectionSignaturesApi:
299
310
  file=file,
300
311
  upload=upload,
301
312
  file_url=file_url,
313
+ downloader_config=downloader_config,
302
314
  _request_auth=_request_auth,
303
315
  _content_type=_content_type,
304
316
  _headers=_headers,
@@ -324,6 +336,7 @@ class ContentCollectionSignaturesApi:
324
336
  file,
325
337
  upload,
326
338
  file_url,
339
+ downloader_config,
327
340
  _request_auth,
328
341
  _content_type,
329
342
  _headers,
@@ -361,6 +374,8 @@ class ContentCollectionSignaturesApi:
361
374
  _form_params.append(('upload', upload))
362
375
  if file_url is not None:
363
376
  _form_params.append(('file_url', file_url))
377
+ if downloader_config is not None:
378
+ _form_params.append(('downloader_config', downloader_config))
364
379
  if signed_collection is not None:
365
380
  _form_params.append(('signed_collection', signed_collection))
366
381
  # process the body parameter
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
20
  from pydantic import Field, StrictBytes, StrictFloat, StrictInt, StrictStr, field_validator
21
- from typing import Dict, List, Optional, Tuple, Union
21
+ from typing import Any, Dict, List, Optional, Tuple, Union
22
22
  from typing_extensions import Annotated
23
23
  from pulpcore.client.pulp_ansible.models.ansible_collection_version_response import AnsibleCollectionVersionResponse
24
24
  from pulpcore.client.pulp_ansible.models.async_operation_response import AsyncOperationResponse
@@ -50,11 +50,12 @@ class ContentCollectionVersionsApi:
50
50
  def create(
51
51
  self,
52
52
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
53
+ file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
54
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
53
55
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
54
56
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
55
57
  artifact: Annotated[Optional[StrictStr], Field(description="Artifact file representing the physical content")] = None,
56
58
  pulp_labels: Annotated[Optional[Dict[str, Optional[StrictStr]]], Field(description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")] = None,
57
- file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
58
59
  repository: Annotated[Optional[StrictStr], Field(description="A URI of a repository the new content unit should be associated with.")] = None,
59
60
  expected_name: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The name of the collection.")] = None,
60
61
  expected_namespace: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The namespace of the collection.")] = None,
@@ -78,6 +79,10 @@ class ContentCollectionVersionsApi:
78
79
 
79
80
  :param x_task_diagnostics: List of profilers to use on tasks.
80
81
  :type x_task_diagnostics: List[str]
82
+ :param file: An uploaded file that may be turned into the content unit.
83
+ :type file: bytearray
84
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
85
+ :type downloader_config: RemoteNetworkConfig
81
86
  :param file_url: A url that Pulp can download and turn into the content unit.
82
87
  :type file_url: str
83
88
  :param upload: An uncommitted upload that may be turned into the content unit.
@@ -86,8 +91,6 @@ class ContentCollectionVersionsApi:
86
91
  :type artifact: str
87
92
  :param pulp_labels: A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
88
93
  :type pulp_labels: Dict[str, Optional[str]]
89
- :param file: An uploaded file that may be turned into the content unit.
90
- :type file: bytearray
91
94
  :param repository: A URI of a repository the new content unit should be associated with.
92
95
  :type repository: str
93
96
  :param expected_name: The name of the collection.
@@ -120,11 +123,12 @@ class ContentCollectionVersionsApi:
120
123
 
121
124
  _param = self._create_serialize(
122
125
  x_task_diagnostics=x_task_diagnostics,
126
+ file=file,
127
+ downloader_config=downloader_config,
123
128
  file_url=file_url,
124
129
  upload=upload,
125
130
  artifact=artifact,
126
131
  pulp_labels=pulp_labels,
127
- file=file,
128
132
  repository=repository,
129
133
  expected_name=expected_name,
130
134
  expected_namespace=expected_namespace,
@@ -153,11 +157,12 @@ class ContentCollectionVersionsApi:
153
157
  def create_with_http_info(
154
158
  self,
155
159
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
160
+ file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
161
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
156
162
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
157
163
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
158
164
  artifact: Annotated[Optional[StrictStr], Field(description="Artifact file representing the physical content")] = None,
159
165
  pulp_labels: Annotated[Optional[Dict[str, Optional[StrictStr]]], Field(description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")] = None,
160
- file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
161
166
  repository: Annotated[Optional[StrictStr], Field(description="A URI of a repository the new content unit should be associated with.")] = None,
162
167
  expected_name: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The name of the collection.")] = None,
163
168
  expected_namespace: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The namespace of the collection.")] = None,
@@ -181,6 +186,10 @@ class ContentCollectionVersionsApi:
181
186
 
182
187
  :param x_task_diagnostics: List of profilers to use on tasks.
183
188
  :type x_task_diagnostics: List[str]
189
+ :param file: An uploaded file that may be turned into the content unit.
190
+ :type file: bytearray
191
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
192
+ :type downloader_config: RemoteNetworkConfig
184
193
  :param file_url: A url that Pulp can download and turn into the content unit.
185
194
  :type file_url: str
186
195
  :param upload: An uncommitted upload that may be turned into the content unit.
@@ -189,8 +198,6 @@ class ContentCollectionVersionsApi:
189
198
  :type artifact: str
190
199
  :param pulp_labels: A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
191
200
  :type pulp_labels: Dict[str, Optional[str]]
192
- :param file: An uploaded file that may be turned into the content unit.
193
- :type file: bytearray
194
201
  :param repository: A URI of a repository the new content unit should be associated with.
195
202
  :type repository: str
196
203
  :param expected_name: The name of the collection.
@@ -223,11 +230,12 @@ class ContentCollectionVersionsApi:
223
230
 
224
231
  _param = self._create_serialize(
225
232
  x_task_diagnostics=x_task_diagnostics,
233
+ file=file,
234
+ downloader_config=downloader_config,
226
235
  file_url=file_url,
227
236
  upload=upload,
228
237
  artifact=artifact,
229
238
  pulp_labels=pulp_labels,
230
- file=file,
231
239
  repository=repository,
232
240
  expected_name=expected_name,
233
241
  expected_namespace=expected_namespace,
@@ -256,11 +264,12 @@ class ContentCollectionVersionsApi:
256
264
  def create_without_preload_content(
257
265
  self,
258
266
  x_task_diagnostics: Annotated[Optional[List[StrictStr]], Field(description="List of profilers to use on tasks.")] = None,
267
+ file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
268
+ downloader_config: Annotated[Optional[Any], Field(description="Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.")] = None,
259
269
  file_url: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True)]], Field(description="A url that Pulp can download and turn into the content unit.")] = None,
260
270
  upload: Annotated[Optional[StrictStr], Field(description="An uncommitted upload that may be turned into the content unit.")] = None,
261
271
  artifact: Annotated[Optional[StrictStr], Field(description="Artifact file representing the physical content")] = None,
262
272
  pulp_labels: Annotated[Optional[Dict[str, Optional[StrictStr]]], Field(description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")] = None,
263
- file: Annotated[Optional[Union[StrictBytes, StrictStr, Tuple[StrictStr, StrictBytes]]], Field(description="An uploaded file that may be turned into the content unit.")] = None,
264
273
  repository: Annotated[Optional[StrictStr], Field(description="A URI of a repository the new content unit should be associated with.")] = None,
265
274
  expected_name: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The name of the collection.")] = None,
266
275
  expected_namespace: Annotated[Optional[Annotated[str, Field(min_length=1, strict=True, max_length=64)]], Field(description="The namespace of the collection.")] = None,
@@ -284,6 +293,10 @@ class ContentCollectionVersionsApi:
284
293
 
285
294
  :param x_task_diagnostics: List of profilers to use on tasks.
286
295
  :type x_task_diagnostics: List[str]
296
+ :param file: An uploaded file that may be turned into the content unit.
297
+ :type file: bytearray
298
+ :param downloader_config: Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
299
+ :type downloader_config: RemoteNetworkConfig
287
300
  :param file_url: A url that Pulp can download and turn into the content unit.
288
301
  :type file_url: str
289
302
  :param upload: An uncommitted upload that may be turned into the content unit.
@@ -292,8 +305,6 @@ class ContentCollectionVersionsApi:
292
305
  :type artifact: str
293
306
  :param pulp_labels: A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
294
307
  :type pulp_labels: Dict[str, Optional[str]]
295
- :param file: An uploaded file that may be turned into the content unit.
296
- :type file: bytearray
297
308
  :param repository: A URI of a repository the new content unit should be associated with.
298
309
  :type repository: str
299
310
  :param expected_name: The name of the collection.
@@ -326,11 +337,12 @@ class ContentCollectionVersionsApi:
326
337
 
327
338
  _param = self._create_serialize(
328
339
  x_task_diagnostics=x_task_diagnostics,
340
+ file=file,
341
+ downloader_config=downloader_config,
329
342
  file_url=file_url,
330
343
  upload=upload,
331
344
  artifact=artifact,
332
345
  pulp_labels=pulp_labels,
333
- file=file,
334
346
  repository=repository,
335
347
  expected_name=expected_name,
336
348
  expected_namespace=expected_namespace,
@@ -354,11 +366,12 @@ class ContentCollectionVersionsApi:
354
366
  def _create_serialize(
355
367
  self,
356
368
  x_task_diagnostics,
369
+ file,
370
+ downloader_config,
357
371
  file_url,
358
372
  upload,
359
373
  artifact,
360
374
  pulp_labels,
361
- file,
362
375
  repository,
363
376
  expected_name,
364
377
  expected_namespace,
@@ -390,6 +403,10 @@ class ContentCollectionVersionsApi:
390
403
  if x_task_diagnostics is not None:
391
404
  _header_params['X-Task-Diagnostics'] = x_task_diagnostics
392
405
  # process the form parameters
406
+ if file is not None:
407
+ _files['file'] = file
408
+ if downloader_config is not None:
409
+ _form_params.append(('downloader_config', downloader_config))
393
410
  if file_url is not None:
394
411
  _form_params.append(('file_url', file_url))
395
412
  if upload is not None:
@@ -398,8 +415,6 @@ class ContentCollectionVersionsApi:
398
415
  _form_params.append(('artifact', artifact))
399
416
  if pulp_labels is not None:
400
417
  _form_params.append(('pulp_labels', pulp_labels))
401
- if file is not None:
402
- _files['file'] = file
403
418
  if repository is not None:
404
419
  _form_params.append(('repository', repository))
405
420
  if expected_name is not None:
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.29.2/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.29.3/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -556,7 +556,7 @@ conf = pulpcore.client.pulp_ansible.Configuration(
556
556
  "OS: {env}\n"\
557
557
  "Python Version: {pyversion}\n"\
558
558
  "Version of the API: v3\n"\
559
- "SDK Package Version: 0.29.2".\
559
+ "SDK Package Version: 0.29.3".\
560
560
  format(env=sys.platform, pyversion=sys.version)
561
561
 
562
562
  def get_host_settings(self) -> List[HostSetting]:
@@ -96,6 +96,8 @@ from pulpcore.client.pulp_ansible.models.patchedansible_collection_remote import
96
96
  from pulpcore.client.pulp_ansible.models.patchedansible_git_remote import PatchedansibleGitRemote
97
97
  from pulpcore.client.pulp_ansible.models.patchedansible_role_remote import PatchedansibleRoleRemote
98
98
  from pulpcore.client.pulp_ansible.models.policy_enum import PolicyEnum
99
+ from pulpcore.client.pulp_ansible.models.remote_network_config import RemoteNetworkConfig
100
+ from pulpcore.client.pulp_ansible.models.remote_network_config_response import RemoteNetworkConfigResponse
99
101
  from pulpcore.client.pulp_ansible.models.repair import Repair
100
102
  from pulpcore.client.pulp_ansible.models.repo_metadata_response import RepoMetadataResponse
101
103
  from pulpcore.client.pulp_ansible.models.repository import Repository
@@ -31,6 +31,8 @@ class AnsibleCollectionRemote(BaseModel):
31
31
  """ # noqa: E501
32
32
  name: Annotated[str, Field(min_length=1, strict=True)] = Field(description="A unique name for this remote.")
33
33
  url: Annotated[str, Field(min_length=1, strict=True)] = Field(description="The URL of an external content source.")
34
+ pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
35
+ policy: Optional[PolicyEnum] = Field(default=None, description="The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now.")
34
36
  ca_cert: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="A PEM encoded CA certificate used to validate the server certificate presented by the remote server.")
35
37
  client_cert: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="A PEM encoded client certificate used for authentication.")
36
38
  client_key: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="A PEM encoded private key used for authentication.")
@@ -40,22 +42,20 @@ class AnsibleCollectionRemote(BaseModel):
40
42
  proxy_password: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed.")
41
43
  username: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The username to be used for authentication when syncing.")
42
44
  password: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.")
43
- pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
44
- download_concurrency: Optional[StrictInt] = Field(default=None, description="Total number of simultaneous connections. If not set then the default value will be used.")
45
45
  max_retries: Optional[StrictInt] = Field(default=None, description="Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.")
46
- policy: Optional[PolicyEnum] = Field(default=None, description="The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now.")
47
46
  total_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
48
47
  connect_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
49
48
  sock_connect_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
50
49
  sock_read_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
51
50
  headers: Optional[List[Dict[str, Any]]] = Field(default=None, description="Headers for aiohttp.Clientsession")
51
+ download_concurrency: Optional[StrictInt] = Field(default=None, description="Total number of simultaneous connections. If not set then the default value will be used.")
52
52
  rate_limit: Optional[StrictInt] = Field(default=None, description="Limits requests per second for each concurrent downloader")
53
53
  requirements_file: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The string version of Collection requirements yaml.")
54
54
  auth_url: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The URL to receive a session token from, e.g. used with Automation Hub.")
55
55
  token: Optional[Annotated[str, Field(min_length=1, strict=True)]] = Field(default=None, description="The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details")
56
56
  sync_dependencies: Optional[StrictBool] = Field(default=None, description="Sync dependencies for collections specified via requirements file")
57
57
  signed_only: Optional[StrictBool] = Field(default=None, description="Sync only collections that have a signature")
58
- __properties: ClassVar[List[str]] = ["name", "url", "ca_cert", "client_cert", "client_key", "tls_validation", "proxy_url", "proxy_username", "proxy_password", "username", "password", "pulp_labels", "download_concurrency", "max_retries", "policy", "total_timeout", "connect_timeout", "sock_connect_timeout", "sock_read_timeout", "headers", "rate_limit", "requirements_file", "auth_url", "token", "sync_dependencies", "signed_only"]
58
+ __properties: ClassVar[List[str]] = ["name", "url", "pulp_labels", "policy", "ca_cert", "client_cert", "client_key", "tls_validation", "proxy_url", "proxy_username", "proxy_password", "username", "password", "max_retries", "total_timeout", "connect_timeout", "sock_connect_timeout", "sock_read_timeout", "headers", "download_concurrency", "rate_limit", "requirements_file", "auth_url", "token", "sync_dependencies", "signed_only"]
59
59
 
60
60
  model_config = ConfigDict(
61
61
  populate_by_name=True,
@@ -136,11 +136,6 @@ class AnsibleCollectionRemote(BaseModel):
136
136
  if self.password is None and "password" in self.model_fields_set:
137
137
  _dict['password'] = None
138
138
 
139
- # set to None if download_concurrency (nullable) is None
140
- # and model_fields_set contains the field
141
- if self.download_concurrency is None and "download_concurrency" in self.model_fields_set:
142
- _dict['download_concurrency'] = None
143
-
144
139
  # set to None if max_retries (nullable) is None
145
140
  # and model_fields_set contains the field
146
141
  if self.max_retries is None and "max_retries" in self.model_fields_set:
@@ -166,6 +161,11 @@ class AnsibleCollectionRemote(BaseModel):
166
161
  if self.sock_read_timeout is None and "sock_read_timeout" in self.model_fields_set:
167
162
  _dict['sock_read_timeout'] = None
168
163
 
164
+ # set to None if download_concurrency (nullable) is None
165
+ # and model_fields_set contains the field
166
+ if self.download_concurrency is None and "download_concurrency" in self.model_fields_set:
167
+ _dict['download_concurrency'] = None
168
+
169
169
  # set to None if rate_limit (nullable) is None
170
170
  # and model_fields_set contains the field
171
171
  if self.rate_limit is None and "rate_limit" in self.model_fields_set:
@@ -37,27 +37,27 @@ class AnsibleCollectionRemoteResponse(BaseModel):
37
37
  pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the most recent update of the remote.")
38
38
  name: StrictStr = Field(description="A unique name for this remote.")
39
39
  url: StrictStr = Field(description="The URL of an external content source.")
40
+ pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
41
+ policy: Optional[PolicyEnum] = Field(default=None, description="The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now.")
42
+ hidden_fields: Optional[List[AnsibleCollectionRemoteResponseHiddenFieldsInner]] = Field(default=None, description="List of hidden (write only) fields")
40
43
  ca_cert: Optional[StrictStr] = Field(default=None, description="A PEM encoded CA certificate used to validate the server certificate presented by the remote server.")
41
44
  client_cert: Optional[StrictStr] = Field(default=None, description="A PEM encoded client certificate used for authentication.")
42
45
  tls_validation: Optional[StrictBool] = Field(default=None, description="If True, TLS peer validation must be performed.")
43
46
  proxy_url: Optional[StrictStr] = Field(default=None, description="The proxy URL. Format: scheme://host:port")
44
- pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
45
- download_concurrency: Optional[StrictInt] = Field(default=None, description="Total number of simultaneous connections. If not set then the default value will be used.")
46
47
  max_retries: Optional[StrictInt] = Field(default=None, description="Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.")
47
- policy: Optional[PolicyEnum] = Field(default=None, description="The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now.")
48
48
  total_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
49
49
  connect_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
50
50
  sock_connect_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
51
51
  sock_read_timeout: Optional[Union[Annotated[float, Field(strict=True, ge=0.0)], Annotated[int, Field(strict=True, ge=0)]]] = Field(default=None, description="aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.")
52
52
  headers: Optional[List[Dict[str, Any]]] = Field(default=None, description="Headers for aiohttp.Clientsession")
53
+ download_concurrency: Optional[StrictInt] = Field(default=None, description="Total number of simultaneous connections. If not set then the default value will be used.")
53
54
  rate_limit: Optional[StrictInt] = Field(default=None, description="Limits requests per second for each concurrent downloader")
54
- hidden_fields: Optional[List[AnsibleCollectionRemoteResponseHiddenFieldsInner]] = Field(default=None, description="List of hidden (write only) fields")
55
55
  requirements_file: Optional[StrictStr] = Field(default=None, description="The string version of Collection requirements yaml.")
56
56
  auth_url: Optional[StrictStr] = Field(default=None, description="The URL to receive a session token from, e.g. used with Automation Hub.")
57
57
  sync_dependencies: Optional[StrictBool] = Field(default=None, description="Sync dependencies for collections specified via requirements file")
58
58
  signed_only: Optional[StrictBool] = Field(default=None, description="Sync only collections that have a signature")
59
59
  last_sync_task: Optional[StrictStr] = None
60
- __properties: ClassVar[List[str]] = ["pulp_href", "prn", "pulp_created", "pulp_last_updated", "name", "url", "ca_cert", "client_cert", "tls_validation", "proxy_url", "pulp_labels", "download_concurrency", "max_retries", "policy", "total_timeout", "connect_timeout", "sock_connect_timeout", "sock_read_timeout", "headers", "rate_limit", "hidden_fields", "requirements_file", "auth_url", "sync_dependencies", "signed_only", "last_sync_task"]
60
+ __properties: ClassVar[List[str]] = ["pulp_href", "prn", "pulp_created", "pulp_last_updated", "name", "url", "pulp_labels", "policy", "hidden_fields", "ca_cert", "client_cert", "tls_validation", "proxy_url", "max_retries", "total_timeout", "connect_timeout", "sock_connect_timeout", "sock_read_timeout", "headers", "download_concurrency", "rate_limit", "requirements_file", "auth_url", "sync_dependencies", "signed_only", "last_sync_task"]
61
61
 
62
62
  model_config = ConfigDict(
63
63
  populate_by_name=True,
@@ -130,11 +130,6 @@ class AnsibleCollectionRemoteResponse(BaseModel):
130
130
  if self.proxy_url is None and "proxy_url" in self.model_fields_set:
131
131
  _dict['proxy_url'] = None
132
132
 
133
- # set to None if download_concurrency (nullable) is None
134
- # and model_fields_set contains the field
135
- if self.download_concurrency is None and "download_concurrency" in self.model_fields_set:
136
- _dict['download_concurrency'] = None
137
-
138
133
  # set to None if max_retries (nullable) is None
139
134
  # and model_fields_set contains the field
140
135
  if self.max_retries is None and "max_retries" in self.model_fields_set:
@@ -160,6 +155,11 @@ class AnsibleCollectionRemoteResponse(BaseModel):
160
155
  if self.sock_read_timeout is None and "sock_read_timeout" in self.model_fields_set:
161
156
  _dict['sock_read_timeout'] = None
162
157
 
158
+ # set to None if download_concurrency (nullable) is None
159
+ # and model_fields_set contains the field
160
+ if self.download_concurrency is None and "download_concurrency" in self.model_fields_set:
161
+ _dict['download_concurrency'] = None
162
+
163
163
  # set to None if rate_limit (nullable) is None
164
164
  # and model_fields_set contains the field
165
165
  if self.rate_limit is None and "rate_limit" in self.model_fields_set:
@@ -30,13 +30,13 @@ class AnsibleCollectionVersionResponse(BaseModel):
30
30
  """
31
31
  A serializer for CollectionVersion Content.
32
32
  """ # noqa: E501
33
+ pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
33
34
  pulp_created: Optional[datetime] = Field(default=None, description="Timestamp of creation.")
35
+ pulp_href: Optional[StrictStr] = None
34
36
  artifact: Optional[StrictStr] = Field(default=None, description="Artifact file representing the physical content")
35
- pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = Field(default=None, description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")
36
- pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
37
37
  vuln_report: Optional[StrictStr] = None
38
- pulp_href: Optional[StrictStr] = None
39
38
  prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
39
+ pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = Field(default=None, description="A dictionary of arbitrary key/value pairs used to describe a specific Content instance.")
40
40
  sha256: Optional[StrictStr] = Field(default=None, description="The SHA-256 checksum if available.")
41
41
  md5: Optional[StrictStr] = Field(default=None, description="The MD5 checksum if available.")
42
42
  sha1: Optional[StrictStr] = Field(default=None, description="The SHA-1 checksum if available.")
@@ -57,7 +57,7 @@ class AnsibleCollectionVersionResponse(BaseModel):
57
57
  tags: Optional[List[CollectionSummaryResponseTagsInner]] = None
58
58
  version: Optional[Annotated[str, Field(strict=True, max_length=128)]] = Field(default=None, description="The version of the collection.")
59
59
  requires_ansible: Optional[StrictStr] = Field(default=None, description="The version of Ansible required to use the collection. Multiple versions can be separated with a comma.")
60
- __properties: ClassVar[List[str]] = ["pulp_created", "artifact", "pulp_labels", "pulp_last_updated", "vuln_report", "pulp_href", "prn", "sha256", "md5", "sha1", "sha224", "sha384", "sha512", "id", "authors", "dependencies", "description", "documentation", "homepage", "issues", "license", "name", "namespace", "origin_repository", "tags", "version", "requires_ansible"]
60
+ __properties: ClassVar[List[str]] = ["pulp_last_updated", "pulp_created", "pulp_href", "artifact", "vuln_report", "prn", "pulp_labels", "sha256", "md5", "sha1", "sha224", "sha384", "sha512", "id", "authors", "dependencies", "description", "documentation", "homepage", "issues", "license", "name", "namespace", "origin_repository", "tags", "version", "requires_ansible"]
61
61
 
62
62
  model_config = ConfigDict(
63
63
  populate_by_name=True,
@@ -113,10 +113,10 @@ class AnsibleCollectionVersionResponse(BaseModel):
113
113
  * OpenAPI `readOnly` fields are excluded.
114
114
  """
115
115
  excluded_fields: Set[str] = set([
116
- "pulp_created",
117
116
  "pulp_last_updated",
118
- "vuln_report",
117
+ "pulp_created",
119
118
  "pulp_href",
119
+ "vuln_report",
120
120
  "prn",
121
121
  "sha256",
122
122
  "md5",