crc-pulpcore-client 20250828.3__py3-none-any.whl → 20250829.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of crc-pulpcore-client might be problematic. Click here for more details.
- {crc_pulpcore_client-20250828.3.dist-info → crc_pulpcore_client-20250829.2.dist-info}/METADATA +1 -1
- crc_pulpcore_client-20250829.2.dist-info/RECORD +238 -0
- crc_pulpcore_client-20250829.2.dist-info/top_level.txt +1 -0
- pulpcore/client/__init__.py +2 -0
- pulpcore/client/pulpcore/__init__.py +256 -0
- pulpcore/client/pulpcore/api/__init__.py +54 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/access_policies_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/artifacts_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_openpgp_publickey_api.py +11 -11
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_openpgp_publicsubkey_api.py +10 -10
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_openpgp_signature_api.py +10 -10
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_openpgp_userattribute_api.py +10 -10
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/content_openpgp_userid_api.py +10 -10
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/contentguards_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/contentguards_composite_api.py +12 -12
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/contentguards_content_redirect_api.py +12 -12
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/contentguards_header_api.py +12 -12
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/contentguards_rbac_api.py +12 -12
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/distributions_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/distributions_artifacts_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/distributions_openpgp_api.py +13 -13
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/domains_api.py +14 -14
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/exporters_filesystem_api.py +9 -9
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/exporters_filesystem_exports_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/exporters_pulp_api.py +9 -9
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/exporters_pulp_exports_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/groups_api.py +12 -12
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/groups_roles_api.py +6 -6
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/groups_users_api.py +6 -6
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/importers_pulp_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/importers_pulp_import_check_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/importers_pulp_imports_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/livez_api.py +3 -3
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/login_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/orphans_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/orphans_cleanup_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/publications_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/remotes_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/repair_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/repositories_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/repositories_openpgp_keyring_api.py +18 -18
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/repositories_reclaim_space_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/repository_versions_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/roles_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/signing_services_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/status_api.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/task_groups_api.py +6 -6
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/task_schedules_api.py +10 -10
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/tasks_api.py +20 -20
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/uploads_api.py +13 -13
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/upstream_pulps_api.py +13 -13
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/users_api.py +8 -8
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/users_roles_api.py +6 -6
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/vuln_report_api.py +5 -5
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api/workers_api.py +17 -17
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api_client.py +7 -7
- {crc-pulpcore-client → pulpcore/client/pulpcore}/configuration.py +6 -6
- pulpcore/client/pulpcore/models/__init__.py +190 -0
- crc-pulpcore-client/models/api_app_status_response.py → pulpcore/client/pulpcore/models/app_status_response.py +4 -4
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/artifact_distribution_response.py +13 -13
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/domain.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/domain_backend_migrator.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/domain_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/filesystem_exporter.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/filesystem_exporter_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/generic_remote_response.py +2 -2
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_public_subkey_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_user_attribute_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_user_id_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/object_roles_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_public_key_response.py +3 -3
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_public_subkey_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_user_attribute_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_user_id_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_access_policy_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_artifact_distribution_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_artifact_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_composite_content_guard_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_content_guard_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_content_redirect_content_guard_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_distribution_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_domain_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_filesystem_export_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_filesystem_exporter_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_generic_remote_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_group_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_group_role_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_group_user_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_header_content_guard_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_import_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_multiple_artifact_content_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_distribution_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_keyring_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_public_key_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_public_subkey_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_signature_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_user_attribute_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_open_pgp_user_id_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_publication_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_pulp_export_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_pulp_exporter_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_pulp_importer_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_rbac_content_guard_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_repository_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_repository_version_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_role_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_signing_service_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_task_group_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_task_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_task_schedule_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_upload_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_upstream_pulp_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_user_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_user_role_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_vulnerability_report_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/paginated_worker_response_list.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_domain.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_filesystem_exporter.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_upstream_pulp.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_import_check_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/purge.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/rbac_content_guard_response.py +2 -2
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/repository_version_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/status_response.py +12 -14
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/task_group_response.py +2 -2
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/task_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upload_detail_response.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upstream_pulp.py +1 -1
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upstream_pulp_response.py +2 -2
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user_response.py +2 -2
- {crc-pulpcore-client → pulpcore/client/pulpcore}/rest.py +1 -1
- crc-pulpcore-client/api/__init__.py +0 -54
- crc-pulpcore-client/models/__init__.py +0 -191
- crc-pulpcore-client/models/content_app_status_response.py +0 -99
- crc_pulpcore_client-20250828.3.dist-info/RECORD +0 -237
- crc_pulpcore_client-20250828.3.dist-info/top_level.txt +0 -1
- {crc_pulpcore_client-20250828.3.dist-info → crc_pulpcore_client-20250829.2.dist-info}/WHEEL +0 -0
- {crc-pulpcore-client → pulpcore}/__init__.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/api_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/exceptions.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/access_policy.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/access_policy_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/artifact_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/async_operation_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/composite_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/composite_content_guard_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/content_guard_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/content_redirect_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/content_redirect_content_guard_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/content_settings_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/content_summary_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/database_connection_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/distribution_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/evaluation_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/filesystem_export.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/filesystem_export_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/generic_remote_response_hidden_fields_inner.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/generic_remote_response_policy_enum.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_progress_report_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_role.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_role_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_user.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/group_user_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/header_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/header_content_guard_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/import_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/login_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/method_enum.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/minimal_task_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/multiple_artifact_content_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/my_permissions_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_public_subkey.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_signature.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_signature_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_user_attribute.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_open_pgp_user_id.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_role.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/nested_role_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_distribution.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_distribution_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_keyring.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_keyring_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/open_pgp_signature_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/orphans_cleanup.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_access_policy.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_composite_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_content_redirect_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_group.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_header_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_open_pgp_distribution.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_open_pgp_keyring.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_pulp_exporter.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_pulp_importer.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_rbac_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_role.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_task_cancel.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/patched_user.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/policy357_enum.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/profile_artifact_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/progress_report_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/publication_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_export.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_export_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_exporter.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_exporter_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_import.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_import_check.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_importer.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/pulp_importer_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/rbac_content_guard.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/reclaim_space.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/redis_connection_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/repair.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/repository_add_remove_content.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/repository_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/role.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/role_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/set_label.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/set_label_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/signing_service_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/states_enum.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/storage_class_enum.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/storage_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/task_group_operation_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/task_schedule_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/unset_label.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/unset_label_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upload.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upload_chunk_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upload_commit.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/upload_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user_group.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user_group_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user_role.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/user_role_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/version_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/vulnerability_report_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/models/worker_response.py +0 -0
- {crc-pulpcore-client → pulpcore/client/pulpcore}/py.typed +0 -0
|
@@ -20,13 +20,13 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.paginated_user_role_response_list import PaginatedUserRoleResponseList
|
|
24
|
+
from pulpcore.client.pulpcore.models.user_role import UserRole
|
|
25
|
+
from pulpcore.client.pulpcore.models.user_role_response import UserRoleResponse
|
|
26
26
|
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
27
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
28
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
29
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class UsersRolesApi:
|
|
@@ -20,12 +20,12 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictInt, StrictStr
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.paginated_vulnerability_report_response_list import PaginatedVulnerabilityReportResponseList
|
|
24
|
+
from pulpcore.client.pulpcore.models.vulnerability_report_response import VulnerabilityReportResponse
|
|
25
25
|
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
26
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
27
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
28
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class VulnReportApi:
|
|
@@ -21,12 +21,12 @@ from datetime import datetime
|
|
|
21
21
|
from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
22
22
|
from typing import List, Optional
|
|
23
23
|
from typing_extensions import Annotated
|
|
24
|
-
from
|
|
25
|
-
from
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_worker_response_list import PaginatedWorkerResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.worker_response import WorkerResponse
|
|
26
26
|
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
27
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
28
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
29
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class WorkersApi:
|
|
@@ -66,7 +66,7 @@ class WorkersApi:
|
|
|
66
66
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
67
67
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
68
68
|
online: Optional[StrictBool] = None,
|
|
69
|
-
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `name` - Name * `-name` - Name (descending) * `
|
|
69
|
+
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
70
70
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
71
71
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
72
72
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -87,7 +87,7 @@ class WorkersApi:
|
|
|
87
87
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
88
88
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
89
89
|
) -> PaginatedWorkerResponseList:
|
|
90
|
-
"""List
|
|
90
|
+
"""List app statuss
|
|
91
91
|
|
|
92
92
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
93
93
|
|
|
@@ -135,7 +135,7 @@ class WorkersApi:
|
|
|
135
135
|
:type offset: int
|
|
136
136
|
:param online:
|
|
137
137
|
:type online: bool
|
|
138
|
-
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `
|
|
138
|
+
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
139
139
|
:type ordering: List[str]
|
|
140
140
|
:param prn__in: Multiple values may be separated by commas.
|
|
141
141
|
:type prn__in: List[str]
|
|
@@ -245,7 +245,7 @@ class WorkersApi:
|
|
|
245
245
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
246
246
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
247
247
|
online: Optional[StrictBool] = None,
|
|
248
|
-
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `name` - Name * `-name` - Name (descending) * `
|
|
248
|
+
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
249
249
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
250
250
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
251
251
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -266,7 +266,7 @@ class WorkersApi:
|
|
|
266
266
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
267
267
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
268
268
|
) -> ApiResponse[PaginatedWorkerResponseList]:
|
|
269
|
-
"""List
|
|
269
|
+
"""List app statuss
|
|
270
270
|
|
|
271
271
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
272
272
|
|
|
@@ -314,7 +314,7 @@ class WorkersApi:
|
|
|
314
314
|
:type offset: int
|
|
315
315
|
:param online:
|
|
316
316
|
:type online: bool
|
|
317
|
-
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `
|
|
317
|
+
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
318
318
|
:type ordering: List[str]
|
|
319
319
|
:param prn__in: Multiple values may be separated by commas.
|
|
320
320
|
:type prn__in: List[str]
|
|
@@ -424,7 +424,7 @@ class WorkersApi:
|
|
|
424
424
|
name__startswith: Annotated[Optional[StrictStr], Field(description="Filter results where name starts with value")] = None,
|
|
425
425
|
offset: Annotated[Optional[StrictInt], Field(description="The initial index from which to return the results.")] = None,
|
|
426
426
|
online: Optional[StrictBool] = None,
|
|
427
|
-
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `name` - Name * `-name` - Name (descending) * `
|
|
427
|
+
ordering: Annotated[Optional[List[StrictStr]], Field(description="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) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)")] = None,
|
|
428
428
|
prn__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
429
429
|
pulp_href__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
430
430
|
pulp_id__in: Annotated[Optional[List[StrictStr]], Field(description="Multiple values may be separated by commas.")] = None,
|
|
@@ -445,7 +445,7 @@ class WorkersApi:
|
|
|
445
445
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
446
446
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
447
447
|
) -> RESTResponseType:
|
|
448
|
-
"""List
|
|
448
|
+
"""List app statuss
|
|
449
449
|
|
|
450
450
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
451
451
|
|
|
@@ -493,7 +493,7 @@ class WorkersApi:
|
|
|
493
493
|
:type offset: int
|
|
494
494
|
:param online:
|
|
495
495
|
:type online: bool
|
|
496
|
-
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `
|
|
496
|
+
:param ordering: Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `app_type` - App type * `-app_type` - App type (descending) * `name` - Name * `-name` - Name (descending) * `versions` - Versions * `-versions` - Versions (descending) * `ttl` - Ttl * `-ttl` - Ttl (descending) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
497
497
|
:type ordering: List[str]
|
|
498
498
|
:param prn__in: Multiple values may be separated by commas.
|
|
499
499
|
:type prn__in: List[str]
|
|
@@ -853,7 +853,7 @@ class WorkersApi:
|
|
|
853
853
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
854
854
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
855
855
|
) -> WorkerResponse:
|
|
856
|
-
"""Inspect
|
|
856
|
+
"""Inspect an app status
|
|
857
857
|
|
|
858
858
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
859
859
|
|
|
@@ -932,7 +932,7 @@ class WorkersApi:
|
|
|
932
932
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
933
933
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
934
934
|
) -> ApiResponse[WorkerResponse]:
|
|
935
|
-
"""Inspect
|
|
935
|
+
"""Inspect an app status
|
|
936
936
|
|
|
937
937
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
938
938
|
|
|
@@ -1011,7 +1011,7 @@ class WorkersApi:
|
|
|
1011
1011
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1012
1012
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1013
1013
|
) -> RESTResponseType:
|
|
1014
|
-
"""Inspect
|
|
1014
|
+
"""Inspect an app status
|
|
1015
1015
|
|
|
1016
1016
|
A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \"Normal\" Django Models and Master/Detail models are supported by the ``register_with`` method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to 'pk' endpoint_name (str): The name of the final path segment that should identify the ViewSet's collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \"parent_prefix\" of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object's identity. schema (DefaultSchema): The schema class to use by default in a viewset.
|
|
1017
1017
|
|
|
@@ -27,11 +27,11 @@ from urllib.parse import quote
|
|
|
27
27
|
from typing import Tuple, Optional, List, Dict, Union
|
|
28
28
|
from pydantic import SecretStr
|
|
29
29
|
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
import
|
|
33
|
-
from
|
|
34
|
-
from
|
|
30
|
+
from pulpcore.client.pulpcore.configuration import Configuration
|
|
31
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse, T as ApiResponseT
|
|
32
|
+
import pulpcore.client.pulpcore.models
|
|
33
|
+
from pulpcore.client.pulpcore import rest
|
|
34
|
+
from pulpcore.client.pulpcore.exceptions import (
|
|
35
35
|
ApiValueError,
|
|
36
36
|
ApiException,
|
|
37
37
|
BadRequestException,
|
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/20250829.2/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -450,7 +450,7 @@ class ApiClient:
|
|
|
450
450
|
if klass in self.NATIVE_TYPES_MAPPING:
|
|
451
451
|
klass = self.NATIVE_TYPES_MAPPING[klass]
|
|
452
452
|
else:
|
|
453
|
-
klass = getattr(
|
|
453
|
+
klass = getattr(pulpcore.client.pulpcore.models, klass)
|
|
454
454
|
|
|
455
455
|
if klass in self.PRIMITIVE_TYPES:
|
|
456
456
|
return self.__deserialize_primitive(data, klass)
|
|
@@ -178,7 +178,7 @@ class Configuration:
|
|
|
178
178
|
|
|
179
179
|
You can programmatically set the cookie:
|
|
180
180
|
|
|
181
|
-
conf =
|
|
181
|
+
conf = pulpcore.client.pulpcore.Configuration(
|
|
182
182
|
api_key={'cookieAuth': 'abc123'}
|
|
183
183
|
api_key_prefix={'cookieAuth': 'JSESSIONID'}
|
|
184
184
|
)
|
|
@@ -196,7 +196,7 @@ conf = crc-pulpcore-client.Configuration(
|
|
|
196
196
|
|
|
197
197
|
Configure API client with HTTP basic authentication:
|
|
198
198
|
|
|
199
|
-
conf =
|
|
199
|
+
conf = pulpcore.client.pulpcore.Configuration(
|
|
200
200
|
username='the-user',
|
|
201
201
|
password='the-password',
|
|
202
202
|
)
|
|
@@ -225,7 +225,7 @@ conf = crc-pulpcore-client.Configuration(
|
|
|
225
225
|
) -> None:
|
|
226
226
|
"""Constructor
|
|
227
227
|
"""
|
|
228
|
-
self._base_path = "https://env-ephemeral-
|
|
228
|
+
self._base_path = "https://env-ephemeral-rpgqa8.apps.crc-eph.r9lp.p1.openshiftapps.com" if host is None else host
|
|
229
229
|
"""Default Base url
|
|
230
230
|
"""
|
|
231
231
|
self.server_index = 0 if server_index is None and host is None else server_index
|
|
@@ -268,7 +268,7 @@ conf = crc-pulpcore-client.Configuration(
|
|
|
268
268
|
self.logger = {}
|
|
269
269
|
"""Logging Settings
|
|
270
270
|
"""
|
|
271
|
-
self.logger["package_logger"] = logging.getLogger("
|
|
271
|
+
self.logger["package_logger"] = logging.getLogger("pulpcore.client.pulpcore")
|
|
272
272
|
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
|
|
273
273
|
self.logger_format = '%(asctime)s %(levelname)s %(message)s'
|
|
274
274
|
"""Log format
|
|
@@ -557,7 +557,7 @@ conf = crc-pulpcore-client.Configuration(
|
|
|
557
557
|
"OS: {env}\n"\
|
|
558
558
|
"Python Version: {pyversion}\n"\
|
|
559
559
|
"Version of the API: v3\n"\
|
|
560
|
-
"SDK Package Version:
|
|
560
|
+
"SDK Package Version: 20250829.2".\
|
|
561
561
|
format(env=sys.platform, pyversion=sys.version)
|
|
562
562
|
|
|
563
563
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -567,7 +567,7 @@ conf = crc-pulpcore-client.Configuration(
|
|
|
567
567
|
"""
|
|
568
568
|
return [
|
|
569
569
|
{
|
|
570
|
-
'url': "https://env-ephemeral-
|
|
570
|
+
'url': "https://env-ephemeral-rpgqa8.apps.crc-eph.r9lp.p1.openshiftapps.com",
|
|
571
571
|
'description': "No description provided",
|
|
572
572
|
}
|
|
573
573
|
]
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
"""
|
|
5
|
+
Pulp 3 API
|
|
6
|
+
|
|
7
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
8
|
+
|
|
9
|
+
The version of the OpenAPI document: v3
|
|
10
|
+
Contact: pulp-list@redhat.com
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# import models into model package
|
|
18
|
+
from pulpcore.client.pulpcore.models.access_policy import AccessPolicy
|
|
19
|
+
from pulpcore.client.pulpcore.models.access_policy_response import AccessPolicyResponse
|
|
20
|
+
from pulpcore.client.pulpcore.models.app_status_response import AppStatusResponse
|
|
21
|
+
from pulpcore.client.pulpcore.models.artifact_distribution_response import ArtifactDistributionResponse
|
|
22
|
+
from pulpcore.client.pulpcore.models.artifact_response import ArtifactResponse
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.composite_content_guard import CompositeContentGuard
|
|
25
|
+
from pulpcore.client.pulpcore.models.composite_content_guard_response import CompositeContentGuardResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.content_guard_response import ContentGuardResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.content_redirect_content_guard import ContentRedirectContentGuard
|
|
28
|
+
from pulpcore.client.pulpcore.models.content_redirect_content_guard_response import ContentRedirectContentGuardResponse
|
|
29
|
+
from pulpcore.client.pulpcore.models.content_settings_response import ContentSettingsResponse
|
|
30
|
+
from pulpcore.client.pulpcore.models.content_summary_response import ContentSummaryResponse
|
|
31
|
+
from pulpcore.client.pulpcore.models.database_connection_response import DatabaseConnectionResponse
|
|
32
|
+
from pulpcore.client.pulpcore.models.distribution_response import DistributionResponse
|
|
33
|
+
from pulpcore.client.pulpcore.models.domain import Domain
|
|
34
|
+
from pulpcore.client.pulpcore.models.domain_backend_migrator import DomainBackendMigrator
|
|
35
|
+
from pulpcore.client.pulpcore.models.domain_response import DomainResponse
|
|
36
|
+
from pulpcore.client.pulpcore.models.evaluation_response import EvaluationResponse
|
|
37
|
+
from pulpcore.client.pulpcore.models.filesystem_export import FilesystemExport
|
|
38
|
+
from pulpcore.client.pulpcore.models.filesystem_export_response import FilesystemExportResponse
|
|
39
|
+
from pulpcore.client.pulpcore.models.filesystem_exporter import FilesystemExporter
|
|
40
|
+
from pulpcore.client.pulpcore.models.filesystem_exporter_response import FilesystemExporterResponse
|
|
41
|
+
from pulpcore.client.pulpcore.models.generic_remote_response import GenericRemoteResponse
|
|
42
|
+
from pulpcore.client.pulpcore.models.generic_remote_response_hidden_fields_inner import GenericRemoteResponseHiddenFieldsInner
|
|
43
|
+
from pulpcore.client.pulpcore.models.generic_remote_response_policy_enum import GenericRemoteResponsePolicyEnum
|
|
44
|
+
from pulpcore.client.pulpcore.models.group import Group
|
|
45
|
+
from pulpcore.client.pulpcore.models.group_progress_report_response import GroupProgressReportResponse
|
|
46
|
+
from pulpcore.client.pulpcore.models.group_response import GroupResponse
|
|
47
|
+
from pulpcore.client.pulpcore.models.group_role import GroupRole
|
|
48
|
+
from pulpcore.client.pulpcore.models.group_role_response import GroupRoleResponse
|
|
49
|
+
from pulpcore.client.pulpcore.models.group_user import GroupUser
|
|
50
|
+
from pulpcore.client.pulpcore.models.group_user_response import GroupUserResponse
|
|
51
|
+
from pulpcore.client.pulpcore.models.header_content_guard import HeaderContentGuard
|
|
52
|
+
from pulpcore.client.pulpcore.models.header_content_guard_response import HeaderContentGuardResponse
|
|
53
|
+
from pulpcore.client.pulpcore.models.import_response import ImportResponse
|
|
54
|
+
from pulpcore.client.pulpcore.models.login_response import LoginResponse
|
|
55
|
+
from pulpcore.client.pulpcore.models.method_enum import MethodEnum
|
|
56
|
+
from pulpcore.client.pulpcore.models.minimal_task_response import MinimalTaskResponse
|
|
57
|
+
from pulpcore.client.pulpcore.models.multiple_artifact_content_response import MultipleArtifactContentResponse
|
|
58
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
59
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_public_subkey import NestedOpenPGPPublicSubkey
|
|
60
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_public_subkey_response import NestedOpenPGPPublicSubkeyResponse
|
|
61
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_signature import NestedOpenPGPSignature
|
|
62
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_signature_response import NestedOpenPGPSignatureResponse
|
|
63
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_user_attribute import NestedOpenPGPUserAttribute
|
|
64
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_user_attribute_response import NestedOpenPGPUserAttributeResponse
|
|
65
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_user_id import NestedOpenPGPUserID
|
|
66
|
+
from pulpcore.client.pulpcore.models.nested_open_pgp_user_id_response import NestedOpenPGPUserIDResponse
|
|
67
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
68
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
69
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
70
|
+
from pulpcore.client.pulpcore.models.open_pgp_distribution import OpenPGPDistribution
|
|
71
|
+
from pulpcore.client.pulpcore.models.open_pgp_distribution_response import OpenPGPDistributionResponse
|
|
72
|
+
from pulpcore.client.pulpcore.models.open_pgp_keyring import OpenPGPKeyring
|
|
73
|
+
from pulpcore.client.pulpcore.models.open_pgp_keyring_response import OpenPGPKeyringResponse
|
|
74
|
+
from pulpcore.client.pulpcore.models.open_pgp_public_key_response import OpenPGPPublicKeyResponse
|
|
75
|
+
from pulpcore.client.pulpcore.models.open_pgp_public_subkey_response import OpenPGPPublicSubkeyResponse
|
|
76
|
+
from pulpcore.client.pulpcore.models.open_pgp_signature_response import OpenPGPSignatureResponse
|
|
77
|
+
from pulpcore.client.pulpcore.models.open_pgp_user_attribute_response import OpenPGPUserAttributeResponse
|
|
78
|
+
from pulpcore.client.pulpcore.models.open_pgp_user_id_response import OpenPGPUserIDResponse
|
|
79
|
+
from pulpcore.client.pulpcore.models.orphans_cleanup import OrphansCleanup
|
|
80
|
+
from pulpcore.client.pulpcore.models.paginated_access_policy_response_list import PaginatedAccessPolicyResponseList
|
|
81
|
+
from pulpcore.client.pulpcore.models.paginated_artifact_distribution_response_list import PaginatedArtifactDistributionResponseList
|
|
82
|
+
from pulpcore.client.pulpcore.models.paginated_artifact_response_list import PaginatedArtifactResponseList
|
|
83
|
+
from pulpcore.client.pulpcore.models.paginated_composite_content_guard_response_list import PaginatedCompositeContentGuardResponseList
|
|
84
|
+
from pulpcore.client.pulpcore.models.paginated_content_guard_response_list import PaginatedContentGuardResponseList
|
|
85
|
+
from pulpcore.client.pulpcore.models.paginated_content_redirect_content_guard_response_list import PaginatedContentRedirectContentGuardResponseList
|
|
86
|
+
from pulpcore.client.pulpcore.models.paginated_distribution_response_list import PaginatedDistributionResponseList
|
|
87
|
+
from pulpcore.client.pulpcore.models.paginated_domain_response_list import PaginatedDomainResponseList
|
|
88
|
+
from pulpcore.client.pulpcore.models.paginated_filesystem_export_response_list import PaginatedFilesystemExportResponseList
|
|
89
|
+
from pulpcore.client.pulpcore.models.paginated_filesystem_exporter_response_list import PaginatedFilesystemExporterResponseList
|
|
90
|
+
from pulpcore.client.pulpcore.models.paginated_generic_remote_response_list import PaginatedGenericRemoteResponseList
|
|
91
|
+
from pulpcore.client.pulpcore.models.paginated_group_response_list import PaginatedGroupResponseList
|
|
92
|
+
from pulpcore.client.pulpcore.models.paginated_group_role_response_list import PaginatedGroupRoleResponseList
|
|
93
|
+
from pulpcore.client.pulpcore.models.paginated_group_user_response_list import PaginatedGroupUserResponseList
|
|
94
|
+
from pulpcore.client.pulpcore.models.paginated_header_content_guard_response_list import PaginatedHeaderContentGuardResponseList
|
|
95
|
+
from pulpcore.client.pulpcore.models.paginated_import_response_list import PaginatedImportResponseList
|
|
96
|
+
from pulpcore.client.pulpcore.models.paginated_multiple_artifact_content_response_list import PaginatedMultipleArtifactContentResponseList
|
|
97
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_distribution_response_list import PaginatedOpenPGPDistributionResponseList
|
|
98
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_keyring_response_list import PaginatedOpenPGPKeyringResponseList
|
|
99
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_public_key_response_list import PaginatedOpenPGPPublicKeyResponseList
|
|
100
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_public_subkey_response_list import PaginatedOpenPGPPublicSubkeyResponseList
|
|
101
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_signature_response_list import PaginatedOpenPGPSignatureResponseList
|
|
102
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_user_attribute_response_list import PaginatedOpenPGPUserAttributeResponseList
|
|
103
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_user_id_response_list import PaginatedOpenPGPUserIDResponseList
|
|
104
|
+
from pulpcore.client.pulpcore.models.paginated_publication_response_list import PaginatedPublicationResponseList
|
|
105
|
+
from pulpcore.client.pulpcore.models.paginated_pulp_export_response_list import PaginatedPulpExportResponseList
|
|
106
|
+
from pulpcore.client.pulpcore.models.paginated_pulp_exporter_response_list import PaginatedPulpExporterResponseList
|
|
107
|
+
from pulpcore.client.pulpcore.models.paginated_pulp_importer_response_list import PaginatedPulpImporterResponseList
|
|
108
|
+
from pulpcore.client.pulpcore.models.paginated_rbac_content_guard_response_list import PaginatedRBACContentGuardResponseList
|
|
109
|
+
from pulpcore.client.pulpcore.models.paginated_repository_response_list import PaginatedRepositoryResponseList
|
|
110
|
+
from pulpcore.client.pulpcore.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
|
|
111
|
+
from pulpcore.client.pulpcore.models.paginated_role_response_list import PaginatedRoleResponseList
|
|
112
|
+
from pulpcore.client.pulpcore.models.paginated_signing_service_response_list import PaginatedSigningServiceResponseList
|
|
113
|
+
from pulpcore.client.pulpcore.models.paginated_task_group_response_list import PaginatedTaskGroupResponseList
|
|
114
|
+
from pulpcore.client.pulpcore.models.paginated_task_response_list import PaginatedTaskResponseList
|
|
115
|
+
from pulpcore.client.pulpcore.models.paginated_task_schedule_response_list import PaginatedTaskScheduleResponseList
|
|
116
|
+
from pulpcore.client.pulpcore.models.paginated_upload_response_list import PaginatedUploadResponseList
|
|
117
|
+
from pulpcore.client.pulpcore.models.paginated_upstream_pulp_response_list import PaginatedUpstreamPulpResponseList
|
|
118
|
+
from pulpcore.client.pulpcore.models.paginated_user_response_list import PaginatedUserResponseList
|
|
119
|
+
from pulpcore.client.pulpcore.models.paginated_user_role_response_list import PaginatedUserRoleResponseList
|
|
120
|
+
from pulpcore.client.pulpcore.models.paginated_vulnerability_report_response_list import PaginatedVulnerabilityReportResponseList
|
|
121
|
+
from pulpcore.client.pulpcore.models.paginated_worker_response_list import PaginatedWorkerResponseList
|
|
122
|
+
from pulpcore.client.pulpcore.models.patched_access_policy import PatchedAccessPolicy
|
|
123
|
+
from pulpcore.client.pulpcore.models.patched_composite_content_guard import PatchedCompositeContentGuard
|
|
124
|
+
from pulpcore.client.pulpcore.models.patched_content_redirect_content_guard import PatchedContentRedirectContentGuard
|
|
125
|
+
from pulpcore.client.pulpcore.models.patched_domain import PatchedDomain
|
|
126
|
+
from pulpcore.client.pulpcore.models.patched_filesystem_exporter import PatchedFilesystemExporter
|
|
127
|
+
from pulpcore.client.pulpcore.models.patched_group import PatchedGroup
|
|
128
|
+
from pulpcore.client.pulpcore.models.patched_header_content_guard import PatchedHeaderContentGuard
|
|
129
|
+
from pulpcore.client.pulpcore.models.patched_open_pgp_distribution import PatchedOpenPGPDistribution
|
|
130
|
+
from pulpcore.client.pulpcore.models.patched_open_pgp_keyring import PatchedOpenPGPKeyring
|
|
131
|
+
from pulpcore.client.pulpcore.models.patched_pulp_exporter import PatchedPulpExporter
|
|
132
|
+
from pulpcore.client.pulpcore.models.patched_pulp_importer import PatchedPulpImporter
|
|
133
|
+
from pulpcore.client.pulpcore.models.patched_rbac_content_guard import PatchedRBACContentGuard
|
|
134
|
+
from pulpcore.client.pulpcore.models.patched_role import PatchedRole
|
|
135
|
+
from pulpcore.client.pulpcore.models.patched_task_cancel import PatchedTaskCancel
|
|
136
|
+
from pulpcore.client.pulpcore.models.patched_upstream_pulp import PatchedUpstreamPulp
|
|
137
|
+
from pulpcore.client.pulpcore.models.patched_user import PatchedUser
|
|
138
|
+
from pulpcore.client.pulpcore.models.policy357_enum import Policy357Enum
|
|
139
|
+
from pulpcore.client.pulpcore.models.profile_artifact_response import ProfileArtifactResponse
|
|
140
|
+
from pulpcore.client.pulpcore.models.progress_report_response import ProgressReportResponse
|
|
141
|
+
from pulpcore.client.pulpcore.models.publication_response import PublicationResponse
|
|
142
|
+
from pulpcore.client.pulpcore.models.pulp_export import PulpExport
|
|
143
|
+
from pulpcore.client.pulpcore.models.pulp_export_response import PulpExportResponse
|
|
144
|
+
from pulpcore.client.pulpcore.models.pulp_exporter import PulpExporter
|
|
145
|
+
from pulpcore.client.pulpcore.models.pulp_exporter_response import PulpExporterResponse
|
|
146
|
+
from pulpcore.client.pulpcore.models.pulp_import import PulpImport
|
|
147
|
+
from pulpcore.client.pulpcore.models.pulp_import_check import PulpImportCheck
|
|
148
|
+
from pulpcore.client.pulpcore.models.pulp_import_check_response import PulpImportCheckResponse
|
|
149
|
+
from pulpcore.client.pulpcore.models.pulp_importer import PulpImporter
|
|
150
|
+
from pulpcore.client.pulpcore.models.pulp_importer_response import PulpImporterResponse
|
|
151
|
+
from pulpcore.client.pulpcore.models.purge import Purge
|
|
152
|
+
from pulpcore.client.pulpcore.models.rbac_content_guard import RBACContentGuard
|
|
153
|
+
from pulpcore.client.pulpcore.models.rbac_content_guard_response import RBACContentGuardResponse
|
|
154
|
+
from pulpcore.client.pulpcore.models.reclaim_space import ReclaimSpace
|
|
155
|
+
from pulpcore.client.pulpcore.models.redis_connection_response import RedisConnectionResponse
|
|
156
|
+
from pulpcore.client.pulpcore.models.repair import Repair
|
|
157
|
+
from pulpcore.client.pulpcore.models.repository_add_remove_content import RepositoryAddRemoveContent
|
|
158
|
+
from pulpcore.client.pulpcore.models.repository_response import RepositoryResponse
|
|
159
|
+
from pulpcore.client.pulpcore.models.repository_version_response import RepositoryVersionResponse
|
|
160
|
+
from pulpcore.client.pulpcore.models.role import Role
|
|
161
|
+
from pulpcore.client.pulpcore.models.role_response import RoleResponse
|
|
162
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
163
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
164
|
+
from pulpcore.client.pulpcore.models.signing_service_response import SigningServiceResponse
|
|
165
|
+
from pulpcore.client.pulpcore.models.states_enum import StatesEnum
|
|
166
|
+
from pulpcore.client.pulpcore.models.status_response import StatusResponse
|
|
167
|
+
from pulpcore.client.pulpcore.models.storage_class_enum import StorageClassEnum
|
|
168
|
+
from pulpcore.client.pulpcore.models.storage_response import StorageResponse
|
|
169
|
+
from pulpcore.client.pulpcore.models.task_group_operation_response import TaskGroupOperationResponse
|
|
170
|
+
from pulpcore.client.pulpcore.models.task_group_response import TaskGroupResponse
|
|
171
|
+
from pulpcore.client.pulpcore.models.task_response import TaskResponse
|
|
172
|
+
from pulpcore.client.pulpcore.models.task_schedule_response import TaskScheduleResponse
|
|
173
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
174
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
175
|
+
from pulpcore.client.pulpcore.models.upload import Upload
|
|
176
|
+
from pulpcore.client.pulpcore.models.upload_chunk_response import UploadChunkResponse
|
|
177
|
+
from pulpcore.client.pulpcore.models.upload_commit import UploadCommit
|
|
178
|
+
from pulpcore.client.pulpcore.models.upload_detail_response import UploadDetailResponse
|
|
179
|
+
from pulpcore.client.pulpcore.models.upload_response import UploadResponse
|
|
180
|
+
from pulpcore.client.pulpcore.models.upstream_pulp import UpstreamPulp
|
|
181
|
+
from pulpcore.client.pulpcore.models.upstream_pulp_response import UpstreamPulpResponse
|
|
182
|
+
from pulpcore.client.pulpcore.models.user import User
|
|
183
|
+
from pulpcore.client.pulpcore.models.user_group import UserGroup
|
|
184
|
+
from pulpcore.client.pulpcore.models.user_group_response import UserGroupResponse
|
|
185
|
+
from pulpcore.client.pulpcore.models.user_response import UserResponse
|
|
186
|
+
from pulpcore.client.pulpcore.models.user_role import UserRole
|
|
187
|
+
from pulpcore.client.pulpcore.models.user_role_response import UserRoleResponse
|
|
188
|
+
from pulpcore.client.pulpcore.models.version_response import VersionResponse
|
|
189
|
+
from pulpcore.client.pulpcore.models.vulnerability_report_response import VulnerabilityReportResponse
|
|
190
|
+
from pulpcore.client.pulpcore.models.worker_response import WorkerResponse
|
|
@@ -24,9 +24,9 @@ from typing import Any, ClassVar, Dict, List, Optional
|
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class AppStatusResponse(BaseModel):
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
AppStatusResponse
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
name: Optional[StrictStr] = Field(default=None, description="The name of the worker.")
|
|
32
32
|
last_heartbeat: Optional[datetime] = Field(default=None, description="Timestamp of the last time the worker talked to the service.")
|
|
@@ -51,7 +51,7 @@ class ApiAppStatusResponse(BaseModel):
|
|
|
51
51
|
|
|
52
52
|
@classmethod
|
|
53
53
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
54
|
-
"""Create an instance of
|
|
54
|
+
"""Create an instance of AppStatusResponse from a JSON string"""
|
|
55
55
|
return cls.from_dict(json.loads(json_str))
|
|
56
56
|
|
|
57
57
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -82,7 +82,7 @@ class ApiAppStatusResponse(BaseModel):
|
|
|
82
82
|
|
|
83
83
|
@classmethod
|
|
84
84
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
85
|
-
"""Create an instance of
|
|
85
|
+
"""Create an instance of AppStatusResponse from a dict"""
|
|
86
86
|
if obj is None:
|
|
87
87
|
return None
|
|
88
88
|
|
|
@@ -28,18 +28,18 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
28
28
|
"""
|
|
29
29
|
A serializer for ArtifactDistribution.
|
|
30
30
|
""" # noqa: E501
|
|
31
|
+
content_guard: Optional[StrictStr] = Field(default=None, description="An optional content-guard.")
|
|
32
|
+
base_path: StrictStr = Field(description="The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")")
|
|
31
33
|
pulp_labels: Optional[Dict[str, Optional[StrictStr]]] = None
|
|
32
34
|
pulp_href: Optional[StrictStr] = None
|
|
33
|
-
|
|
34
|
-
hidden: Optional[StrictBool] = Field(default=False, description="Whether this distribution should be shown in the content app.")
|
|
35
|
-
base_path: StrictStr = Field(description="The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")")
|
|
35
|
+
pulp_created: Optional[datetime] = Field(default=None, description="Timestamp of creation.")
|
|
36
36
|
pulp_last_updated: Optional[datetime] = Field(default=None, description="Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.")
|
|
37
|
+
hidden: Optional[StrictBool] = Field(default=False, description="Whether this distribution should be shown in the content app.")
|
|
37
38
|
no_content_change_since: Optional[StrictStr] = Field(default=None, description="Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.")
|
|
38
39
|
name: StrictStr = Field(description="A unique name. Ex, `rawhide` and `stable`.")
|
|
39
40
|
prn: Optional[StrictStr] = Field(default=None, description="The Pulp Resource Name (PRN).")
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
__properties: ClassVar[List[str]] = ["pulp_labels", "pulp_href", "base_url", "hidden", "base_path", "pulp_last_updated", "no_content_change_since", "name", "prn", "pulp_created", "content_guard"]
|
|
41
|
+
base_url: Optional[StrictStr] = Field(default=None, description="The URL for accessing the publication as defined by this distribution.")
|
|
42
|
+
__properties: ClassVar[List[str]] = ["content_guard", "base_path", "pulp_labels", "pulp_href", "pulp_created", "pulp_last_updated", "hidden", "no_content_change_since", "name", "prn", "base_url"]
|
|
43
43
|
|
|
44
44
|
model_config = ConfigDict(
|
|
45
45
|
populate_by_name=True,
|
|
@@ -80,11 +80,11 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
80
80
|
"""
|
|
81
81
|
excluded_fields: Set[str] = set([
|
|
82
82
|
"pulp_href",
|
|
83
|
-
"
|
|
83
|
+
"pulp_created",
|
|
84
84
|
"pulp_last_updated",
|
|
85
85
|
"no_content_change_since",
|
|
86
86
|
"prn",
|
|
87
|
-
"
|
|
87
|
+
"base_url",
|
|
88
88
|
])
|
|
89
89
|
|
|
90
90
|
_dict = self.model_dump(
|
|
@@ -109,17 +109,17 @@ class ArtifactDistributionResponse(BaseModel):
|
|
|
109
109
|
return cls.model_validate(obj)
|
|
110
110
|
|
|
111
111
|
_obj = cls.model_validate({
|
|
112
|
+
"content_guard": obj.get("content_guard"),
|
|
113
|
+
"base_path": obj.get("base_path"),
|
|
112
114
|
"pulp_labels": obj.get("pulp_labels"),
|
|
113
115
|
"pulp_href": obj.get("pulp_href"),
|
|
114
|
-
"
|
|
115
|
-
"hidden": obj.get("hidden") if obj.get("hidden") is not None else False,
|
|
116
|
-
"base_path": obj.get("base_path"),
|
|
116
|
+
"pulp_created": obj.get("pulp_created"),
|
|
117
117
|
"pulp_last_updated": obj.get("pulp_last_updated"),
|
|
118
|
+
"hidden": obj.get("hidden") if obj.get("hidden") is not None else False,
|
|
118
119
|
"no_content_change_since": obj.get("no_content_change_since"),
|
|
119
120
|
"name": obj.get("name"),
|
|
120
121
|
"prn": obj.get("prn"),
|
|
121
|
-
"
|
|
122
|
-
"content_guard": obj.get("content_guard")
|
|
122
|
+
"base_url": obj.get("base_url")
|
|
123
123
|
})
|
|
124
124
|
return _obj
|
|
125
125
|
|
|
@@ -21,7 +21,7 @@ import json
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr, field_validator
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from typing_extensions import Annotated
|
|
24
|
-
from
|
|
24
|
+
from pulpcore.client.pulpcore.models.storage_class_enum import StorageClassEnum
|
|
25
25
|
from typing import Optional, Set
|
|
26
26
|
from typing_extensions import Self
|
|
27
27
|
|
|
@@ -20,7 +20,7 @@ import json
|
|
|
20
20
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field
|
|
22
22
|
from typing import Any, ClassVar, Dict, List
|
|
23
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.storage_class_enum import StorageClassEnum
|
|
24
24
|
from typing import Optional, Set
|
|
25
25
|
from typing_extensions import Self
|
|
26
26
|
|
|
@@ -22,7 +22,7 @@ from datetime import datetime
|
|
|
22
22
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr, field_validator
|
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
24
24
|
from typing_extensions import Annotated
|
|
25
|
-
from
|
|
25
|
+
from pulpcore.client.pulpcore.models.storage_class_enum import StorageClassEnum
|
|
26
26
|
from typing import Optional, Set
|
|
27
27
|
from typing_extensions import Self
|
|
28
28
|
|
|
@@ -21,7 +21,7 @@ import json
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from typing_extensions import Annotated
|
|
24
|
-
from
|
|
24
|
+
from pulpcore.client.pulpcore.models.method_enum import MethodEnum
|
|
25
25
|
from typing import Optional, Set
|
|
26
26
|
from typing_extensions import Self
|
|
27
27
|
|
|
@@ -21,7 +21,7 @@ import json
|
|
|
21
21
|
from datetime import datetime
|
|
22
22
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
23
23
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
24
|
-
from
|
|
24
|
+
from pulpcore.client.pulpcore.models.method_enum import MethodEnum
|
|
25
25
|
from typing import Optional, Set
|
|
26
26
|
from typing_extensions import Self
|
|
27
27
|
|