crc-pulp-python-client 20260812.1__tar.gz → 20260812.2__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.
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/PKG-INFO +1009 -297
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/README.md +13 -4
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/crc_pulp_python_client.egg-info/PKG-INFO +1009 -297
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/crc_pulp_python_client.egg-info/SOURCES.txt +13 -1
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/__init__.py +7 -1
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/__init__.py +3 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/api_legacy_api.py +6 -6
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/api_simple_api.py +6 -6
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/api/api_unyank_api.py +364 -0
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/api/api_yank_api.py +364 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/content_packages_api.py +17 -0
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/api/content_yanks_api.py +1497 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/configuration.py +3 -3
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/__init__.py +3 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/metadata_version_enum.py +2 -1
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/models/paginatedpython_package_yank_response_list.py +112 -0
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/models/python_package_yank_response.py +121 -0
- crc_pulp_python_client-20260812.2/pulpcore/client/pulp_python/models/yank.py +93 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pyproject.toml +1 -1
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/setup.py +1 -1
- crc_pulp_python_client-20260812.2/test/test_api_unyank_api.py +39 -0
- crc_pulp_python_client-20260812.2/test/test_api_yank_api.py +39 -0
- crc_pulp_python_client-20260812.2/test/test_content_yanks_api.py +60 -0
- crc_pulp_python_client-20260812.2/test/test_paginatedpython_package_yank_response_list.py +83 -0
- crc_pulp_python_client-20260812.2/test/test_python_package_yank_response.py +62 -0
- crc_pulp_python_client-20260812.2/test/test_yank.py +56 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/crc_pulp_python_client.egg-info/dependency_links.txt +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/crc_pulp_python_client.egg-info/requires.txt +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/crc_pulp_python_client.egg-info/top_level.txt +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/__init__.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/__init__.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/api_integrity_provenance_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/api_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/content_provenance_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/distributions_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/publications_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/pypi_metadata_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/remotes_python_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/repositories_python_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/repositories_python_blocklist_entries_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api_client.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/api_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/exceptions.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/async_operation_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/content_summary_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/filetype_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/my_permissions_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/nested_role.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/nested_role_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/object_roles_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/package_types_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_package_provenance_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_blocklist_entry_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/policy_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/protocol_version_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_package_provenance_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_blocklist_entry.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_blocklist_entry_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_distribution.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_distribution_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_package_content_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_publication.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_publication_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_remote.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_remote_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_repository.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/python_python_repository_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/remote_network_config.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/remote_network_config_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/repair.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/repository_version_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/set_label.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/set_label_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/summary_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/unset_label.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/models/unset_label_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/py.typed +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/pulpcore/client/pulp_python/rest.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/setup.cfg +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_api_integrity_provenance_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_api_legacy_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_api_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_api_simple_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_async_operation_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_content_packages_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_content_provenance_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_content_summary_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_distributions_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_exclude_platforms_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_filetype_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_metadata_version_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_my_permissions_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_nested_role.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_nested_role_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_object_roles_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_package_metadata_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_package_types_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_package_upload_task_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginated_repository_version_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_package_provenance_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_blocklist_entry_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_distribution_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_package_content_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_publication_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_remote_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_paginatedpython_python_repository_response_list.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_patchedpython_python_distribution.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_patchedpython_python_remote.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_patchedpython_python_repository.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_policy_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_protocol_version_enum.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_publications_pypi_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_pypi_metadata_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_package_provenance_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_blocklist_entry.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_blocklist_entry_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_distribution.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_distribution_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_package_content_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_publication.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_publication_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_remote.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_remote_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_remote_response_hidden_fields_inner.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_repository.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_python_python_repository_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_remote_network_config.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_remote_network_config_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_remotes_python_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repair.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repositories_python_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repositories_python_blocklist_entries_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repositories_python_versions_api.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repository_add_remove_content.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repository_sync_url.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_repository_version_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_set_label.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_set_label_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_summary_response.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_unset_label.py +0 -0
- {crc_pulp_python_client-20260812.1 → crc_pulp_python_client-20260812.2}/test/test_unset_label_response.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crc-pulp_python-client
|
|
3
|
-
Version: 20260812.
|
|
3
|
+
Version: 20260812.2
|
|
4
4
|
Summary: Pulp 3 API
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Pulp Team
|
|
@@ -23,7 +23,7 @@ Dynamic: summary
|
|
|
23
23
|
|
|
24
24
|
# pulpcore.client.pulp_python.ApiIntegrityProvenanceApi
|
|
25
25
|
|
|
26
|
-
All URIs are relative to *https://env-ephemeral-
|
|
26
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
27
27
|
|
|
28
28
|
Method | HTTP request | Description
|
|
29
29
|
------------- | ------------- | -------------
|
|
@@ -47,10 +47,10 @@ import pulpcore.client.pulp_python
|
|
|
47
47
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
48
48
|
from pprint import pprint
|
|
49
49
|
|
|
50
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
50
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
51
51
|
# See configuration.py for a list of all supported configuration parameters.
|
|
52
52
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
53
|
-
host = "https://env-ephemeral-
|
|
53
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
54
54
|
)
|
|
55
55
|
|
|
56
56
|
# The client must configure the authentication and authorization parameters
|
|
@@ -129,7 +129,7 @@ void (empty response body)
|
|
|
129
129
|
|
|
130
130
|
# pulpcore.client.pulp_python.ApiLegacyApi
|
|
131
131
|
|
|
132
|
-
All URIs are relative to *https://env-ephemeral-
|
|
132
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
133
133
|
|
|
134
134
|
Method | HTTP request | Description
|
|
135
135
|
------------- | ------------- | -------------
|
|
@@ -154,10 +154,10 @@ from pulpcore.client.pulp_python.models.package_upload_task_response import Pack
|
|
|
154
154
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
155
155
|
from pprint import pprint
|
|
156
156
|
|
|
157
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
157
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
158
158
|
# See configuration.py for a list of all supported configuration parameters.
|
|
159
159
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
160
|
-
host = "https://env-ephemeral-
|
|
160
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
161
161
|
)
|
|
162
162
|
|
|
163
163
|
# The client must configure the authentication and authorization parameters
|
|
@@ -189,7 +189,7 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
189
189
|
action = 'file_upload' # str | Defaults to `file_upload`, don't change it or request will fail! (optional) (default to 'file_upload')
|
|
190
190
|
protocol_version = pulpcore.client.pulp_python.ProtocolVersionEnum() # ProtocolVersionEnum | Protocol version to use for the upload. Only version 1 is supported. * `1` - 1 (optional)
|
|
191
191
|
filetype = pulpcore.client.pulp_python.FiletypeEnum() # FiletypeEnum | Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist (optional)
|
|
192
|
-
metadata_version = pulpcore.client.pulp_python.MetadataVersionEnum() # MetadataVersionEnum | Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 (optional)
|
|
192
|
+
metadata_version = pulpcore.client.pulp_python.MetadataVersionEnum() # MetadataVersionEnum | Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 * `2.5` - 2.5 (optional)
|
|
193
193
|
attestations = None # object | A JSON list containing attestations for the package. (optional)
|
|
194
194
|
|
|
195
195
|
try:
|
|
@@ -216,7 +216,7 @@ Name | Type | Description | Notes
|
|
|
216
216
|
**action** | **str**| Defaults to `file_upload`, don't change it or request will fail! | [optional] [default to 'file_upload']
|
|
217
217
|
**protocol_version** | [**ProtocolVersionEnum**](ProtocolVersionEnum.md)| Protocol version to use for the upload. Only version 1 is supported. * `1` - 1 | [optional]
|
|
218
218
|
**filetype** | [**FiletypeEnum**](FiletypeEnum.md)| Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist | [optional]
|
|
219
|
-
**metadata_version** | [**MetadataVersionEnum**](MetadataVersionEnum.md)| Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 | [optional]
|
|
219
|
+
**metadata_version** | [**MetadataVersionEnum**](MetadataVersionEnum.md)| Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 * `2.5` - 2.5 | [optional]
|
|
220
220
|
**attestations** | [**object**](object.md)| A JSON list containing attestations for the package. | [optional]
|
|
221
221
|
|
|
222
222
|
### Return type
|
|
@@ -242,7 +242,7 @@ Name | Type | Description | Notes
|
|
|
242
242
|
|
|
243
243
|
# pulpcore.client.pulp_python.ApiPypiApi
|
|
244
244
|
|
|
245
|
-
All URIs are relative to *https://env-ephemeral-
|
|
245
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
246
246
|
|
|
247
247
|
Method | HTTP request | Description
|
|
248
248
|
------------- | ------------- | -------------
|
|
@@ -267,10 +267,10 @@ from pulpcore.client.pulp_python.models.summary_response import SummaryResponse
|
|
|
267
267
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
268
268
|
from pprint import pprint
|
|
269
269
|
|
|
270
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
270
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
271
271
|
# See configuration.py for a list of all supported configuration parameters.
|
|
272
272
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
273
|
-
host = "https://env-ephemeral-
|
|
273
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
274
274
|
)
|
|
275
275
|
|
|
276
276
|
# The client must configure the authentication and authorization parameters
|
|
@@ -345,7 +345,7 @@ Name | Type | Description | Notes
|
|
|
345
345
|
|
|
346
346
|
# pulpcore.client.pulp_python.ApiSimpleApi
|
|
347
347
|
|
|
348
|
-
All URIs are relative to *https://env-ephemeral-
|
|
348
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
349
349
|
|
|
350
350
|
Method | HTTP request | Description
|
|
351
351
|
------------- | ------------- | -------------
|
|
@@ -372,10 +372,10 @@ from pulpcore.client.pulp_python.models.package_upload_task_response import Pack
|
|
|
372
372
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
373
373
|
from pprint import pprint
|
|
374
374
|
|
|
375
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
375
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
376
376
|
# See configuration.py for a list of all supported configuration parameters.
|
|
377
377
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
378
|
-
host = "https://env-ephemeral-
|
|
378
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
379
379
|
)
|
|
380
380
|
|
|
381
381
|
# The client must configure the authentication and authorization parameters
|
|
@@ -407,7 +407,7 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
407
407
|
action = 'file_upload' # str | Defaults to `file_upload`, don't change it or request will fail! (optional) (default to 'file_upload')
|
|
408
408
|
protocol_version = pulpcore.client.pulp_python.ProtocolVersionEnum() # ProtocolVersionEnum | Protocol version to use for the upload. Only version 1 is supported. * `1` - 1 (optional)
|
|
409
409
|
filetype = pulpcore.client.pulp_python.FiletypeEnum() # FiletypeEnum | Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist (optional)
|
|
410
|
-
metadata_version = pulpcore.client.pulp_python.MetadataVersionEnum() # MetadataVersionEnum | Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 (optional)
|
|
410
|
+
metadata_version = pulpcore.client.pulp_python.MetadataVersionEnum() # MetadataVersionEnum | Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 * `2.5` - 2.5 (optional)
|
|
411
411
|
attestations = None # object | A JSON list containing attestations for the package. (optional)
|
|
412
412
|
|
|
413
413
|
try:
|
|
@@ -434,7 +434,7 @@ Name | Type | Description | Notes
|
|
|
434
434
|
**action** | **str**| Defaults to `file_upload`, don't change it or request will fail! | [optional] [default to 'file_upload']
|
|
435
435
|
**protocol_version** | [**ProtocolVersionEnum**](ProtocolVersionEnum.md)| Protocol version to use for the upload. Only version 1 is supported. * `1` - 1 | [optional]
|
|
436
436
|
**filetype** | [**FiletypeEnum**](FiletypeEnum.md)| Type of artifact to upload. * `bdist_wheel` - bdist_wheel * `sdist` - sdist | [optional]
|
|
437
|
-
**metadata_version** | [**MetadataVersionEnum**](MetadataVersionEnum.md)| Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 | [optional]
|
|
437
|
+
**metadata_version** | [**MetadataVersionEnum**](MetadataVersionEnum.md)| Metadata version of the uploaded package. * `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 * `2.5` - 2.5 | [optional]
|
|
438
438
|
**attestations** | [**object**](object.md)| A JSON list containing attestations for the package. | [optional]
|
|
439
439
|
|
|
440
440
|
### Return type
|
|
@@ -475,10 +475,10 @@ import pulpcore.client.pulp_python
|
|
|
475
475
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
476
476
|
from pprint import pprint
|
|
477
477
|
|
|
478
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
478
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
479
479
|
# See configuration.py for a list of all supported configuration parameters.
|
|
480
480
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
481
|
-
host = "https://env-ephemeral-
|
|
481
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
482
482
|
)
|
|
483
483
|
|
|
484
484
|
# The client must configure the authentication and authorization parameters
|
|
@@ -570,10 +570,10 @@ import pulpcore.client.pulp_python
|
|
|
570
570
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
571
571
|
from pprint import pprint
|
|
572
572
|
|
|
573
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
573
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
574
574
|
# See configuration.py for a list of all supported configuration parameters.
|
|
575
575
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
576
|
-
host = "https://env-ephemeral-
|
|
576
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
577
577
|
)
|
|
578
578
|
|
|
579
579
|
# The client must configure the authentication and authorization parameters
|
|
@@ -646,6 +646,210 @@ void (empty response body)
|
|
|
646
646
|
|
|
647
647
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
648
648
|
|
|
649
|
+
# pulpcore.client.pulp_python.ApiUnyankApi
|
|
650
|
+
|
|
651
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
652
|
+
|
|
653
|
+
Method | HTTP request | Description
|
|
654
|
+
------------- | ------------- | -------------
|
|
655
|
+
[**unyank**](ApiUnyankApi.md#unyank) | **POST** /api/pypi/{pulp_domain}/{path}/unyank/ | Unyank a package version
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
# **unyank**
|
|
659
|
+
> AsyncOperationResponse unyank(path, pulp_domain, yank, x_task_diagnostics=x_task_diagnostics)
|
|
660
|
+
|
|
661
|
+
Unyank a package version
|
|
662
|
+
|
|
663
|
+
Unyank a package version, unmarking all its files with data-yanked.
|
|
664
|
+
|
|
665
|
+
### Example
|
|
666
|
+
|
|
667
|
+
* Basic Authentication (basicAuth):
|
|
668
|
+
* Api Key Authentication (cookieAuth):
|
|
669
|
+
|
|
670
|
+
```python
|
|
671
|
+
import pulpcore.client.pulp_python
|
|
672
|
+
from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
|
|
673
|
+
from pulpcore.client.pulp_python.models.yank import Yank
|
|
674
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
675
|
+
from pprint import pprint
|
|
676
|
+
|
|
677
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
678
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
679
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
680
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
681
|
+
)
|
|
682
|
+
|
|
683
|
+
# The client must configure the authentication and authorization parameters
|
|
684
|
+
# in accordance with the API server security policy.
|
|
685
|
+
# Examples for each auth method are provided below, use the example that
|
|
686
|
+
# satisfies your auth use case.
|
|
687
|
+
|
|
688
|
+
# Configure HTTP basic authorization: basicAuth
|
|
689
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
690
|
+
username = os.environ["USERNAME"],
|
|
691
|
+
password = os.environ["PASSWORD"]
|
|
692
|
+
)
|
|
693
|
+
|
|
694
|
+
# Configure API key authorization: cookieAuth
|
|
695
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
696
|
+
|
|
697
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
698
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
699
|
+
|
|
700
|
+
# Enter a context with an instance of the API client
|
|
701
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
702
|
+
# Create an instance of the API class
|
|
703
|
+
api_instance = pulpcore.client.pulp_python.ApiUnyankApi(api_client)
|
|
704
|
+
path = 'path_example' # str |
|
|
705
|
+
pulp_domain = 'pulp_domain_example' # str |
|
|
706
|
+
yank = pulpcore.client.pulp_python.Yank() # Yank |
|
|
707
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
708
|
+
|
|
709
|
+
try:
|
|
710
|
+
# Unyank a package version
|
|
711
|
+
api_response = api_instance.unyank(path, pulp_domain, yank, x_task_diagnostics=x_task_diagnostics)
|
|
712
|
+
print("The response of ApiUnyankApi->unyank:\n")
|
|
713
|
+
pprint(api_response)
|
|
714
|
+
except Exception as e:
|
|
715
|
+
print("Exception when calling ApiUnyankApi->unyank: %s\n" % e)
|
|
716
|
+
```
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
### Parameters
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
Name | Type | Description | Notes
|
|
724
|
+
------------- | ------------- | ------------- | -------------
|
|
725
|
+
**path** | **str**| |
|
|
726
|
+
**pulp_domain** | **str**| |
|
|
727
|
+
**yank** | [**Yank**](Yank.md)| |
|
|
728
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
729
|
+
|
|
730
|
+
### Return type
|
|
731
|
+
|
|
732
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
|
733
|
+
|
|
734
|
+
### Authorization
|
|
735
|
+
|
|
736
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
737
|
+
|
|
738
|
+
### HTTP request headers
|
|
739
|
+
|
|
740
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
741
|
+
- **Accept**: application/json
|
|
742
|
+
|
|
743
|
+
### HTTP response details
|
|
744
|
+
|
|
745
|
+
| Status code | Description | Response headers |
|
|
746
|
+
|-------------|-------------|------------------|
|
|
747
|
+
**202** | | - |
|
|
748
|
+
|
|
749
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
750
|
+
|
|
751
|
+
# pulpcore.client.pulp_python.ApiYankApi
|
|
752
|
+
|
|
753
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
754
|
+
|
|
755
|
+
Method | HTTP request | Description
|
|
756
|
+
------------- | ------------- | -------------
|
|
757
|
+
[**yank**](ApiYankApi.md#yank) | **POST** /api/pypi/{pulp_domain}/{path}/yank/ | Yank a package version
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
# **yank**
|
|
761
|
+
> AsyncOperationResponse yank(path, pulp_domain, yank, x_task_diagnostics=x_task_diagnostics)
|
|
762
|
+
|
|
763
|
+
Yank a package version
|
|
764
|
+
|
|
765
|
+
Yank a package version, marking all its files with data-yanked.
|
|
766
|
+
|
|
767
|
+
### Example
|
|
768
|
+
|
|
769
|
+
* Basic Authentication (basicAuth):
|
|
770
|
+
* Api Key Authentication (cookieAuth):
|
|
771
|
+
|
|
772
|
+
```python
|
|
773
|
+
import pulpcore.client.pulp_python
|
|
774
|
+
from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
|
|
775
|
+
from pulpcore.client.pulp_python.models.yank import Yank
|
|
776
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
777
|
+
from pprint import pprint
|
|
778
|
+
|
|
779
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
780
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
781
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
782
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
783
|
+
)
|
|
784
|
+
|
|
785
|
+
# The client must configure the authentication and authorization parameters
|
|
786
|
+
# in accordance with the API server security policy.
|
|
787
|
+
# Examples for each auth method are provided below, use the example that
|
|
788
|
+
# satisfies your auth use case.
|
|
789
|
+
|
|
790
|
+
# Configure HTTP basic authorization: basicAuth
|
|
791
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
792
|
+
username = os.environ["USERNAME"],
|
|
793
|
+
password = os.environ["PASSWORD"]
|
|
794
|
+
)
|
|
795
|
+
|
|
796
|
+
# Configure API key authorization: cookieAuth
|
|
797
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
798
|
+
|
|
799
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
800
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
801
|
+
|
|
802
|
+
# Enter a context with an instance of the API client
|
|
803
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
804
|
+
# Create an instance of the API class
|
|
805
|
+
api_instance = pulpcore.client.pulp_python.ApiYankApi(api_client)
|
|
806
|
+
path = 'path_example' # str |
|
|
807
|
+
pulp_domain = 'pulp_domain_example' # str |
|
|
808
|
+
yank = pulpcore.client.pulp_python.Yank() # Yank |
|
|
809
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
810
|
+
|
|
811
|
+
try:
|
|
812
|
+
# Yank a package version
|
|
813
|
+
api_response = api_instance.yank(path, pulp_domain, yank, x_task_diagnostics=x_task_diagnostics)
|
|
814
|
+
print("The response of ApiYankApi->yank:\n")
|
|
815
|
+
pprint(api_response)
|
|
816
|
+
except Exception as e:
|
|
817
|
+
print("Exception when calling ApiYankApi->yank: %s\n" % e)
|
|
818
|
+
```
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
### Parameters
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
Name | Type | Description | Notes
|
|
826
|
+
------------- | ------------- | ------------- | -------------
|
|
827
|
+
**path** | **str**| |
|
|
828
|
+
**pulp_domain** | **str**| |
|
|
829
|
+
**yank** | [**Yank**](Yank.md)| |
|
|
830
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
831
|
+
|
|
832
|
+
### Return type
|
|
833
|
+
|
|
834
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
|
835
|
+
|
|
836
|
+
### Authorization
|
|
837
|
+
|
|
838
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
839
|
+
|
|
840
|
+
### HTTP request headers
|
|
841
|
+
|
|
842
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
843
|
+
- **Accept**: application/json
|
|
844
|
+
|
|
845
|
+
### HTTP response details
|
|
846
|
+
|
|
847
|
+
| Status code | Description | Response headers |
|
|
848
|
+
|-------------|-------------|------------------|
|
|
849
|
+
**202** | | - |
|
|
850
|
+
|
|
851
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
852
|
+
|
|
649
853
|
# AsyncOperationResponse
|
|
650
854
|
|
|
651
855
|
Serializer for asynchronous operations.
|
|
@@ -678,7 +882,7 @@ async_operation_response_from_dict = AsyncOperationResponse.from_dict(async_oper
|
|
|
678
882
|
|
|
679
883
|
# pulpcore.client.pulp_python.ContentPackagesApi
|
|
680
884
|
|
|
681
|
-
All URIs are relative to *https://env-ephemeral-
|
|
885
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
682
886
|
|
|
683
887
|
Method | HTTP request | Description
|
|
684
888
|
------------- | ------------- | -------------
|
|
@@ -708,10 +912,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
708
912
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
709
913
|
from pprint import pprint
|
|
710
914
|
|
|
711
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
915
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
712
916
|
# See configuration.py for a list of all supported configuration parameters.
|
|
713
917
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
714
|
-
host = "https://env-ephemeral-
|
|
918
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
715
919
|
)
|
|
716
920
|
|
|
717
921
|
# The client must configure the authentication and authorization parameters
|
|
@@ -853,7 +1057,7 @@ Name | Type | Description | Notes
|
|
|
853
1057
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
854
1058
|
|
|
855
1059
|
# **list**
|
|
856
|
-
> PaginatedpythonPythonPackageContentResponseList list(pulp_domain, x_task_diagnostics=x_task_diagnostics, author=author, author__contains=author__contains, author__in=author__in, filename=filename, filename__contains=filename__contains, filename__in=filename__in, keywords__contains=keywords__contains, keywords__in=keywords__in, limit=limit, name=name, name__contains=name__contains, name__in=name__in, offset=offset, ordering=ordering, orphaned_for=orphaned_for, packagetype=packagetype, packagetype__in=packagetype__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, requires_python=requires_python, requires_python__contains=requires_python__contains, requires_python__in=requires_python__in, sha256=sha256, sha256__in=sha256__in, version=version, version__gt=version__gt, version__gte=version__gte, version__lt=version__lt, version__lte=version__lte, fields=fields, exclude_fields=exclude_fields)
|
|
1060
|
+
> PaginatedpythonPythonPackageContentResponseList list(pulp_domain, x_task_diagnostics=x_task_diagnostics, author=author, author__contains=author__contains, author__in=author__in, filename=filename, filename__contains=filename__contains, filename__in=filename__in, keywords__contains=keywords__contains, keywords__in=keywords__in, limit=limit, name=name, name__contains=name__contains, name__in=name__in, offset=offset, ordering=ordering, orphaned_for=orphaned_for, packagetype=packagetype, packagetype__in=packagetype__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, requires_python=requires_python, requires_python__contains=requires_python__contains, requires_python__in=requires_python__in, sha256=sha256, sha256__in=sha256__in, version=version, version__gt=version__gt, version__gte=version__gte, version__lt=version__lt, version__lte=version__lte, version_specifier=version_specifier, fields=fields, exclude_fields=exclude_fields)
|
|
857
1061
|
|
|
858
1062
|
List python package contents
|
|
859
1063
|
|
|
@@ -870,10 +1074,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_package_content_r
|
|
|
870
1074
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
871
1075
|
from pprint import pprint
|
|
872
1076
|
|
|
873
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
1077
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
874
1078
|
# See configuration.py for a list of all supported configuration parameters.
|
|
875
1079
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
876
|
-
host = "https://env-ephemeral-
|
|
1080
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
877
1081
|
)
|
|
878
1082
|
|
|
879
1083
|
# The client must configure the authentication and authorization parameters
|
|
@@ -934,12 +1138,13 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
934
1138
|
version__gte = 'version__gte_example' # str | Filter results where version is greater than or equal to value (optional)
|
|
935
1139
|
version__lt = 'version__lt_example' # str | Filter results where version is less than value (optional)
|
|
936
1140
|
version__lte = 'version__lte_example' # str | Filter results where version is less than or equal to value (optional)
|
|
1141
|
+
version_specifier = 'version_specifier_example' # str | Filter by PEP 440 version specifier (e.g., >=2.4,<3.0 or ~=1.26) (optional)
|
|
937
1142
|
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
|
|
938
1143
|
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
|
|
939
1144
|
|
|
940
1145
|
try:
|
|
941
1146
|
# List python package contents
|
|
942
|
-
api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, author=author, author__contains=author__contains, author__in=author__in, filename=filename, filename__contains=filename__contains, filename__in=filename__in, keywords__contains=keywords__contains, keywords__in=keywords__in, limit=limit, name=name, name__contains=name__contains, name__in=name__in, offset=offset, ordering=ordering, orphaned_for=orphaned_for, packagetype=packagetype, packagetype__in=packagetype__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, requires_python=requires_python, requires_python__contains=requires_python__contains, requires_python__in=requires_python__in, sha256=sha256, sha256__in=sha256__in, version=version, version__gt=version__gt, version__gte=version__gte, version__lt=version__lt, version__lte=version__lte, fields=fields, exclude_fields=exclude_fields)
|
|
1147
|
+
api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, author=author, author__contains=author__contains, author__in=author__in, filename=filename, filename__contains=filename__contains, filename__in=filename__in, keywords__contains=keywords__contains, keywords__in=keywords__in, limit=limit, name=name, name__contains=name__contains, name__in=name__in, offset=offset, ordering=ordering, orphaned_for=orphaned_for, packagetype=packagetype, packagetype__in=packagetype__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, requires_python=requires_python, requires_python__contains=requires_python__contains, requires_python__in=requires_python__in, sha256=sha256, sha256__in=sha256__in, version=version, version__gt=version__gt, version__gte=version__gte, version__lt=version__lt, version__lte=version__lte, version_specifier=version_specifier, fields=fields, exclude_fields=exclude_fields)
|
|
943
1148
|
print("The response of ContentPackagesApi->list:\n")
|
|
944
1149
|
pprint(api_response)
|
|
945
1150
|
except Exception as e:
|
|
@@ -990,6 +1195,7 @@ Name | Type | Description | Notes
|
|
|
990
1195
|
**version__gte** | **str**| Filter results where version is greater than or equal to value | [optional]
|
|
991
1196
|
**version__lt** | **str**| Filter results where version is less than value | [optional]
|
|
992
1197
|
**version__lte** | **str**| Filter results where version is less than or equal to value | [optional]
|
|
1198
|
+
**version_specifier** | **str**| Filter by PEP 440 version specifier (e.g., >=2.4,<3.0 or ~=1.26) | [optional]
|
|
993
1199
|
**fields** | [**List[str]**](str.md)| A list of fields to include in the response. | [optional]
|
|
994
1200
|
**exclude_fields** | [**List[str]**](str.md)| A list of fields to exclude from the response. | [optional]
|
|
995
1201
|
|
|
@@ -1032,10 +1238,10 @@ from pulpcore.client.pulp_python.models.python_python_package_content_response i
|
|
|
1032
1238
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1033
1239
|
from pprint import pprint
|
|
1034
1240
|
|
|
1035
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
1241
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1036
1242
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1037
1243
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1038
|
-
host = "https://env-ephemeral-
|
|
1244
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1039
1245
|
)
|
|
1040
1246
|
|
|
1041
1247
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1125,10 +1331,10 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
1125
1331
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1126
1332
|
from pprint import pprint
|
|
1127
1333
|
|
|
1128
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
1334
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1129
1335
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1130
1336
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1131
|
-
host = "https://env-ephemeral-
|
|
1337
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1132
1338
|
)
|
|
1133
1339
|
|
|
1134
1340
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1216,10 +1422,10 @@ from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelRe
|
|
|
1216
1422
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1217
1423
|
from pprint import pprint
|
|
1218
1424
|
|
|
1219
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
1425
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1220
1426
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1221
1427
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1222
|
-
host = "https://env-ephemeral-
|
|
1428
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1223
1429
|
)
|
|
1224
1430
|
|
|
1225
1431
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1306,10 +1512,10 @@ from pulpcore.client.pulp_python.models.python_python_package_content_response i
|
|
|
1306
1512
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1307
1513
|
from pprint import pprint
|
|
1308
1514
|
|
|
1309
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
1515
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1310
1516
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1311
1517
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1312
|
-
host = "https://env-ephemeral-
|
|
1518
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1313
1519
|
)
|
|
1314
1520
|
|
|
1315
1521
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1427,7 +1633,433 @@ Name | Type | Description | Notes
|
|
|
1427
1633
|
|
|
1428
1634
|
### Return type
|
|
1429
1635
|
|
|
1430
|
-
[**PythonPythonPackageContentResponse**](PythonPythonPackageContentResponse.md)
|
|
1636
|
+
[**PythonPythonPackageContentResponse**](PythonPythonPackageContentResponse.md)
|
|
1637
|
+
|
|
1638
|
+
### Authorization
|
|
1639
|
+
|
|
1640
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
1641
|
+
|
|
1642
|
+
### HTTP request headers
|
|
1643
|
+
|
|
1644
|
+
- **Content-Type**: multipart/form-data, application/x-www-form-urlencoded
|
|
1645
|
+
- **Accept**: application/json
|
|
1646
|
+
|
|
1647
|
+
### HTTP response details
|
|
1648
|
+
|
|
1649
|
+
| Status code | Description | Response headers |
|
|
1650
|
+
|-------------|-------------|------------------|
|
|
1651
|
+
**201** | | - |
|
|
1652
|
+
|
|
1653
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1654
|
+
|
|
1655
|
+
# pulpcore.client.pulp_python.ContentProvenanceApi
|
|
1656
|
+
|
|
1657
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
1658
|
+
|
|
1659
|
+
Method | HTTP request | Description
|
|
1660
|
+
------------- | ------------- | -------------
|
|
1661
|
+
[**create**](ContentProvenanceApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/content/python/provenance/ | Create a package provenance
|
|
1662
|
+
[**list**](ContentProvenanceApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/python/provenance/ | List package provenances
|
|
1663
|
+
[**read**](ContentProvenanceApi.md#read) | **GET** {python_package_provenance_href} | Inspect a package provenance
|
|
1664
|
+
[**set_label**](ContentProvenanceApi.md#set_label) | **POST** {python_package_provenance_href}set_label/ | Set a label
|
|
1665
|
+
[**unset_label**](ContentProvenanceApi.md#unset_label) | **POST** {python_package_provenance_href}unset_label/ | Unset a label
|
|
1666
|
+
|
|
1667
|
+
|
|
1668
|
+
# **create**
|
|
1669
|
+
> AsyncOperationResponse create(pulp_domain, package, x_task_diagnostics=x_task_diagnostics, repository=repository, overwrite=overwrite, pulp_labels=pulp_labels, file=file, upload=upload, file_url=file_url, downloader_config=downloader_config, verify=verify)
|
|
1670
|
+
|
|
1671
|
+
Create a package provenance
|
|
1672
|
+
|
|
1673
|
+
Trigger an asynchronous task to create content,optionally create new repository version.
|
|
1674
|
+
|
|
1675
|
+
### Example
|
|
1676
|
+
|
|
1677
|
+
* Basic Authentication (basicAuth):
|
|
1678
|
+
* Api Key Authentication (cookieAuth):
|
|
1679
|
+
|
|
1680
|
+
```python
|
|
1681
|
+
import pulpcore.client.pulp_python
|
|
1682
|
+
from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
|
|
1683
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
1684
|
+
from pprint import pprint
|
|
1685
|
+
|
|
1686
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1687
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
1688
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1689
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1690
|
+
)
|
|
1691
|
+
|
|
1692
|
+
# The client must configure the authentication and authorization parameters
|
|
1693
|
+
# in accordance with the API server security policy.
|
|
1694
|
+
# Examples for each auth method are provided below, use the example that
|
|
1695
|
+
# satisfies your auth use case.
|
|
1696
|
+
|
|
1697
|
+
# Configure HTTP basic authorization: basicAuth
|
|
1698
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1699
|
+
username = os.environ["USERNAME"],
|
|
1700
|
+
password = os.environ["PASSWORD"]
|
|
1701
|
+
)
|
|
1702
|
+
|
|
1703
|
+
# Configure API key authorization: cookieAuth
|
|
1704
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
1705
|
+
|
|
1706
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
1707
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
1708
|
+
|
|
1709
|
+
# Enter a context with an instance of the API client
|
|
1710
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1711
|
+
# Create an instance of the API class
|
|
1712
|
+
api_instance = pulpcore.client.pulp_python.ContentProvenanceApi(api_client)
|
|
1713
|
+
pulp_domain = 'pulp_domain_example' # str |
|
|
1714
|
+
package = 'package_example' # str | The package that the provenance is for.
|
|
1715
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1716
|
+
repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
|
|
1717
|
+
overwrite = True # bool | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true. (optional)
|
|
1718
|
+
pulp_labels = None # Dict[str, Optional[str]] | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. (optional)
|
|
1719
|
+
file = None # bytearray | An uploaded file that may be turned into the content unit. (optional)
|
|
1720
|
+
upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
|
|
1721
|
+
file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
|
|
1722
|
+
downloader_config = pulpcore.client.pulp_python.RemoteNetworkConfig() # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. (optional)
|
|
1723
|
+
verify = True # bool | Verify each attestation in the provenance. (optional) (default to True)
|
|
1724
|
+
|
|
1725
|
+
try:
|
|
1726
|
+
# Create a package provenance
|
|
1727
|
+
api_response = api_instance.create(pulp_domain, package, x_task_diagnostics=x_task_diagnostics, repository=repository, overwrite=overwrite, pulp_labels=pulp_labels, file=file, upload=upload, file_url=file_url, downloader_config=downloader_config, verify=verify)
|
|
1728
|
+
print("The response of ContentProvenanceApi->create:\n")
|
|
1729
|
+
pprint(api_response)
|
|
1730
|
+
except Exception as e:
|
|
1731
|
+
print("Exception when calling ContentProvenanceApi->create: %s\n" % e)
|
|
1732
|
+
```
|
|
1733
|
+
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
### Parameters
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
Name | Type | Description | Notes
|
|
1740
|
+
------------- | ------------- | ------------- | -------------
|
|
1741
|
+
**pulp_domain** | **str**| |
|
|
1742
|
+
**package** | **str**| The package that the provenance is for. |
|
|
1743
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1744
|
+
**repository** | **str**| A URI of a repository the new content unit should be associated with. | [optional]
|
|
1745
|
+
**overwrite** | **bool**| When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true. | [optional]
|
|
1746
|
+
**pulp_labels** | [**Dict[str, Optional[str]]**](Dict.md)| A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional]
|
|
1747
|
+
**file** | **bytearray**| An uploaded file that may be turned into the content unit. | [optional]
|
|
1748
|
+
**upload** | **str**| An uncommitted upload that may be turned into the content unit. | [optional]
|
|
1749
|
+
**file_url** | **str**| A url that Pulp can download and turn into the content unit. | [optional]
|
|
1750
|
+
**downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md)| Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional]
|
|
1751
|
+
**verify** | **bool**| Verify each attestation in the provenance. | [optional] [default to True]
|
|
1752
|
+
|
|
1753
|
+
### Return type
|
|
1754
|
+
|
|
1755
|
+
[**AsyncOperationResponse**](AsyncOperationResponse.md)
|
|
1756
|
+
|
|
1757
|
+
### Authorization
|
|
1758
|
+
|
|
1759
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
1760
|
+
|
|
1761
|
+
### HTTP request headers
|
|
1762
|
+
|
|
1763
|
+
- **Content-Type**: multipart/form-data, application/x-www-form-urlencoded
|
|
1764
|
+
- **Accept**: application/json
|
|
1765
|
+
|
|
1766
|
+
### HTTP response details
|
|
1767
|
+
|
|
1768
|
+
| Status code | Description | Response headers |
|
|
1769
|
+
|-------------|-------------|------------------|
|
|
1770
|
+
**202** | | - |
|
|
1771
|
+
|
|
1772
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1773
|
+
|
|
1774
|
+
# **list**
|
|
1775
|
+
> PaginatedpythonPackageProvenanceResponseList list(pulp_domain, x_task_diagnostics=x_task_diagnostics, limit=limit, offset=offset, ordering=ordering, orphaned_for=orphaned_for, package=package, package__in=package__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, sha256=sha256, sha256__in=sha256__in, fields=fields, exclude_fields=exclude_fields)
|
|
1776
|
+
|
|
1777
|
+
List package provenances
|
|
1778
|
+
|
|
1779
|
+
PackageProvenance represents a PEP 740 provenance object for a Python package. Use ?minimal=true to get a human readable representation of the provenance.
|
|
1780
|
+
|
|
1781
|
+
### Example
|
|
1782
|
+
|
|
1783
|
+
* Basic Authentication (basicAuth):
|
|
1784
|
+
* Api Key Authentication (cookieAuth):
|
|
1785
|
+
|
|
1786
|
+
```python
|
|
1787
|
+
import pulpcore.client.pulp_python
|
|
1788
|
+
from pulpcore.client.pulp_python.models.paginatedpython_package_provenance_response_list import PaginatedpythonPackageProvenanceResponseList
|
|
1789
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
1790
|
+
from pprint import pprint
|
|
1791
|
+
|
|
1792
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1793
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
1794
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1795
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1796
|
+
)
|
|
1797
|
+
|
|
1798
|
+
# The client must configure the authentication and authorization parameters
|
|
1799
|
+
# in accordance with the API server security policy.
|
|
1800
|
+
# Examples for each auth method are provided below, use the example that
|
|
1801
|
+
# satisfies your auth use case.
|
|
1802
|
+
|
|
1803
|
+
# Configure HTTP basic authorization: basicAuth
|
|
1804
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1805
|
+
username = os.environ["USERNAME"],
|
|
1806
|
+
password = os.environ["PASSWORD"]
|
|
1807
|
+
)
|
|
1808
|
+
|
|
1809
|
+
# Configure API key authorization: cookieAuth
|
|
1810
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
1811
|
+
|
|
1812
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
1813
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
1814
|
+
|
|
1815
|
+
# Enter a context with an instance of the API client
|
|
1816
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1817
|
+
# Create an instance of the API class
|
|
1818
|
+
api_instance = pulpcore.client.pulp_python.ContentProvenanceApi(api_client)
|
|
1819
|
+
pulp_domain = 'pulp_domain_example' # str |
|
|
1820
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1821
|
+
limit = 56 # int | Number of results to return per page. (optional)
|
|
1822
|
+
offset = 56 # int | The initial index from which to return the results. (optional)
|
|
1823
|
+
ordering = ['ordering_example'] # List[str] | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `provenance` - Provenance * `-provenance` - Provenance (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending) (optional)
|
|
1824
|
+
orphaned_for = 3.4 # float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. (optional)
|
|
1825
|
+
package = 'package_example' # str | (optional)
|
|
1826
|
+
package__in = ['package__in_example'] # List[str] | (optional)
|
|
1827
|
+
prn__in = ['prn__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
1828
|
+
pulp_href__in = ['pulp_href__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
1829
|
+
pulp_id__in = ['pulp_id__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
1830
|
+
pulp_label_select = 'pulp_label_select_example' # str | Filter labels by search string (optional)
|
|
1831
|
+
q = 'q_example' # str | Filter results by using NOT, AND and OR operations on other filters (optional)
|
|
1832
|
+
repository_version = 'repository_version_example' # str | (optional)
|
|
1833
|
+
repository_version_added = 'repository_version_added_example' # str | (optional)
|
|
1834
|
+
repository_version_removed = 'repository_version_removed_example' # str | (optional)
|
|
1835
|
+
sha256 = 'sha256_example' # str | Filter results where sha256 matches value (optional)
|
|
1836
|
+
sha256__in = ['sha256__in_example'] # List[str] | Filter results where sha256 is in a comma-separated list of values (optional)
|
|
1837
|
+
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
|
|
1838
|
+
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
|
|
1839
|
+
|
|
1840
|
+
try:
|
|
1841
|
+
# List package provenances
|
|
1842
|
+
api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, limit=limit, offset=offset, ordering=ordering, orphaned_for=orphaned_for, package=package, package__in=package__in, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, sha256=sha256, sha256__in=sha256__in, fields=fields, exclude_fields=exclude_fields)
|
|
1843
|
+
print("The response of ContentProvenanceApi->list:\n")
|
|
1844
|
+
pprint(api_response)
|
|
1845
|
+
except Exception as e:
|
|
1846
|
+
print("Exception when calling ContentProvenanceApi->list: %s\n" % e)
|
|
1847
|
+
```
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
### Parameters
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
Name | Type | Description | Notes
|
|
1855
|
+
------------- | ------------- | ------------- | -------------
|
|
1856
|
+
**pulp_domain** | **str**| |
|
|
1857
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1858
|
+
**limit** | **int**| Number of results to return per page. | [optional]
|
|
1859
|
+
**offset** | **int**| The initial index from which to return the results. | [optional]
|
|
1860
|
+
**ordering** | [**List[str]**](str.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `provenance` - Provenance * `-provenance` - Provenance (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
1861
|
+
**orphaned_for** | **float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional]
|
|
1862
|
+
**package** | **str**| | [optional]
|
|
1863
|
+
**package__in** | [**List[str]**](str.md)| | [optional]
|
|
1864
|
+
**prn__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
1865
|
+
**pulp_href__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
1866
|
+
**pulp_id__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
1867
|
+
**pulp_label_select** | **str**| Filter labels by search string | [optional]
|
|
1868
|
+
**q** | **str**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
|
1869
|
+
**repository_version** | **str**| | [optional]
|
|
1870
|
+
**repository_version_added** | **str**| | [optional]
|
|
1871
|
+
**repository_version_removed** | **str**| | [optional]
|
|
1872
|
+
**sha256** | **str**| Filter results where sha256 matches value | [optional]
|
|
1873
|
+
**sha256__in** | [**List[str]**](str.md)| Filter results where sha256 is in a comma-separated list of values | [optional]
|
|
1874
|
+
**fields** | [**List[str]**](str.md)| A list of fields to include in the response. | [optional]
|
|
1875
|
+
**exclude_fields** | [**List[str]**](str.md)| A list of fields to exclude from the response. | [optional]
|
|
1876
|
+
|
|
1877
|
+
### Return type
|
|
1878
|
+
|
|
1879
|
+
[**PaginatedpythonPackageProvenanceResponseList**](PaginatedpythonPackageProvenanceResponseList.md)
|
|
1880
|
+
|
|
1881
|
+
### Authorization
|
|
1882
|
+
|
|
1883
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
1884
|
+
|
|
1885
|
+
### HTTP request headers
|
|
1886
|
+
|
|
1887
|
+
- **Content-Type**: Not defined
|
|
1888
|
+
- **Accept**: application/json
|
|
1889
|
+
|
|
1890
|
+
### HTTP response details
|
|
1891
|
+
|
|
1892
|
+
| Status code | Description | Response headers |
|
|
1893
|
+
|-------------|-------------|------------------|
|
|
1894
|
+
**200** | | - |
|
|
1895
|
+
|
|
1896
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1897
|
+
|
|
1898
|
+
# **read**
|
|
1899
|
+
> PythonPackageProvenanceResponse read(python_package_provenance_href, x_task_diagnostics=x_task_diagnostics, fields=fields, exclude_fields=exclude_fields)
|
|
1900
|
+
|
|
1901
|
+
Inspect a package provenance
|
|
1902
|
+
|
|
1903
|
+
PackageProvenance represents a PEP 740 provenance object for a Python package. Use ?minimal=true to get a human readable representation of the provenance.
|
|
1904
|
+
|
|
1905
|
+
### Example
|
|
1906
|
+
|
|
1907
|
+
* Basic Authentication (basicAuth):
|
|
1908
|
+
* Api Key Authentication (cookieAuth):
|
|
1909
|
+
|
|
1910
|
+
```python
|
|
1911
|
+
import pulpcore.client.pulp_python
|
|
1912
|
+
from pulpcore.client.pulp_python.models.python_package_provenance_response import PythonPackageProvenanceResponse
|
|
1913
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
1914
|
+
from pprint import pprint
|
|
1915
|
+
|
|
1916
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1917
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
1918
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1919
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1920
|
+
)
|
|
1921
|
+
|
|
1922
|
+
# The client must configure the authentication and authorization parameters
|
|
1923
|
+
# in accordance with the API server security policy.
|
|
1924
|
+
# Examples for each auth method are provided below, use the example that
|
|
1925
|
+
# satisfies your auth use case.
|
|
1926
|
+
|
|
1927
|
+
# Configure HTTP basic authorization: basicAuth
|
|
1928
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1929
|
+
username = os.environ["USERNAME"],
|
|
1930
|
+
password = os.environ["PASSWORD"]
|
|
1931
|
+
)
|
|
1932
|
+
|
|
1933
|
+
# Configure API key authorization: cookieAuth
|
|
1934
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
1935
|
+
|
|
1936
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
1937
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
1938
|
+
|
|
1939
|
+
# Enter a context with an instance of the API client
|
|
1940
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1941
|
+
# Create an instance of the API class
|
|
1942
|
+
api_instance = pulpcore.client.pulp_python.ContentProvenanceApi(api_client)
|
|
1943
|
+
python_package_provenance_href = 'python_package_provenance_href_example' # str |
|
|
1944
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1945
|
+
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
|
|
1946
|
+
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
|
|
1947
|
+
|
|
1948
|
+
try:
|
|
1949
|
+
# Inspect a package provenance
|
|
1950
|
+
api_response = api_instance.read(python_package_provenance_href, x_task_diagnostics=x_task_diagnostics, fields=fields, exclude_fields=exclude_fields)
|
|
1951
|
+
print("The response of ContentProvenanceApi->read:\n")
|
|
1952
|
+
pprint(api_response)
|
|
1953
|
+
except Exception as e:
|
|
1954
|
+
print("Exception when calling ContentProvenanceApi->read: %s\n" % e)
|
|
1955
|
+
```
|
|
1956
|
+
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
### Parameters
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
Name | Type | Description | Notes
|
|
1963
|
+
------------- | ------------- | ------------- | -------------
|
|
1964
|
+
**python_package_provenance_href** | **str**| |
|
|
1965
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1966
|
+
**fields** | [**List[str]**](str.md)| A list of fields to include in the response. | [optional]
|
|
1967
|
+
**exclude_fields** | [**List[str]**](str.md)| A list of fields to exclude from the response. | [optional]
|
|
1968
|
+
|
|
1969
|
+
### Return type
|
|
1970
|
+
|
|
1971
|
+
[**PythonPackageProvenanceResponse**](PythonPackageProvenanceResponse.md)
|
|
1972
|
+
|
|
1973
|
+
### Authorization
|
|
1974
|
+
|
|
1975
|
+
[basicAuth](../README.md#basicAuth), [cookieAuth](../README.md#cookieAuth)
|
|
1976
|
+
|
|
1977
|
+
### HTTP request headers
|
|
1978
|
+
|
|
1979
|
+
- **Content-Type**: Not defined
|
|
1980
|
+
- **Accept**: application/json
|
|
1981
|
+
|
|
1982
|
+
### HTTP response details
|
|
1983
|
+
|
|
1984
|
+
| Status code | Description | Response headers |
|
|
1985
|
+
|-------------|-------------|------------------|
|
|
1986
|
+
**200** | | - |
|
|
1987
|
+
|
|
1988
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1989
|
+
|
|
1990
|
+
# **set_label**
|
|
1991
|
+
> SetLabelResponse set_label(python_package_provenance_href, set_label, x_task_diagnostics=x_task_diagnostics)
|
|
1992
|
+
|
|
1993
|
+
Set a label
|
|
1994
|
+
|
|
1995
|
+
Set a single pulp_label on the object to a specific value or null.
|
|
1996
|
+
|
|
1997
|
+
### Example
|
|
1998
|
+
|
|
1999
|
+
* Basic Authentication (basicAuth):
|
|
2000
|
+
* Api Key Authentication (cookieAuth):
|
|
2001
|
+
|
|
2002
|
+
```python
|
|
2003
|
+
import pulpcore.client.pulp_python
|
|
2004
|
+
from pulpcore.client.pulp_python.models.set_label import SetLabel
|
|
2005
|
+
from pulpcore.client.pulp_python.models.set_label_response import SetLabelResponse
|
|
2006
|
+
from pulpcore.client.pulp_python.rest import ApiException
|
|
2007
|
+
from pprint import pprint
|
|
2008
|
+
|
|
2009
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2010
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
2011
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2012
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2013
|
+
)
|
|
2014
|
+
|
|
2015
|
+
# The client must configure the authentication and authorization parameters
|
|
2016
|
+
# in accordance with the API server security policy.
|
|
2017
|
+
# Examples for each auth method are provided below, use the example that
|
|
2018
|
+
# satisfies your auth use case.
|
|
2019
|
+
|
|
2020
|
+
# Configure HTTP basic authorization: basicAuth
|
|
2021
|
+
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2022
|
+
username = os.environ["USERNAME"],
|
|
2023
|
+
password = os.environ["PASSWORD"]
|
|
2024
|
+
)
|
|
2025
|
+
|
|
2026
|
+
# Configure API key authorization: cookieAuth
|
|
2027
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
2028
|
+
|
|
2029
|
+
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
2030
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
2031
|
+
|
|
2032
|
+
# Enter a context with an instance of the API client
|
|
2033
|
+
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
2034
|
+
# Create an instance of the API class
|
|
2035
|
+
api_instance = pulpcore.client.pulp_python.ContentProvenanceApi(api_client)
|
|
2036
|
+
python_package_provenance_href = 'python_package_provenance_href_example' # str |
|
|
2037
|
+
set_label = pulpcore.client.pulp_python.SetLabel() # SetLabel |
|
|
2038
|
+
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
2039
|
+
|
|
2040
|
+
try:
|
|
2041
|
+
# Set a label
|
|
2042
|
+
api_response = api_instance.set_label(python_package_provenance_href, set_label, x_task_diagnostics=x_task_diagnostics)
|
|
2043
|
+
print("The response of ContentProvenanceApi->set_label:\n")
|
|
2044
|
+
pprint(api_response)
|
|
2045
|
+
except Exception as e:
|
|
2046
|
+
print("Exception when calling ContentProvenanceApi->set_label: %s\n" % e)
|
|
2047
|
+
```
|
|
2048
|
+
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
### Parameters
|
|
2052
|
+
|
|
2053
|
+
|
|
2054
|
+
Name | Type | Description | Notes
|
|
2055
|
+
------------- | ------------- | ------------- | -------------
|
|
2056
|
+
**python_package_provenance_href** | **str**| |
|
|
2057
|
+
**set_label** | [**SetLabel**](SetLabel.md)| |
|
|
2058
|
+
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
2059
|
+
|
|
2060
|
+
### Return type
|
|
2061
|
+
|
|
2062
|
+
[**SetLabelResponse**](SetLabelResponse.md)
|
|
1431
2063
|
|
|
1432
2064
|
### Authorization
|
|
1433
2065
|
|
|
@@ -1435,7 +2067,7 @@ Name | Type | Description | Notes
|
|
|
1435
2067
|
|
|
1436
2068
|
### HTTP request headers
|
|
1437
2069
|
|
|
1438
|
-
- **Content-Type**:
|
|
2070
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
1439
2071
|
- **Accept**: application/json
|
|
1440
2072
|
|
|
1441
2073
|
### HTTP response details
|
|
@@ -1446,25 +2078,12 @@ Name | Type | Description | Notes
|
|
|
1446
2078
|
|
|
1447
2079
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1448
2080
|
|
|
1449
|
-
#
|
|
1450
|
-
|
|
1451
|
-
All URIs are relative to *https://env-ephemeral-aciako.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
1452
|
-
|
|
1453
|
-
Method | HTTP request | Description
|
|
1454
|
-
------------- | ------------- | -------------
|
|
1455
|
-
[**create**](ContentProvenanceApi.md#create) | **POST** /api/pulp/{pulp_domain}/api/v3/content/python/provenance/ | Create a package provenance
|
|
1456
|
-
[**list**](ContentProvenanceApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/python/provenance/ | List package provenances
|
|
1457
|
-
[**read**](ContentProvenanceApi.md#read) | **GET** {python_package_provenance_href} | Inspect a package provenance
|
|
1458
|
-
[**set_label**](ContentProvenanceApi.md#set_label) | **POST** {python_package_provenance_href}set_label/ | Set a label
|
|
1459
|
-
[**unset_label**](ContentProvenanceApi.md#unset_label) | **POST** {python_package_provenance_href}unset_label/ | Unset a label
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
# **create**
|
|
1463
|
-
> AsyncOperationResponse create(pulp_domain, package, x_task_diagnostics=x_task_diagnostics, repository=repository, overwrite=overwrite, pulp_labels=pulp_labels, file=file, upload=upload, file_url=file_url, downloader_config=downloader_config, verify=verify)
|
|
2081
|
+
# **unset_label**
|
|
2082
|
+
> UnsetLabelResponse unset_label(python_package_provenance_href, unset_label, x_task_diagnostics=x_task_diagnostics)
|
|
1464
2083
|
|
|
1465
|
-
|
|
2084
|
+
Unset a label
|
|
1466
2085
|
|
|
1467
|
-
|
|
2086
|
+
Unset a single pulp_label on the object.
|
|
1468
2087
|
|
|
1469
2088
|
### Example
|
|
1470
2089
|
|
|
@@ -1473,14 +2092,15 @@ Trigger an asynchronous task to create content,optionally create new repository
|
|
|
1473
2092
|
|
|
1474
2093
|
```python
|
|
1475
2094
|
import pulpcore.client.pulp_python
|
|
1476
|
-
from pulpcore.client.pulp_python.models.
|
|
2095
|
+
from pulpcore.client.pulp_python.models.unset_label import UnsetLabel
|
|
2096
|
+
from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelResponse
|
|
1477
2097
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1478
2098
|
from pprint import pprint
|
|
1479
2099
|
|
|
1480
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2100
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1481
2101
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1482
2102
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1483
|
-
host = "https://env-ephemeral-
|
|
2103
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1484
2104
|
)
|
|
1485
2105
|
|
|
1486
2106
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1504,25 +2124,17 @@ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
|
1504
2124
|
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1505
2125
|
# Create an instance of the API class
|
|
1506
2126
|
api_instance = pulpcore.client.pulp_python.ContentProvenanceApi(api_client)
|
|
1507
|
-
|
|
1508
|
-
|
|
2127
|
+
python_package_provenance_href = 'python_package_provenance_href_example' # str |
|
|
2128
|
+
unset_label = pulpcore.client.pulp_python.UnsetLabel() # UnsetLabel |
|
|
1509
2129
|
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1510
|
-
repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
|
|
1511
|
-
overwrite = True # bool | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true. (optional)
|
|
1512
|
-
pulp_labels = None # Dict[str, Optional[str]] | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. (optional)
|
|
1513
|
-
file = None # bytearray | An uploaded file that may be turned into the content unit. (optional)
|
|
1514
|
-
upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
|
|
1515
|
-
file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
|
|
1516
|
-
downloader_config = pulpcore.client.pulp_python.RemoteNetworkConfig() # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. (optional)
|
|
1517
|
-
verify = True # bool | Verify each attestation in the provenance. (optional) (default to True)
|
|
1518
2130
|
|
|
1519
2131
|
try:
|
|
1520
|
-
#
|
|
1521
|
-
api_response = api_instance.
|
|
1522
|
-
print("The response of ContentProvenanceApi->
|
|
2132
|
+
# Unset a label
|
|
2133
|
+
api_response = api_instance.unset_label(python_package_provenance_href, unset_label, x_task_diagnostics=x_task_diagnostics)
|
|
2134
|
+
print("The response of ContentProvenanceApi->unset_label:\n")
|
|
1523
2135
|
pprint(api_response)
|
|
1524
2136
|
except Exception as e:
|
|
1525
|
-
print("Exception when calling ContentProvenanceApi->
|
|
2137
|
+
print("Exception when calling ContentProvenanceApi->unset_label: %s\n" % e)
|
|
1526
2138
|
```
|
|
1527
2139
|
|
|
1528
2140
|
|
|
@@ -1532,21 +2144,13 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
1532
2144
|
|
|
1533
2145
|
Name | Type | Description | Notes
|
|
1534
2146
|
------------- | ------------- | ------------- | -------------
|
|
1535
|
-
**
|
|
1536
|
-
**
|
|
2147
|
+
**python_package_provenance_href** | **str**| |
|
|
2148
|
+
**unset_label** | [**UnsetLabel**](UnsetLabel.md)| |
|
|
1537
2149
|
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1538
|
-
**repository** | **str**| A URI of a repository the new content unit should be associated with. | [optional]
|
|
1539
|
-
**overwrite** | **bool**| When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true. | [optional]
|
|
1540
|
-
**pulp_labels** | [**Dict[str, Optional[str]]**](Dict.md)| A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional]
|
|
1541
|
-
**file** | **bytearray**| An uploaded file that may be turned into the content unit. | [optional]
|
|
1542
|
-
**upload** | **str**| An uncommitted upload that may be turned into the content unit. | [optional]
|
|
1543
|
-
**file_url** | **str**| A url that Pulp can download and turn into the content unit. | [optional]
|
|
1544
|
-
**downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md)| Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional]
|
|
1545
|
-
**verify** | **bool**| Verify each attestation in the provenance. | [optional] [default to True]
|
|
1546
2150
|
|
|
1547
2151
|
### Return type
|
|
1548
2152
|
|
|
1549
|
-
[**
|
|
2153
|
+
[**UnsetLabelResponse**](UnsetLabelResponse.md)
|
|
1550
2154
|
|
|
1551
2155
|
### Authorization
|
|
1552
2156
|
|
|
@@ -1554,23 +2158,67 @@ Name | Type | Description | Notes
|
|
|
1554
2158
|
|
|
1555
2159
|
### HTTP request headers
|
|
1556
2160
|
|
|
1557
|
-
- **Content-Type**:
|
|
2161
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
1558
2162
|
- **Accept**: application/json
|
|
1559
2163
|
|
|
1560
2164
|
### HTTP response details
|
|
1561
2165
|
|
|
1562
2166
|
| Status code | Description | Response headers |
|
|
1563
2167
|
|-------------|-------------|------------------|
|
|
1564
|
-
**
|
|
2168
|
+
**201** | | - |
|
|
1565
2169
|
|
|
1566
2170
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1567
2171
|
|
|
2172
|
+
# ContentSummaryResponse
|
|
2173
|
+
|
|
2174
|
+
Serializer for the RepositoryVersion content summary
|
|
2175
|
+
|
|
2176
|
+
## Properties
|
|
2177
|
+
|
|
2178
|
+
Name | Type | Description | Notes
|
|
2179
|
+
------------ | ------------- | ------------- | -------------
|
|
2180
|
+
**added** | **Dict[str, object]** | |
|
|
2181
|
+
**removed** | **Dict[str, object]** | |
|
|
2182
|
+
**present** | **Dict[str, object]** | |
|
|
2183
|
+
|
|
2184
|
+
## Example
|
|
2185
|
+
|
|
2186
|
+
```python
|
|
2187
|
+
from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse
|
|
2188
|
+
|
|
2189
|
+
# TODO update the JSON string below
|
|
2190
|
+
json = "{}"
|
|
2191
|
+
# create an instance of ContentSummaryResponse from a JSON string
|
|
2192
|
+
content_summary_response_instance = ContentSummaryResponse.from_json(json)
|
|
2193
|
+
# print the JSON string representation of the object
|
|
2194
|
+
print(ContentSummaryResponse.to_json())
|
|
2195
|
+
|
|
2196
|
+
# convert the object into a dict
|
|
2197
|
+
content_summary_response_dict = content_summary_response_instance.to_dict()
|
|
2198
|
+
# create an instance of ContentSummaryResponse from a dict
|
|
2199
|
+
content_summary_response_from_dict = ContentSummaryResponse.from_dict(content_summary_response_dict)
|
|
2200
|
+
```
|
|
2201
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
# pulpcore.client.pulp_python.ContentYanksApi
|
|
2205
|
+
|
|
2206
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
2207
|
+
|
|
2208
|
+
Method | HTTP request | Description
|
|
2209
|
+
------------- | ------------- | -------------
|
|
2210
|
+
[**list**](ContentYanksApi.md#list) | **GET** /api/pulp/{pulp_domain}/api/v3/content/python/yanks/ | List package yanks
|
|
2211
|
+
[**read**](ContentYanksApi.md#read) | **GET** {python_package_yank_href} | Inspect a package yank
|
|
2212
|
+
[**set_label**](ContentYanksApi.md#set_label) | **POST** {python_package_yank_href}set_label/ | Set a label
|
|
2213
|
+
[**unset_label**](ContentYanksApi.md#unset_label) | **POST** {python_package_yank_href}unset_label/ | Unset a label
|
|
2214
|
+
|
|
2215
|
+
|
|
1568
2216
|
# **list**
|
|
1569
|
-
>
|
|
2217
|
+
> PaginatedpythonPackageYankResponseList list(pulp_domain, x_task_diagnostics=x_task_diagnostics, limit=limit, offset=offset, ordering=ordering, orphaned_for=orphaned_for, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, fields=fields, exclude_fields=exclude_fields)
|
|
1570
2218
|
|
|
1571
|
-
List package
|
|
2219
|
+
List package yanks
|
|
1572
2220
|
|
|
1573
|
-
|
|
2221
|
+
Read-only viewset for PackageYank content units (PEP 592). PackageYank markers indicate that a package version has been yanked in a repository. Use the /yank/ and /unyank/ PyPI endpoints to create or remove these markers.
|
|
1574
2222
|
|
|
1575
2223
|
### Example
|
|
1576
2224
|
|
|
@@ -1579,14 +2227,14 @@ PackageProvenance represents a PEP 740 provenance object for a Python package.
|
|
|
1579
2227
|
|
|
1580
2228
|
```python
|
|
1581
2229
|
import pulpcore.client.pulp_python
|
|
1582
|
-
from pulpcore.client.pulp_python.models.
|
|
2230
|
+
from pulpcore.client.pulp_python.models.paginatedpython_package_yank_response_list import PaginatedpythonPackageYankResponseList
|
|
1583
2231
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1584
2232
|
from pprint import pprint
|
|
1585
2233
|
|
|
1586
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2234
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1587
2235
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1588
2236
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1589
|
-
host = "https://env-ephemeral-
|
|
2237
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1590
2238
|
)
|
|
1591
2239
|
|
|
1592
2240
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1609,15 +2257,13 @@ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
|
1609
2257
|
# Enter a context with an instance of the API client
|
|
1610
2258
|
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1611
2259
|
# Create an instance of the API class
|
|
1612
|
-
api_instance = pulpcore.client.pulp_python.
|
|
2260
|
+
api_instance = pulpcore.client.pulp_python.ContentYanksApi(api_client)
|
|
1613
2261
|
pulp_domain = 'pulp_domain_example' # str |
|
|
1614
2262
|
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1615
2263
|
limit = 56 # int | Number of results to return per page. (optional)
|
|
1616
2264
|
offset = 56 # int | The initial index from which to return the results. (optional)
|
|
1617
|
-
ordering = ['ordering_example'] # List[str] | Ordering * `
|
|
2265
|
+
ordering = ['ordering_example'] # List[str] | Ordering * `pk` - Pk * `-pk` - Pk (descending) (optional)
|
|
1618
2266
|
orphaned_for = 3.4 # float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. (optional)
|
|
1619
|
-
package = 'package_example' # str | (optional)
|
|
1620
|
-
package__in = ['package__in_example'] # List[str] | (optional)
|
|
1621
2267
|
prn__in = ['prn__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
1622
2268
|
pulp_href__in = ['pulp_href__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
1623
2269
|
pulp_id__in = ['pulp_id__in_example'] # List[str] | Multiple values may be separated by commas. (optional)
|
|
@@ -1626,18 +2272,16 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
1626
2272
|
repository_version = 'repository_version_example' # str | (optional)
|
|
1627
2273
|
repository_version_added = 'repository_version_added_example' # str | (optional)
|
|
1628
2274
|
repository_version_removed = 'repository_version_removed_example' # str | (optional)
|
|
1629
|
-
sha256 = 'sha256_example' # str | Filter results where sha256 matches value (optional)
|
|
1630
|
-
sha256__in = ['sha256__in_example'] # List[str] | Filter results where sha256 is in a comma-separated list of values (optional)
|
|
1631
2275
|
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
|
|
1632
2276
|
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
|
|
1633
2277
|
|
|
1634
2278
|
try:
|
|
1635
|
-
# List package
|
|
1636
|
-
api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, limit=limit, offset=offset, ordering=ordering, orphaned_for=orphaned_for,
|
|
1637
|
-
print("The response of
|
|
2279
|
+
# List package yanks
|
|
2280
|
+
api_response = api_instance.list(pulp_domain, x_task_diagnostics=x_task_diagnostics, limit=limit, offset=offset, ordering=ordering, orphaned_for=orphaned_for, prn__in=prn__in, pulp_href__in=pulp_href__in, pulp_id__in=pulp_id__in, pulp_label_select=pulp_label_select, q=q, repository_version=repository_version, repository_version_added=repository_version_added, repository_version_removed=repository_version_removed, fields=fields, exclude_fields=exclude_fields)
|
|
2281
|
+
print("The response of ContentYanksApi->list:\n")
|
|
1638
2282
|
pprint(api_response)
|
|
1639
2283
|
except Exception as e:
|
|
1640
|
-
print("Exception when calling
|
|
2284
|
+
print("Exception when calling ContentYanksApi->list: %s\n" % e)
|
|
1641
2285
|
```
|
|
1642
2286
|
|
|
1643
2287
|
|
|
@@ -1651,10 +2295,8 @@ Name | Type | Description | Notes
|
|
|
1651
2295
|
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1652
2296
|
**limit** | **int**| Number of results to return per page. | [optional]
|
|
1653
2297
|
**offset** | **int**| The initial index from which to return the results. | [optional]
|
|
1654
|
-
**ordering** | [**List[str]**](str.md)| Ordering * `
|
|
2298
|
+
**ordering** | [**List[str]**](str.md)| Ordering * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
1655
2299
|
**orphaned_for** | **float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional]
|
|
1656
|
-
**package** | **str**| | [optional]
|
|
1657
|
-
**package__in** | [**List[str]**](str.md)| | [optional]
|
|
1658
2300
|
**prn__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
1659
2301
|
**pulp_href__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
1660
2302
|
**pulp_id__in** | [**List[str]**](str.md)| Multiple values may be separated by commas. | [optional]
|
|
@@ -1663,14 +2305,12 @@ Name | Type | Description | Notes
|
|
|
1663
2305
|
**repository_version** | **str**| | [optional]
|
|
1664
2306
|
**repository_version_added** | **str**| | [optional]
|
|
1665
2307
|
**repository_version_removed** | **str**| | [optional]
|
|
1666
|
-
**sha256** | **str**| Filter results where sha256 matches value | [optional]
|
|
1667
|
-
**sha256__in** | [**List[str]**](str.md)| Filter results where sha256 is in a comma-separated list of values | [optional]
|
|
1668
2308
|
**fields** | [**List[str]**](str.md)| A list of fields to include in the response. | [optional]
|
|
1669
2309
|
**exclude_fields** | [**List[str]**](str.md)| A list of fields to exclude from the response. | [optional]
|
|
1670
2310
|
|
|
1671
2311
|
### Return type
|
|
1672
2312
|
|
|
1673
|
-
[**
|
|
2313
|
+
[**PaginatedpythonPackageYankResponseList**](PaginatedpythonPackageYankResponseList.md)
|
|
1674
2314
|
|
|
1675
2315
|
### Authorization
|
|
1676
2316
|
|
|
@@ -1690,11 +2330,11 @@ Name | Type | Description | Notes
|
|
|
1690
2330
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1691
2331
|
|
|
1692
2332
|
# **read**
|
|
1693
|
-
>
|
|
2333
|
+
> PythonPackageYankResponse read(python_package_yank_href, x_task_diagnostics=x_task_diagnostics, fields=fields, exclude_fields=exclude_fields)
|
|
1694
2334
|
|
|
1695
|
-
Inspect a package
|
|
2335
|
+
Inspect a package yank
|
|
1696
2336
|
|
|
1697
|
-
|
|
2337
|
+
Read-only viewset for PackageYank content units (PEP 592). PackageYank markers indicate that a package version has been yanked in a repository. Use the /yank/ and /unyank/ PyPI endpoints to create or remove these markers.
|
|
1698
2338
|
|
|
1699
2339
|
### Example
|
|
1700
2340
|
|
|
@@ -1703,14 +2343,14 @@ PackageProvenance represents a PEP 740 provenance object for a Python package.
|
|
|
1703
2343
|
|
|
1704
2344
|
```python
|
|
1705
2345
|
import pulpcore.client.pulp_python
|
|
1706
|
-
from pulpcore.client.pulp_python.models.
|
|
2346
|
+
from pulpcore.client.pulp_python.models.python_package_yank_response import PythonPackageYankResponse
|
|
1707
2347
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1708
2348
|
from pprint import pprint
|
|
1709
2349
|
|
|
1710
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2350
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1711
2351
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1712
2352
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1713
|
-
host = "https://env-ephemeral-
|
|
2353
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1714
2354
|
)
|
|
1715
2355
|
|
|
1716
2356
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1733,19 +2373,19 @@ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
|
1733
2373
|
# Enter a context with an instance of the API client
|
|
1734
2374
|
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1735
2375
|
# Create an instance of the API class
|
|
1736
|
-
api_instance = pulpcore.client.pulp_python.
|
|
1737
|
-
|
|
2376
|
+
api_instance = pulpcore.client.pulp_python.ContentYanksApi(api_client)
|
|
2377
|
+
python_package_yank_href = 'python_package_yank_href_example' # str |
|
|
1738
2378
|
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1739
2379
|
fields = ['fields_example'] # List[str] | A list of fields to include in the response. (optional)
|
|
1740
2380
|
exclude_fields = ['exclude_fields_example'] # List[str] | A list of fields to exclude from the response. (optional)
|
|
1741
2381
|
|
|
1742
2382
|
try:
|
|
1743
|
-
# Inspect a package
|
|
1744
|
-
api_response = api_instance.read(
|
|
1745
|
-
print("The response of
|
|
2383
|
+
# Inspect a package yank
|
|
2384
|
+
api_response = api_instance.read(python_package_yank_href, x_task_diagnostics=x_task_diagnostics, fields=fields, exclude_fields=exclude_fields)
|
|
2385
|
+
print("The response of ContentYanksApi->read:\n")
|
|
1746
2386
|
pprint(api_response)
|
|
1747
2387
|
except Exception as e:
|
|
1748
|
-
print("Exception when calling
|
|
2388
|
+
print("Exception when calling ContentYanksApi->read: %s\n" % e)
|
|
1749
2389
|
```
|
|
1750
2390
|
|
|
1751
2391
|
|
|
@@ -1755,14 +2395,14 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
1755
2395
|
|
|
1756
2396
|
Name | Type | Description | Notes
|
|
1757
2397
|
------------- | ------------- | ------------- | -------------
|
|
1758
|
-
**
|
|
2398
|
+
**python_package_yank_href** | **str**| |
|
|
1759
2399
|
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1760
2400
|
**fields** | [**List[str]**](str.md)| A list of fields to include in the response. | [optional]
|
|
1761
2401
|
**exclude_fields** | [**List[str]**](str.md)| A list of fields to exclude from the response. | [optional]
|
|
1762
2402
|
|
|
1763
2403
|
### Return type
|
|
1764
2404
|
|
|
1765
|
-
[**
|
|
2405
|
+
[**PythonPackageYankResponse**](PythonPackageYankResponse.md)
|
|
1766
2406
|
|
|
1767
2407
|
### Authorization
|
|
1768
2408
|
|
|
@@ -1782,7 +2422,7 @@ Name | Type | Description | Notes
|
|
|
1782
2422
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1783
2423
|
|
|
1784
2424
|
# **set_label**
|
|
1785
|
-
> SetLabelResponse set_label(
|
|
2425
|
+
> SetLabelResponse set_label(python_package_yank_href, set_label, x_task_diagnostics=x_task_diagnostics)
|
|
1786
2426
|
|
|
1787
2427
|
Set a label
|
|
1788
2428
|
|
|
@@ -1800,10 +2440,10 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
1800
2440
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1801
2441
|
from pprint import pprint
|
|
1802
2442
|
|
|
1803
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2443
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1804
2444
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1805
2445
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1806
|
-
host = "https://env-ephemeral-
|
|
2446
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1807
2447
|
)
|
|
1808
2448
|
|
|
1809
2449
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1826,18 +2466,18 @@ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
|
1826
2466
|
# Enter a context with an instance of the API client
|
|
1827
2467
|
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1828
2468
|
# Create an instance of the API class
|
|
1829
|
-
api_instance = pulpcore.client.pulp_python.
|
|
1830
|
-
|
|
2469
|
+
api_instance = pulpcore.client.pulp_python.ContentYanksApi(api_client)
|
|
2470
|
+
python_package_yank_href = 'python_package_yank_href_example' # str |
|
|
1831
2471
|
set_label = pulpcore.client.pulp_python.SetLabel() # SetLabel |
|
|
1832
2472
|
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1833
2473
|
|
|
1834
2474
|
try:
|
|
1835
2475
|
# Set a label
|
|
1836
|
-
api_response = api_instance.set_label(
|
|
1837
|
-
print("The response of
|
|
2476
|
+
api_response = api_instance.set_label(python_package_yank_href, set_label, x_task_diagnostics=x_task_diagnostics)
|
|
2477
|
+
print("The response of ContentYanksApi->set_label:\n")
|
|
1838
2478
|
pprint(api_response)
|
|
1839
2479
|
except Exception as e:
|
|
1840
|
-
print("Exception when calling
|
|
2480
|
+
print("Exception when calling ContentYanksApi->set_label: %s\n" % e)
|
|
1841
2481
|
```
|
|
1842
2482
|
|
|
1843
2483
|
|
|
@@ -1847,7 +2487,7 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
1847
2487
|
|
|
1848
2488
|
Name | Type | Description | Notes
|
|
1849
2489
|
------------- | ------------- | ------------- | -------------
|
|
1850
|
-
**
|
|
2490
|
+
**python_package_yank_href** | **str**| |
|
|
1851
2491
|
**set_label** | [**SetLabel**](SetLabel.md)| |
|
|
1852
2492
|
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1853
2493
|
|
|
@@ -1868,12 +2508,12 @@ Name | Type | Description | Notes
|
|
|
1868
2508
|
|
|
1869
2509
|
| Status code | Description | Response headers |
|
|
1870
2510
|
|-------------|-------------|------------------|
|
|
1871
|
-
**
|
|
2511
|
+
**200** | | - |
|
|
1872
2512
|
|
|
1873
2513
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1874
2514
|
|
|
1875
2515
|
# **unset_label**
|
|
1876
|
-
> UnsetLabelResponse unset_label(
|
|
2516
|
+
> UnsetLabelResponse unset_label(python_package_yank_href, unset_label, x_task_diagnostics=x_task_diagnostics)
|
|
1877
2517
|
|
|
1878
2518
|
Unset a label
|
|
1879
2519
|
|
|
@@ -1891,10 +2531,10 @@ from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelRe
|
|
|
1891
2531
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
1892
2532
|
from pprint import pprint
|
|
1893
2533
|
|
|
1894
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2534
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
1895
2535
|
# See configuration.py for a list of all supported configuration parameters.
|
|
1896
2536
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
1897
|
-
host = "https://env-ephemeral-
|
|
2537
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
1898
2538
|
)
|
|
1899
2539
|
|
|
1900
2540
|
# The client must configure the authentication and authorization parameters
|
|
@@ -1917,18 +2557,18 @@ configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
|
1917
2557
|
# Enter a context with an instance of the API client
|
|
1918
2558
|
with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
1919
2559
|
# Create an instance of the API class
|
|
1920
|
-
api_instance = pulpcore.client.pulp_python.
|
|
1921
|
-
|
|
2560
|
+
api_instance = pulpcore.client.pulp_python.ContentYanksApi(api_client)
|
|
2561
|
+
python_package_yank_href = 'python_package_yank_href_example' # str |
|
|
1922
2562
|
unset_label = pulpcore.client.pulp_python.UnsetLabel() # UnsetLabel |
|
|
1923
2563
|
x_task_diagnostics = ['x_task_diagnostics_example'] # List[str] | List of profilers to use on tasks. (optional)
|
|
1924
2564
|
|
|
1925
2565
|
try:
|
|
1926
2566
|
# Unset a label
|
|
1927
|
-
api_response = api_instance.unset_label(
|
|
1928
|
-
print("The response of
|
|
2567
|
+
api_response = api_instance.unset_label(python_package_yank_href, unset_label, x_task_diagnostics=x_task_diagnostics)
|
|
2568
|
+
print("The response of ContentYanksApi->unset_label:\n")
|
|
1929
2569
|
pprint(api_response)
|
|
1930
2570
|
except Exception as e:
|
|
1931
|
-
print("Exception when calling
|
|
2571
|
+
print("Exception when calling ContentYanksApi->unset_label: %s\n" % e)
|
|
1932
2572
|
```
|
|
1933
2573
|
|
|
1934
2574
|
|
|
@@ -1938,7 +2578,7 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
1938
2578
|
|
|
1939
2579
|
Name | Type | Description | Notes
|
|
1940
2580
|
------------- | ------------- | ------------- | -------------
|
|
1941
|
-
**
|
|
2581
|
+
**python_package_yank_href** | **str**| |
|
|
1942
2582
|
**unset_label** | [**UnsetLabel**](UnsetLabel.md)| |
|
|
1943
2583
|
**x_task_diagnostics** | [**List[str]**](str.md)| List of profilers to use on tasks. | [optional]
|
|
1944
2584
|
|
|
@@ -1959,45 +2599,13 @@ Name | Type | Description | Notes
|
|
|
1959
2599
|
|
|
1960
2600
|
| Status code | Description | Response headers |
|
|
1961
2601
|
|-------------|-------------|------------------|
|
|
1962
|
-
**
|
|
2602
|
+
**200** | | - |
|
|
1963
2603
|
|
|
1964
2604
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1965
2605
|
|
|
1966
|
-
# ContentSummaryResponse
|
|
1967
|
-
|
|
1968
|
-
Serializer for the RepositoryVersion content summary
|
|
1969
|
-
|
|
1970
|
-
## Properties
|
|
1971
|
-
|
|
1972
|
-
Name | Type | Description | Notes
|
|
1973
|
-
------------ | ------------- | ------------- | -------------
|
|
1974
|
-
**added** | **Dict[str, object]** | |
|
|
1975
|
-
**removed** | **Dict[str, object]** | |
|
|
1976
|
-
**present** | **Dict[str, object]** | |
|
|
1977
|
-
|
|
1978
|
-
## Example
|
|
1979
|
-
|
|
1980
|
-
```python
|
|
1981
|
-
from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse
|
|
1982
|
-
|
|
1983
|
-
# TODO update the JSON string below
|
|
1984
|
-
json = "{}"
|
|
1985
|
-
# create an instance of ContentSummaryResponse from a JSON string
|
|
1986
|
-
content_summary_response_instance = ContentSummaryResponse.from_json(json)
|
|
1987
|
-
# print the JSON string representation of the object
|
|
1988
|
-
print(ContentSummaryResponse.to_json())
|
|
1989
|
-
|
|
1990
|
-
# convert the object into a dict
|
|
1991
|
-
content_summary_response_dict = content_summary_response_instance.to_dict()
|
|
1992
|
-
# create an instance of ContentSummaryResponse from a dict
|
|
1993
|
-
content_summary_response_from_dict = ContentSummaryResponse.from_dict(content_summary_response_dict)
|
|
1994
|
-
```
|
|
1995
|
-
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
2606
|
# pulpcore.client.pulp_python.DistributionsPypiApi
|
|
1999
2607
|
|
|
2000
|
-
All URIs are relative to *https://env-ephemeral-
|
|
2608
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
2001
2609
|
|
|
2002
2610
|
Method | HTTP request | Description
|
|
2003
2611
|
------------- | ------------- | -------------
|
|
@@ -2034,10 +2642,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
2034
2642
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2035
2643
|
from pprint import pprint
|
|
2036
2644
|
|
|
2037
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2645
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2038
2646
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2039
2647
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2040
|
-
host = "https://env-ephemeral-
|
|
2648
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2041
2649
|
)
|
|
2042
2650
|
|
|
2043
2651
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2125,10 +2733,10 @@ from pulpcore.client.pulp_python.models.python_python_distribution import Python
|
|
|
2125
2733
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2126
2734
|
from pprint import pprint
|
|
2127
2735
|
|
|
2128
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2736
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2129
2737
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2130
2738
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2131
|
-
host = "https://env-ephemeral-
|
|
2739
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2132
2740
|
)
|
|
2133
2741
|
|
|
2134
2742
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2215,10 +2823,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
2215
2823
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2216
2824
|
from pprint import pprint
|
|
2217
2825
|
|
|
2218
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2826
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2219
2827
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2220
2828
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2221
|
-
host = "https://env-ephemeral-
|
|
2829
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2222
2830
|
)
|
|
2223
2831
|
|
|
2224
2832
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2303,10 +2911,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_distribution_resp
|
|
|
2303
2911
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2304
2912
|
from pprint import pprint
|
|
2305
2913
|
|
|
2306
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
2914
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2307
2915
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2308
2916
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2309
|
-
host = "https://env-ephemeral-
|
|
2917
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2310
2918
|
)
|
|
2311
2919
|
|
|
2312
2920
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2445,10 +3053,10 @@ from pulpcore.client.pulp_python.models.object_roles_response import ObjectRoles
|
|
|
2445
3053
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2446
3054
|
from pprint import pprint
|
|
2447
3055
|
|
|
2448
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3056
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2449
3057
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2450
3058
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2451
|
-
host = "https://env-ephemeral-
|
|
3059
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2452
3060
|
)
|
|
2453
3061
|
|
|
2454
3062
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2537,10 +3145,10 @@ from pulpcore.client.pulp_python.models.my_permissions_response import MyPermiss
|
|
|
2537
3145
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2538
3146
|
from pprint import pprint
|
|
2539
3147
|
|
|
2540
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3148
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2541
3149
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2542
3150
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2543
|
-
host = "https://env-ephemeral-
|
|
3151
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2544
3152
|
)
|
|
2545
3153
|
|
|
2546
3154
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2630,10 +3238,10 @@ from pulpcore.client.pulp_python.models.python_python_distribution_response impo
|
|
|
2630
3238
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2631
3239
|
from pprint import pprint
|
|
2632
3240
|
|
|
2633
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3241
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2634
3242
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2635
3243
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2636
|
-
host = "https://env-ephemeral-
|
|
3244
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2637
3245
|
)
|
|
2638
3246
|
|
|
2639
3247
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2721,10 +3329,10 @@ from pulpcore.client.pulp_python.models.python_python_distribution_response impo
|
|
|
2721
3329
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2722
3330
|
from pprint import pprint
|
|
2723
3331
|
|
|
2724
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3332
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2725
3333
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2726
3334
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2727
|
-
host = "https://env-ephemeral-
|
|
3335
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2728
3336
|
)
|
|
2729
3337
|
|
|
2730
3338
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2814,10 +3422,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
2814
3422
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2815
3423
|
from pprint import pprint
|
|
2816
3424
|
|
|
2817
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3425
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2818
3426
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2819
3427
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2820
|
-
host = "https://env-ephemeral-
|
|
3428
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2821
3429
|
)
|
|
2822
3430
|
|
|
2823
3431
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2905,10 +3513,10 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
2905
3513
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2906
3514
|
from pprint import pprint
|
|
2907
3515
|
|
|
2908
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3516
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
2909
3517
|
# See configuration.py for a list of all supported configuration parameters.
|
|
2910
3518
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
2911
|
-
host = "https://env-ephemeral-
|
|
3519
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
2912
3520
|
)
|
|
2913
3521
|
|
|
2914
3522
|
# The client must configure the authentication and authorization parameters
|
|
@@ -2996,10 +3604,10 @@ from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelRe
|
|
|
2996
3604
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
2997
3605
|
from pprint import pprint
|
|
2998
3606
|
|
|
2999
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3607
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
3000
3608
|
# See configuration.py for a list of all supported configuration parameters.
|
|
3001
3609
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
3002
|
-
host = "https://env-ephemeral-
|
|
3610
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
3003
3611
|
)
|
|
3004
3612
|
|
|
3005
3613
|
# The client must configure the authentication and authorization parameters
|
|
@@ -3087,10 +3695,10 @@ from pulpcore.client.pulp_python.models.python_python_distribution_response impo
|
|
|
3087
3695
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
3088
3696
|
from pprint import pprint
|
|
3089
3697
|
|
|
3090
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
3698
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
3091
3699
|
# See configuration.py for a list of all supported configuration parameters.
|
|
3092
3700
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
3093
|
-
host = "https://env-ephemeral-
|
|
3701
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
3094
3702
|
)
|
|
3095
3703
|
|
|
3096
3704
|
# The client must configure the authentication and authorization parameters
|
|
@@ -3192,7 +3800,7 @@ Name | Type | Description | Notes
|
|
|
3192
3800
|
|
|
3193
3801
|
# MetadataVersionEnum
|
|
3194
3802
|
|
|
3195
|
-
* `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4
|
|
3803
|
+
* `1.0` - 1.0 * `1.1` - 1.1 * `1.2` - 1.2 * `2.0` - 2.0 * `2.1` - 2.1 * `2.2` - 2.2 * `2.3` - 2.3 * `2.4` - 2.4 * `2.5` - 2.5
|
|
3196
3804
|
|
|
3197
3805
|
## Enum
|
|
3198
3806
|
|
|
@@ -3212,6 +3820,8 @@ Name | Type | Description | Notes
|
|
|
3212
3820
|
|
|
3213
3821
|
* `ENUM_2_DOT_4` (value: `'2.4'`)
|
|
3214
3822
|
|
|
3823
|
+
* `ENUM_2_DOT_5` (value: `'2.5'`)
|
|
3824
|
+
|
|
3215
3825
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
3216
3826
|
|
|
3217
3827
|
|
|
@@ -3459,6 +4069,38 @@ paginatedpython_package_provenance_response_list_from_dict = PaginatedpythonPack
|
|
|
3459
4069
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
3460
4070
|
|
|
3461
4071
|
|
|
4072
|
+
# PaginatedpythonPackageYankResponseList
|
|
4073
|
+
|
|
4074
|
+
|
|
4075
|
+
## Properties
|
|
4076
|
+
|
|
4077
|
+
Name | Type | Description | Notes
|
|
4078
|
+
------------ | ------------- | ------------- | -------------
|
|
4079
|
+
**count** | **int** | |
|
|
4080
|
+
**next** | **str** | | [optional]
|
|
4081
|
+
**previous** | **str** | | [optional]
|
|
4082
|
+
**results** | [**List[PythonPackageYankResponse]**](PythonPackageYankResponse.md) | |
|
|
4083
|
+
|
|
4084
|
+
## Example
|
|
4085
|
+
|
|
4086
|
+
```python
|
|
4087
|
+
from pulpcore.client.pulp_python.models.paginatedpython_package_yank_response_list import PaginatedpythonPackageYankResponseList
|
|
4088
|
+
|
|
4089
|
+
# TODO update the JSON string below
|
|
4090
|
+
json = "{}"
|
|
4091
|
+
# create an instance of PaginatedpythonPackageYankResponseList from a JSON string
|
|
4092
|
+
paginatedpython_package_yank_response_list_instance = PaginatedpythonPackageYankResponseList.from_json(json)
|
|
4093
|
+
# print the JSON string representation of the object
|
|
4094
|
+
print(PaginatedpythonPackageYankResponseList.to_json())
|
|
4095
|
+
|
|
4096
|
+
# convert the object into a dict
|
|
4097
|
+
paginatedpython_package_yank_response_list_dict = paginatedpython_package_yank_response_list_instance.to_dict()
|
|
4098
|
+
# create an instance of PaginatedpythonPackageYankResponseList from a dict
|
|
4099
|
+
paginatedpython_package_yank_response_list_from_dict = PaginatedpythonPackageYankResponseList.from_dict(paginatedpython_package_yank_response_list_dict)
|
|
4100
|
+
```
|
|
4101
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
4102
|
+
|
|
4103
|
+
|
|
3462
4104
|
# PaginatedpythonPythonBlocklistEntryResponseList
|
|
3463
4105
|
|
|
3464
4106
|
|
|
@@ -3844,7 +4486,7 @@ patchedpython_python_repository_from_dict = PatchedpythonPythonRepository.from_d
|
|
|
3844
4486
|
|
|
3845
4487
|
# pulpcore.client.pulp_python.PublicationsPypiApi
|
|
3846
4488
|
|
|
3847
|
-
All URIs are relative to *https://env-ephemeral-
|
|
4489
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
3848
4490
|
|
|
3849
4491
|
Method | HTTP request | Description
|
|
3850
4492
|
------------- | ------------- | -------------
|
|
@@ -3877,10 +4519,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
3877
4519
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
3878
4520
|
from pprint import pprint
|
|
3879
4521
|
|
|
3880
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
4522
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
3881
4523
|
# See configuration.py for a list of all supported configuration parameters.
|
|
3882
4524
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
3883
|
-
host = "https://env-ephemeral-
|
|
4525
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
3884
4526
|
)
|
|
3885
4527
|
|
|
3886
4528
|
# The client must configure the authentication and authorization parameters
|
|
@@ -3968,10 +4610,10 @@ from pulpcore.client.pulp_python.models.python_python_publication import PythonP
|
|
|
3968
4610
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
3969
4611
|
from pprint import pprint
|
|
3970
4612
|
|
|
3971
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
4613
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
3972
4614
|
# See configuration.py for a list of all supported configuration parameters.
|
|
3973
4615
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
3974
|
-
host = "https://env-ephemeral-
|
|
4616
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
3975
4617
|
)
|
|
3976
4618
|
|
|
3977
4619
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4057,10 +4699,10 @@ import pulpcore.client.pulp_python
|
|
|
4057
4699
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4058
4700
|
from pprint import pprint
|
|
4059
4701
|
|
|
4060
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
4702
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4061
4703
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4062
4704
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4063
|
-
host = "https://env-ephemeral-
|
|
4705
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4064
4706
|
)
|
|
4065
4707
|
|
|
4066
4708
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4143,10 +4785,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_publication_respo
|
|
|
4143
4785
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4144
4786
|
from pprint import pprint
|
|
4145
4787
|
|
|
4146
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
4788
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4147
4789
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4148
4790
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4149
|
-
host = "https://env-ephemeral-
|
|
4791
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4150
4792
|
)
|
|
4151
4793
|
|
|
4152
4794
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4273,10 +4915,10 @@ from pulpcore.client.pulp_python.models.object_roles_response import ObjectRoles
|
|
|
4273
4915
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4274
4916
|
from pprint import pprint
|
|
4275
4917
|
|
|
4276
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
4918
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4277
4919
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4278
4920
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4279
|
-
host = "https://env-ephemeral-
|
|
4921
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4280
4922
|
)
|
|
4281
4923
|
|
|
4282
4924
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4365,10 +5007,10 @@ from pulpcore.client.pulp_python.models.my_permissions_response import MyPermiss
|
|
|
4365
5007
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4366
5008
|
from pprint import pprint
|
|
4367
5009
|
|
|
4368
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
5010
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4369
5011
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4370
5012
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4371
|
-
host = "https://env-ephemeral-
|
|
5013
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4372
5014
|
)
|
|
4373
5015
|
|
|
4374
5016
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4457,10 +5099,10 @@ from pulpcore.client.pulp_python.models.python_python_publication_response impor
|
|
|
4457
5099
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4458
5100
|
from pprint import pprint
|
|
4459
5101
|
|
|
4460
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
5102
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4461
5103
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4462
5104
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4463
|
-
host = "https://env-ephemeral-
|
|
5105
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4464
5106
|
)
|
|
4465
5107
|
|
|
4466
5108
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4550,10 +5192,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
4550
5192
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4551
5193
|
from pprint import pprint
|
|
4552
5194
|
|
|
4553
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
5195
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4554
5196
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4555
5197
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4556
|
-
host = "https://env-ephemeral-
|
|
5198
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4557
5199
|
)
|
|
4558
5200
|
|
|
4559
5201
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4624,7 +5266,7 @@ Name | Type | Description | Notes
|
|
|
4624
5266
|
|
|
4625
5267
|
# pulpcore.client.pulp_python.PypiMetadataApi
|
|
4626
5268
|
|
|
4627
|
-
All URIs are relative to *https://env-ephemeral-
|
|
5269
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
4628
5270
|
|
|
4629
5271
|
Method | HTTP request | Description
|
|
4630
5272
|
------------- | ------------- | -------------
|
|
@@ -4649,10 +5291,10 @@ from pulpcore.client.pulp_python.models.package_metadata_response import Package
|
|
|
4649
5291
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
4650
5292
|
from pprint import pprint
|
|
4651
5293
|
|
|
4652
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
5294
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
4653
5295
|
# See configuration.py for a list of all supported configuration parameters.
|
|
4654
5296
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
4655
|
-
host = "https://env-ephemeral-
|
|
5297
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
4656
5298
|
)
|
|
4657
5299
|
|
|
4658
5300
|
# The client must configure the authentication and authorization parameters
|
|
@@ -4765,6 +5407,44 @@ python_package_provenance_response_from_dict = PythonPackageProvenanceResponse.f
|
|
|
4765
5407
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
4766
5408
|
|
|
4767
5409
|
|
|
5410
|
+
# PythonPackageYankResponse
|
|
5411
|
+
|
|
5412
|
+
Read-only serializer for PackageYank content units (PEP 592). Used by PackageYankViewSet to expose yank markers via the Pulp REST API.
|
|
5413
|
+
|
|
5414
|
+
## Properties
|
|
5415
|
+
|
|
5416
|
+
Name | Type | Description | Notes
|
|
5417
|
+
------------ | ------------- | ------------- | -------------
|
|
5418
|
+
**pulp_href** | **str** | | [optional] [readonly]
|
|
5419
|
+
**prn** | **str** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
|
5420
|
+
**pulp_created** | **datetime** | Timestamp of creation. | [optional] [readonly]
|
|
5421
|
+
**pulp_last_updated** | **datetime** | 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. | [optional] [readonly]
|
|
5422
|
+
**pulp_labels** | **Dict[str, Optional[str]]** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional]
|
|
5423
|
+
**vuln_report** | **str** | | [optional] [readonly]
|
|
5424
|
+
**name_normalized** | **str** | | [optional] [readonly]
|
|
5425
|
+
**version** | **str** | | [optional] [readonly]
|
|
5426
|
+
**yanked_reason** | **str** | | [optional] [readonly]
|
|
5427
|
+
|
|
5428
|
+
## Example
|
|
5429
|
+
|
|
5430
|
+
```python
|
|
5431
|
+
from pulpcore.client.pulp_python.models.python_package_yank_response import PythonPackageYankResponse
|
|
5432
|
+
|
|
5433
|
+
# TODO update the JSON string below
|
|
5434
|
+
json = "{}"
|
|
5435
|
+
# create an instance of PythonPackageYankResponse from a JSON string
|
|
5436
|
+
python_package_yank_response_instance = PythonPackageYankResponse.from_json(json)
|
|
5437
|
+
# print the JSON string representation of the object
|
|
5438
|
+
print(PythonPackageYankResponse.to_json())
|
|
5439
|
+
|
|
5440
|
+
# convert the object into a dict
|
|
5441
|
+
python_package_yank_response_dict = python_package_yank_response_instance.to_dict()
|
|
5442
|
+
# create an instance of PythonPackageYankResponse from a dict
|
|
5443
|
+
python_package_yank_response_from_dict = PythonPackageYankResponse.from_dict(python_package_yank_response_dict)
|
|
5444
|
+
```
|
|
5445
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
5446
|
+
|
|
5447
|
+
|
|
4768
5448
|
# PythonPythonBlocklistEntry
|
|
4769
5449
|
|
|
4770
5450
|
Serializer for PythonBlocklistEntry. The `repository` is supplied by the URL (not the request body) and is injected by the viewset before saving.
|
|
@@ -5372,7 +6052,7 @@ remote_network_config_response_from_dict = RemoteNetworkConfigResponse.from_dict
|
|
|
5372
6052
|
|
|
5373
6053
|
# pulpcore.client.pulp_python.RemotesPythonApi
|
|
5374
6054
|
|
|
5375
|
-
All URIs are relative to *https://env-ephemeral-
|
|
6055
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
5376
6056
|
|
|
5377
6057
|
Method | HTTP request | Description
|
|
5378
6058
|
------------- | ------------- | -------------
|
|
@@ -5410,10 +6090,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
5410
6090
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5411
6091
|
from pprint import pprint
|
|
5412
6092
|
|
|
5413
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6093
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5414
6094
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5415
6095
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5416
|
-
host = "https://env-ephemeral-
|
|
6096
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5417
6097
|
)
|
|
5418
6098
|
|
|
5419
6099
|
# The client must configure the authentication and authorization parameters
|
|
@@ -5501,10 +6181,10 @@ from pulpcore.client.pulp_python.models.python_python_remote_response import Pyt
|
|
|
5501
6181
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5502
6182
|
from pprint import pprint
|
|
5503
6183
|
|
|
5504
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6184
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5505
6185
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5506
6186
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5507
|
-
host = "https://env-ephemeral-
|
|
6187
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5508
6188
|
)
|
|
5509
6189
|
|
|
5510
6190
|
# The client must configure the authentication and authorization parameters
|
|
@@ -5591,10 +6271,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
5591
6271
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5592
6272
|
from pprint import pprint
|
|
5593
6273
|
|
|
5594
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6274
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5595
6275
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5596
6276
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5597
|
-
host = "https://env-ephemeral-
|
|
6277
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5598
6278
|
)
|
|
5599
6279
|
|
|
5600
6280
|
# The client must configure the authentication and authorization parameters
|
|
@@ -5679,10 +6359,10 @@ from pulpcore.client.pulp_python.models.python_python_remote_response import Pyt
|
|
|
5679
6359
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5680
6360
|
from pprint import pprint
|
|
5681
6361
|
|
|
5682
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6362
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5683
6363
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5684
6364
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5685
|
-
host = "https://env-ephemeral-
|
|
6365
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5686
6366
|
)
|
|
5687
6367
|
|
|
5688
6368
|
# The client must configure the authentication and authorization parameters
|
|
@@ -5773,10 +6453,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_remote_response_l
|
|
|
5773
6453
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5774
6454
|
from pprint import pprint
|
|
5775
6455
|
|
|
5776
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6456
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5777
6457
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5778
6458
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5779
|
-
host = "https://env-ephemeral-
|
|
6459
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5780
6460
|
)
|
|
5781
6461
|
|
|
5782
6462
|
# The client must configure the authentication and authorization parameters
|
|
@@ -5913,10 +6593,10 @@ from pulpcore.client.pulp_python.models.object_roles_response import ObjectRoles
|
|
|
5913
6593
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
5914
6594
|
from pprint import pprint
|
|
5915
6595
|
|
|
5916
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6596
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
5917
6597
|
# See configuration.py for a list of all supported configuration parameters.
|
|
5918
6598
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
5919
|
-
host = "https://env-ephemeral-
|
|
6599
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
5920
6600
|
)
|
|
5921
6601
|
|
|
5922
6602
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6005,10 +6685,10 @@ from pulpcore.client.pulp_python.models.my_permissions_response import MyPermiss
|
|
|
6005
6685
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6006
6686
|
from pprint import pprint
|
|
6007
6687
|
|
|
6008
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6688
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6009
6689
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6010
6690
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6011
|
-
host = "https://env-ephemeral-
|
|
6691
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6012
6692
|
)
|
|
6013
6693
|
|
|
6014
6694
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6098,10 +6778,10 @@ from pulpcore.client.pulp_python.models.python_python_remote_response import Pyt
|
|
|
6098
6778
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6099
6779
|
from pprint import pprint
|
|
6100
6780
|
|
|
6101
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6781
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6102
6782
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6103
6783
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6104
|
-
host = "https://env-ephemeral-
|
|
6784
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6105
6785
|
)
|
|
6106
6786
|
|
|
6107
6787
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6189,10 +6869,10 @@ from pulpcore.client.pulp_python.models.python_python_remote_response import Pyt
|
|
|
6189
6869
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6190
6870
|
from pprint import pprint
|
|
6191
6871
|
|
|
6192
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6872
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6193
6873
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6194
6874
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6195
|
-
host = "https://env-ephemeral-
|
|
6875
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6196
6876
|
)
|
|
6197
6877
|
|
|
6198
6878
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6282,10 +6962,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
6282
6962
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6283
6963
|
from pprint import pprint
|
|
6284
6964
|
|
|
6285
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
6965
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6286
6966
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6287
6967
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6288
|
-
host = "https://env-ephemeral-
|
|
6968
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6289
6969
|
)
|
|
6290
6970
|
|
|
6291
6971
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6373,10 +7053,10 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
6373
7053
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6374
7054
|
from pprint import pprint
|
|
6375
7055
|
|
|
6376
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7056
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6377
7057
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6378
7058
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6379
|
-
host = "https://env-ephemeral-
|
|
7059
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6380
7060
|
)
|
|
6381
7061
|
|
|
6382
7062
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6464,10 +7144,10 @@ from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelRe
|
|
|
6464
7144
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6465
7145
|
from pprint import pprint
|
|
6466
7146
|
|
|
6467
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7147
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6468
7148
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6469
7149
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6470
|
-
host = "https://env-ephemeral-
|
|
7150
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6471
7151
|
)
|
|
6472
7152
|
|
|
6473
7153
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6555,10 +7235,10 @@ from pulpcore.client.pulp_python.models.python_python_remote_response import Pyt
|
|
|
6555
7235
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6556
7236
|
from pprint import pprint
|
|
6557
7237
|
|
|
6558
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7238
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6559
7239
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6560
7240
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6561
|
-
host = "https://env-ephemeral-
|
|
7241
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6562
7242
|
)
|
|
6563
7243
|
|
|
6564
7244
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6659,7 +7339,7 @@ repair_from_dict = Repair.from_dict(repair_dict)
|
|
|
6659
7339
|
|
|
6660
7340
|
# pulpcore.client.pulp_python.RepositoriesPythonApi
|
|
6661
7341
|
|
|
6662
|
-
All URIs are relative to *https://env-ephemeral-
|
|
7342
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
6663
7343
|
|
|
6664
7344
|
Method | HTTP request | Description
|
|
6665
7345
|
------------- | ------------- | -------------
|
|
@@ -6699,10 +7379,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
6699
7379
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6700
7380
|
from pprint import pprint
|
|
6701
7381
|
|
|
6702
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7382
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6703
7383
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6704
7384
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6705
|
-
host = "https://env-ephemeral-
|
|
7385
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6706
7386
|
)
|
|
6707
7387
|
|
|
6708
7388
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6790,10 +7470,10 @@ from pulpcore.client.pulp_python.models.python_python_repository_response import
|
|
|
6790
7470
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6791
7471
|
from pprint import pprint
|
|
6792
7472
|
|
|
6793
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7473
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6794
7474
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6795
7475
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6796
|
-
host = "https://env-ephemeral-
|
|
7476
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6797
7477
|
)
|
|
6798
7478
|
|
|
6799
7479
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6880,10 +7560,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
6880
7560
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6881
7561
|
from pprint import pprint
|
|
6882
7562
|
|
|
6883
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7563
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6884
7564
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6885
7565
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6886
|
-
host = "https://env-ephemeral-
|
|
7566
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6887
7567
|
)
|
|
6888
7568
|
|
|
6889
7569
|
# The client must configure the authentication and authorization parameters
|
|
@@ -6968,10 +7648,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_repository_respon
|
|
|
6968
7648
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
6969
7649
|
from pprint import pprint
|
|
6970
7650
|
|
|
6971
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7651
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
6972
7652
|
# See configuration.py for a list of all supported configuration parameters.
|
|
6973
7653
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
6974
|
-
host = "https://env-ephemeral-
|
|
7654
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
6975
7655
|
)
|
|
6976
7656
|
|
|
6977
7657
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7132,10 +7812,10 @@ from pulpcore.client.pulp_python.models.object_roles_response import ObjectRoles
|
|
|
7132
7812
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7133
7813
|
from pprint import pprint
|
|
7134
7814
|
|
|
7135
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7815
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7136
7816
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7137
7817
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7138
|
-
host = "https://env-ephemeral-
|
|
7818
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7139
7819
|
)
|
|
7140
7820
|
|
|
7141
7821
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7225,10 +7905,10 @@ from pulpcore.client.pulp_python.models.repository_add_remove_content import Rep
|
|
|
7225
7905
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7226
7906
|
from pprint import pprint
|
|
7227
7907
|
|
|
7228
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7908
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7229
7909
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7230
7910
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7231
|
-
host = "https://env-ephemeral-
|
|
7911
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7232
7912
|
)
|
|
7233
7913
|
|
|
7234
7914
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7315,10 +7995,10 @@ from pulpcore.client.pulp_python.models.my_permissions_response import MyPermiss
|
|
|
7315
7995
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7316
7996
|
from pprint import pprint
|
|
7317
7997
|
|
|
7318
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
7998
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7319
7999
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7320
8000
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7321
|
-
host = "https://env-ephemeral-
|
|
8001
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7322
8002
|
)
|
|
7323
8003
|
|
|
7324
8004
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7408,10 +8088,10 @@ from pulpcore.client.pulp_python.models.python_python_repository_response import
|
|
|
7408
8088
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7409
8089
|
from pprint import pprint
|
|
7410
8090
|
|
|
7411
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8091
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7412
8092
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7413
8093
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7414
|
-
host = "https://env-ephemeral-
|
|
8094
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7415
8095
|
)
|
|
7416
8096
|
|
|
7417
8097
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7499,10 +8179,10 @@ from pulpcore.client.pulp_python.models.python_python_repository_response import
|
|
|
7499
8179
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7500
8180
|
from pprint import pprint
|
|
7501
8181
|
|
|
7502
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8182
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7503
8183
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7504
8184
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7505
|
-
host = "https://env-ephemeral-
|
|
8185
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7506
8186
|
)
|
|
7507
8187
|
|
|
7508
8188
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7592,10 +8272,10 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
7592
8272
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7593
8273
|
from pprint import pprint
|
|
7594
8274
|
|
|
7595
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8275
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7596
8276
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7597
8277
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7598
|
-
host = "https://env-ephemeral-
|
|
8278
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7599
8279
|
)
|
|
7600
8280
|
|
|
7601
8281
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7682,10 +8362,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
7682
8362
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7683
8363
|
from pprint import pprint
|
|
7684
8364
|
|
|
7685
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8365
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7686
8366
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7687
8367
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7688
|
-
host = "https://env-ephemeral-
|
|
8368
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7689
8369
|
)
|
|
7690
8370
|
|
|
7691
8371
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7771,10 +8451,10 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
7771
8451
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7772
8452
|
from pprint import pprint
|
|
7773
8453
|
|
|
7774
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8454
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7775
8455
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7776
8456
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7777
|
-
host = "https://env-ephemeral-
|
|
8457
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7778
8458
|
)
|
|
7779
8459
|
|
|
7780
8460
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7862,10 +8542,10 @@ from pulpcore.client.pulp_python.models.repository_sync_url import RepositorySyn
|
|
|
7862
8542
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7863
8543
|
from pprint import pprint
|
|
7864
8544
|
|
|
7865
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8545
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7866
8546
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7867
8547
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7868
|
-
host = "https://env-ephemeral-
|
|
8548
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7869
8549
|
)
|
|
7870
8550
|
|
|
7871
8551
|
# The client must configure the authentication and authorization parameters
|
|
@@ -7953,10 +8633,10 @@ from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelRe
|
|
|
7953
8633
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
7954
8634
|
from pprint import pprint
|
|
7955
8635
|
|
|
7956
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8636
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
7957
8637
|
# See configuration.py for a list of all supported configuration parameters.
|
|
7958
8638
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
7959
|
-
host = "https://env-ephemeral-
|
|
8639
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
7960
8640
|
)
|
|
7961
8641
|
|
|
7962
8642
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8044,10 +8724,10 @@ from pulpcore.client.pulp_python.models.python_python_repository_response import
|
|
|
8044
8724
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8045
8725
|
from pprint import pprint
|
|
8046
8726
|
|
|
8047
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8727
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8048
8728
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8049
8729
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8050
|
-
host = "https://env-ephemeral-
|
|
8730
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8051
8731
|
)
|
|
8052
8732
|
|
|
8053
8733
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8119,7 +8799,7 @@ Name | Type | Description | Notes
|
|
|
8119
8799
|
|
|
8120
8800
|
# pulpcore.client.pulp_python.RepositoriesPythonBlocklistEntriesApi
|
|
8121
8801
|
|
|
8122
|
-
All URIs are relative to *https://env-ephemeral-
|
|
8802
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
8123
8803
|
|
|
8124
8804
|
Method | HTTP request | Description
|
|
8125
8805
|
------------- | ------------- | -------------
|
|
@@ -8148,10 +8828,10 @@ from pulpcore.client.pulp_python.models.python_python_blocklist_entry_response i
|
|
|
8148
8828
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8149
8829
|
from pprint import pprint
|
|
8150
8830
|
|
|
8151
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8831
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8152
8832
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8153
8833
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8154
|
-
host = "https://env-ephemeral-
|
|
8834
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8155
8835
|
)
|
|
8156
8836
|
|
|
8157
8837
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8237,10 +8917,10 @@ import pulpcore.client.pulp_python
|
|
|
8237
8917
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8238
8918
|
from pprint import pprint
|
|
8239
8919
|
|
|
8240
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
8920
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8241
8921
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8242
8922
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8243
|
-
host = "https://env-ephemeral-
|
|
8923
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8244
8924
|
)
|
|
8245
8925
|
|
|
8246
8926
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8323,10 +9003,10 @@ from pulpcore.client.pulp_python.models.paginatedpython_python_blocklist_entry_r
|
|
|
8323
9003
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8324
9004
|
from pprint import pprint
|
|
8325
9005
|
|
|
8326
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9006
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8327
9007
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8328
9008
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8329
|
-
host = "https://env-ephemeral-
|
|
9009
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8330
9010
|
)
|
|
8331
9011
|
|
|
8332
9012
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8437,10 +9117,10 @@ from pulpcore.client.pulp_python.models.python_python_blocklist_entry_response i
|
|
|
8437
9117
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8438
9118
|
from pprint import pprint
|
|
8439
9119
|
|
|
8440
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9120
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8441
9121
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8442
9122
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8443
|
-
host = "https://env-ephemeral-
|
|
9123
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8444
9124
|
)
|
|
8445
9125
|
|
|
8446
9126
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8513,7 +9193,7 @@ Name | Type | Description | Notes
|
|
|
8513
9193
|
|
|
8514
9194
|
# pulpcore.client.pulp_python.RepositoriesPythonVersionsApi
|
|
8515
9195
|
|
|
8516
|
-
All URIs are relative to *https://env-ephemeral-
|
|
9196
|
+
All URIs are relative to *https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com*
|
|
8517
9197
|
|
|
8518
9198
|
Method | HTTP request | Description
|
|
8519
9199
|
------------- | ------------- | -------------
|
|
@@ -8542,10 +9222,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
8542
9222
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8543
9223
|
from pprint import pprint
|
|
8544
9224
|
|
|
8545
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9225
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8546
9226
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8547
9227
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8548
|
-
host = "https://env-ephemeral-
|
|
9228
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8549
9229
|
)
|
|
8550
9230
|
|
|
8551
9231
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8630,10 +9310,10 @@ from pulpcore.client.pulp_python.models.paginated_repository_version_response_li
|
|
|
8630
9310
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8631
9311
|
from pprint import pprint
|
|
8632
9312
|
|
|
8633
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9313
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8634
9314
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8635
9315
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8636
|
-
host = "https://env-ephemeral-
|
|
9316
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8637
9317
|
)
|
|
8638
9318
|
|
|
8639
9319
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8764,10 +9444,10 @@ from pulpcore.client.pulp_python.models.repository_version_response import Repos
|
|
|
8764
9444
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8765
9445
|
from pprint import pprint
|
|
8766
9446
|
|
|
8767
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9447
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8768
9448
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8769
9449
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8770
|
-
host = "https://env-ephemeral-
|
|
9450
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8771
9451
|
)
|
|
8772
9452
|
|
|
8773
9453
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8857,10 +9537,10 @@ from pulpcore.client.pulp_python.models.repair import Repair
|
|
|
8857
9537
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8858
9538
|
from pprint import pprint
|
|
8859
9539
|
|
|
8860
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9540
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8861
9541
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8862
9542
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8863
|
-
host = "https://env-ephemeral-
|
|
9543
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8864
9544
|
)
|
|
8865
9545
|
|
|
8866
9546
|
# The client must configure the authentication and authorization parameters
|
|
@@ -8946,10 +9626,10 @@ from pulpcore.client.pulp_python.models.async_operation_response import AsyncOpe
|
|
|
8946
9626
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
8947
9627
|
from pprint import pprint
|
|
8948
9628
|
|
|
8949
|
-
# Defining the host is optional and defaults to https://env-ephemeral-
|
|
9629
|
+
# Defining the host is optional and defaults to https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com
|
|
8950
9630
|
# See configuration.py for a list of all supported configuration parameters.
|
|
8951
9631
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
8952
|
-
host = "https://env-ephemeral-
|
|
9632
|
+
host = "https://env-ephemeral-opnrp4.apps.crc-eph.r9lp.p1.openshiftapps.com"
|
|
8953
9633
|
)
|
|
8954
9634
|
|
|
8955
9635
|
# The client must configure the authentication and authorization parameters
|
|
@@ -9273,3 +9953,35 @@ unset_label_response_from_dict = UnsetLabelResponse.from_dict(unset_label_respon
|
|
|
9273
9953
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
9274
9954
|
|
|
9275
9955
|
|
|
9956
|
+
# Yank
|
|
9957
|
+
|
|
9958
|
+
A Serializer for yank/unyank requests (PEP 592).
|
|
9959
|
+
|
|
9960
|
+
## Properties
|
|
9961
|
+
|
|
9962
|
+
Name | Type | Description | Notes
|
|
9963
|
+
------------ | ------------- | ------------- | -------------
|
|
9964
|
+
**name** | **str** | The name of the package to yank or unyank. |
|
|
9965
|
+
**version** | **str** | The version of the package to yank or unyank. |
|
|
9966
|
+
**yanked_reason** | **str** | The reason for yanking the package version. | [optional] [default to '']
|
|
9967
|
+
|
|
9968
|
+
## Example
|
|
9969
|
+
|
|
9970
|
+
```python
|
|
9971
|
+
from pulpcore.client.pulp_python.models.yank import Yank
|
|
9972
|
+
|
|
9973
|
+
# TODO update the JSON string below
|
|
9974
|
+
json = "{}"
|
|
9975
|
+
# create an instance of Yank from a JSON string
|
|
9976
|
+
yank_instance = Yank.from_json(json)
|
|
9977
|
+
# print the JSON string representation of the object
|
|
9978
|
+
print(Yank.to_json())
|
|
9979
|
+
|
|
9980
|
+
# convert the object into a dict
|
|
9981
|
+
yank_dict = yank_instance.to_dict()
|
|
9982
|
+
# create an instance of Yank from a dict
|
|
9983
|
+
yank_from_dict = Yank.from_dict(yank_dict)
|
|
9984
|
+
```
|
|
9985
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
9986
|
+
|
|
9987
|
+
|