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,12 +20,12 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictBytes, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Tuple, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.artifact_response import ArtifactResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_artifact_response_list import PaginatedArtifactResponseList
|
|
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 ArtifactsApi:
|
|
@@ -20,11 +20,11 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.paginated_multiple_artifact_content_response_list import PaginatedMultipleArtifactContentResponseList
|
|
24
24
|
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
25
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
27
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class ContentApi:
|
|
@@ -20,17 +20,17 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictBytes, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import Dict, List, Optional, Tuple, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
|
|
31
|
-
from
|
|
32
|
-
from
|
|
33
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.open_pgp_public_key_response import OpenPGPPublicKeyResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_public_key_response_list import PaginatedOpenPGPPublicKeyResponseList
|
|
26
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
27
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
28
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
29
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
30
|
+
|
|
31
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
32
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
33
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
class ContentOpenpgpPublickeyApi:
|
|
@@ -20,16 +20,16 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.open_pgp_public_subkey_response import OpenPGPPublicSubkeyResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_public_subkey_response_list import PaginatedOpenPGPPublicSubkeyResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
26
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
28
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
29
|
+
|
|
30
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
31
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
32
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class ContentOpenpgpPublicsubkeyApi:
|
|
@@ -20,16 +20,16 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.open_pgp_signature_response import OpenPGPSignatureResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_signature_response_list import PaginatedOpenPGPSignatureResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
26
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
28
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
29
|
+
|
|
30
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
31
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
32
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class ContentOpenpgpSignatureApi:
|
|
@@ -20,16 +20,16 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.open_pgp_user_attribute_response import OpenPGPUserAttributeResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_user_attribute_response_list import PaginatedOpenPGPUserAttributeResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
26
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
28
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
29
|
+
|
|
30
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
31
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
32
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class ContentOpenpgpUserattributeApi:
|
|
@@ -20,16 +20,16 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictFloat, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional, Union
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.open_pgp_user_id_response import OpenPGPUserIDResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_user_id_response_list import PaginatedOpenPGPUserIDResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
26
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
28
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
29
|
+
|
|
30
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
31
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
32
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class ContentOpenpgpUseridApi:
|
|
@@ -20,11 +20,11 @@ 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
|
|
23
|
+
from pulpcore.client.pulpcore.models.paginated_content_guard_response_list import PaginatedContentGuardResponseList
|
|
24
24
|
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
25
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
27
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class ContentguardsApi:
|
|
@@ -20,18 +20,18 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
|
|
32
|
-
from
|
|
33
|
-
from
|
|
34
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.composite_content_guard import CompositeContentGuard
|
|
24
|
+
from pulpcore.client.pulpcore.models.composite_content_guard_response import CompositeContentGuardResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
27
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
28
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
29
|
+
from pulpcore.client.pulpcore.models.paginated_composite_content_guard_response_list import PaginatedCompositeContentGuardResponseList
|
|
30
|
+
from pulpcore.client.pulpcore.models.patched_composite_content_guard import PatchedCompositeContentGuard
|
|
31
|
+
|
|
32
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
34
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class ContentguardsCompositeApi:
|
|
@@ -20,18 +20,18 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
|
|
32
|
-
from
|
|
33
|
-
from
|
|
34
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.content_redirect_content_guard import ContentRedirectContentGuard
|
|
24
|
+
from pulpcore.client.pulpcore.models.content_redirect_content_guard_response import ContentRedirectContentGuardResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
27
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
28
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
29
|
+
from pulpcore.client.pulpcore.models.paginated_content_redirect_content_guard_response_list import PaginatedContentRedirectContentGuardResponseList
|
|
30
|
+
from pulpcore.client.pulpcore.models.patched_content_redirect_content_guard import PatchedContentRedirectContentGuard
|
|
31
|
+
|
|
32
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
34
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class ContentguardsContentRedirectApi:
|
|
@@ -20,18 +20,18 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
|
|
32
|
-
from
|
|
33
|
-
from
|
|
34
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.header_content_guard import HeaderContentGuard
|
|
24
|
+
from pulpcore.client.pulpcore.models.header_content_guard_response import HeaderContentGuardResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
27
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
28
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
29
|
+
from pulpcore.client.pulpcore.models.paginated_header_content_guard_response_list import PaginatedHeaderContentGuardResponseList
|
|
30
|
+
from pulpcore.client.pulpcore.models.patched_header_content_guard import PatchedHeaderContentGuard
|
|
31
|
+
|
|
32
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
34
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class ContentguardsHeaderApi:
|
|
@@ -20,18 +20,18 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
|
|
32
|
-
from
|
|
33
|
-
from
|
|
34
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
25
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.paginated_rbac_content_guard_response_list import PaginatedRBACContentGuardResponseList
|
|
28
|
+
from pulpcore.client.pulpcore.models.patched_rbac_content_guard import PatchedRBACContentGuard
|
|
29
|
+
from pulpcore.client.pulpcore.models.rbac_content_guard import RBACContentGuard
|
|
30
|
+
from pulpcore.client.pulpcore.models.rbac_content_guard_response import RBACContentGuardResponse
|
|
31
|
+
|
|
32
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
34
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class ContentguardsRbacApi:
|
|
@@ -20,11 +20,11 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.paginated_distribution_response_list import PaginatedDistributionResponseList
|
|
24
24
|
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
from
|
|
25
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
27
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class DistributionsApi:
|
|
@@ -20,12 +20,12 @@ from typing_extensions import Annotated
|
|
|
20
20
|
from pydantic import Field, StrictBool, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from
|
|
24
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.artifact_distribution_response import ArtifactDistributionResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_artifact_distribution_response_list import PaginatedArtifactDistributionResponseList
|
|
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 DistributionsArtifactsApi:
|
|
@@ -20,19 +20,19 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
|
|
33
|
-
from
|
|
34
|
-
from
|
|
35
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.open_pgp_distribution import OpenPGPDistribution
|
|
25
|
+
from pulpcore.client.pulpcore.models.open_pgp_distribution_response import OpenPGPDistributionResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.paginated_open_pgp_distribution_response_list import PaginatedOpenPGPDistributionResponseList
|
|
27
|
+
from pulpcore.client.pulpcore.models.patched_open_pgp_distribution import PatchedOpenPGPDistribution
|
|
28
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
29
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
30
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
31
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
32
|
+
|
|
33
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
34
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
35
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
class DistributionsOpenpgpApi:
|
|
@@ -20,20 +20,20 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
from
|
|
32
|
-
from
|
|
33
|
-
|
|
34
|
-
from
|
|
35
|
-
from
|
|
36
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.domain import Domain
|
|
25
|
+
from pulpcore.client.pulpcore.models.domain_backend_migrator import DomainBackendMigrator
|
|
26
|
+
from pulpcore.client.pulpcore.models.domain_response import DomainResponse
|
|
27
|
+
from pulpcore.client.pulpcore.models.paginated_domain_response_list import PaginatedDomainResponseList
|
|
28
|
+
from pulpcore.client.pulpcore.models.patched_domain import PatchedDomain
|
|
29
|
+
from pulpcore.client.pulpcore.models.set_label import SetLabel
|
|
30
|
+
from pulpcore.client.pulpcore.models.set_label_response import SetLabelResponse
|
|
31
|
+
from pulpcore.client.pulpcore.models.unset_label import UnsetLabel
|
|
32
|
+
from pulpcore.client.pulpcore.models.unset_label_response import UnsetLabelResponse
|
|
33
|
+
|
|
34
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
35
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
36
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
class DomainsApi:
|
|
@@ -20,15 +20,15 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.filesystem_exporter import FilesystemExporter
|
|
25
|
+
from pulpcore.client.pulpcore.models.filesystem_exporter_response import FilesystemExporterResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.paginated_filesystem_exporter_response_list import PaginatedFilesystemExporterResponseList
|
|
27
|
+
from pulpcore.client.pulpcore.models.patched_filesystem_exporter import PatchedFilesystemExporter
|
|
28
|
+
|
|
29
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
30
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
31
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
class ExportersFilesystemApi:
|
|
@@ -20,14 +20,14 @@ 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
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.filesystem_export import FilesystemExport
|
|
25
|
+
from pulpcore.client.pulpcore.models.filesystem_export_response import FilesystemExportResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.paginated_filesystem_export_response_list import PaginatedFilesystemExportResponseList
|
|
27
|
+
|
|
28
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
29
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
30
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class ExportersFilesystemExportsApi:
|
|
@@ -20,15 +20,15 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_pulp_exporter_response_list import PaginatedPulpExporterResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.patched_pulp_exporter import PatchedPulpExporter
|
|
26
|
+
from pulpcore.client.pulpcore.models.pulp_exporter import PulpExporter
|
|
27
|
+
from pulpcore.client.pulpcore.models.pulp_exporter_response import PulpExporterResponse
|
|
28
|
+
|
|
29
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
30
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
31
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
class ExportersPulpApi:
|
|
@@ -20,14 +20,14 @@ 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
|
|
25
|
-
from
|
|
26
|
-
from
|
|
27
|
-
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.async_operation_response import AsyncOperationResponse
|
|
24
|
+
from pulpcore.client.pulpcore.models.paginated_pulp_export_response_list import PaginatedPulpExportResponseList
|
|
25
|
+
from pulpcore.client.pulpcore.models.pulp_export import PulpExport
|
|
26
|
+
from pulpcore.client.pulpcore.models.pulp_export_response import PulpExportResponse
|
|
27
|
+
|
|
28
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
29
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
30
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class ExportersPulpExportsApi:
|
|
@@ -20,18 +20,18 @@ 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
|
|
26
|
-
from
|
|
27
|
-
from
|
|
28
|
-
from
|
|
29
|
-
from
|
|
30
|
-
from
|
|
31
|
-
|
|
32
|
-
from
|
|
33
|
-
from
|
|
34
|
-
from
|
|
23
|
+
from pulpcore.client.pulpcore.models.group import Group
|
|
24
|
+
from pulpcore.client.pulpcore.models.group_response import GroupResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.my_permissions_response import MyPermissionsResponse
|
|
26
|
+
from pulpcore.client.pulpcore.models.nested_role import NestedRole
|
|
27
|
+
from pulpcore.client.pulpcore.models.nested_role_response import NestedRoleResponse
|
|
28
|
+
from pulpcore.client.pulpcore.models.object_roles_response import ObjectRolesResponse
|
|
29
|
+
from pulpcore.client.pulpcore.models.paginated_group_response_list import PaginatedGroupResponseList
|
|
30
|
+
from pulpcore.client.pulpcore.models.patched_group import PatchedGroup
|
|
31
|
+
|
|
32
|
+
from pulpcore.client.pulpcore.api_client import ApiClient, RequestSerialized
|
|
33
|
+
from pulpcore.client.pulpcore.api_response import ApiResponse
|
|
34
|
+
from pulpcore.client.pulpcore.rest import RESTResponseType
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
class GroupsApi:
|
|
@@ -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.group_role import GroupRole
|
|
24
|
+
from pulpcore.client.pulpcore.models.group_role_response import GroupRoleResponse
|
|
25
|
+
from pulpcore.client.pulpcore.models.paginated_group_role_response_list import PaginatedGroupRoleResponseList
|
|
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 GroupsRolesApi:
|