immich 1.2.1__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.
- immich/.openapi-generator/FILES +372 -0
- immich/.openapi-generator/VERSION +1 -0
- immich/.openapi-generator-ignore +48 -0
- immich/__init__.py +3 -0
- immich/client/__init__.py +1162 -0
- immich/client/api/__init__.py +39 -0
- immich/client/api/activities_api.py +1092 -0
- immich/client/api/albums_api.py +3228 -0
- immich/client/api/api_keys_api.py +1484 -0
- immich/client/api/assets_api.py +5834 -0
- immich/client/api/authentication_admin_api.py +254 -0
- immich/client/api/authentication_api.py +3881 -0
- immich/client/api/deprecated_api.py +2199 -0
- immich/client/api/download_api.py +603 -0
- immich/client/api/duplicates_api.py +743 -0
- immich/client/api/faces_api.py +1053 -0
- immich/client/api/jobs_api.py +783 -0
- immich/client/api/libraries_api.py +2004 -0
- immich/client/api/maintenance_admin_api.py +533 -0
- immich/client/api/map_api.py +640 -0
- immich/client/api/memories_api.py +2250 -0
- immich/client/api/notifications_admin_api.py +808 -0
- immich/client/api/notifications_api.py +1564 -0
- immich/client/api/partners_api.py +1278 -0
- immich/client/api/people_api.py +2905 -0
- immich/client/api/plugins_api.py +730 -0
- immich/client/api/queues_api.py +1292 -0
- immich/client/api/search_api.py +3198 -0
- immich/client/api/server_api.py +3466 -0
- immich/client/api/sessions_api.py +1472 -0
- immich/client/api/shared_links_api.py +2177 -0
- immich/client/api/stacks_api.py +1769 -0
- immich/client/api/sync_api.py +1512 -0
- immich/client/api/system_config_api.py +967 -0
- immich/client/api/system_metadata_api.py +964 -0
- immich/client/api/tags_api.py +2296 -0
- immich/client/api/timeline_api.py +1193 -0
- immich/client/api/trash_api.py +739 -0
- immich/client/api/users_admin_api.py +2607 -0
- immich/client/api/users_api.py +3577 -0
- immich/client/api/views_api.py +503 -0
- immich/client/api/workflows_api.py +1257 -0
- immich/client/api_client.py +756 -0
- immich/client/api_response.py +20 -0
- immich/client/configuration.py +638 -0
- immich/client/exceptions.py +222 -0
- immich/client/models/__init__.py +424 -0
- immich/client/models/activity_create_dto.py +94 -0
- immich/client/models/activity_response_dto.py +121 -0
- immich/client/models/activity_statistics_response_dto.py +85 -0
- immich/client/models/add_users_dto.py +101 -0
- immich/client/models/admin_onboarding_update_dto.py +82 -0
- immich/client/models/album_response_dto.py +199 -0
- immich/client/models/album_statistics_response_dto.py +90 -0
- immich/client/models/album_user_add_dto.py +87 -0
- immich/client/models/album_user_create_dto.py +87 -0
- immich/client/models/album_user_response_dto.py +95 -0
- immich/client/models/album_user_role.py +34 -0
- immich/client/models/albums_add_assets_dto.py +86 -0
- immich/client/models/albums_add_assets_response_dto.py +86 -0
- immich/client/models/albums_response.py +83 -0
- immich/client/models/albums_update.py +85 -0
- immich/client/models/api_key_create_dto.py +87 -0
- immich/client/models/api_key_create_response_dto.py +94 -0
- immich/client/models/api_key_response_dto.py +102 -0
- immich/client/models/api_key_update_dto.py +87 -0
- immich/client/models/asset_bulk_delete_dto.py +84 -0
- immich/client/models/asset_bulk_update_dto.py +143 -0
- immich/client/models/asset_bulk_upload_check_dto.py +98 -0
- immich/client/models/asset_bulk_upload_check_item.py +85 -0
- immich/client/models/asset_bulk_upload_check_response_dto.py +101 -0
- immich/client/models/asset_bulk_upload_check_result.py +126 -0
- immich/client/models/asset_copy_dto.py +113 -0
- immich/client/models/asset_delta_sync_dto.py +87 -0
- immich/client/models/asset_delta_sync_response_dto.py +102 -0
- immich/client/models/asset_face_create_dto.py +110 -0
- immich/client/models/asset_face_delete_dto.py +82 -0
- immich/client/models/asset_face_response_dto.py +125 -0
- immich/client/models/asset_face_update_dto.py +96 -0
- immich/client/models/asset_face_update_item.py +86 -0
- immich/client/models/asset_face_without_person_response_dto.py +111 -0
- immich/client/models/asset_full_sync_dto.py +95 -0
- immich/client/models/asset_ids_dto.py +83 -0
- immich/client/models/asset_ids_response_dto.py +109 -0
- immich/client/models/asset_job_name.py +36 -0
- immich/client/models/asset_jobs_dto.py +87 -0
- immich/client/models/asset_media_response_dto.py +84 -0
- immich/client/models/asset_media_size.py +35 -0
- immich/client/models/asset_media_status.py +35 -0
- immich/client/models/asset_metadata_key.py +33 -0
- immich/client/models/asset_metadata_response_dto.py +92 -0
- immich/client/models/asset_metadata_upsert_dto.py +101 -0
- immich/client/models/asset_metadata_upsert_item_dto.py +84 -0
- immich/client/models/asset_ocr_response_dto.py +145 -0
- immich/client/models/asset_order.py +34 -0
- immich/client/models/asset_response_dto.py +291 -0
- immich/client/models/asset_stack_response_dto.py +90 -0
- immich/client/models/asset_stats_response_dto.py +90 -0
- immich/client/models/asset_type_enum.py +36 -0
- immich/client/models/asset_visibility.py +36 -0
- immich/client/models/audio_codec.py +36 -0
- immich/client/models/auth_status_response_dto.py +100 -0
- immich/client/models/avatar_update.py +83 -0
- immich/client/models/bulk_id_error_reason.py +36 -0
- immich/client/models/bulk_id_response_dto.py +102 -0
- immich/client/models/bulk_ids_dto.py +83 -0
- immich/client/models/cast_response.py +88 -0
- immich/client/models/cast_update.py +82 -0
- immich/client/models/change_password_dto.py +101 -0
- immich/client/models/check_existing_assets_dto.py +91 -0
- immich/client/models/check_existing_assets_response_dto.py +82 -0
- immich/client/models/clip_config.py +85 -0
- immich/client/models/colorspace.py +34 -0
- immich/client/models/contributor_count_response_dto.py +85 -0
- immich/client/models/cq_mode.py +35 -0
- immich/client/models/create_album_dto.py +112 -0
- immich/client/models/create_library_dto.py +103 -0
- immich/client/models/create_profile_image_response_dto.py +95 -0
- immich/client/models/database_backup_config.py +94 -0
- immich/client/models/download_archive_info.py +85 -0
- immich/client/models/download_info_dto.py +96 -0
- immich/client/models/download_response.py +90 -0
- immich/client/models/download_response_dto.py +100 -0
- immich/client/models/download_update.py +93 -0
- immich/client/models/duplicate_detection_config.py +89 -0
- immich/client/models/duplicate_response_dto.py +98 -0
- immich/client/models/email_notifications_response.py +90 -0
- immich/client/models/email_notifications_update.py +90 -0
- immich/client/models/exif_response_dto.py +284 -0
- immich/client/models/face_dto.py +83 -0
- immich/client/models/facial_recognition_config.py +107 -0
- immich/client/models/folders_response.py +92 -0
- immich/client/models/folders_update.py +85 -0
- immich/client/models/image_format.py +34 -0
- immich/client/models/job_create_dto.py +83 -0
- immich/client/models/job_name.py +87 -0
- immich/client/models/job_settings_dto.py +83 -0
- immich/client/models/library_response_dto.py +118 -0
- immich/client/models/library_stats_response_dto.py +92 -0
- immich/client/models/license_key_dto.py +98 -0
- immich/client/models/license_response_dto.py +101 -0
- immich/client/models/log_level.py +38 -0
- immich/client/models/login_credential_dto.py +85 -0
- immich/client/models/login_response_dto.py +109 -0
- immich/client/models/logout_response_dto.py +85 -0
- immich/client/models/machine_learning_availability_checks_dto.py +90 -0
- immich/client/models/maintenance_action.py +34 -0
- immich/client/models/maintenance_auth_dto.py +82 -0
- immich/client/models/maintenance_login_dto.py +82 -0
- immich/client/models/manual_job_name.py +38 -0
- immich/client/models/map_marker_response_dto.py +111 -0
- immich/client/models/map_reverse_geocode_response_dto.py +105 -0
- immich/client/models/memories_response.py +92 -0
- immich/client/models/memories_update.py +86 -0
- immich/client/models/memory_create_dto.py +112 -0
- immich/client/models/memory_response_dto.py +142 -0
- immich/client/models/memory_search_order.py +35 -0
- immich/client/models/memory_statistics_response_dto.py +82 -0
- immich/client/models/memory_type.py +33 -0
- immich/client/models/memory_update_dto.py +91 -0
- immich/client/models/merge_person_dto.py +83 -0
- immich/client/models/metadata_search_dto.py +277 -0
- immich/client/models/notification_create_dto.py +120 -0
- immich/client/models/notification_delete_all_dto.py +83 -0
- immich/client/models/notification_dto.py +112 -0
- immich/client/models/notification_level.py +36 -0
- immich/client/models/notification_type.py +38 -0
- immich/client/models/notification_update_all_dto.py +90 -0
- immich/client/models/notification_update_dto.py +88 -0
- immich/client/models/o_auth_authorize_response_dto.py +82 -0
- immich/client/models/o_auth_callback_dto.py +90 -0
- immich/client/models/o_auth_config_dto.py +90 -0
- immich/client/models/o_auth_token_endpoint_auth_method.py +34 -0
- immich/client/models/ocr_config.py +109 -0
- immich/client/models/on_this_day_dto.py +86 -0
- immich/client/models/onboarding_dto.py +82 -0
- immich/client/models/onboarding_response_dto.py +82 -0
- immich/client/models/partner_create_dto.py +83 -0
- immich/client/models/partner_direction.py +34 -0
- immich/client/models/partner_response_dto.py +108 -0
- immich/client/models/partner_update_dto.py +82 -0
- immich/client/models/people_response.py +92 -0
- immich/client/models/people_response_dto.py +104 -0
- immich/client/models/people_update.py +85 -0
- immich/client/models/people_update_dto.py +96 -0
- immich/client/models/people_update_item.py +128 -0
- immich/client/models/permission.py +177 -0
- immich/client/models/person_create_dto.py +117 -0
- immich/client/models/person_response_dto.py +115 -0
- immich/client/models/person_statistics_response_dto.py +82 -0
- immich/client/models/person_update_dto.py +125 -0
- immich/client/models/person_with_faces_response_dto.py +133 -0
- immich/client/models/pin_code_change_dto.py +90 -0
- immich/client/models/pin_code_reset_dto.py +85 -0
- immich/client/models/pin_code_setup_dto.py +82 -0
- immich/client/models/places_response_dto.py +100 -0
- immich/client/models/plugin_action_response_dto.py +112 -0
- immich/client/models/plugin_context_type.py +35 -0
- immich/client/models/plugin_filter_response_dto.py +112 -0
- immich/client/models/plugin_response_dto.py +139 -0
- immich/client/models/plugin_trigger_response_dto.py +87 -0
- immich/client/models/plugin_trigger_type.py +34 -0
- immich/client/models/purchase_response.py +88 -0
- immich/client/models/purchase_update.py +92 -0
- immich/client/models/queue_command.py +37 -0
- immich/client/models/queue_command_dto.py +86 -0
- immich/client/models/queue_delete_dto.py +85 -0
- immich/client/models/queue_job_response_dto.py +93 -0
- immich/client/models/queue_job_status.py +38 -0
- immich/client/models/queue_name.py +49 -0
- immich/client/models/queue_response_dto.py +97 -0
- immich/client/models/queue_response_legacy_dto.py +100 -0
- immich/client/models/queue_statistics_dto.py +103 -0
- immich/client/models/queue_status_legacy_dto.py +85 -0
- immich/client/models/queue_update_dto.py +82 -0
- immich/client/models/queues_response_legacy_dto.py +242 -0
- immich/client/models/random_search_dto.py +234 -0
- immich/client/models/ratings_response.py +84 -0
- immich/client/models/ratings_update.py +82 -0
- immich/client/models/reaction_level.py +34 -0
- immich/client/models/reaction_type.py +34 -0
- immich/client/models/reverse_geocoding_state_response_dto.py +101 -0
- immich/client/models/search_album_response_dto.py +114 -0
- immich/client/models/search_asset_response_dto.py +127 -0
- immich/client/models/search_explore_item.py +94 -0
- immich/client/models/search_explore_response_dto.py +98 -0
- immich/client/models/search_facet_count_response_dto.py +85 -0
- immich/client/models/search_facet_response_dto.py +103 -0
- immich/client/models/search_response_dto.py +100 -0
- immich/client/models/search_statistics_response_dto.py +82 -0
- immich/client/models/search_suggestion_type.py +38 -0
- immich/client/models/server_about_response_dto.py +156 -0
- immich/client/models/server_apk_links_dto.py +97 -0
- immich/client/models/server_config_dto.py +118 -0
- immich/client/models/server_features_dto.py +130 -0
- immich/client/models/server_media_types_response_dto.py +90 -0
- immich/client/models/server_ping_response.py +87 -0
- immich/client/models/server_stats_response_dto.py +119 -0
- immich/client/models/server_storage_response_dto.py +108 -0
- immich/client/models/server_theme_dto.py +82 -0
- immich/client/models/server_version_history_response_dto.py +91 -0
- immich/client/models/server_version_response_dto.py +90 -0
- immich/client/models/session_create_dto.py +96 -0
- immich/client/models/session_create_response_dto.py +120 -0
- immich/client/models/session_response_dto.py +117 -0
- immich/client/models/session_unlock_dto.py +85 -0
- immich/client/models/session_update_dto.py +84 -0
- immich/client/models/set_maintenance_mode_dto.py +83 -0
- immich/client/models/shared_link_create_dto.py +142 -0
- immich/client/models/shared_link_edit_dto.py +134 -0
- immich/client/models/shared_link_response_dto.py +173 -0
- immich/client/models/shared_link_type.py +34 -0
- immich/client/models/shared_links_response.py +92 -0
- immich/client/models/shared_links_update.py +85 -0
- immich/client/models/sign_up_dto.py +90 -0
- immich/client/models/smart_search_dto.py +245 -0
- immich/client/models/source_type.py +35 -0
- immich/client/models/stack_create_dto.py +86 -0
- immich/client/models/stack_response_dto.py +100 -0
- immich/client/models/stack_update_dto.py +83 -0
- immich/client/models/statistics_search_dto.py +217 -0
- immich/client/models/sync_ack_delete_dto.py +83 -0
- immich/client/models/sync_ack_dto.py +84 -0
- immich/client/models/sync_ack_set_dto.py +83 -0
- immich/client/models/sync_album_delete_v1.py +82 -0
- immich/client/models/sync_album_to_asset_delete_v1.py +85 -0
- immich/client/models/sync_album_to_asset_v1.py +85 -0
- immich/client/models/sync_album_user_delete_v1.py +85 -0
- immich/client/models/sync_album_user_v1.py +91 -0
- immich/client/models/sync_album_v1.py +122 -0
- immich/client/models/sync_asset_delete_v1.py +82 -0
- immich/client/models/sync_asset_exif_v1.py +296 -0
- immich/client/models/sync_asset_face_delete_v1.py +82 -0
- immich/client/models/sync_asset_face_v1.py +120 -0
- immich/client/models/sync_asset_metadata_delete_v1.py +86 -0
- immich/client/models/sync_asset_metadata_v1.py +91 -0
- immich/client/models/sync_asset_v1.py +187 -0
- immich/client/models/sync_auth_user_v1.py +154 -0
- immich/client/models/sync_entity_type.py +79 -0
- immich/client/models/sync_memory_asset_delete_v1.py +85 -0
- immich/client/models/sync_memory_asset_v1.py +85 -0
- immich/client/models/sync_memory_delete_v1.py +82 -0
- immich/client/models/sync_memory_v1.py +143 -0
- immich/client/models/sync_partner_delete_v1.py +88 -0
- immich/client/models/sync_partner_v1.py +90 -0
- immich/client/models/sync_person_delete_v1.py +82 -0
- immich/client/models/sync_person_v1.py +131 -0
- immich/client/models/sync_request_type.py +52 -0
- immich/client/models/sync_stack_delete_v1.py +82 -0
- immich/client/models/sync_stack_v1.py +101 -0
- immich/client/models/sync_stream_dto.py +86 -0
- immich/client/models/sync_user_delete_v1.py +82 -0
- immich/client/models/sync_user_metadata_delete_v1.py +84 -0
- immich/client/models/sync_user_metadata_v1.py +91 -0
- immich/client/models/sync_user_v1.py +118 -0
- immich/client/models/system_config_backups_dto.py +92 -0
- immich/client/models/system_config_dto.py +302 -0
- immich/client/models/system_config_f_fmpeg_dto.py +156 -0
- immich/client/models/system_config_faces_dto.py +82 -0
- immich/client/models/system_config_generated_fullsize_image_dto.py +92 -0
- immich/client/models/system_config_generated_image_dto.py +92 -0
- immich/client/models/system_config_image_dto.py +124 -0
- immich/client/models/system_config_job_dto.py +194 -0
- immich/client/models/system_config_library_dto.py +104 -0
- immich/client/models/system_config_library_scan_dto.py +85 -0
- immich/client/models/system_config_library_watch_dto.py +82 -0
- immich/client/models/system_config_logging_dto.py +86 -0
- immich/client/models/system_config_machine_learning_dto.py +147 -0
- immich/client/models/system_config_map_dto.py +90 -0
- immich/client/models/system_config_metadata_dto.py +92 -0
- immich/client/models/system_config_new_version_check_dto.py +82 -0
- immich/client/models/system_config_nightly_tasks_dto.py +103 -0
- immich/client/models/system_config_notifications_dto.py +92 -0
- immich/client/models/system_config_o_auth_dto.py +155 -0
- immich/client/models/system_config_password_login_dto.py +82 -0
- immich/client/models/system_config_reverse_geocoding_dto.py +82 -0
- immich/client/models/system_config_server_dto.py +94 -0
- immich/client/models/system_config_smtp_dto.py +100 -0
- immich/client/models/system_config_smtp_transport_dto.py +107 -0
- immich/client/models/system_config_storage_template_dto.py +94 -0
- immich/client/models/system_config_template_emails_dto.py +94 -0
- immich/client/models/system_config_template_storage_option_dto.py +109 -0
- immich/client/models/system_config_templates_dto.py +94 -0
- immich/client/models/system_config_theme_dto.py +82 -0
- immich/client/models/system_config_trash_dto.py +86 -0
- immich/client/models/system_config_user_dto.py +83 -0
- immich/client/models/tag_bulk_assets_dto.py +86 -0
- immich/client/models/tag_bulk_assets_response_dto.py +82 -0
- immich/client/models/tag_create_dto.py +111 -0
- immich/client/models/tag_response_dto.py +107 -0
- immich/client/models/tag_update_dto.py +87 -0
- immich/client/models/tag_upsert_dto.py +82 -0
- immich/client/models/tags_response.py +92 -0
- immich/client/models/tags_update.py +85 -0
- immich/client/models/template_dto.py +82 -0
- immich/client/models/template_response_dto.py +83 -0
- immich/client/models/test_email_response_dto.py +82 -0
- immich/client/models/time_bucket_asset_response_dto.py +195 -0
- immich/client/models/time_buckets_response_dto.py +88 -0
- immich/client/models/tone_mapping.py +36 -0
- immich/client/models/transcode_hw_accel.py +37 -0
- immich/client/models/transcode_policy.py +37 -0
- immich/client/models/trash_response_dto.py +82 -0
- immich/client/models/update_album_dto.py +106 -0
- immich/client/models/update_album_user_dto.py +83 -0
- immich/client/models/update_asset_dto.py +135 -0
- immich/client/models/update_library_dto.py +95 -0
- immich/client/models/usage_by_user_dto.py +117 -0
- immich/client/models/user_admin_create_dto.py +136 -0
- immich/client/models/user_admin_delete_dto.py +82 -0
- immich/client/models/user_admin_response_dto.py +176 -0
- immich/client/models/user_admin_update_dto.py +141 -0
- immich/client/models/user_avatar_color.py +42 -0
- immich/client/models/user_license.py +91 -0
- immich/client/models/user_metadata_key.py +35 -0
- immich/client/models/user_preferences_response_dto.py +186 -0
- immich/client/models/user_preferences_update_dto.py +197 -0
- immich/client/models/user_response_dto.py +105 -0
- immich/client/models/user_status.py +35 -0
- immich/client/models/user_update_me_dto.py +98 -0
- immich/client/models/validate_access_token_response_dto.py +82 -0
- immich/client/models/validate_library_dto.py +93 -0
- immich/client/models/validate_library_import_path_response_dto.py +92 -0
- immich/client/models/validate_library_response_dto.py +103 -0
- immich/client/models/version_check_state_response_dto.py +98 -0
- immich/client/models/video_codec.py +36 -0
- immich/client/models/video_container.py +36 -0
- immich/client/models/workflow_action_item_dto.py +89 -0
- immich/client/models/workflow_action_response_dto.py +105 -0
- immich/client/models/workflow_create_dto.py +128 -0
- immich/client/models/workflow_filter_item_dto.py +89 -0
- immich/client/models/workflow_filter_response_dto.py +105 -0
- immich/client/models/workflow_response_dto.py +144 -0
- immich/client/models/workflow_update_dto.py +128 -0
- immich/client/py.typed +0 -0
- immich/client/rest.py +199 -0
- immich/client_wrapper/__init__.py +15 -0
- immich/client_wrapper/assets_api_wrapped.py +87 -0
- immich/client_wrapper/download_api_wrapped.py +111 -0
- immich/client_wrapper/users_api_wrapped.py +41 -0
- immich/py.typed +0 -0
- immich/sdk.py +365 -0
- immich/utils.py +100 -0
- immich-1.2.1.dist-info/METADATA +166 -0
- immich-1.2.1.dist-info/RECORD +387 -0
- immich-1.2.1.dist-info/WHEEL +4 -0
- immich-1.2.1.dist-info/licenses/LICENSE +9 -0
|
@@ -0,0 +1,743 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Immich
|
|
5
|
+
|
|
6
|
+
Immich API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.4.1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
15
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
16
|
+
from typing_extensions import Annotated
|
|
17
|
+
|
|
18
|
+
from uuid import UUID
|
|
19
|
+
from immich.client.models.bulk_ids_dto import BulkIdsDto
|
|
20
|
+
from immich.client.models.duplicate_response_dto import DuplicateResponseDto
|
|
21
|
+
|
|
22
|
+
from immich.client.api_client import ApiClient, RequestSerialized
|
|
23
|
+
from immich.client.api_response import ApiResponse
|
|
24
|
+
from immich.client.rest import RESTResponseType
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class DuplicatesApi:
|
|
28
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
29
|
+
Ref: https://openapi-generator.tech
|
|
30
|
+
|
|
31
|
+
Do not edit the class manually.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
def __init__(self, api_client=None) -> None:
|
|
35
|
+
if api_client is None:
|
|
36
|
+
api_client = ApiClient.get_default()
|
|
37
|
+
self.api_client = api_client
|
|
38
|
+
|
|
39
|
+
@validate_call
|
|
40
|
+
async def delete_duplicate(
|
|
41
|
+
self,
|
|
42
|
+
id: UUID,
|
|
43
|
+
_request_timeout: Union[
|
|
44
|
+
None,
|
|
45
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
46
|
+
Tuple[
|
|
47
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
48
|
+
],
|
|
49
|
+
] = None,
|
|
50
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
51
|
+
_content_type: Optional[StrictStr] = None,
|
|
52
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
53
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
54
|
+
) -> None:
|
|
55
|
+
"""Delete a duplicate
|
|
56
|
+
|
|
57
|
+
Delete a single duplicate asset specified by its ID.
|
|
58
|
+
|
|
59
|
+
:param id: (required)
|
|
60
|
+
:type id: UUID
|
|
61
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
62
|
+
number provided, it will be total request
|
|
63
|
+
timeout. It can also be a pair (tuple) of
|
|
64
|
+
(connection, read) timeouts.
|
|
65
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
66
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
67
|
+
request; this effectively ignores the
|
|
68
|
+
authentication in the spec for a single request.
|
|
69
|
+
:type _request_auth: dict, optional
|
|
70
|
+
:param _content_type: force content-type for the request.
|
|
71
|
+
:type _content_type: str, Optional
|
|
72
|
+
:param _headers: set to override the headers for a single
|
|
73
|
+
request; this effectively ignores the headers
|
|
74
|
+
in the spec for a single request.
|
|
75
|
+
:type _headers: dict, optional
|
|
76
|
+
:param _host_index: set to override the host_index for a single
|
|
77
|
+
request; this effectively ignores the host_index
|
|
78
|
+
in the spec for a single request.
|
|
79
|
+
:type _host_index: int, optional
|
|
80
|
+
:return: Returns the result object.
|
|
81
|
+
""" # noqa: E501
|
|
82
|
+
|
|
83
|
+
_param = self._delete_duplicate_serialize(
|
|
84
|
+
id=id,
|
|
85
|
+
_request_auth=_request_auth,
|
|
86
|
+
_content_type=_content_type,
|
|
87
|
+
_headers=_headers,
|
|
88
|
+
_host_index=_host_index,
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
92
|
+
"204": None,
|
|
93
|
+
}
|
|
94
|
+
response_data = await self.api_client.call_api(
|
|
95
|
+
*_param, _request_timeout=_request_timeout
|
|
96
|
+
)
|
|
97
|
+
await response_data.read()
|
|
98
|
+
return self.api_client.response_deserialize(
|
|
99
|
+
response_data=response_data,
|
|
100
|
+
response_types_map=_response_types_map,
|
|
101
|
+
).data
|
|
102
|
+
|
|
103
|
+
@validate_call
|
|
104
|
+
async def delete_duplicate_with_http_info(
|
|
105
|
+
self,
|
|
106
|
+
id: UUID,
|
|
107
|
+
_request_timeout: Union[
|
|
108
|
+
None,
|
|
109
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
110
|
+
Tuple[
|
|
111
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
112
|
+
],
|
|
113
|
+
] = None,
|
|
114
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
115
|
+
_content_type: Optional[StrictStr] = None,
|
|
116
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
117
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
118
|
+
) -> ApiResponse[None]:
|
|
119
|
+
"""Delete a duplicate
|
|
120
|
+
|
|
121
|
+
Delete a single duplicate asset specified by its ID.
|
|
122
|
+
|
|
123
|
+
:param id: (required)
|
|
124
|
+
:type id: UUID
|
|
125
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
126
|
+
number provided, it will be total request
|
|
127
|
+
timeout. It can also be a pair (tuple) of
|
|
128
|
+
(connection, read) timeouts.
|
|
129
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
130
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
131
|
+
request; this effectively ignores the
|
|
132
|
+
authentication in the spec for a single request.
|
|
133
|
+
:type _request_auth: dict, optional
|
|
134
|
+
:param _content_type: force content-type for the request.
|
|
135
|
+
:type _content_type: str, Optional
|
|
136
|
+
:param _headers: set to override the headers for a single
|
|
137
|
+
request; this effectively ignores the headers
|
|
138
|
+
in the spec for a single request.
|
|
139
|
+
:type _headers: dict, optional
|
|
140
|
+
:param _host_index: set to override the host_index for a single
|
|
141
|
+
request; this effectively ignores the host_index
|
|
142
|
+
in the spec for a single request.
|
|
143
|
+
:type _host_index: int, optional
|
|
144
|
+
:return: Returns the result object.
|
|
145
|
+
""" # noqa: E501
|
|
146
|
+
|
|
147
|
+
_param = self._delete_duplicate_serialize(
|
|
148
|
+
id=id,
|
|
149
|
+
_request_auth=_request_auth,
|
|
150
|
+
_content_type=_content_type,
|
|
151
|
+
_headers=_headers,
|
|
152
|
+
_host_index=_host_index,
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
156
|
+
"204": None,
|
|
157
|
+
}
|
|
158
|
+
response_data = await self.api_client.call_api(
|
|
159
|
+
*_param, _request_timeout=_request_timeout
|
|
160
|
+
)
|
|
161
|
+
await response_data.read()
|
|
162
|
+
return self.api_client.response_deserialize(
|
|
163
|
+
response_data=response_data,
|
|
164
|
+
response_types_map=_response_types_map,
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
@validate_call
|
|
168
|
+
async def delete_duplicate_without_preload_content(
|
|
169
|
+
self,
|
|
170
|
+
id: UUID,
|
|
171
|
+
_request_timeout: Union[
|
|
172
|
+
None,
|
|
173
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
174
|
+
Tuple[
|
|
175
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
176
|
+
],
|
|
177
|
+
] = None,
|
|
178
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
179
|
+
_content_type: Optional[StrictStr] = None,
|
|
180
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
181
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
182
|
+
) -> RESTResponseType:
|
|
183
|
+
"""Delete a duplicate
|
|
184
|
+
|
|
185
|
+
Delete a single duplicate asset specified by its ID.
|
|
186
|
+
|
|
187
|
+
:param id: (required)
|
|
188
|
+
:type id: UUID
|
|
189
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
190
|
+
number provided, it will be total request
|
|
191
|
+
timeout. It can also be a pair (tuple) of
|
|
192
|
+
(connection, read) timeouts.
|
|
193
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
194
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
195
|
+
request; this effectively ignores the
|
|
196
|
+
authentication in the spec for a single request.
|
|
197
|
+
:type _request_auth: dict, optional
|
|
198
|
+
:param _content_type: force content-type for the request.
|
|
199
|
+
:type _content_type: str, Optional
|
|
200
|
+
:param _headers: set to override the headers for a single
|
|
201
|
+
request; this effectively ignores the headers
|
|
202
|
+
in the spec for a single request.
|
|
203
|
+
:type _headers: dict, optional
|
|
204
|
+
:param _host_index: set to override the host_index for a single
|
|
205
|
+
request; this effectively ignores the host_index
|
|
206
|
+
in the spec for a single request.
|
|
207
|
+
:type _host_index: int, optional
|
|
208
|
+
:return: Returns the result object.
|
|
209
|
+
""" # noqa: E501
|
|
210
|
+
|
|
211
|
+
_param = self._delete_duplicate_serialize(
|
|
212
|
+
id=id,
|
|
213
|
+
_request_auth=_request_auth,
|
|
214
|
+
_content_type=_content_type,
|
|
215
|
+
_headers=_headers,
|
|
216
|
+
_host_index=_host_index,
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
220
|
+
"204": None,
|
|
221
|
+
}
|
|
222
|
+
response_data = await self.api_client.call_api(
|
|
223
|
+
*_param, _request_timeout=_request_timeout
|
|
224
|
+
)
|
|
225
|
+
return response_data.response
|
|
226
|
+
|
|
227
|
+
def _delete_duplicate_serialize(
|
|
228
|
+
self,
|
|
229
|
+
id,
|
|
230
|
+
_request_auth,
|
|
231
|
+
_content_type,
|
|
232
|
+
_headers,
|
|
233
|
+
_host_index,
|
|
234
|
+
) -> RequestSerialized:
|
|
235
|
+
_host = None
|
|
236
|
+
|
|
237
|
+
_collection_formats: Dict[str, str] = {}
|
|
238
|
+
|
|
239
|
+
_path_params: Dict[str, str] = {}
|
|
240
|
+
_query_params: List[Tuple[str, str]] = []
|
|
241
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
242
|
+
_form_params: List[Tuple[str, str]] = []
|
|
243
|
+
_files: Dict[
|
|
244
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
245
|
+
] = {}
|
|
246
|
+
_body_params: Optional[bytes] = None
|
|
247
|
+
|
|
248
|
+
# process the path parameters
|
|
249
|
+
if id is not None:
|
|
250
|
+
_path_params["id"] = id
|
|
251
|
+
# process the query parameters
|
|
252
|
+
# process the header parameters
|
|
253
|
+
# process the form parameters
|
|
254
|
+
# process the body parameter
|
|
255
|
+
|
|
256
|
+
# authentication setting
|
|
257
|
+
_auth_settings: List[str] = ["cookie", "api_key", "bearer"]
|
|
258
|
+
|
|
259
|
+
return self.api_client.param_serialize(
|
|
260
|
+
method="DELETE",
|
|
261
|
+
resource_path="/duplicates/{id}",
|
|
262
|
+
path_params=_path_params,
|
|
263
|
+
query_params=_query_params,
|
|
264
|
+
header_params=_header_params,
|
|
265
|
+
body=_body_params,
|
|
266
|
+
post_params=_form_params,
|
|
267
|
+
files=_files,
|
|
268
|
+
auth_settings=_auth_settings,
|
|
269
|
+
collection_formats=_collection_formats,
|
|
270
|
+
_host=_host,
|
|
271
|
+
_request_auth=_request_auth,
|
|
272
|
+
)
|
|
273
|
+
|
|
274
|
+
@validate_call
|
|
275
|
+
async def delete_duplicates(
|
|
276
|
+
self,
|
|
277
|
+
bulk_ids_dto: BulkIdsDto,
|
|
278
|
+
_request_timeout: Union[
|
|
279
|
+
None,
|
|
280
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
281
|
+
Tuple[
|
|
282
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
283
|
+
],
|
|
284
|
+
] = None,
|
|
285
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
286
|
+
_content_type: Optional[StrictStr] = None,
|
|
287
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
288
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
289
|
+
) -> None:
|
|
290
|
+
"""Delete duplicates
|
|
291
|
+
|
|
292
|
+
Delete multiple duplicate assets specified by their IDs.
|
|
293
|
+
|
|
294
|
+
:param bulk_ids_dto: (required)
|
|
295
|
+
:type bulk_ids_dto: BulkIdsDto
|
|
296
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
297
|
+
number provided, it will be total request
|
|
298
|
+
timeout. It can also be a pair (tuple) of
|
|
299
|
+
(connection, read) timeouts.
|
|
300
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
301
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
302
|
+
request; this effectively ignores the
|
|
303
|
+
authentication in the spec for a single request.
|
|
304
|
+
:type _request_auth: dict, optional
|
|
305
|
+
:param _content_type: force content-type for the request.
|
|
306
|
+
:type _content_type: str, Optional
|
|
307
|
+
:param _headers: set to override the headers for a single
|
|
308
|
+
request; this effectively ignores the headers
|
|
309
|
+
in the spec for a single request.
|
|
310
|
+
:type _headers: dict, optional
|
|
311
|
+
:param _host_index: set to override the host_index for a single
|
|
312
|
+
request; this effectively ignores the host_index
|
|
313
|
+
in the spec for a single request.
|
|
314
|
+
:type _host_index: int, optional
|
|
315
|
+
:return: Returns the result object.
|
|
316
|
+
""" # noqa: E501
|
|
317
|
+
|
|
318
|
+
_param = self._delete_duplicates_serialize(
|
|
319
|
+
bulk_ids_dto=bulk_ids_dto,
|
|
320
|
+
_request_auth=_request_auth,
|
|
321
|
+
_content_type=_content_type,
|
|
322
|
+
_headers=_headers,
|
|
323
|
+
_host_index=_host_index,
|
|
324
|
+
)
|
|
325
|
+
|
|
326
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
327
|
+
"204": None,
|
|
328
|
+
}
|
|
329
|
+
response_data = await self.api_client.call_api(
|
|
330
|
+
*_param, _request_timeout=_request_timeout
|
|
331
|
+
)
|
|
332
|
+
await response_data.read()
|
|
333
|
+
return self.api_client.response_deserialize(
|
|
334
|
+
response_data=response_data,
|
|
335
|
+
response_types_map=_response_types_map,
|
|
336
|
+
).data
|
|
337
|
+
|
|
338
|
+
@validate_call
|
|
339
|
+
async def delete_duplicates_with_http_info(
|
|
340
|
+
self,
|
|
341
|
+
bulk_ids_dto: BulkIdsDto,
|
|
342
|
+
_request_timeout: Union[
|
|
343
|
+
None,
|
|
344
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
345
|
+
Tuple[
|
|
346
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
347
|
+
],
|
|
348
|
+
] = None,
|
|
349
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
350
|
+
_content_type: Optional[StrictStr] = None,
|
|
351
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
352
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
353
|
+
) -> ApiResponse[None]:
|
|
354
|
+
"""Delete duplicates
|
|
355
|
+
|
|
356
|
+
Delete multiple duplicate assets specified by their IDs.
|
|
357
|
+
|
|
358
|
+
:param bulk_ids_dto: (required)
|
|
359
|
+
:type bulk_ids_dto: BulkIdsDto
|
|
360
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
361
|
+
number provided, it will be total request
|
|
362
|
+
timeout. It can also be a pair (tuple) of
|
|
363
|
+
(connection, read) timeouts.
|
|
364
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
365
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
366
|
+
request; this effectively ignores the
|
|
367
|
+
authentication in the spec for a single request.
|
|
368
|
+
:type _request_auth: dict, optional
|
|
369
|
+
:param _content_type: force content-type for the request.
|
|
370
|
+
:type _content_type: str, Optional
|
|
371
|
+
:param _headers: set to override the headers for a single
|
|
372
|
+
request; this effectively ignores the headers
|
|
373
|
+
in the spec for a single request.
|
|
374
|
+
:type _headers: dict, optional
|
|
375
|
+
:param _host_index: set to override the host_index for a single
|
|
376
|
+
request; this effectively ignores the host_index
|
|
377
|
+
in the spec for a single request.
|
|
378
|
+
:type _host_index: int, optional
|
|
379
|
+
:return: Returns the result object.
|
|
380
|
+
""" # noqa: E501
|
|
381
|
+
|
|
382
|
+
_param = self._delete_duplicates_serialize(
|
|
383
|
+
bulk_ids_dto=bulk_ids_dto,
|
|
384
|
+
_request_auth=_request_auth,
|
|
385
|
+
_content_type=_content_type,
|
|
386
|
+
_headers=_headers,
|
|
387
|
+
_host_index=_host_index,
|
|
388
|
+
)
|
|
389
|
+
|
|
390
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
391
|
+
"204": None,
|
|
392
|
+
}
|
|
393
|
+
response_data = await self.api_client.call_api(
|
|
394
|
+
*_param, _request_timeout=_request_timeout
|
|
395
|
+
)
|
|
396
|
+
await response_data.read()
|
|
397
|
+
return self.api_client.response_deserialize(
|
|
398
|
+
response_data=response_data,
|
|
399
|
+
response_types_map=_response_types_map,
|
|
400
|
+
)
|
|
401
|
+
|
|
402
|
+
@validate_call
|
|
403
|
+
async def delete_duplicates_without_preload_content(
|
|
404
|
+
self,
|
|
405
|
+
bulk_ids_dto: BulkIdsDto,
|
|
406
|
+
_request_timeout: Union[
|
|
407
|
+
None,
|
|
408
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
409
|
+
Tuple[
|
|
410
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
411
|
+
],
|
|
412
|
+
] = None,
|
|
413
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
414
|
+
_content_type: Optional[StrictStr] = None,
|
|
415
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
416
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
417
|
+
) -> RESTResponseType:
|
|
418
|
+
"""Delete duplicates
|
|
419
|
+
|
|
420
|
+
Delete multiple duplicate assets specified by their IDs.
|
|
421
|
+
|
|
422
|
+
:param bulk_ids_dto: (required)
|
|
423
|
+
:type bulk_ids_dto: BulkIdsDto
|
|
424
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
425
|
+
number provided, it will be total request
|
|
426
|
+
timeout. It can also be a pair (tuple) of
|
|
427
|
+
(connection, read) timeouts.
|
|
428
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
429
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
430
|
+
request; this effectively ignores the
|
|
431
|
+
authentication in the spec for a single request.
|
|
432
|
+
:type _request_auth: dict, optional
|
|
433
|
+
:param _content_type: force content-type for the request.
|
|
434
|
+
:type _content_type: str, Optional
|
|
435
|
+
:param _headers: set to override the headers for a single
|
|
436
|
+
request; this effectively ignores the headers
|
|
437
|
+
in the spec for a single request.
|
|
438
|
+
:type _headers: dict, optional
|
|
439
|
+
:param _host_index: set to override the host_index for a single
|
|
440
|
+
request; this effectively ignores the host_index
|
|
441
|
+
in the spec for a single request.
|
|
442
|
+
:type _host_index: int, optional
|
|
443
|
+
:return: Returns the result object.
|
|
444
|
+
""" # noqa: E501
|
|
445
|
+
|
|
446
|
+
_param = self._delete_duplicates_serialize(
|
|
447
|
+
bulk_ids_dto=bulk_ids_dto,
|
|
448
|
+
_request_auth=_request_auth,
|
|
449
|
+
_content_type=_content_type,
|
|
450
|
+
_headers=_headers,
|
|
451
|
+
_host_index=_host_index,
|
|
452
|
+
)
|
|
453
|
+
|
|
454
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
455
|
+
"204": None,
|
|
456
|
+
}
|
|
457
|
+
response_data = await self.api_client.call_api(
|
|
458
|
+
*_param, _request_timeout=_request_timeout
|
|
459
|
+
)
|
|
460
|
+
return response_data.response
|
|
461
|
+
|
|
462
|
+
def _delete_duplicates_serialize(
|
|
463
|
+
self,
|
|
464
|
+
bulk_ids_dto,
|
|
465
|
+
_request_auth,
|
|
466
|
+
_content_type,
|
|
467
|
+
_headers,
|
|
468
|
+
_host_index,
|
|
469
|
+
) -> RequestSerialized:
|
|
470
|
+
_host = None
|
|
471
|
+
|
|
472
|
+
_collection_formats: Dict[str, str] = {}
|
|
473
|
+
|
|
474
|
+
_path_params: Dict[str, str] = {}
|
|
475
|
+
_query_params: List[Tuple[str, str]] = []
|
|
476
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
477
|
+
_form_params: List[Tuple[str, str]] = []
|
|
478
|
+
_files: Dict[
|
|
479
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
480
|
+
] = {}
|
|
481
|
+
_body_params: Optional[bytes] = None
|
|
482
|
+
|
|
483
|
+
# process the path parameters
|
|
484
|
+
# process the query parameters
|
|
485
|
+
# process the header parameters
|
|
486
|
+
# process the form parameters
|
|
487
|
+
# process the body parameter
|
|
488
|
+
if bulk_ids_dto is not None:
|
|
489
|
+
_body_params = bulk_ids_dto
|
|
490
|
+
|
|
491
|
+
# set the HTTP header `Content-Type`
|
|
492
|
+
if _content_type:
|
|
493
|
+
_header_params["Content-Type"] = _content_type
|
|
494
|
+
else:
|
|
495
|
+
_default_content_type = self.api_client.select_header_content_type(
|
|
496
|
+
["application/json"]
|
|
497
|
+
)
|
|
498
|
+
if _default_content_type is not None:
|
|
499
|
+
_header_params["Content-Type"] = _default_content_type
|
|
500
|
+
|
|
501
|
+
# authentication setting
|
|
502
|
+
_auth_settings: List[str] = ["cookie", "api_key", "bearer"]
|
|
503
|
+
|
|
504
|
+
return self.api_client.param_serialize(
|
|
505
|
+
method="DELETE",
|
|
506
|
+
resource_path="/duplicates",
|
|
507
|
+
path_params=_path_params,
|
|
508
|
+
query_params=_query_params,
|
|
509
|
+
header_params=_header_params,
|
|
510
|
+
body=_body_params,
|
|
511
|
+
post_params=_form_params,
|
|
512
|
+
files=_files,
|
|
513
|
+
auth_settings=_auth_settings,
|
|
514
|
+
collection_formats=_collection_formats,
|
|
515
|
+
_host=_host,
|
|
516
|
+
_request_auth=_request_auth,
|
|
517
|
+
)
|
|
518
|
+
|
|
519
|
+
@validate_call
|
|
520
|
+
async def get_asset_duplicates(
|
|
521
|
+
self,
|
|
522
|
+
_request_timeout: Union[
|
|
523
|
+
None,
|
|
524
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
525
|
+
Tuple[
|
|
526
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
527
|
+
],
|
|
528
|
+
] = None,
|
|
529
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
530
|
+
_content_type: Optional[StrictStr] = None,
|
|
531
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
532
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
533
|
+
) -> List[DuplicateResponseDto]:
|
|
534
|
+
"""Retrieve duplicates
|
|
535
|
+
|
|
536
|
+
Retrieve a list of duplicate assets available to the authenticated user.
|
|
537
|
+
|
|
538
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
539
|
+
number provided, it will be total request
|
|
540
|
+
timeout. It can also be a pair (tuple) of
|
|
541
|
+
(connection, read) timeouts.
|
|
542
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
543
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
544
|
+
request; this effectively ignores the
|
|
545
|
+
authentication in the spec for a single request.
|
|
546
|
+
:type _request_auth: dict, optional
|
|
547
|
+
:param _content_type: force content-type for the request.
|
|
548
|
+
:type _content_type: str, Optional
|
|
549
|
+
:param _headers: set to override the headers for a single
|
|
550
|
+
request; this effectively ignores the headers
|
|
551
|
+
in the spec for a single request.
|
|
552
|
+
:type _headers: dict, optional
|
|
553
|
+
:param _host_index: set to override the host_index for a single
|
|
554
|
+
request; this effectively ignores the host_index
|
|
555
|
+
in the spec for a single request.
|
|
556
|
+
:type _host_index: int, optional
|
|
557
|
+
:return: Returns the result object.
|
|
558
|
+
""" # noqa: E501
|
|
559
|
+
|
|
560
|
+
_param = self._get_asset_duplicates_serialize(
|
|
561
|
+
_request_auth=_request_auth,
|
|
562
|
+
_content_type=_content_type,
|
|
563
|
+
_headers=_headers,
|
|
564
|
+
_host_index=_host_index,
|
|
565
|
+
)
|
|
566
|
+
|
|
567
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
568
|
+
"200": "List[DuplicateResponseDto]",
|
|
569
|
+
}
|
|
570
|
+
response_data = await self.api_client.call_api(
|
|
571
|
+
*_param, _request_timeout=_request_timeout
|
|
572
|
+
)
|
|
573
|
+
await response_data.read()
|
|
574
|
+
return self.api_client.response_deserialize(
|
|
575
|
+
response_data=response_data,
|
|
576
|
+
response_types_map=_response_types_map,
|
|
577
|
+
).data
|
|
578
|
+
|
|
579
|
+
@validate_call
|
|
580
|
+
async def get_asset_duplicates_with_http_info(
|
|
581
|
+
self,
|
|
582
|
+
_request_timeout: Union[
|
|
583
|
+
None,
|
|
584
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
585
|
+
Tuple[
|
|
586
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
587
|
+
],
|
|
588
|
+
] = None,
|
|
589
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
590
|
+
_content_type: Optional[StrictStr] = None,
|
|
591
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
592
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
593
|
+
) -> ApiResponse[List[DuplicateResponseDto]]:
|
|
594
|
+
"""Retrieve duplicates
|
|
595
|
+
|
|
596
|
+
Retrieve a list of duplicate assets available to the authenticated user.
|
|
597
|
+
|
|
598
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
599
|
+
number provided, it will be total request
|
|
600
|
+
timeout. It can also be a pair (tuple) of
|
|
601
|
+
(connection, read) timeouts.
|
|
602
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
603
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
604
|
+
request; this effectively ignores the
|
|
605
|
+
authentication in the spec for a single request.
|
|
606
|
+
:type _request_auth: dict, optional
|
|
607
|
+
:param _content_type: force content-type for the request.
|
|
608
|
+
:type _content_type: str, Optional
|
|
609
|
+
:param _headers: set to override the headers for a single
|
|
610
|
+
request; this effectively ignores the headers
|
|
611
|
+
in the spec for a single request.
|
|
612
|
+
:type _headers: dict, optional
|
|
613
|
+
:param _host_index: set to override the host_index for a single
|
|
614
|
+
request; this effectively ignores the host_index
|
|
615
|
+
in the spec for a single request.
|
|
616
|
+
:type _host_index: int, optional
|
|
617
|
+
:return: Returns the result object.
|
|
618
|
+
""" # noqa: E501
|
|
619
|
+
|
|
620
|
+
_param = self._get_asset_duplicates_serialize(
|
|
621
|
+
_request_auth=_request_auth,
|
|
622
|
+
_content_type=_content_type,
|
|
623
|
+
_headers=_headers,
|
|
624
|
+
_host_index=_host_index,
|
|
625
|
+
)
|
|
626
|
+
|
|
627
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
628
|
+
"200": "List[DuplicateResponseDto]",
|
|
629
|
+
}
|
|
630
|
+
response_data = await self.api_client.call_api(
|
|
631
|
+
*_param, _request_timeout=_request_timeout
|
|
632
|
+
)
|
|
633
|
+
await response_data.read()
|
|
634
|
+
return self.api_client.response_deserialize(
|
|
635
|
+
response_data=response_data,
|
|
636
|
+
response_types_map=_response_types_map,
|
|
637
|
+
)
|
|
638
|
+
|
|
639
|
+
@validate_call
|
|
640
|
+
async def get_asset_duplicates_without_preload_content(
|
|
641
|
+
self,
|
|
642
|
+
_request_timeout: Union[
|
|
643
|
+
None,
|
|
644
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
645
|
+
Tuple[
|
|
646
|
+
Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]
|
|
647
|
+
],
|
|
648
|
+
] = None,
|
|
649
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
650
|
+
_content_type: Optional[StrictStr] = None,
|
|
651
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
652
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
653
|
+
) -> RESTResponseType:
|
|
654
|
+
"""Retrieve duplicates
|
|
655
|
+
|
|
656
|
+
Retrieve a list of duplicate assets available to the authenticated user.
|
|
657
|
+
|
|
658
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
659
|
+
number provided, it will be total request
|
|
660
|
+
timeout. It can also be a pair (tuple) of
|
|
661
|
+
(connection, read) timeouts.
|
|
662
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
663
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
664
|
+
request; this effectively ignores the
|
|
665
|
+
authentication in the spec for a single request.
|
|
666
|
+
:type _request_auth: dict, optional
|
|
667
|
+
:param _content_type: force content-type for the request.
|
|
668
|
+
:type _content_type: str, Optional
|
|
669
|
+
:param _headers: set to override the headers for a single
|
|
670
|
+
request; this effectively ignores the headers
|
|
671
|
+
in the spec for a single request.
|
|
672
|
+
:type _headers: dict, optional
|
|
673
|
+
:param _host_index: set to override the host_index for a single
|
|
674
|
+
request; this effectively ignores the host_index
|
|
675
|
+
in the spec for a single request.
|
|
676
|
+
:type _host_index: int, optional
|
|
677
|
+
:return: Returns the result object.
|
|
678
|
+
""" # noqa: E501
|
|
679
|
+
|
|
680
|
+
_param = self._get_asset_duplicates_serialize(
|
|
681
|
+
_request_auth=_request_auth,
|
|
682
|
+
_content_type=_content_type,
|
|
683
|
+
_headers=_headers,
|
|
684
|
+
_host_index=_host_index,
|
|
685
|
+
)
|
|
686
|
+
|
|
687
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
688
|
+
"200": "List[DuplicateResponseDto]",
|
|
689
|
+
}
|
|
690
|
+
response_data = await self.api_client.call_api(
|
|
691
|
+
*_param, _request_timeout=_request_timeout
|
|
692
|
+
)
|
|
693
|
+
return response_data.response
|
|
694
|
+
|
|
695
|
+
def _get_asset_duplicates_serialize(
|
|
696
|
+
self,
|
|
697
|
+
_request_auth,
|
|
698
|
+
_content_type,
|
|
699
|
+
_headers,
|
|
700
|
+
_host_index,
|
|
701
|
+
) -> RequestSerialized:
|
|
702
|
+
_host = None
|
|
703
|
+
|
|
704
|
+
_collection_formats: Dict[str, str] = {}
|
|
705
|
+
|
|
706
|
+
_path_params: Dict[str, str] = {}
|
|
707
|
+
_query_params: List[Tuple[str, str]] = []
|
|
708
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
709
|
+
_form_params: List[Tuple[str, str]] = []
|
|
710
|
+
_files: Dict[
|
|
711
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
712
|
+
] = {}
|
|
713
|
+
_body_params: Optional[bytes] = None
|
|
714
|
+
|
|
715
|
+
# process the path parameters
|
|
716
|
+
# process the query parameters
|
|
717
|
+
# process the header parameters
|
|
718
|
+
# process the form parameters
|
|
719
|
+
# process the body parameter
|
|
720
|
+
|
|
721
|
+
# set the HTTP header `Accept`
|
|
722
|
+
if "Accept" not in _header_params:
|
|
723
|
+
_header_params["Accept"] = self.api_client.select_header_accept(
|
|
724
|
+
["application/json"]
|
|
725
|
+
)
|
|
726
|
+
|
|
727
|
+
# authentication setting
|
|
728
|
+
_auth_settings: List[str] = ["cookie", "api_key", "bearer"]
|
|
729
|
+
|
|
730
|
+
return self.api_client.param_serialize(
|
|
731
|
+
method="GET",
|
|
732
|
+
resource_path="/duplicates",
|
|
733
|
+
path_params=_path_params,
|
|
734
|
+
query_params=_query_params,
|
|
735
|
+
header_params=_header_params,
|
|
736
|
+
body=_body_params,
|
|
737
|
+
post_params=_form_params,
|
|
738
|
+
files=_files,
|
|
739
|
+
auth_settings=_auth_settings,
|
|
740
|
+
collection_formats=_collection_formats,
|
|
741
|
+
_host=_host,
|
|
742
|
+
_request_auth=_request_auth,
|
|
743
|
+
)
|