pulp_ansible_client 0.7.6 → 0.8.0
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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +4 -4
- data/build/lib/pulpcore/__init__.py +2 -0
- data/build/lib/pulpcore/client/__init__.py +2 -0
- data/build/lib/pulpcore/client/pulp_ansible/__init__.py +115 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/__init__.py +28 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/ansible_collections_api.py +316 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/ansible_copy_api.py +156 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/api_collections_api.py +294 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/api_roles_api.py +172 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/collection_import_api.py +167 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/content_collection_versions_api.py +455 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/content_roles_api.py +440 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/distributions_ansible_api.py +830 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/galaxy_detail_api.py +162 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_api_api.py +158 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_collections_api.py +474 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v2_versions_api.py +185 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_all_api.py +301 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_api.py +185 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +189 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_versions_api.py +386 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_v3_api.py +162 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/pulp_ansible_tags_api.py +168 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/remotes_collection_api.py +840 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/remotes_role_api.py +840 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/repositories_ansible_api.py +1063 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/repositories_ansible_versions_api.py +614 -0
- data/build/lib/pulpcore/client/pulp_ansible/api/versions_api.py +301 -0
- data/build/lib/pulpcore/client/pulp_ansible/api_client.py +667 -0
- data/build/lib/pulpcore/client/pulp_ansible/configuration.py +427 -0
- data/build/lib/pulpcore/client/pulp_ansible/exceptions.py +121 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/__init__.py +78 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution.py +260 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution_response.py +342 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_repository.py +259 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_ansible_repository_response.py +365 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_remote.py +771 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response.py +718 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_response.py +153 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_version.py +639 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_collection_version_response.py +887 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_repository_sync_url.py +179 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role.py +205 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_remote.py +657 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_remote_response.py +604 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_role_response.py +259 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/ansible_tag_response.py +123 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/artifact_ref_response.py +176 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/async_operation_response.py +124 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_import_detail_response.py +311 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_metadata_response.py +356 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_namespace_response.py +122 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_one_shot.py +236 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_ref_response.py +175 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_response.py +303 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_version_docs_response.py +122 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/collection_version_response.py +441 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/content_summary.py +176 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/content_summary_response.py +176 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/copy.py +124 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection.py +203 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection_response.py +307 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_collection_version_response.py +253 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_role_response.py +175 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/galaxy_role_version_response.py +148 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list.py +173 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_links.py +195 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_meta.py +121 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_collection_version_response_list.py +173 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_version_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_version_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_repository_version_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginated_tag_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_distribution_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_repository_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_remote_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_role_remote_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/paginatedansible_role_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_ansible_distribution.py +258 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_ansible_repository.py +258 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py +769 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py +655 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/policy_enum.py +101 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/repo_metadata_response.py +122 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/repository_add_remove_content.py +179 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/repository_version.py +123 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/repository_version_response.py +257 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/tag_response.py +121 -0
- data/build/lib/pulpcore/client/pulp_ansible/models/unpaginated_collection_version_response.py +385 -0
- data/build/lib/pulpcore/client/pulp_ansible/rest.py +292 -0
- data/dist/pulp_ansible-client-0.8.0.tar.gz +0 -0
- data/dist/pulp_ansible_client-0.8.0-py3-none-any.whl +0 -0
- data/docs/AnsibleAnsibleDistribution.md +3 -1
- data/docs/AnsibleAnsibleDistributionResponse.md +3 -1
- data/docs/AnsibleAnsibleRepository.md +2 -0
- data/docs/AnsibleAnsibleRepositoryResponse.md +2 -0
- data/docs/AnsibleCollectionRemote.md +3 -1
- data/docs/AnsibleCollectionRemoteResponse.md +3 -1
- data/docs/AnsibleCollectionVersionResponse.md +4 -4
- data/docs/AnsibleRoleResponse.md +4 -4
- data/docs/PatchedansibleAnsibleDistribution.md +3 -1
- data/docs/PatchedansibleAnsibleRepository.md +2 -0
- data/docs/PatchedansibleCollectionRemote.md +3 -1
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/docs/RepositoryVersionResponse.md +2 -0
- data/lib/pulp_ansible_client/api/ansible_collections_api.rb +1 -1
- data/lib/pulp_ansible_client/api/ansible_copy_api.rb +1 -1
- data/lib/pulp_ansible_client/api/api_collections_api.rb +1 -1
- data/lib/pulp_ansible_client/api/api_roles_api.rb +1 -1
- data/lib/pulp_ansible_client/api/collection_import_api.rb +1 -1
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/content_roles_api.rb +1 -1
- data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +1 -1
- data/lib/pulp_ansible_client/api/galaxy_detail_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_api_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_collections_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v2_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_all_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_collections_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_v3_api.rb +1 -1
- data/lib/pulp_ansible_client/api/pulp_ansible_tags_api.rb +1 -1
- data/lib/pulp_ansible_client/api/remotes_collection_api.rb +1 -1
- data/lib/pulp_ansible_client/api/remotes_role_api.rb +1 -1
- data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +1 -1
- data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api/versions_api.rb +1 -1
- data/lib/pulp_ansible_client/api_client.rb +12 -13
- data/lib/pulp_ansible_client/api_error.rb +1 -1
- data/lib/pulp_ansible_client/configuration.rb +1 -9
- data/lib/pulp_ansible_client/models/ansible_ansible_distribution.rb +15 -6
- data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +14 -5
- data/lib/pulp_ansible_client/models/ansible_ansible_repository.rb +28 -2
- data/lib/pulp_ansible_client/models/ansible_ansible_repository_response.rb +28 -2
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +19 -6
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +19 -6
- data/lib/pulp_ansible_client/models/ansible_collection_response.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +15 -15
- data/lib/pulp_ansible_client/models/ansible_repository_sync_url.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_role.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_role_remote.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +15 -15
- data/lib/pulp_ansible_client/models/ansible_tag_response.rb +1 -1
- data/lib/pulp_ansible_client/models/artifact_ref_response.rb +1 -1
- data/lib/pulp_ansible_client/models/async_operation_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_import_detail_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_metadata_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_namespace_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_one_shot.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_ref_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_version_docs_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_version_response.rb +1 -1
- data/lib/pulp_ansible_client/models/content_summary.rb +1 -1
- data/lib/pulp_ansible_client/models/content_summary_response.rb +1 -1
- data/lib/pulp_ansible_client/models/copy.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_collection.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_collection_response.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_collection_version_response.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_role_response.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_role_version_response.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_collection_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_collection_response_list_links.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_collection_response_list_meta.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_collection_version_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_galaxy_collection_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_galaxy_collection_version_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_galaxy_role_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_galaxy_role_version_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_repository_version_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginated_tag_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_ansible_distribution_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_ansible_repository_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_collection_remote_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_collection_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_collection_version_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_role_remote_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/paginatedansible_role_response_list.rb +1 -1
- data/lib/pulp_ansible_client/models/patchedansible_ansible_distribution.rb +15 -6
- data/lib/pulp_ansible_client/models/patchedansible_ansible_repository.rb +28 -2
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +19 -6
- data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +1 -1
- data/lib/pulp_ansible_client/models/policy_enum.rb +1 -1
- data/lib/pulp_ansible_client/models/repo_metadata_response.rb +1 -1
- data/lib/pulp_ansible_client/models/repository_add_remove_content.rb +3 -3
- data/lib/pulp_ansible_client/models/repository_version.rb +1 -1
- data/lib/pulp_ansible_client/models/repository_version_response.rb +11 -2
- data/lib/pulp_ansible_client/models/tag_response.rb +1 -1
- data/lib/pulp_ansible_client/models/unpaginated_collection_version_response.rb +1 -1
- data/lib/pulp_ansible_client/version.rb +2 -2
- data/lib/pulp_ansible_client.rb +1 -1
- data/pulp_ansible_client.egg-info/PKG-INFO +15 -0
- data/pulp_ansible_client.egg-info/SOURCES.txt +185 -0
- data/pulp_ansible_client.egg-info/dependency_links.txt +1 -0
- data/pulp_ansible_client.egg-info/requires.txt +4 -0
- data/pulp_ansible_client.egg-info/top_level.txt +1 -0
- data/pulp_ansible_client.gemspec +2 -2
- data/pulpcore/__init__.py +2 -0
- data/pulpcore/client/__init__.py +2 -0
- data/pulpcore/client/pulp_ansible/__init__.py +115 -0
- data/pulpcore/client/pulp_ansible/api/__init__.py +28 -0
- data/pulpcore/client/pulp_ansible/api/ansible_collections_api.py +316 -0
- data/pulpcore/client/pulp_ansible/api/ansible_copy_api.py +156 -0
- data/pulpcore/client/pulp_ansible/api/api_collections_api.py +294 -0
- data/pulpcore/client/pulp_ansible/api/api_roles_api.py +172 -0
- data/pulpcore/client/pulp_ansible/api/collection_import_api.py +167 -0
- data/pulpcore/client/pulp_ansible/api/content_collection_versions_api.py +455 -0
- data/pulpcore/client/pulp_ansible/api/content_roles_api.py +440 -0
- data/pulpcore/client/pulp_ansible/api/distributions_ansible_api.py +830 -0
- data/pulpcore/client/pulp_ansible/api/galaxy_detail_api.py +162 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_api_api.py +158 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_collections_api.py +474 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v2_versions_api.py +185 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_all_api.py +301 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_api.py +185 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +189 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_api_v3_versions_api.py +386 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_galaxy_v3_api.py +162 -0
- data/pulpcore/client/pulp_ansible/api/pulp_ansible_tags_api.py +168 -0
- data/pulpcore/client/pulp_ansible/api/remotes_collection_api.py +840 -0
- data/pulpcore/client/pulp_ansible/api/remotes_role_api.py +840 -0
- data/pulpcore/client/pulp_ansible/api/repositories_ansible_api.py +1063 -0
- data/pulpcore/client/pulp_ansible/api/repositories_ansible_versions_api.py +614 -0
- data/pulpcore/client/pulp_ansible/api/versions_api.py +301 -0
- data/pulpcore/client/pulp_ansible/api_client.py +667 -0
- data/pulpcore/client/pulp_ansible/configuration.py +427 -0
- data/pulpcore/client/pulp_ansible/exceptions.py +121 -0
- data/pulpcore/client/pulp_ansible/models/__init__.py +78 -0
- data/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution.py +260 -0
- data/pulpcore/client/pulp_ansible/models/ansible_ansible_distribution_response.py +342 -0
- data/pulpcore/client/pulp_ansible/models/ansible_ansible_repository.py +259 -0
- data/pulpcore/client/pulp_ansible/models/ansible_ansible_repository_response.py +365 -0
- data/pulpcore/client/pulp_ansible/models/ansible_collection_remote.py +771 -0
- data/pulpcore/client/pulp_ansible/models/ansible_collection_remote_response.py +718 -0
- data/pulpcore/client/pulp_ansible/models/ansible_collection_response.py +153 -0
- data/pulpcore/client/pulp_ansible/models/ansible_collection_version.py +639 -0
- data/pulpcore/client/pulp_ansible/models/ansible_collection_version_response.py +887 -0
- data/pulpcore/client/pulp_ansible/models/ansible_repository_sync_url.py +179 -0
- data/pulpcore/client/pulp_ansible/models/ansible_role.py +205 -0
- data/pulpcore/client/pulp_ansible/models/ansible_role_remote.py +657 -0
- data/pulpcore/client/pulp_ansible/models/ansible_role_remote_response.py +604 -0
- data/pulpcore/client/pulp_ansible/models/ansible_role_response.py +259 -0
- data/pulpcore/client/pulp_ansible/models/ansible_tag_response.py +123 -0
- data/pulpcore/client/pulp_ansible/models/artifact_ref_response.py +176 -0
- data/pulpcore/client/pulp_ansible/models/async_operation_response.py +124 -0
- data/pulpcore/client/pulp_ansible/models/collection_import_detail_response.py +311 -0
- data/pulpcore/client/pulp_ansible/models/collection_metadata_response.py +356 -0
- data/pulpcore/client/pulp_ansible/models/collection_namespace_response.py +122 -0
- data/pulpcore/client/pulp_ansible/models/collection_one_shot.py +236 -0
- data/pulpcore/client/pulp_ansible/models/collection_ref_response.py +175 -0
- data/pulpcore/client/pulp_ansible/models/collection_response.py +303 -0
- data/pulpcore/client/pulp_ansible/models/collection_version_docs_response.py +122 -0
- data/pulpcore/client/pulp_ansible/models/collection_version_response.py +441 -0
- data/pulpcore/client/pulp_ansible/models/content_summary.py +176 -0
- data/pulpcore/client/pulp_ansible/models/content_summary_response.py +176 -0
- data/pulpcore/client/pulp_ansible/models/copy.py +124 -0
- data/pulpcore/client/pulp_ansible/models/galaxy_collection.py +203 -0
- data/pulpcore/client/pulp_ansible/models/galaxy_collection_response.py +307 -0
- data/pulpcore/client/pulp_ansible/models/galaxy_collection_version_response.py +253 -0
- data/pulpcore/client/pulp_ansible/models/galaxy_role_response.py +175 -0
- data/pulpcore/client/pulp_ansible/models/galaxy_role_version_response.py +148 -0
- data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list.py +173 -0
- data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_links.py +195 -0
- data/pulpcore/client/pulp_ansible/models/paginated_collection_response_list_meta.py +121 -0
- data/pulpcore/client/pulp_ansible/models/paginated_collection_version_response_list.py +173 -0
- data/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginated_galaxy_collection_version_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginated_galaxy_role_version_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginated_repository_version_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginated_tag_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_distribution_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_ansible_repository_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_remote_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_collection_version_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_role_remote_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/paginatedansible_role_response_list.py +197 -0
- data/pulpcore/client/pulp_ansible/models/patchedansible_ansible_distribution.py +258 -0
- data/pulpcore/client/pulp_ansible/models/patchedansible_ansible_repository.py +258 -0
- data/pulpcore/client/pulp_ansible/models/patchedansible_collection_remote.py +769 -0
- data/pulpcore/client/pulp_ansible/models/patchedansible_role_remote.py +655 -0
- data/pulpcore/client/pulp_ansible/models/policy_enum.py +101 -0
- data/pulpcore/client/pulp_ansible/models/repo_metadata_response.py +122 -0
- data/pulpcore/client/pulp_ansible/models/repository_add_remove_content.py +179 -0
- data/pulpcore/client/pulp_ansible/models/repository_version.py +123 -0
- data/pulpcore/client/pulp_ansible/models/repository_version_response.py +257 -0
- data/pulpcore/client/pulp_ansible/models/tag_response.py +121 -0
- data/pulpcore/client/pulp_ansible/models/unpaginated_collection_version_response.py +385 -0
- data/pulpcore/client/pulp_ansible/rest.py +292 -0
- data/requirements.txt +6 -0
- data/setup.cfg +2 -0
- data/setup.py +42 -0
- data/spec/api/ansible_collections_api_spec.rb +1 -1
- data/spec/api/ansible_copy_api_spec.rb +1 -1
- data/spec/api/api_collections_api_spec.rb +1 -1
- data/spec/api/api_roles_api_spec.rb +1 -1
- data/spec/api/collection_import_api_spec.rb +1 -1
- data/spec/api/content_collection_versions_api_spec.rb +1 -1
- data/spec/api/content_roles_api_spec.rb +1 -1
- data/spec/api/distributions_ansible_api_spec.rb +1 -1
- data/spec/api/galaxy_detail_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_api_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_galaxy_v3_api_spec.rb +1 -1
- data/spec/api/pulp_ansible_tags_api_spec.rb +1 -1
- data/spec/api/remotes_collection_api_spec.rb +1 -1
- data/spec/api/remotes_role_api_spec.rb +1 -1
- data/spec/api/repositories_ansible_api_spec.rb +1 -1
- data/spec/api/repositories_ansible_versions_api_spec.rb +1 -1
- data/spec/api/versions_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/ansible_ansible_distribution_response_spec.rb +7 -1
- data/spec/models/ansible_ansible_distribution_spec.rb +7 -1
- data/spec/models/ansible_ansible_repository_response_spec.rb +7 -1
- data/spec/models/ansible_ansible_repository_spec.rb +7 -1
- data/spec/models/ansible_collection_remote_response_spec.rb +7 -1
- data/spec/models/ansible_collection_remote_spec.rb +7 -1
- data/spec/models/ansible_collection_response_spec.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_collection_version_spec.rb +1 -1
- data/spec/models/ansible_repository_sync_url_spec.rb +1 -1
- data/spec/models/ansible_role_remote_response_spec.rb +1 -1
- data/spec/models/ansible_role_remote_spec.rb +1 -1
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/ansible_role_spec.rb +1 -1
- data/spec/models/ansible_tag_response_spec.rb +1 -1
- data/spec/models/artifact_ref_response_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/collection_import_detail_response_spec.rb +1 -1
- data/spec/models/collection_metadata_response_spec.rb +1 -1
- data/spec/models/collection_namespace_response_spec.rb +1 -1
- data/spec/models/collection_one_shot_spec.rb +1 -1
- data/spec/models/collection_ref_response_spec.rb +1 -1
- data/spec/models/collection_response_spec.rb +1 -1
- data/spec/models/collection_version_docs_response_spec.rb +1 -1
- data/spec/models/collection_version_response_spec.rb +1 -1
- data/spec/models/content_summary_response_spec.rb +1 -1
- data/spec/models/content_summary_spec.rb +1 -1
- data/spec/models/copy_spec.rb +1 -1
- data/spec/models/galaxy_collection_response_spec.rb +1 -1
- data/spec/models/galaxy_collection_spec.rb +1 -1
- data/spec/models/galaxy_collection_version_response_spec.rb +1 -1
- data/spec/models/galaxy_role_response_spec.rb +1 -1
- data/spec/models/galaxy_role_version_response_spec.rb +1 -1
- data/spec/models/paginated_collection_response_list_links_spec.rb +1 -1
- data/spec/models/paginated_collection_response_list_meta_spec.rb +1 -1
- data/spec/models/paginated_collection_response_list_spec.rb +1 -1
- data/spec/models/paginated_collection_version_response_list_spec.rb +1 -1
- data/spec/models/paginated_galaxy_collection_response_list_spec.rb +1 -1
- data/spec/models/paginated_galaxy_collection_version_response_list_spec.rb +1 -1
- data/spec/models/paginated_galaxy_role_response_list_spec.rb +1 -1
- data/spec/models/paginated_galaxy_role_version_response_list_spec.rb +1 -1
- data/spec/models/paginated_repository_version_response_list_spec.rb +1 -1
- data/spec/models/paginated_tag_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_ansible_distribution_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_ansible_repository_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_collection_remote_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_collection_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_collection_version_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_role_remote_response_list_spec.rb +1 -1
- data/spec/models/paginatedansible_role_response_list_spec.rb +1 -1
- data/spec/models/patchedansible_ansible_distribution_spec.rb +7 -1
- data/spec/models/patchedansible_ansible_repository_spec.rb +7 -1
- data/spec/models/patchedansible_collection_remote_spec.rb +7 -1
- data/spec/models/patchedansible_role_remote_spec.rb +1 -1
- data/spec/models/policy_enum_spec.rb +1 -1
- data/spec/models/repo_metadata_response_spec.rb +1 -1
- data/spec/models/repository_add_remove_content_spec.rb +1 -1
- data/spec/models/repository_version_response_spec.rb +7 -1
- data/spec/models/repository_version_spec.rb +1 -1
- data/spec/models/tag_response_spec.rb +1 -1
- data/spec/models/unpaginated_collection_version_response_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/test/__init__.py +0 -0
- data/test/test_ansible_ansible_distribution.py +60 -0
- data/test/test_ansible_ansible_distribution_response.py +63 -0
- data/test/test_ansible_ansible_repository.py +59 -0
- data/test/test_ansible_ansible_repository_response.py +63 -0
- data/test/test_ansible_collection_remote.py +80 -0
- data/test/test_ansible_collection_remote_response.py +78 -0
- data/test/test_ansible_collection_response.py +56 -0
- data/test/test_ansible_collection_version.py +99 -0
- data/test/test_ansible_collection_version_response.py +111 -0
- data/test/test_ansible_collections_api.py +48 -0
- data/test/test_ansible_copy_api.py +41 -0
- data/test/test_ansible_repository_sync_url.py +55 -0
- data/test/test_ansible_role.py +60 -0
- data/test/test_ansible_role_remote.py +76 -0
- data/test/test_ansible_role_remote_response.py +74 -0
- data/test/test_ansible_role_response.py +62 -0
- data/test/test_ansible_tag_response.py +53 -0
- data/test/test_api_collections_api.py +46 -0
- data/test/test_api_roles_api.py +40 -0
- data/test/test_artifact_ref_response.py +58 -0
- data/test/test_async_operation_response.py +54 -0
- data/test/test_collection_import_api.py +41 -0
- data/test/test_collection_import_detail_response.py +68 -0
- data/test/test_collection_metadata_response.py +71 -0
- data/test/test_collection_namespace_response.py +54 -0
- data/test/test_collection_one_shot.py +58 -0
- data/test/test_collection_ref_response.py +57 -0
- data/test/test_collection_response.py +60 -0
- data/test/test_collection_version_docs_response.py +54 -0
- data/test/test_collection_version_response.py +67 -0
- data/test/test_content_collection_versions_api.py +55 -0
- data/test/test_content_roles_api.py +55 -0
- data/test/test_content_summary.py +70 -0
- data/test/test_content_summary_response.py +70 -0
- data/test/test_copy.py +54 -0
- data/test/test_distributions_ansible_api.py +76 -0
- data/test/test_galaxy_collection.py +60 -0
- data/test/test_galaxy_collection_response.py +64 -0
- data/test/test_galaxy_collection_version_response.py +92 -0
- data/test/test_galaxy_detail_api.py +40 -0
- data/test/test_galaxy_role_response.py +57 -0
- data/test/test_galaxy_role_version_response.py +55 -0
- data/test/test_paginated_collection_response_list.py +70 -0
- data/test/test_paginated_collection_response_list_links.py +56 -0
- data/test/test_paginated_collection_response_list_meta.py +53 -0
- data/test/test_paginated_collection_version_response_list.py +75 -0
- data/test/test_paginated_galaxy_collection_response_list.py +66 -0
- data/test/test_paginated_galaxy_collection_version_response_list.py +80 -0
- data/test/test_paginated_galaxy_role_response_list.py +61 -0
- data/test/test_paginated_galaxy_role_version_response_list.py +60 -0
- data/test/test_paginated_repository_version_response_list.py +64 -0
- data/test/test_paginated_tag_response_list.py +59 -0
- data/test/test_paginatedansible_ansible_distribution_response_list.py +67 -0
- data/test/test_paginatedansible_ansible_repository_response_list.py +68 -0
- data/test/test_paginatedansible_collection_remote_response_list.py +82 -0
- data/test/test_paginatedansible_collection_response_list.py +60 -0
- data/test/test_paginatedansible_collection_version_response_list.py +94 -0
- data/test/test_paginatedansible_role_remote_response_list.py +78 -0
- data/test/test_paginatedansible_role_response_list.py +64 -0
- data/test/test_patchedansible_ansible_distribution.py +58 -0
- data/test/test_patchedansible_ansible_repository.py +58 -0
- data/test/test_patchedansible_collection_remote.py +78 -0
- data/test/test_patchedansible_role_remote.py +74 -0
- data/test/test_policy_enum.py +52 -0
- data/test/test_pulp_ansible_api_api.py +40 -0
- data/test/test_pulp_ansible_galaxy_api_collections_api.py +52 -0
- data/test/test_pulp_ansible_galaxy_api_v2_versions_api.py +40 -0
- data/test/test_pulp_ansible_galaxy_api_v3_all_api.py +46 -0
- data/test/test_pulp_ansible_galaxy_api_v3_collections_api.py +41 -0
- data/test/test_pulp_ansible_galaxy_api_v3_collections_docs_blob_api.py +40 -0
- data/test/test_pulp_ansible_galaxy_api_v3_versions_api.py +46 -0
- data/test/test_pulp_ansible_galaxy_v3_api.py +40 -0
- data/test/test_pulp_ansible_tags_api.py +41 -0
- data/test/test_remotes_collection_api.py +76 -0
- data/test/test_remotes_role_api.py +76 -0
- data/test/test_repo_metadata_response.py +54 -0
- data/test/test_repositories_ansible_api.py +89 -0
- data/test/test_repositories_ansible_versions_api.py +61 -0
- data/test/test_repository_add_remove_content.py +59 -0
- data/test/test_repository_version.py +53 -0
- data/test/test_repository_version_response.py +58 -0
- data/test/test_tag_response.py +53 -0
- data/test/test_unpaginated_collection_version_response.py +65 -0
- data/test/test_versions_api.py +46 -0
- data/test-requirements.txt +3 -0
- data/tox.ini +9 -0
- metadata +354 -77
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9afec9e322d29b0ed1be7a15f416350837a7e3a4343499c136ac33f779a12e3b
|
|
4
|
+
data.tar.gz: 1c94d42c6d7d9db1bff568fea06bc9e02398ddc8f8b3523b49777d3e16b16d02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4642a0ac6bfbd7c0422ef2d5bae0b882c2c8469de17ba4e202c1f9fa8a50a55dc067f244a6101b5376b54bbbe6dd34fc7f523131dfd9174c494b343713e6bc9f
|
|
7
|
+
data.tar.gz: 95907975b9082a55750387e00c9868b9997d55ac5eebd37376fe6269b309989a983d41cc6e5871ff78a719f79986774e9948216407b1ac8027632fdf89f97e4e
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 0.
|
|
10
|
+
- Package version: 0.8.0
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build pulp_ansible_client.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./pulp_ansible_client-0.
|
|
27
|
+
gem install ./pulp_ansible_client-0.8.0.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.8.0.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'pulp_ansible_client', '~> 0.
|
|
36
|
+
gem 'pulp_ansible_client', '~> 0.8.0'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Pulp 3 API
|
|
7
|
+
|
|
8
|
+
Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: v3
|
|
11
|
+
Contact: pulp-list@redhat.com
|
|
12
|
+
Generated by: https://openapi-generator.tech
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import absolute_import
|
|
17
|
+
|
|
18
|
+
__version__ = "0.8.0"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from pulpcore.client.pulp_ansible.api.ansible_collections_api import AnsibleCollectionsApi
|
|
22
|
+
from pulpcore.client.pulp_ansible.api.ansible_copy_api import AnsibleCopyApi
|
|
23
|
+
from pulpcore.client.pulp_ansible.api.api_collections_api import ApiCollectionsApi
|
|
24
|
+
from pulpcore.client.pulp_ansible.api.api_roles_api import ApiRolesApi
|
|
25
|
+
from pulpcore.client.pulp_ansible.api.collection_import_api import CollectionImportApi
|
|
26
|
+
from pulpcore.client.pulp_ansible.api.content_collection_versions_api import ContentCollectionVersionsApi
|
|
27
|
+
from pulpcore.client.pulp_ansible.api.content_roles_api import ContentRolesApi
|
|
28
|
+
from pulpcore.client.pulp_ansible.api.distributions_ansible_api import DistributionsAnsibleApi
|
|
29
|
+
from pulpcore.client.pulp_ansible.api.galaxy_detail_api import GalaxyDetailApi
|
|
30
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_api_api import PulpAnsibleApiApi
|
|
31
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_collections_api import PulpAnsibleGalaxyApiCollectionsApi
|
|
32
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v2_versions_api import PulpAnsibleGalaxyApiV2VersionsApi
|
|
33
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_all_api import PulpAnsibleGalaxyApiV3AllApi
|
|
34
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_collections_api import PulpAnsibleGalaxyApiV3CollectionsApi
|
|
35
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_collections_docs_blob_api import PulpAnsibleGalaxyApiV3CollectionsDocsBlobApi
|
|
36
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_versions_api import PulpAnsibleGalaxyApiV3VersionsApi
|
|
37
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_v3_api import PulpAnsibleGalaxyV3Api
|
|
38
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_tags_api import PulpAnsibleTagsApi
|
|
39
|
+
from pulpcore.client.pulp_ansible.api.remotes_collection_api import RemotesCollectionApi
|
|
40
|
+
from pulpcore.client.pulp_ansible.api.remotes_role_api import RemotesRoleApi
|
|
41
|
+
from pulpcore.client.pulp_ansible.api.repositories_ansible_api import RepositoriesAnsibleApi
|
|
42
|
+
from pulpcore.client.pulp_ansible.api.repositories_ansible_versions_api import RepositoriesAnsibleVersionsApi
|
|
43
|
+
from pulpcore.client.pulp_ansible.api.versions_api import VersionsApi
|
|
44
|
+
|
|
45
|
+
# import ApiClient
|
|
46
|
+
from pulpcore.client.pulp_ansible.api_client import ApiClient
|
|
47
|
+
from pulpcore.client.pulp_ansible.configuration import Configuration
|
|
48
|
+
from pulpcore.client.pulp_ansible.exceptions import OpenApiException
|
|
49
|
+
from pulpcore.client.pulp_ansible.exceptions import ApiTypeError
|
|
50
|
+
from pulpcore.client.pulp_ansible.exceptions import ApiValueError
|
|
51
|
+
from pulpcore.client.pulp_ansible.exceptions import ApiKeyError
|
|
52
|
+
from pulpcore.client.pulp_ansible.exceptions import ApiException
|
|
53
|
+
# import models into sdk package
|
|
54
|
+
from pulpcore.client.pulp_ansible.models.ansible_ansible_distribution import AnsibleAnsibleDistribution
|
|
55
|
+
from pulpcore.client.pulp_ansible.models.ansible_ansible_distribution_response import AnsibleAnsibleDistributionResponse
|
|
56
|
+
from pulpcore.client.pulp_ansible.models.ansible_ansible_repository import AnsibleAnsibleRepository
|
|
57
|
+
from pulpcore.client.pulp_ansible.models.ansible_ansible_repository_response import AnsibleAnsibleRepositoryResponse
|
|
58
|
+
from pulpcore.client.pulp_ansible.models.ansible_collection_remote import AnsibleCollectionRemote
|
|
59
|
+
from pulpcore.client.pulp_ansible.models.ansible_collection_remote_response import AnsibleCollectionRemoteResponse
|
|
60
|
+
from pulpcore.client.pulp_ansible.models.ansible_collection_response import AnsibleCollectionResponse
|
|
61
|
+
from pulpcore.client.pulp_ansible.models.ansible_collection_version import AnsibleCollectionVersion
|
|
62
|
+
from pulpcore.client.pulp_ansible.models.ansible_collection_version_response import AnsibleCollectionVersionResponse
|
|
63
|
+
from pulpcore.client.pulp_ansible.models.ansible_repository_sync_url import AnsibleRepositorySyncURL
|
|
64
|
+
from pulpcore.client.pulp_ansible.models.ansible_role import AnsibleRole
|
|
65
|
+
from pulpcore.client.pulp_ansible.models.ansible_role_remote import AnsibleRoleRemote
|
|
66
|
+
from pulpcore.client.pulp_ansible.models.ansible_role_remote_response import AnsibleRoleRemoteResponse
|
|
67
|
+
from pulpcore.client.pulp_ansible.models.ansible_role_response import AnsibleRoleResponse
|
|
68
|
+
from pulpcore.client.pulp_ansible.models.ansible_tag_response import AnsibleTagResponse
|
|
69
|
+
from pulpcore.client.pulp_ansible.models.artifact_ref_response import ArtifactRefResponse
|
|
70
|
+
from pulpcore.client.pulp_ansible.models.async_operation_response import AsyncOperationResponse
|
|
71
|
+
from pulpcore.client.pulp_ansible.models.collection_import_detail_response import CollectionImportDetailResponse
|
|
72
|
+
from pulpcore.client.pulp_ansible.models.collection_metadata_response import CollectionMetadataResponse
|
|
73
|
+
from pulpcore.client.pulp_ansible.models.collection_namespace_response import CollectionNamespaceResponse
|
|
74
|
+
from pulpcore.client.pulp_ansible.models.collection_one_shot import CollectionOneShot
|
|
75
|
+
from pulpcore.client.pulp_ansible.models.collection_ref_response import CollectionRefResponse
|
|
76
|
+
from pulpcore.client.pulp_ansible.models.collection_response import CollectionResponse
|
|
77
|
+
from pulpcore.client.pulp_ansible.models.collection_version_docs_response import CollectionVersionDocsResponse
|
|
78
|
+
from pulpcore.client.pulp_ansible.models.collection_version_response import CollectionVersionResponse
|
|
79
|
+
from pulpcore.client.pulp_ansible.models.content_summary import ContentSummary
|
|
80
|
+
from pulpcore.client.pulp_ansible.models.content_summary_response import ContentSummaryResponse
|
|
81
|
+
from pulpcore.client.pulp_ansible.models.copy import Copy
|
|
82
|
+
from pulpcore.client.pulp_ansible.models.galaxy_collection import GalaxyCollection
|
|
83
|
+
from pulpcore.client.pulp_ansible.models.galaxy_collection_response import GalaxyCollectionResponse
|
|
84
|
+
from pulpcore.client.pulp_ansible.models.galaxy_collection_version_response import GalaxyCollectionVersionResponse
|
|
85
|
+
from pulpcore.client.pulp_ansible.models.galaxy_role_response import GalaxyRoleResponse
|
|
86
|
+
from pulpcore.client.pulp_ansible.models.galaxy_role_version_response import GalaxyRoleVersionResponse
|
|
87
|
+
from pulpcore.client.pulp_ansible.models.paginated_collection_response_list import PaginatedCollectionResponseList
|
|
88
|
+
from pulpcore.client.pulp_ansible.models.paginated_collection_response_list_links import PaginatedCollectionResponseListLinks
|
|
89
|
+
from pulpcore.client.pulp_ansible.models.paginated_collection_response_list_meta import PaginatedCollectionResponseListMeta
|
|
90
|
+
from pulpcore.client.pulp_ansible.models.paginated_collection_version_response_list import PaginatedCollectionVersionResponseList
|
|
91
|
+
from pulpcore.client.pulp_ansible.models.paginated_galaxy_collection_response_list import PaginatedGalaxyCollectionResponseList
|
|
92
|
+
from pulpcore.client.pulp_ansible.models.paginated_galaxy_collection_version_response_list import PaginatedGalaxyCollectionVersionResponseList
|
|
93
|
+
from pulpcore.client.pulp_ansible.models.paginated_galaxy_role_response_list import PaginatedGalaxyRoleResponseList
|
|
94
|
+
from pulpcore.client.pulp_ansible.models.paginated_galaxy_role_version_response_list import PaginatedGalaxyRoleVersionResponseList
|
|
95
|
+
from pulpcore.client.pulp_ansible.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
|
|
96
|
+
from pulpcore.client.pulp_ansible.models.paginated_tag_response_list import PaginatedTagResponseList
|
|
97
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_ansible_distribution_response_list import PaginatedansibleAnsibleDistributionResponseList
|
|
98
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_ansible_repository_response_list import PaginatedansibleAnsibleRepositoryResponseList
|
|
99
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_collection_remote_response_list import PaginatedansibleCollectionRemoteResponseList
|
|
100
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_collection_response_list import PaginatedansibleCollectionResponseList
|
|
101
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_collection_version_response_list import PaginatedansibleCollectionVersionResponseList
|
|
102
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_role_remote_response_list import PaginatedansibleRoleRemoteResponseList
|
|
103
|
+
from pulpcore.client.pulp_ansible.models.paginatedansible_role_response_list import PaginatedansibleRoleResponseList
|
|
104
|
+
from pulpcore.client.pulp_ansible.models.patchedansible_ansible_distribution import PatchedansibleAnsibleDistribution
|
|
105
|
+
from pulpcore.client.pulp_ansible.models.patchedansible_ansible_repository import PatchedansibleAnsibleRepository
|
|
106
|
+
from pulpcore.client.pulp_ansible.models.patchedansible_collection_remote import PatchedansibleCollectionRemote
|
|
107
|
+
from pulpcore.client.pulp_ansible.models.patchedansible_role_remote import PatchedansibleRoleRemote
|
|
108
|
+
from pulpcore.client.pulp_ansible.models.policy_enum import PolicyEnum
|
|
109
|
+
from pulpcore.client.pulp_ansible.models.repo_metadata_response import RepoMetadataResponse
|
|
110
|
+
from pulpcore.client.pulp_ansible.models.repository_add_remove_content import RepositoryAddRemoveContent
|
|
111
|
+
from pulpcore.client.pulp_ansible.models.repository_version import RepositoryVersion
|
|
112
|
+
from pulpcore.client.pulp_ansible.models.repository_version_response import RepositoryVersionResponse
|
|
113
|
+
from pulpcore.client.pulp_ansible.models.tag_response import TagResponse
|
|
114
|
+
from pulpcore.client.pulp_ansible.models.unpaginated_collection_version_response import UnpaginatedCollectionVersionResponse
|
|
115
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from __future__ import absolute_import
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
# import apis into api package
|
|
6
|
+
from pulpcore.client.pulp_ansible.api.ansible_collections_api import AnsibleCollectionsApi
|
|
7
|
+
from pulpcore.client.pulp_ansible.api.ansible_copy_api import AnsibleCopyApi
|
|
8
|
+
from pulpcore.client.pulp_ansible.api.api_collections_api import ApiCollectionsApi
|
|
9
|
+
from pulpcore.client.pulp_ansible.api.api_roles_api import ApiRolesApi
|
|
10
|
+
from pulpcore.client.pulp_ansible.api.collection_import_api import CollectionImportApi
|
|
11
|
+
from pulpcore.client.pulp_ansible.api.content_collection_versions_api import ContentCollectionVersionsApi
|
|
12
|
+
from pulpcore.client.pulp_ansible.api.content_roles_api import ContentRolesApi
|
|
13
|
+
from pulpcore.client.pulp_ansible.api.distributions_ansible_api import DistributionsAnsibleApi
|
|
14
|
+
from pulpcore.client.pulp_ansible.api.galaxy_detail_api import GalaxyDetailApi
|
|
15
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_api_api import PulpAnsibleApiApi
|
|
16
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_collections_api import PulpAnsibleGalaxyApiCollectionsApi
|
|
17
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v2_versions_api import PulpAnsibleGalaxyApiV2VersionsApi
|
|
18
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_all_api import PulpAnsibleGalaxyApiV3AllApi
|
|
19
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_collections_api import PulpAnsibleGalaxyApiV3CollectionsApi
|
|
20
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_collections_docs_blob_api import PulpAnsibleGalaxyApiV3CollectionsDocsBlobApi
|
|
21
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_api_v3_versions_api import PulpAnsibleGalaxyApiV3VersionsApi
|
|
22
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_galaxy_v3_api import PulpAnsibleGalaxyV3Api
|
|
23
|
+
from pulpcore.client.pulp_ansible.api.pulp_ansible_tags_api import PulpAnsibleTagsApi
|
|
24
|
+
from pulpcore.client.pulp_ansible.api.remotes_collection_api import RemotesCollectionApi
|
|
25
|
+
from pulpcore.client.pulp_ansible.api.remotes_role_api import RemotesRoleApi
|
|
26
|
+
from pulpcore.client.pulp_ansible.api.repositories_ansible_api import RepositoriesAnsibleApi
|
|
27
|
+
from pulpcore.client.pulp_ansible.api.repositories_ansible_versions_api import RepositoriesAnsibleVersionsApi
|
|
28
|
+
from pulpcore.client.pulp_ansible.api.versions_api import VersionsApi
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Pulp 3 API
|
|
5
|
+
|
|
6
|
+
Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v3
|
|
9
|
+
Contact: pulp-list@redhat.com
|
|
10
|
+
Generated by: https://openapi-generator.tech
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from __future__ import absolute_import
|
|
15
|
+
|
|
16
|
+
import re # noqa: F401
|
|
17
|
+
|
|
18
|
+
# python 2 and python 3 compatibility library
|
|
19
|
+
import six
|
|
20
|
+
|
|
21
|
+
from pulpcore.client.pulp_ansible.api_client import ApiClient
|
|
22
|
+
from pulpcore.client.pulp_ansible.exceptions import ( # noqa: F401
|
|
23
|
+
ApiTypeError,
|
|
24
|
+
ApiValueError
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class AnsibleCollectionsApi(object):
|
|
29
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
30
|
+
Ref: https://openapi-generator.tech
|
|
31
|
+
|
|
32
|
+
Do not edit the class manually.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
def __init__(self, api_client=None):
|
|
36
|
+
if api_client is None:
|
|
37
|
+
api_client = ApiClient()
|
|
38
|
+
self.api_client = api_client
|
|
39
|
+
|
|
40
|
+
def list(self, **kwargs): # noqa: E501
|
|
41
|
+
"""List collections # noqa: E501
|
|
42
|
+
|
|
43
|
+
Viewset for Ansible Collections. # noqa: E501
|
|
44
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
45
|
+
asynchronous HTTP request, please pass async_req=True
|
|
46
|
+
>>> thread = api.list(async_req=True)
|
|
47
|
+
>>> result = thread.get()
|
|
48
|
+
|
|
49
|
+
:param async_req bool: execute request asynchronously
|
|
50
|
+
:param int limit: Number of results to return per page.
|
|
51
|
+
:param str name:
|
|
52
|
+
:param str namespace:
|
|
53
|
+
:param int offset: The initial index from which to return the results.
|
|
54
|
+
:param str ordering: Which field to use when ordering the results.
|
|
55
|
+
:param str fields: A list of fields to include in the response.
|
|
56
|
+
:param str exclude_fields: A list of fields to exclude from the response.
|
|
57
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
58
|
+
be returned without reading/decoding response
|
|
59
|
+
data. Default is True.
|
|
60
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
61
|
+
number provided, it will be total request
|
|
62
|
+
timeout. It can also be a pair (tuple) of
|
|
63
|
+
(connection, read) timeouts.
|
|
64
|
+
:return: PaginatedansibleCollectionResponseList
|
|
65
|
+
If the method is called asynchronously,
|
|
66
|
+
returns the request thread.
|
|
67
|
+
"""
|
|
68
|
+
kwargs['_return_http_data_only'] = True
|
|
69
|
+
return self.list_with_http_info(**kwargs) # noqa: E501
|
|
70
|
+
|
|
71
|
+
def list_with_http_info(self, **kwargs): # noqa: E501
|
|
72
|
+
"""List collections # noqa: E501
|
|
73
|
+
|
|
74
|
+
Viewset for Ansible Collections. # noqa: E501
|
|
75
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
76
|
+
asynchronous HTTP request, please pass async_req=True
|
|
77
|
+
>>> thread = api.list_with_http_info(async_req=True)
|
|
78
|
+
>>> result = thread.get()
|
|
79
|
+
|
|
80
|
+
:param async_req bool: execute request asynchronously
|
|
81
|
+
:param int limit: Number of results to return per page.
|
|
82
|
+
:param str name:
|
|
83
|
+
:param str namespace:
|
|
84
|
+
:param int offset: The initial index from which to return the results.
|
|
85
|
+
:param str ordering: Which field to use when ordering the results.
|
|
86
|
+
:param str fields: A list of fields to include in the response.
|
|
87
|
+
:param str exclude_fields: A list of fields to exclude from the response.
|
|
88
|
+
:param _return_http_data_only: response data without head status code
|
|
89
|
+
and headers
|
|
90
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
91
|
+
be returned without reading/decoding response
|
|
92
|
+
data. Default is True.
|
|
93
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
94
|
+
number provided, it will be total request
|
|
95
|
+
timeout. It can also be a pair (tuple) of
|
|
96
|
+
(connection, read) timeouts.
|
|
97
|
+
:return: tuple(PaginatedansibleCollectionResponseList, status_code(int), headers(HTTPHeaderDict))
|
|
98
|
+
If the method is called asynchronously,
|
|
99
|
+
returns the request thread.
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
local_var_params = locals()
|
|
103
|
+
|
|
104
|
+
all_params = [
|
|
105
|
+
'limit',
|
|
106
|
+
'name',
|
|
107
|
+
'namespace',
|
|
108
|
+
'offset',
|
|
109
|
+
'ordering',
|
|
110
|
+
'fields',
|
|
111
|
+
'exclude_fields'
|
|
112
|
+
]
|
|
113
|
+
all_params.extend(
|
|
114
|
+
[
|
|
115
|
+
'async_req',
|
|
116
|
+
'_return_http_data_only',
|
|
117
|
+
'_preload_content',
|
|
118
|
+
'_request_timeout'
|
|
119
|
+
]
|
|
120
|
+
)
|
|
121
|
+
|
|
122
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
123
|
+
if key not in all_params:
|
|
124
|
+
raise ApiTypeError(
|
|
125
|
+
"Got an unexpected keyword argument '%s'"
|
|
126
|
+
" to method list" % key
|
|
127
|
+
)
|
|
128
|
+
local_var_params[key] = val
|
|
129
|
+
del local_var_params['kwargs']
|
|
130
|
+
|
|
131
|
+
collection_formats = {}
|
|
132
|
+
|
|
133
|
+
path_params = {}
|
|
134
|
+
|
|
135
|
+
query_params = []
|
|
136
|
+
if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501
|
|
137
|
+
query_params.append(('limit', local_var_params['limit'])) # noqa: E501
|
|
138
|
+
if 'name' in local_var_params and local_var_params['name'] is not None: # noqa: E501
|
|
139
|
+
query_params.append(('name', local_var_params['name'])) # noqa: E501
|
|
140
|
+
if 'namespace' in local_var_params and local_var_params['namespace'] is not None: # noqa: E501
|
|
141
|
+
query_params.append(('namespace', local_var_params['namespace'])) # noqa: E501
|
|
142
|
+
if 'offset' in local_var_params and local_var_params['offset'] is not None: # noqa: E501
|
|
143
|
+
query_params.append(('offset', local_var_params['offset'])) # noqa: E501
|
|
144
|
+
if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501
|
|
145
|
+
query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501
|
|
146
|
+
if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501
|
|
147
|
+
query_params.append(('fields', local_var_params['fields'])) # noqa: E501
|
|
148
|
+
if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501
|
|
149
|
+
query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501
|
|
150
|
+
|
|
151
|
+
header_params = {}
|
|
152
|
+
|
|
153
|
+
form_params = []
|
|
154
|
+
local_var_files = {}
|
|
155
|
+
|
|
156
|
+
body_params = None
|
|
157
|
+
# HTTP header `Accept`
|
|
158
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
159
|
+
['application/json']) # noqa: E501
|
|
160
|
+
|
|
161
|
+
# Authentication setting
|
|
162
|
+
auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
|
|
163
|
+
|
|
164
|
+
return self.api_client.call_api(
|
|
165
|
+
'/pulp/api/v3/ansible/collections/', 'GET',
|
|
166
|
+
path_params,
|
|
167
|
+
query_params,
|
|
168
|
+
header_params,
|
|
169
|
+
body=body_params,
|
|
170
|
+
post_params=form_params,
|
|
171
|
+
files=local_var_files,
|
|
172
|
+
response_type='PaginatedansibleCollectionResponseList', # noqa: E501
|
|
173
|
+
auth_settings=auth_settings,
|
|
174
|
+
async_req=local_var_params.get('async_req'),
|
|
175
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
176
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
177
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
178
|
+
collection_formats=collection_formats)
|
|
179
|
+
|
|
180
|
+
def upload_collection(self, file, **kwargs): # noqa: E501
|
|
181
|
+
"""Upload a collection # noqa: E501
|
|
182
|
+
|
|
183
|
+
Create an artifact and trigger an asynchronous task to create Collection content from it. # noqa: E501
|
|
184
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
185
|
+
asynchronous HTTP request, please pass async_req=True
|
|
186
|
+
>>> thread = api.upload_collection(file, async_req=True)
|
|
187
|
+
>>> result = thread.get()
|
|
188
|
+
|
|
189
|
+
:param async_req bool: execute request asynchronously
|
|
190
|
+
:param file file: The Collection tarball. (required)
|
|
191
|
+
:param str sha256: An optional sha256 checksum of the uploaded file.
|
|
192
|
+
:param str expected_namespace: The expected 'namespace' of the Collection to be verified against the metadata during import.
|
|
193
|
+
:param str expected_name: The expected 'name' of the Collection to be verified against the metadata during import.
|
|
194
|
+
:param str expected_version: The expected version of the Collection to be verified against the metadata during import.
|
|
195
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
196
|
+
be returned without reading/decoding response
|
|
197
|
+
data. Default is True.
|
|
198
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
199
|
+
number provided, it will be total request
|
|
200
|
+
timeout. It can also be a pair (tuple) of
|
|
201
|
+
(connection, read) timeouts.
|
|
202
|
+
:return: AsyncOperationResponse
|
|
203
|
+
If the method is called asynchronously,
|
|
204
|
+
returns the request thread.
|
|
205
|
+
"""
|
|
206
|
+
kwargs['_return_http_data_only'] = True
|
|
207
|
+
return self.upload_collection_with_http_info(file, **kwargs) # noqa: E501
|
|
208
|
+
|
|
209
|
+
def upload_collection_with_http_info(self, file, **kwargs): # noqa: E501
|
|
210
|
+
"""Upload a collection # noqa: E501
|
|
211
|
+
|
|
212
|
+
Create an artifact and trigger an asynchronous task to create Collection content from it. # noqa: E501
|
|
213
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
214
|
+
asynchronous HTTP request, please pass async_req=True
|
|
215
|
+
>>> thread = api.upload_collection_with_http_info(file, async_req=True)
|
|
216
|
+
>>> result = thread.get()
|
|
217
|
+
|
|
218
|
+
:param async_req bool: execute request asynchronously
|
|
219
|
+
:param file file: The Collection tarball. (required)
|
|
220
|
+
:param str sha256: An optional sha256 checksum of the uploaded file.
|
|
221
|
+
:param str expected_namespace: The expected 'namespace' of the Collection to be verified against the metadata during import.
|
|
222
|
+
:param str expected_name: The expected 'name' of the Collection to be verified against the metadata during import.
|
|
223
|
+
:param str expected_version: The expected version of the Collection to be verified against the metadata during import.
|
|
224
|
+
:param _return_http_data_only: response data without head status code
|
|
225
|
+
and headers
|
|
226
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
227
|
+
be returned without reading/decoding response
|
|
228
|
+
data. Default is True.
|
|
229
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
230
|
+
number provided, it will be total request
|
|
231
|
+
timeout. It can also be a pair (tuple) of
|
|
232
|
+
(connection, read) timeouts.
|
|
233
|
+
:return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict))
|
|
234
|
+
If the method is called asynchronously,
|
|
235
|
+
returns the request thread.
|
|
236
|
+
"""
|
|
237
|
+
|
|
238
|
+
local_var_params = locals()
|
|
239
|
+
|
|
240
|
+
all_params = [
|
|
241
|
+
'file',
|
|
242
|
+
'sha256',
|
|
243
|
+
'expected_namespace',
|
|
244
|
+
'expected_name',
|
|
245
|
+
'expected_version'
|
|
246
|
+
]
|
|
247
|
+
all_params.extend(
|
|
248
|
+
[
|
|
249
|
+
'async_req',
|
|
250
|
+
'_return_http_data_only',
|
|
251
|
+
'_preload_content',
|
|
252
|
+
'_request_timeout'
|
|
253
|
+
]
|
|
254
|
+
)
|
|
255
|
+
|
|
256
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
257
|
+
if key not in all_params:
|
|
258
|
+
raise ApiTypeError(
|
|
259
|
+
"Got an unexpected keyword argument '%s'"
|
|
260
|
+
" to method upload_collection" % key
|
|
261
|
+
)
|
|
262
|
+
local_var_params[key] = val
|
|
263
|
+
del local_var_params['kwargs']
|
|
264
|
+
# verify the required parameter 'file' is set
|
|
265
|
+
if self.api_client.client_side_validation and ('file' not in local_var_params or # noqa: E501
|
|
266
|
+
local_var_params['file'] is None): # noqa: E501
|
|
267
|
+
raise ApiValueError("Missing the required parameter `file` when calling `upload_collection`") # noqa: E501
|
|
268
|
+
|
|
269
|
+
collection_formats = {}
|
|
270
|
+
|
|
271
|
+
path_params = {}
|
|
272
|
+
|
|
273
|
+
query_params = []
|
|
274
|
+
|
|
275
|
+
header_params = {}
|
|
276
|
+
|
|
277
|
+
form_params = []
|
|
278
|
+
local_var_files = {}
|
|
279
|
+
if 'file' in local_var_params:
|
|
280
|
+
local_var_files['file'] = local_var_params['file'] # noqa: E501
|
|
281
|
+
if 'sha256' in local_var_params:
|
|
282
|
+
form_params.append(('sha256', local_var_params['sha256'])) # noqa: E501
|
|
283
|
+
if 'expected_namespace' in local_var_params:
|
|
284
|
+
form_params.append(('expected_namespace', local_var_params['expected_namespace'])) # noqa: E501
|
|
285
|
+
if 'expected_name' in local_var_params:
|
|
286
|
+
form_params.append(('expected_name', local_var_params['expected_name'])) # noqa: E501
|
|
287
|
+
if 'expected_version' in local_var_params:
|
|
288
|
+
form_params.append(('expected_version', local_var_params['expected_version'])) # noqa: E501
|
|
289
|
+
|
|
290
|
+
body_params = None
|
|
291
|
+
# HTTP header `Accept`
|
|
292
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
293
|
+
['application/json']) # noqa: E501
|
|
294
|
+
|
|
295
|
+
# HTTP header `Content-Type`
|
|
296
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
297
|
+
['multipart/form-data', 'application/x-www-form-urlencoded']) # noqa: E501
|
|
298
|
+
|
|
299
|
+
# Authentication setting
|
|
300
|
+
auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501
|
|
301
|
+
|
|
302
|
+
return self.api_client.call_api(
|
|
303
|
+
'/ansible/collections/', 'POST',
|
|
304
|
+
path_params,
|
|
305
|
+
query_params,
|
|
306
|
+
header_params,
|
|
307
|
+
body=body_params,
|
|
308
|
+
post_params=form_params,
|
|
309
|
+
files=local_var_files,
|
|
310
|
+
response_type='AsyncOperationResponse', # noqa: E501
|
|
311
|
+
auth_settings=auth_settings,
|
|
312
|
+
async_req=local_var_params.get('async_req'),
|
|
313
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
314
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
315
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
316
|
+
collection_formats=collection_formats)
|