From 958d8ac994a2d5cade35f4435cde85cd9f42b46c Mon Sep 17 00:00:00 2001 From: Miguel Date: Wed, 3 Sep 2025 09:41:25 +0200 Subject: [PATCH] Implement code changes to enhance functionality and improve performance --- SOLUCION_CONFIGURACIONES_GLOBALES.md | 125 + projects.json | 3323 ++++++- projects.json.backup | 10130 ++++++++++++++++++++ src/models/project_model.py | 42 + src/services/project_discovery_service.py | 54 + test_new_project_config.py | 117 + test_projects_config.py | 38 + test_s7p_project_config.py | 116 + update_projects_config.py | 143 + 9 files changed, 13928 insertions(+), 160 deletions(-) create mode 100644 SOLUCION_CONFIGURACIONES_GLOBALES.md create mode 100644 projects.json.backup create mode 100644 test_new_project_config.py create mode 100644 test_projects_config.py create mode 100644 test_s7p_project_config.py create mode 100644 update_projects_config.py diff --git a/SOLUCION_CONFIGURACIONES_GLOBALES.md b/SOLUCION_CONFIGURACIONES_GLOBALES.md new file mode 100644 index 0000000..12ac5df --- /dev/null +++ b/SOLUCION_CONFIGURACIONES_GLOBALES.md @@ -0,0 +1,125 @@ +# Solución: Aplicación de Configuraciones Globales a Proyectos + +## Problema Identificado +Cuando se agregaban nuevos proyectos al sistema, no se estaban asignando las configuraciones globales de backup definidas en `config.json`. Los proyectos solo recibían configuraciones básicas como `default_schedule` y `default_schedule_time`, pero faltaban configuraciones importantes como: + +- `retry_delay_hours`: Tiempo de espera antes de reintentar un backup fallido +- `backup_timeout_minutes`: Tiempo máximo para completar un backup +- `min_backup_interval_minutes`: Intervalo mínimo entre backups del mismo proyecto +- `min_free_space_mb`: Espacio mínimo requerido antes de hacer backup +- Todas las configuraciones de `backup_options` (compresión, algoritmo de hash, etc.) + +## Cambios Realizados + +### 1. Nuevo Método en ProjectDiscoveryService +Se agregó el método `_apply_global_configurations()` en `src/services/project_discovery_service.py`: + +```python +def _apply_global_configurations(self, project_data: Dict[str, Any]) -> Dict[str, Any]: + """Apply all global configurations to a new project""" + global_settings = self.config.global_settings + backup_options = self.config.backup_options + + # Apply global settings to schedule_config + project_data["schedule_config"].update({ + "retry_delay_hours": global_settings.get("retry_delay_hours", 1), + "backup_timeout_minutes": global_settings.get("backup_timeout_minutes", 0), + "min_backup_interval_minutes": global_settings.get("min_backup_interval_minutes", 10), + "min_free_space_mb": global_settings.get("min_free_space_mb", 100), + # ... configuraciones existentes + }) + + # Apply backup options + project_data["backup_options"] = { + "compression_level": backup_options.get("compression_level", 6), + "include_subdirectories": backup_options.get("include_subdirectories", True), + # ... todas las opciones de backup + } + + return project_data +``` + +### 2. Modificación de Funciones de Creación de Proyectos +Se actualizaron las funciones `_create_project_from_s7p()` y `_create_manual_project()` para aplicar las configuraciones globales: + +```python +# Apply global configurations +project_data = self._apply_global_configurations(project_data) + +return Project(project_data) +``` + +### 3. Actualización del Modelo Project +Se expandió la clase `Project` en `src/models/project_model.py` para manejar las nuevas configuraciones: + +**En el constructor:** +```python +# Configuraciones de backup (heredadas de configuración global) +backup_options = project_data.get("backup_options", {}) +self.compression_level = backup_options.get("compression_level", 6) +self.include_subdirectories = backup_options.get("include_subdirectories", True) +# ... todas las opciones de backup + +# Configuraciones adicionales del proyecto (heredadas de global_settings) +self.retry_delay_hours = schedule_config.get("retry_delay_hours", 1) +self.backup_timeout_minutes = schedule_config.get("backup_timeout_minutes", 0) +# ... configuraciones adicionales +``` + +**En el método `to_dict()`:** +```python +"schedule_config": { + # ... configuraciones existentes + "retry_delay_hours": self.retry_delay_hours, + "backup_timeout_minutes": self.backup_timeout_minutes, + "min_backup_interval_minutes": self.min_backup_interval_minutes, + "min_free_space_mb": self.min_free_space_mb, +}, +"backup_options": { + "compression_level": self.compression_level, + "include_subdirectories": self.include_subdirectories, + # ... todas las opciones de backup +}, +``` + +### 4. Actualización de Proyectos Existentes +Se ejecutó un script para actualizar los 158 proyectos existentes con las configuraciones globales que faltaban, creando un backup de seguridad antes de la actualización. + +## Configuraciones Globales Aplicadas + +### Global Settings (en schedule_config) +- `retry_delay_hours`: 1 hora por defecto +- `backup_timeout_minutes`: 0 (sin límite) por defecto +- `min_backup_interval_minutes`: 10 minutos por defecto +- `min_free_space_mb`: 100 MB por defecto + +### Backup Options +- `compression_level`: 6 (balanceado) +- `include_subdirectories`: true +- `preserve_directory_structure`: true +- `hash_algorithm`: "md5" +- `hash_includes`: ["timestamp", "size"] +- `backup_type`: "complete" +- `process_priority`: "low" +- `sequential_execution`: true +- `filename_format`: "HH-MM-SS_projects.zip" +- `date_format`: "YYYY-MM-DD" + +## Verificación +Se realizaron pruebas que confirmaron: + +1. ✅ **Proyectos existentes actualizados**: Los 158 proyectos existentes ahora tienen todas las configuraciones globales +2. ✅ **Nuevos proyectos manuales**: Reciben automáticamente todas las configuraciones globales +3. ✅ **Nuevos proyectos S7P**: También reciben automáticamente todas las configuraciones globales + +## Beneficios +- **Consistencia**: Todos los proyectos ahora heredan las mismas configuraciones globales +- **Mantenibilidad**: Cambios en configuraciones globales se aplican a futuros proyectos +- **Flexibilidad**: Cada proyecto mantiene sus configuraciones individuales que pueden ser modificadas independientemente +- **Retrocompatibilidad**: Los proyectos existentes mantienen sus configuraciones actuales mientras reciben las nuevas + +## Archivos Modificados +- `src/services/project_discovery_service.py`: Nuevo método `_apply_global_configurations()` +- `src/models/project_model.py`: Expansión del modelo Project para manejar configuraciones adicionales +- `projects.json`: Actualizado con configuraciones globales para todos los proyectos existentes +- `projects.json.backup`: Backup de seguridad creado automáticamente diff --git a/projects.json b/projects.json index e2e773b..4356a19 100644 --- a/projects.json +++ b/projects.json @@ -1,8 +1,9 @@ { "metadata": { "version": "1.0", - "last_updated": "2025-09-02T16:00:00.715720+00:00", - "total_projects": 158 + "last_updated": "2025-09-03T07:38:39.305548+00:00", + "total_projects": 158, + "auto_config_update": "2025-09-03T07:38:39.306586+00:00" }, "projects": [ { @@ -18,7 +19,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.468151+00:00", @@ -48,6 +53,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -63,7 +83,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.415459+00:00", @@ -93,6 +117,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -108,7 +147,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.559171+00:00", @@ -138,6 +181,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -153,7 +211,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:54.353398+00:00", @@ -183,6 +245,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -198,7 +275,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:55.634660+00:00", @@ -228,6 +309,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -243,7 +339,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:55.413368+00:00", @@ -273,6 +373,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -288,7 +403,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:55.186703+00:00", @@ -318,6 +437,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -333,7 +467,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:56.634522+00:00", @@ -363,6 +501,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -378,7 +531,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:56.585053+00:00", @@ -408,6 +565,21 @@ "discovered_date": "", "discovery_method": "", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -423,7 +595,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:56.184568+00:00", @@ -453,6 +629,21 @@ "discovered_date": "2025-09-02T16:00:00.068795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -468,7 +659,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.242321+00:00", @@ -498,6 +693,21 @@ "discovered_date": "2025-09-02T16:00:00.068795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -513,7 +723,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:57.757052+00:00", @@ -543,6 +757,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -558,7 +787,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.498693+00:00", @@ -588,6 +821,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -603,7 +851,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.732681+00:00", @@ -633,6 +885,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -648,7 +915,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:01.193180+00:00", @@ -678,6 +949,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -693,7 +979,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:00.773423+00:00", @@ -723,6 +1013,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -738,7 +1043,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:59.548693+00:00", @@ -768,6 +1077,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -783,7 +1107,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:00.809183+00:00", @@ -813,6 +1141,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -828,7 +1171,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:09:58.980412+00:00", @@ -858,6 +1205,21 @@ "discovered_date": "2025-09-02T16:00:00.069797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -873,7 +1235,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:02.142631+00:00", @@ -903,6 +1269,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -918,7 +1299,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:01.661714+00:00", @@ -948,6 +1333,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -963,7 +1363,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:02.617691+00:00", @@ -993,6 +1397,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1008,7 +1427,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:05.430555+00:00", @@ -1038,6 +1461,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1053,7 +1491,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:02.975409+00:00", @@ -1083,6 +1525,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1098,7 +1555,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:01.996530+00:00", @@ -1128,6 +1589,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1143,7 +1619,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:04.180610+00:00", @@ -1173,6 +1653,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1188,7 +1683,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:05.131164+00:00", @@ -1218,6 +1717,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1233,7 +1747,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:03.236967+00:00", @@ -1263,6 +1781,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1278,7 +1811,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:05.858407+00:00", @@ -1308,6 +1845,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1323,7 +1875,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:03.975044+00:00", @@ -1353,6 +1909,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1368,7 +1939,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:06.405090+00:00", @@ -1398,6 +1973,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1413,7 +2003,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:08.733474+00:00", @@ -1443,6 +2037,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1458,7 +2067,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:06.562379+00:00", @@ -1488,6 +2101,21 @@ "discovered_date": "2025-09-02T16:00:00.070797+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1503,7 +2131,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:07.147273+00:00", @@ -1533,6 +2165,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1548,7 +2195,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:05.856625+00:00", @@ -1578,6 +2229,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1593,7 +2259,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:08.547457+00:00", @@ -1623,6 +2293,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1638,7 +2323,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:08.770773+00:00", @@ -1668,6 +2357,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1683,7 +2387,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:08.902177+00:00", @@ -1713,6 +2421,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1728,7 +2451,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:09.246360+00:00", @@ -1758,6 +2485,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1773,7 +2515,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:09.552352+00:00", @@ -1803,6 +2549,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1818,7 +2579,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:08.939723+00:00", @@ -1848,6 +2613,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1863,7 +2643,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:11.283134+00:00", @@ -1893,6 +2677,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1908,7 +2707,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:09.821905+00:00", @@ -1938,6 +2741,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1953,7 +2771,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:11.315351+00:00", @@ -1983,6 +2805,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -1998,7 +2835,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:09.907310+00:00", @@ -2028,6 +2869,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2043,7 +2899,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:11.389403+00:00", @@ -2073,6 +2933,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2088,7 +2963,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:11.412016+00:00", @@ -2118,6 +2997,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2133,7 +3027,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:12.282844+00:00", @@ -2163,6 +3061,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2178,7 +3091,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:12.086068+00:00", @@ -2208,6 +3125,21 @@ "discovered_date": "2025-09-02T16:00:00.071793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2223,7 +3155,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:14.445986+00:00", @@ -2253,6 +3189,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2268,7 +3219,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:13.674700+00:00", @@ -2298,6 +3253,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2313,7 +3283,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:12.851142+00:00", @@ -2343,6 +3317,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2358,7 +3347,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:29.980388+00:00", @@ -2388,6 +3381,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2403,7 +3411,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:12.903957+00:00", @@ -2433,6 +3445,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2448,7 +3475,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:16.278693+00:00", @@ -2478,6 +3509,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2493,7 +3539,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:15.967848+00:00", @@ -2523,6 +3573,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2538,7 +3603,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:15.570767+00:00", @@ -2568,6 +3637,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2583,7 +3667,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:15.778838+00:00", @@ -2613,6 +3701,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2628,7 +3731,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:15.609290+00:00", @@ -2658,6 +3765,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2673,7 +3795,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:18.442631+00:00", @@ -2703,6 +3829,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2718,7 +3859,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:18.303106+00:00", @@ -2748,6 +3893,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2763,7 +3923,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:18.244206+00:00", @@ -2793,6 +3957,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2808,7 +3987,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:19.406775+00:00", @@ -2838,6 +4021,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2853,7 +4051,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:18.771394+00:00", @@ -2883,6 +4085,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2898,7 +4115,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:20.559992+00:00", @@ -2928,6 +4149,21 @@ "discovered_date": "2025-09-02T16:00:00.072794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2943,7 +4179,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:19.257706+00:00", @@ -2973,6 +4213,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -2988,7 +4243,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:23.418677+00:00", @@ -3018,6 +4277,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3033,7 +4307,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:36.505664+00:00", @@ -3063,6 +4341,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3078,7 +4371,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:22.392706+00:00", @@ -3108,6 +4405,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3123,7 +4435,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:20.050074+00:00", @@ -3153,6 +4469,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3168,7 +4499,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:24.489821+00:00", @@ -3198,6 +4533,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3213,7 +4563,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:22.295463+00:00", @@ -3243,6 +4597,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3258,7 +4627,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:24.538504+00:00", @@ -3288,6 +4661,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3303,7 +4691,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:24.303985+00:00", @@ -3333,6 +4725,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3348,7 +4755,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:24.210286+00:00", @@ -3378,6 +4789,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3393,7 +4819,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:25.060376+00:00", @@ -3423,6 +4853,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3438,7 +4883,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:25.792522+00:00", @@ -3468,6 +4917,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3483,7 +4947,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:26.887527+00:00", @@ -3513,6 +4981,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3528,7 +5011,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:24.922329+00:00", @@ -3558,6 +5045,21 @@ "discovered_date": "2025-09-02T16:00:00.073795+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3573,7 +5075,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:27.398660+00:00", @@ -3603,6 +5109,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3618,7 +5139,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:27.507898+00:00", @@ -3648,6 +5173,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3663,7 +5203,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:27.444392+00:00", @@ -3693,6 +5237,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3708,7 +5267,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:29.228052+00:00", @@ -3738,6 +5301,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3753,7 +5331,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:28.537769+00:00", @@ -3783,6 +5365,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3798,7 +5395,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:28.794976+00:00", @@ -3828,6 +5429,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3843,7 +5459,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:29.677940+00:00", @@ -3873,6 +5493,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3888,7 +5523,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:30.381335+00:00", @@ -3918,6 +5557,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3933,7 +5587,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:29.829199+00:00", @@ -3963,6 +5621,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -3978,7 +5651,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:30.327733+00:00", @@ -4008,6 +5685,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4023,7 +5715,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:30.838081+00:00", @@ -4053,6 +5749,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4068,7 +5779,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:30.206284+00:00", @@ -4098,6 +5813,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4113,7 +5843,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:31.743478+00:00", @@ -4143,6 +5877,21 @@ "discovered_date": "2025-09-02T16:00:00.074794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4158,7 +5907,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:32.122873+00:00", @@ -4188,6 +5941,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4203,7 +5971,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:31.000255+00:00", @@ -4233,6 +6005,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4248,7 +6035,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:31.182144+00:00", @@ -4278,6 +6069,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4293,7 +6099,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:33.003236+00:00", @@ -4323,6 +6133,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4338,7 +6163,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:32.282079+00:00", @@ -4368,6 +6197,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4383,7 +6227,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:33.105790+00:00", @@ -4413,6 +6261,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4428,7 +6291,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:33.450257+00:00", @@ -4458,6 +6325,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4473,7 +6355,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:35.270064+00:00", @@ -4503,6 +6389,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4518,7 +6419,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:32.911503+00:00", @@ -4548,6 +6453,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4563,7 +6483,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:35.468896+00:00", @@ -4593,6 +6517,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4608,7 +6547,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:35.366314+00:00", @@ -4638,6 +6581,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4653,7 +6611,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:37.944657+00:00", @@ -4683,6 +6645,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4698,7 +6675,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:35.837983+00:00", @@ -4728,6 +6709,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4743,7 +6739,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:37.924042+00:00", @@ -4773,6 +6773,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4788,7 +6803,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:37.315119+00:00", @@ -4818,6 +6837,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4833,7 +6867,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:38.080500+00:00", @@ -4863,6 +6901,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4878,7 +6931,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:37.385767+00:00", @@ -4908,6 +6965,21 @@ "discovered_date": "2025-09-02T16:00:00.075793+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4923,7 +6995,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:36.907956+00:00", @@ -4953,6 +7029,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -4968,7 +7059,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:39.604895+00:00", @@ -4998,6 +7093,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5013,7 +7123,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:39.578503+00:00", @@ -5043,6 +7157,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5058,7 +7187,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:39.461582+00:00", @@ -5088,6 +7221,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5103,7 +7251,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:40.079664+00:00", @@ -5133,6 +7285,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5148,7 +7315,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:39.417860+00:00", @@ -5178,6 +7349,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5193,7 +7379,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:38.451429+00:00", @@ -5223,6 +7413,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5238,7 +7443,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:43.050453+00:00", @@ -5268,6 +7477,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5283,7 +7507,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:42.111479+00:00", @@ -5313,6 +7541,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5328,7 +7571,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:42.550993+00:00", @@ -5358,6 +7605,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5373,7 +7635,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:40.947722+00:00", @@ -5403,6 +7669,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5418,7 +7699,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:44.464784+00:00", @@ -5448,6 +7733,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5463,7 +7763,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:42.955156+00:00", @@ -5493,6 +7797,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5508,7 +7827,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:46.239986+00:00", @@ -5538,6 +7861,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5553,7 +7891,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:42.708271+00:00", @@ -5583,6 +7925,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5598,7 +7955,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:43.977414+00:00", @@ -5628,6 +7989,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5643,7 +8019,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:45.048989+00:00", @@ -5673,6 +8053,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5688,7 +8083,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:45.291921+00:00", @@ -5718,6 +8117,21 @@ "discovered_date": "2025-09-02T16:00:00.076794+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5733,7 +8147,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:45.577376+00:00", @@ -5763,6 +8181,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5778,7 +8211,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:44.906913+00:00", @@ -5808,6 +8245,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5823,7 +8275,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:46.259603+00:00", @@ -5853,6 +8309,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5868,7 +8339,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:47.014414+00:00", @@ -5898,6 +8373,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5913,7 +8403,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:46.857655+00:00", @@ -5943,6 +8437,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -5958,7 +8467,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:48.072215+00:00", @@ -5988,6 +8501,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6003,7 +8531,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:46.528896+00:00", @@ -6033,6 +8565,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6048,7 +8595,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:48.239053+00:00", @@ -6078,6 +8629,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6093,7 +8659,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:46.898822+00:00", @@ -6123,6 +8693,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6138,7 +8723,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:47.789861+00:00", @@ -6168,6 +8757,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6183,7 +8787,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:56.831940+00:00", @@ -6213,6 +8821,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6228,7 +8851,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:49.667190+00:00", @@ -6258,6 +8885,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6273,7 +8915,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:48.614320+00:00", @@ -6303,6 +8949,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6318,7 +8979,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:49.833954+00:00", @@ -6348,6 +9013,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6363,7 +9043,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:49.973943+00:00", @@ -6393,6 +9077,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6408,7 +9107,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:53.505368+00:00", @@ -6438,6 +9141,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6453,7 +9171,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:50.743359+00:00", @@ -6483,6 +9205,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6498,7 +9235,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:50.305662+00:00", @@ -6528,6 +9269,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6543,7 +9299,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:50.202993+00:00", @@ -6573,6 +9333,21 @@ "discovered_date": "2025-09-02T16:00:00.077802+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6588,7 +9363,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.276999+00:00", @@ -6618,6 +9397,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6633,7 +9427,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.446083+00:00", @@ -6663,6 +9461,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6678,7 +9491,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.498659+00:00", @@ -6708,6 +9525,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6723,7 +9555,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.216114+00:00", @@ -6753,6 +9589,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6768,7 +9619,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:54.148488+00:00", @@ -6798,6 +9653,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6813,7 +9683,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.728350+00:00", @@ -6843,6 +9717,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6858,7 +9747,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:52.795767+00:00", @@ -6888,6 +9781,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6903,7 +9811,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:54.058383+00:00", @@ -6933,6 +9845,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6948,7 +9875,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:54.668690+00:00", @@ -6978,6 +9909,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -6993,7 +9939,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:53.200423+00:00", @@ -7023,6 +9973,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -7038,7 +10003,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:54.850501+00:00", @@ -7068,6 +10037,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } }, { @@ -7083,7 +10067,11 @@ "schedule": "daily", "schedule_time": "02:00", "enabled": true, - "next_scheduled_backup": "" + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 }, "backup_history": { "last_backup_date": "2025-09-02T16:10:55.617456+00:00", @@ -7113,6 +10101,21 @@ "discovered_date": "2025-09-02T16:00:00.078809+00:00", "discovery_method": "everything_api", "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" } } ], diff --git a/projects.json.backup b/projects.json.backup new file mode 100644 index 0000000..4356a19 --- /dev/null +++ b/projects.json.backup @@ -0,0 +1,10130 @@ +{ + "metadata": { + "version": "1.0", + "last_updated": "2025-09-03T07:38:39.305548+00:00", + "total_projects": 158, + "auto_config_update": "2025-09-03T07:38:39.306586+00:00" + }, + "projects": [ + { + "id": "project_cbe604d1_20250902_152420", + "name": "Ssae0452 Last Version Walter", + "path": "C:\\Users\\migue\\Downloads\\TestBackups\\Ssae0452 Last Version Walter", + "type": "siemens_s7", + "s7p_file": "C:\\Users\\migue\\Downloads\\TestBackups\\Ssae0452 Last Version Walter\\Ssae0452.s7p", + "observation_directory": "C:\\Users\\migue\\Downloads\\TestBackups", + "relative_path": "Ssae0452 Last Version Walter", + "backup_path": "Ssae0452 Last Version Walter", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.468151+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\Ssae0452 Last Version Walter\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.468151+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.468151+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e63eea24_20250902_152420", + "name": "Ssae04_11 - compiled", + "path": "C:\\Users\\migue\\Downloads\\TestBackups\\LineaB\\Ssae04_11 - compiled", + "type": "siemens_s7", + "s7p_file": "C:\\Users\\migue\\Downloads\\TestBackups\\LineaB\\Ssae04_11 - compiled\\Ssae0452.s7p", + "observation_directory": "C:\\Users\\migue\\Downloads\\TestBackups", + "relative_path": "LineaB\\Ssae04_11 - compiled", + "backup_path": "LineaB\\Ssae04_11 - compiled", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.415459+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\LineaB\\Ssae04_11 - compiled\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.415459+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.415459+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_c0be5aea_20250902_152420", + "name": "Ssae04_14 - TIA", + "path": "C:\\Users\\migue\\Downloads\\TestBackups\\LineaB\\Ssae04_14 - TIA", + "type": "siemens_s7", + "s7p_file": "C:\\Users\\migue\\Downloads\\TestBackups\\LineaB\\Ssae04_14 - TIA\\Ssae0452.s7p", + "observation_directory": "C:\\Users\\migue\\Downloads\\TestBackups", + "relative_path": "LineaB\\Ssae04_14 - TIA", + "backup_path": "LineaB\\Ssae04_14 - TIA", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.559171+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\LineaB\\Ssae04_14 - TIA\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.559171+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.559171+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_c437a7bb_20250902_152420", + "name": "Inverter", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Inverter", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Inverter\\InverterGSD.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "InLavoro\\PLC\\Varios\\Inverter", + "backup_path": "InLavoro\\PLC\\Varios\\Inverter", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:54.353398+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\InLavoro\\PLC\\Varios\\Inverter\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:54.353398+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:54.353398+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_315c5dfb_20250902_152420", + "name": "Ssae03_2", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\daSAP\\PLC SAE346\\Ssae03_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\daSAP\\PLC SAE346\\Ssae03_2\\Ssae0346.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "InLavoro\\PLC\\Varios\\daSAP\\PLC SAE346\\Ssae03_2", + "backup_path": "InLavoro\\PLC\\Varios\\daSAP\\PLC SAE346\\Ssae03_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:55.634660+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\InLavoro\\PLC\\Varios\\daSAP\\PLC SAE346\\Ssae03_2\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:55.634660+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:55.634660+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8d1cfcd7_20250902_152420", + "name": "Rve116_PEPSI_OCTOBER L7", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Filler\\Rve116_PEPSI_OCTOBER L7", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Filler\\Rve116_PEPSI_OCTOBER L7\\Rve116.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "InLavoro\\PLC\\Varios\\Filler\\Rve116_PEPSI_OCTOBER L7", + "backup_path": "InLavoro\\PLC\\Varios\\Filler\\Rve116_PEPSI_OCTOBER L7", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:55.413368+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\InLavoro\\PLC\\Varios\\Filler\\Rve116_PEPSI_OCTOBER L7\\2025-09-02\\18-09-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:55.413368+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:55.413368+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_42543170_20250902_152420", + "name": "TestCOM", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Filler\\TestCOM", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Filler\\TestCOM\\TestCOM.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "InLavoro\\PLC\\Varios\\Filler\\TestCOM", + "backup_path": "InLavoro\\PLC\\Varios\\Filler\\TestCOM", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:55.186703+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\InLavoro\\PLC\\Varios\\Filler\\TestCOM\\2025-09-02\\18-09-54_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:55.186703+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:55.186703+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_86a0b02d_20250902_152420", + "name": "SAE446Mi", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Last Backup\\SAE446Mi", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\InLavoro\\PLC\\Varios\\Last Backup\\SAE446Mi\\SAE446Mi.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "InLavoro\\PLC\\Varios\\Last Backup\\SAE446Mi", + "backup_path": "InLavoro\\PLC\\Varios\\Last Backup\\SAE446Mi", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:56.634522+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\InLavoro\\PLC\\Varios\\Last Backup\\SAE446Mi\\2025-09-02\\18-09-55_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:56.634522+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:56.634522+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_06372986_20250902_152420", + "name": "SAE446Mi", + "path": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\Reporte\\LastWork\\PLC_Sae446_Mixer_20241217\\SAE446Mi", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\05 - E5.007161 - Modifica O&U - SAE346\\Reporte\\LastWork\\PLC_Sae446_Mixer_20241217\\SAE446Mi\\SAE446Mi.s7p", + "observation_directory": "C:/Trabajo/SIDEL/05 - E5.007161 - Modifica O&U - SAE346", + "relative_path": "Reporte\\LastWork\\PLC_Sae446_Mixer_20241217\\SAE446Mi", + "backup_path": "Reporte\\LastWork\\PLC_Sae446_Mixer_20241217\\SAE446Mi", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:56.585053+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\Reporte\\LastWork\\PLC_Sae446_Mixer_20241217\\SAE446Mi\\2025-09-02\\18-09-55_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:56.585053+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:56.585053+00:00" + }, + "discovery_info": { + "discovered_date": "", + "discovery_method": "", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_abc77de5_20250902_180000", + "name": "prova1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\prova1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:56.184568+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\2025-09-02\\18-09-55_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:56.184568+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:56.184568+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.068795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_54abe9b1_20250902_180000", + "name": "Ssae0463", + "path": "C:\\Trabajo\\SIDEL\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\SAE463\\Ssae0463", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\SAE463\\Ssae0463\\Ssae0463.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\SAE463\\Ssae0463", + "backup_path": "01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\SAE463\\Ssae0463", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.242321+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\SAE463\\Ssae0463\\2025-09-02\\18-09-56_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.242321+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.242321+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.068795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_88e2aa1d_20250902_180000", + "name": "CPU_315_Test", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\PLC utilizzato per il test del misuratore\\CPU_315_", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\PLC utilizzato per il test del misuratore\\CPU_315_\\CPU_315_Test.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\PLC utilizzato per il test del misuratore\\CPU_315_", + "backup_path": "COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\PLC utilizzato per il test del misuratore\\CPU_315_", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:57.757052+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\PLC utilizzato per il test del misuratore\\CPU_315_\\2025-09-02\\18-09-56_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:57.757052+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:57.757052+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d6e7b938_20250902_180000", + "name": "Ssae0340", + "path": "C:\\Trabajo\\SIDEL\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\Ssae0340", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\Ssae0340\\Ssae0340.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\Ssae0340", + "backup_path": "14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\Ssae0340", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.498693+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\Ssae0340\\2025-09-02\\18-09-56_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.498693+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.498693+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ea21b69c_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275_BAK\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275_BAK\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275_BAK\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275_BAK\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.732681+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275_BAK\\Sae275\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.732681+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.732681+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f932cc8a_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_8", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_8\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_8", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_8", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:01.193180+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_8\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:01.193180+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:01.193180+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ae76eb34_20250902_180000", + "name": "RVE063_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_OLD\\Backup Da Cliente 18_02_2025\\RVE063_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_OLD\\Backup Da Cliente 18_02_2025\\RVE063_1\\RVE063_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_OLD\\Backup Da Cliente 18_02_2025\\RVE063_1", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_OLD\\Backup Da Cliente 18_02_2025\\RVE063_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:00.773423+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_OLD\\Backup Da Cliente 18_02_2025\\RVE063_1\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:00.773423+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:00.773423+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_19f73044_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275_BAK\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275_BAK\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275_BAK\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275_BAK\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:59.548693+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275_BAK\\Sae275\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:59.548693+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:59.548693+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ab876093_20250902_180000", + "name": "RPT115_14_11_2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\HMI\\RPT0115\\plc\\RPT115_3", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\HMI\\RPT0115\\plc\\RPT115_3\\RPT115_14_11_2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\HMI\\RPT0115\\plc\\RPT115_3", + "backup_path": "COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\HMI\\RPT0115\\plc\\RPT115_3", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:00.809183+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\HMI\\RPT0115\\plc\\RPT115_3\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:00.809183+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:00.809183+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ee422ca9_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "backup_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:09:58.980412+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\2025-09-02\\18-09-58_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:09:58.980412+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:09:58.980412+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.069797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2dde452c_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae0452 Last Version Walter", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae0452 Last Version Walter\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae0452 Last Version Walter", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae0452 Last Version Walter", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:02.142631+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae0452 Last Version Walter\\2025-09-02\\18-09-59_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:02.142631+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:02.142631+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_4ff08617_20250902_180000", + "name": "Ssae0340", + "path": "C:\\Trabajo\\SIDEL\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\_OLD\\Ssae0340", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\_OLD\\Ssae0340\\Ssae0340.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\_OLD\\Ssae0340", + "backup_path": "14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\_OLD\\Ssae0340", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:01.661714+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\14 - E5.007172 - Modifica O&U - SAE340\\InLavoro\\PLC\\_OLD\\Ssae0340\\2025-09-02\\18-09-59_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:01.661714+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:01.661714+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_41d39402_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_7", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_7\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_7", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_7", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:02.617691+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_7\\2025-09-02\\18-09-59_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:02.617691+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:02.617691+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_db9a9c56_20250902_180000", + "name": "REV052", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\01 - Walter\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\01 - Walter\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\REV052.S7P", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\01 - Walter\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\01 - Walter\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:05.430555+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\01 - Walter\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\2025-09-02\\18-10-01_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:05.430555+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:05.430555+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f8799df4_20250902_180000", + "name": "Rjt039_new", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RJT039\\04 - Software\\NEW\\PLC\\RJT039_new", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RJT039\\04 - Software\\NEW\\PLC\\RJT039_new\\Rjt039_new.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RJT039\\04 - Software\\NEW\\PLC\\RJT039_new", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RJT039\\04 - Software\\NEW\\PLC\\RJT039_new", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:02.975409+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RJT039\\04 - Software\\NEW\\PLC\\RJT039_new\\2025-09-02\\18-10-01_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:02.975409+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:02.975409+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_59b8e4a0_20250902_180000", + "name": "prova1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\RVE043\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\RVE043\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\prova1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\RVE043\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "backup_path": "COMESSE\\5-In Avviamento\\RVE043\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:01.996530+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\RVE043\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\2025-09-02\\18-10-01_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:01.996530+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:01.996530+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_feaaaafe_20250902_180000", + "name": "Rsc098", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\24_09_2024\\Rsc098_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\24_09_2024\\Rsc098_1\\Rsc098.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\24_09_2024\\Rsc098_1", + "backup_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\24_09_2024\\Rsc098_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:04.180610+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\24_09_2024\\Rsc098_1\\2025-09-02\\18-10-02_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:04.180610+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:04.180610+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_cd8d9a7c_20250902_180000", + "name": "Rve175", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175\\Rve175.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:05.131164+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175\\2025-09-02\\18-10-02_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:05.131164+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:05.131164+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b1ffacb6_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:03.236967+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\Prima di Smontare TC\\StarblendPlus\\SAE275\\SAE275\\Sae275\\2025-09-02\\18-10-02_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:03.236967+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:03.236967+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e70cdaeb_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_10", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_10\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_10", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_10", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:05.858407+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_10\\2025-09-02\\18-10-02_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:05.858407+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:05.858407+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_9619a3f9_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:03.975044+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarblendPlus\\SAE275\\SAE275\\Sae275\\2025-09-02\\18-10-03_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:03.975044+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:03.975044+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_a56a07e4_20250902_180000", + "name": "Rnf032", + "path": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\Rnf032", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\Rnf032\\Rnf032.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\Rnf032", + "backup_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\Rnf032", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:06.405090+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\Rnf032\\2025-09-02\\18-10-03_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:06.405090+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:06.405090+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_45bac4e4_20250902_180000", + "name": "RVU008_2", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Cristian\\RVU008_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Cristian\\RVU008_5\\RVU008_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Cristian\\RVU008_5", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Cristian\\RVU008_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:08.733474+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Cristian\\RVU008_5\\2025-09-02\\18-10-04_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:08.733474+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:08.733474+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_61821c8d_20250902_180000", + "name": "RNF032_T", + "path": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\TEST\\RNF032_T", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\TEST\\RNF032_T\\RNF032_T.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\TEST\\RNF032_T", + "backup_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\TEST\\RNF032_T", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:06.562379+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\TEST\\RNF032_T\\2025-09-02\\18-10-04_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:06.562379+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:06.562379+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.070797+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8fdba575_20250902_180000", + "name": "Rve075", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075\\Rve075.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:07.147273+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075\\2025-09-02\\18-10-05_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:07.147273+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:07.147273+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_6d6038d0_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "backup_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:05.856625+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\2025-09-02\\18-10-05_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:05.856625+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:05.856625+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_1cc0af02_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae0452", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae0452\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae0452", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae0452", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:08.547457+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae0452\\2025-09-02\\18-10-06_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:08.547457+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:08.547457+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_fc7ab2e1_20250902_180000", + "name": "RVL106_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024", + "backup_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:08.770773+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\2025-09-02\\18-10-06_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:08.770773+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:08.770773+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_90028519_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_11", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_11\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_11", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_11", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:08.902177+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_11\\2025-09-02\\18-10-06_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:08.902177+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:08.902177+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_4bc5c650_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\SourceDoc\\Migration\\Ssae04_4_migration", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\SourceDoc\\Migration\\Ssae04_4_migration\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\SourceDoc\\Migration\\Ssae04_4_migration", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\SourceDoc\\Migration\\Ssae04_4_migration", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:09.246360+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\Reporte\\SourceDoc\\Migration\\Ssae04_4_migration\\2025-09-02\\18-10-06_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:09.246360+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:09.246360+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_dccaad0f_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "backup_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:09.552352+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\2025-09-02\\18-10-07_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:09.552352+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:09.552352+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8190e15e_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "backup_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:08.939723+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\2025-09-02\\18-10-08_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:08.939723+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:08.939723+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_4bb4ff90_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\12_Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\12_Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\12_Sae452Up", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\12_Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:11.283134+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\12_Sae452Up\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:11.283134+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:11.283134+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0cc4a2bc_20250902_180000", + "name": "Schiumat", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura Old\\Schiumatura_Ras021\\Schium_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura Old\\Schiumatura_Ras021\\Schium_2\\Schiumat.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura Old\\Schiumatura_Ras021\\Schium_2", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura Old\\Schiumatura_Ras021\\Schium_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:09.821905+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura Old\\Schiumatura_Ras021\\Schium_2\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:09.821905+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:09.821905+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f9a900bd_20250902_180000", + "name": "Ssae0463", + "path": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\Ssae0463\\Ssae04_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\Ssae0463\\Ssae04_1\\Ssae0463.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\Ssae0463\\Ssae04_1", + "backup_path": "10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\Ssae0463\\Ssae04_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:11.315351+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\Ssae0463\\Ssae04_1\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:11.315351+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:11.315351+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_29c8f752_20250902_180000", + "name": "IoT", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Example\\IoT", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Example\\IoT\\IoT.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Example\\IoT", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Example\\IoT", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:09.907310+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Example\\IoT\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:09.907310+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:09.907310+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2022eeb0_20250902_180000", + "name": "Rve175", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175\\Rve175.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:11.389403+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\Rve175\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:11.389403+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:11.389403+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b2af6b50_20250902_180000", + "name": "Rsc098", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\Modificato da Anversa 24_09_2024\\Rsc098_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\Modificato da Anversa 24_09_2024\\Rsc098_1\\Rsc098.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\Modificato da Anversa 24_09_2024\\Rsc098_1", + "backup_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\Modificato da Anversa 24_09_2024\\Rsc098_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:11.412016+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006880 - Modifica O&U - RSC098\\04 - Software\\_NEW\\Modificato da Anversa 24_09_2024\\Rsc098_1\\2025-09-02\\18-10-09_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:11.412016+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:11.412016+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_cab6e040_20250902_180000", + "name": "Ssae0463", + "path": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\_NEW\\Ssae0463\\Ssae04_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\_NEW\\Ssae0463\\Ssae04_1\\Ssae0463.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\_NEW\\Ssae0463\\Ssae04_1", + "backup_path": "10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\_NEW\\Ssae0463\\Ssae04_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:12.282844+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\10 - E5.007095 - Modifica O&U - SAE463\\InLavoro\\PLC\\_NEW\\Ssae0463\\Ssae04_1\\2025-09-02\\18-10-10_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:12.282844+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:12.282844+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_480b84d4_20250902_180000", + "name": "RVE175_1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE\\RVE175_1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:12.086068+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE\\2025-09-02\\18-10-10_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:12.086068+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:12.086068+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.071793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e5d818b5_20250902_180000", + "name": "SAE052_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\100098077_PLC_28_SSAE.0052 46012651\\SAE052_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\100098077_PLC_28_SSAE.0052 46012651\\SAE052_2\\SAE052_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\100098077_PLC_28_SSAE.0052 46012651\\SAE052_2", + "backup_path": "COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\100098077_PLC_28_SSAE.0052 46012651\\SAE052_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:14.445986+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_NEW\\PLC\\100098077_PLC_28_SSAE.0052 46012651\\SAE052_2\\2025-09-02\\18-10-11_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:14.445986+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:14.445986+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_bcaead66_20250902_180000", + "name": "Ssae0352", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\20XX\\SAE352\\Ssae0_15", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\20XX\\SAE352\\Ssae0_15\\Ssae0352.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\20XX\\SAE352\\Ssae0_15", + "backup_path": "COMESSE\\4-Archiviati\\20XX\\SAE352\\Ssae0_15", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:13.674700+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\20XX\\SAE352\\Ssae0_15\\2025-09-02\\18-10-11_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:13.674700+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:13.674700+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_9ab24822_20250902_180000", + "name": "SAF472_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\100103878_PLC_15_SSAF.0472 SMMM.0224\\SAF472_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\100103878_PLC_15_SSAF.0472 SMMM.0224\\SAF472_2\\SAF472_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\100103878_PLC_15_SSAF.0472 SMMM.0224\\SAF472_2", + "backup_path": "COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\100103878_PLC_15_SSAF.0472 SMMM.0224\\SAF472_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:12.851142+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\100103878_PLC_15_SSAF.0472 SMMM.0224\\SAF472_2\\2025-09-02\\18-10-11_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:12.851142+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:12.851142+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0128bd4d_20250902_180000", + "name": "CMaster2", + "path": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CMaste_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CMaste_2\\CMaster2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CMaste_2", + "backup_path": "00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CMaste_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:29.980388+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CMaste_2\\2025-09-02\\18-10-11_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:29.980388+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:29.980388+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_5f180daf_20250902_180000", + "name": "SAF472_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\Order E5.002663\\SAF472_2019_07_03\\SAF472_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\Order E5.002663\\SAF472_2019_07_03\\SAF472_1\\SAF472_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\Order E5.002663\\SAF472_2019_07_03\\SAF472_1", + "backup_path": "COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\Order E5.002663\\SAF472_2019_07_03\\SAF472_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:12.903957+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2022\\E5.002663 - SAF472\\Order E5.002663\\SAF472_2019_07_03\\SAF472_1\\2025-09-02\\18-10-12_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:12.903957+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:12.903957+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d5337bb4_20250902_180000", + "name": "RVU008_2", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Last Backup\\RVU008_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Last Backup\\RVU008_5\\RVU008_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Last Backup\\RVU008_5", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Last Backup\\RVU008_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:16.278693+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Last Backup\\RVU008_5\\2025-09-02\\18-10-12_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:16.278693+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:16.278693+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_49a3d05f_20250902_180000", + "name": "REV052", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007191 - Modifica O&U - REP080\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007191 - Modifica O&U - REP080\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\REV052.S7P", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.007191 - Modifica O&U - REP080\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "backup_path": "COMESSE\\2-Work in Progress\\E5.007191 - Modifica O&U - REP080\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:15.967848+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.007191 - Modifica O&U - REP080\\04 - Software\\!!!!!!!!Em Esta Maquina foi Trocada a CPU 400\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\2025-09-02\\18-10-13_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:15.967848+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:15.967848+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e2e6bbb3_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "backup_path": "COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:15.570767+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\2025-09-02\\18-10-13_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:15.570767+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:15.570767+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f354272d_20250902_180000", + "name": "RVH105_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5\\RVH105_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:15.778838+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5\\2025-09-02\\18-10-14_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:15.778838+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:15.778838+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_87ccb280_20250902_180000", + "name": "Schiumat", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura_Ras021\\Schium_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura_Ras021\\Schium_2\\Schiumat.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura_Ras021\\Schium_2", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura_Ras021\\Schium_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:15.609290+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumatura_Ras021\\Schium_2\\2025-09-02\\18-10-14_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:15.609290+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:15.610356+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_6880d936_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\03-Ssae0469", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\03-Ssae0469\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\03-Ssae0469", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\03-Ssae0469", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:18.442631+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\03-Ssae0469\\2025-09-02\\18-10-15_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:18.442631+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:18.442631+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_39fa0c0d_20250902_180000", + "name": "CFMaster", + "path": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CFMaster", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CFMaster\\CFMaster.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CFMaster", + "backup_path": "00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CFMaster", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:18.303106+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\00 - MASTER\\InLavoro\\PLC\\Mixer\\S7\\CFMaster\\2025-09-02\\18-10-15_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:18.303106+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:18.303106+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_61fcaa9e_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From Customer\\Ssae04_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From Customer\\Ssae04_1\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From Customer\\Ssae04_1", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From Customer\\Ssae04_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:18.244206+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From Customer\\Ssae04_1\\2025-09-02\\18-10-16_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:18.244206+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:18.244206+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b8fd19e1_20250902_180000", + "name": "SAE052_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\1-Info Ordini\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_OLD\\SAE052_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\1-Info Ordini\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_OLD\\SAE052_2\\SAE052_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\1-Info Ordini\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_OLD\\SAE052_2", + "backup_path": "COMESSE\\1-Info Ordini\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_OLD\\SAE052_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:19.406775+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\1-Info Ordini\\E5.007272 - Modifica O&U - SAE052\\04 - Software\\_OLD\\SAE052_2\\2025-09-02\\18-10-16_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:19.406775+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:19.406775+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_9b906f0c_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giovanni in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giovanni in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\SAE452 San Giovanni in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "backup_path": "COMESSE\\2-Work in Progress\\SAE452 San Giovanni in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:18.771394+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\SAE452 San Giovanni in Bosco\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\2025-09-02\\18-10-16_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:18.771394+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:18.771394+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2a6f8b22_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_6", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_6\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_6", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_6", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:20.559992+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_6\\2025-09-02\\18-10-18_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:20.559992+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:20.559992+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.072794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2e2c7d67_20250902_180000", + "name": "TKN_315", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005783 - Modifica O&U - RAD110\\04 - Software\\Software Utilizzato per i Test in Ufficio\\TKN_315", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005783 - Modifica O&U - RAD110\\04 - Software\\Software Utilizzato per i Test in Ufficio\\TKN_315\\TKN_315.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005783 - Modifica O&U - RAD110\\04 - Software\\Software Utilizzato per i Test in Ufficio\\TKN_315", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005783 - Modifica O&U - RAD110\\04 - Software\\Software Utilizzato per i Test in Ufficio\\TKN_315", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:19.257706+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005783 - Modifica O&U - RAD110\\04 - Software\\Software Utilizzato per i Test in Ufficio\\TKN_315\\2025-09-02\\18-10-18_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:19.257706+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:19.257706+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b3bb715f_20250902_180000", + "name": "Rvu008", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\2023 Base Cristian\\Rvu008", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\2023 Base Cristian\\Rvu008\\Rvu008.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\2023 Base Cristian\\Rvu008", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\2023 Base Cristian\\Rvu008", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:23.418677+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\2023 Base Cristian\\Rvu008\\2025-09-02\\18-10-18_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:23.418677+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:23.418677+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_27161310_20250902_180000", + "name": "CMaster2", + "path": "C:\\Trabajo\\SIDEL\\00 - MASTER\\FILLER\\S7\\Cmaster_2\\CMaste_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\00 - MASTER\\FILLER\\S7\\Cmaster_2\\CMaste_2\\CMaster2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "00 - MASTER\\FILLER\\S7\\Cmaster_2\\CMaste_2", + "backup_path": "00 - MASTER\\FILLER\\S7\\Cmaster_2\\CMaste_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:36.505664+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\00 - MASTER\\FILLER\\S7\\Cmaster_2\\CMaste_2\\2025-09-02\\18-10-19_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:36.505664+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:36.505664+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ca4f4ce2_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\01-Ssae0469", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\01-Ssae0469\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\01-Ssae0469", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\01-Ssae0469", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:22.392706+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\01-Ssae0469\\2025-09-02\\18-10-19_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:22.392706+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:22.392706+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_bb846004_20250902_180000", + "name": "RJT043-1", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\04 - 21-05-2025 Ayoub\\RJT043_17_09_2024", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\04 - 21-05-2025 Ayoub\\RJT043_17_09_2024\\RJT043-1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\04 - 21-05-2025 Ayoub\\RJT043_17_09_2024", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\04 - 21-05-2025 Ayoub\\RJT043_17_09_2024", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:20.050074+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\04 - 21-05-2025 Ayoub\\RJT043_17_09_2024\\2025-09-02\\18-10-19_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:20.050074+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:20.050074+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_57f1a069_20250902_180000", + "name": "Rnf032", + "path": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032", + "backup_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:24.489821+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\2025-09-02\\18-10-20_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:24.489821+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:24.489821+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_70e0ac14_20250902_180000", + "name": "20210618", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_bk_online\\20210618", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_bk_online\\20210618\\20210618.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_bk_online\\20210618", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_bk_online\\20210618", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:22.295463+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_bk_online\\20210618\\2025-09-02\\18-10-20_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:22.295463+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:22.295463+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_dfcb1a8b_20250902_180000", + "name": "RVE075_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\06 - CUSTOMER PROVIDED BACKUP\\final_bkp\\new modulo nuvo de valvulas\\RVE075_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\06 - CUSTOMER PROVIDED BACKUP\\final_bkp\\new modulo nuvo de valvulas\\RVE075_2\\RVE075_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\06 - CUSTOMER PROVIDED BACKUP\\final_bkp\\new modulo nuvo de valvulas\\RVE075_2", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\06 - CUSTOMER PROVIDED BACKUP\\final_bkp\\new modulo nuvo de valvulas\\RVE075_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:24.538504+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\06 - CUSTOMER PROVIDED BACKUP\\final_bkp\\new modulo nuvo de valvulas\\RVE075_2\\2025-09-02\\18-10-22_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:24.538504+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:24.538504+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ae6551cc_20250902_180000", + "name": "Rve075", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075\\Rve075.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "backup_path": "COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:24.303985+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\Backup Progetti Consegnati\\E5.006378 - Modifica O&U - RVE075_SAE275\\04 - Software\\_OLD\\RVE075\\Rve075\\2025-09-02\\18-10-22_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:24.303985+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:24.303985+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_02f69831_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "backup_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:24.210286+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275\\2025-09-02\\18-10-23_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:24.210286+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:24.210286+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b127be1a_20250902_180000", + "name": "20230227", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005600 - Modifica O&U - RVT110\\04 - Software\\_OLD\\PLC Program", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005600 - Modifica O&U - RVT110\\04 - Software\\_OLD\\PLC Program\\20230227.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005600 - Modifica O&U - RVT110\\04 - Software\\_OLD\\PLC Program", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005600 - Modifica O&U - RVT110\\04 - Software\\_OLD\\PLC Program", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:25.060376+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005600 - Modifica O&U - RVT110\\04 - Software\\_OLD\\PLC Program\\2025-09-02\\18-10-24_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:25.060376+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:25.060376+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_3fa94be8_20250902_180000", + "name": "RPT115_14_11_2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\PLC\\RPT115_3", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\PLC\\RPT115_3\\RPT115_14_11_2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\PLC\\RPT115_3", + "backup_path": "COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\PLC\\RPT115_3", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:25.792522+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\RPT0115 Upgrade Pilot ZN_10\\PLC\\RPT115_3\\2025-09-02\\18-10-24_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:25.792522+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:25.792522+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_1aeaf4b1_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\11_Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\11_Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\11_Sae452Up", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\11_Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:26.887527+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\11_Sae452Up\\2025-09-02\\18-10-24_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:26.887527+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:26.887527+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_1066cf67_20250902_180000", + "name": "Srve0076", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\rve175!!!!\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\rve175!!!!\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\Srve0076.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\rve175!!!!\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "backup_path": "COMESSE\\4-Archiviati\\2024\\rve175!!!!\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:24.922329+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\rve175!!!!\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\2025-09-02\\18-10-24_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:24.922329+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:24.922329+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.073795+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_79f79bdb_20250902_180000", + "name": "Rvl106", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione da Cantiere Bk Prima delle modifiche\\RVL106_01_10_2024_ before New MC", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione da Cantiere Bk Prima delle modifiche\\RVL106_01_10_2024_ before New MC\\Rvl106.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione da Cantiere Bk Prima delle modifiche\\RVL106_01_10_2024_ before New MC", + "backup_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione da Cantiere Bk Prima delle modifiche\\RVL106_01_10_2024_ before New MC", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:27.398660+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione da Cantiere Bk Prima delle modifiche\\RVL106_01_10_2024_ before New MC\\2025-09-02\\18-10-25_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:27.398660+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:27.398660+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2d37b2a5_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14 - TIA", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14 - TIA\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14 - TIA", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14 - TIA", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:27.507898+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14 - TIA\\2025-09-02\\18-10-25_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:27.507898+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:27.507898+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_06763cbd_20250902_180000", + "name": "Rnf032", + "path": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\NEW\\Rnf032", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\NEW\\Rnf032\\Rnf032.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\NEW\\Rnf032", + "backup_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\NEW\\Rnf032", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:27.444392+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\NEW\\Rnf032\\2025-09-02\\18-10-26_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:27.444392+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:27.444392+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d5728643_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:29.228052+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\2025-09-02\\18-10-27_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:29.228052+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:29.228052+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_fee32a98_20250902_180000", + "name": "RJT043-1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007085 - Modifica O&U - RJT043\\04 - Software\\_NEW\\RJT043_21_11_2024\\RJT043_21_11_2024", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007085 - Modifica O&U - RJT043\\04 - Software\\_NEW\\RJT043_21_11_2024\\RJT043_21_11_2024\\RJT043-1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.007085 - Modifica O&U - RJT043\\04 - Software\\_NEW\\RJT043_21_11_2024\\RJT043_21_11_2024", + "backup_path": "COMESSE\\2-Work in Progress\\E5.007085 - Modifica O&U - RJT043\\04 - Software\\_NEW\\RJT043_21_11_2024\\RJT043_21_11_2024", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:28.537769+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.007085 - Modifica O&U - RJT043\\04 - Software\\_NEW\\RJT043_21_11_2024\\RJT043_21_11_2024\\2025-09-02\\18-10-27_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:28.537769+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:28.537769+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_65114709_20250902_180000", + "name": "Rve175te", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te\\Rve175te.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:28.794976+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te\\2025-09-02\\18-10-27_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:28.794976+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:28.794976+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_632a4b09_20250902_180000", + "name": "RVE175_1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE\\RVE175_1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:29.677940+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE\\2025-09-02\\18-10-27_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:29.677940+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:29.677940+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_daff25bd_20250902_180000", + "name": "RVH105_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5\\RVH105_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:30.381335+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006728 - Modifica O&U - RVH105\\04 - Software\\_OLD\\PLC\\RVH105_5\\2025-09-02\\18-10-28_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:30.381335+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:30.381335+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ebd8853d_20250902_180000", + "name": "Schiumat", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Schium_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Schium_2\\Schiumat.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Schium_2", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Schium_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:29.829199+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Schium_2\\2025-09-02\\18-10-29_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:29.829199+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:29.829199+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_bb64ecab_20250902_180000", + "name": "Foam_Ras", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Foam_Ras", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Foam_Ras\\Foam_Ras.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Foam_Ras", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Foam_Ras", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:30.327733+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\18_06_Modificato\\Foam_Ras\\2025-09-02\\18-10-29_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:30.327733+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:30.327733+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_5bd69c1c_20250902_180000", + "name": "Rve175te", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te\\Rve175te.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:30.838081+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Test\\HMI\\Rve175te\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:30.838081+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:30.838081+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8f70fc9b_20250902_180000", + "name": "Srve0076", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\Srve0076.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "backup_path": "COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:30.206284+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:30.206284+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:30.206284+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8ef0d80c_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_TCP", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_TCP\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_TCP", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_TCP", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:31.743478+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_TCP\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:31.743478+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:31.743478+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.074794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_297dec7c_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_12", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_12\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_12", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_12", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:32.122873+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_12\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:32.122873+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:32.122873+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_3b525a50_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "backup_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:31.000255+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Bk_20171024\\StarblendPlus\\SAE275\\Sae275\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:31.000255+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:31.000255+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_9e8728ca_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarBlendPlus_bk\\30_05_2018\\StarblendPlus\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarBlendPlus_bk\\30_05_2018\\StarblendPlus\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarBlendPlus_bk\\30_05_2018\\StarblendPlus\\SAE275\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarBlendPlus_bk\\30_05_2018\\StarblendPlus\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:31.182144+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\StarBlendPlus_bk\\30_05_2018\\StarblendPlus\\SAE275\\Sae275\\2025-09-02\\18-10-30_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:31.182144+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:31.182144+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_fda52f23_20250902_180000", + "name": "Masselli", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Masselli", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Masselli\\Masselli.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Masselli", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Masselli", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:33.003236+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Masselli\\2025-09-02\\18-10-31_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:33.003236+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:33.003236+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_791fed3d_20250902_180000", + "name": "Ras021", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021 Upgrade Pilot\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021 Upgrade Pilot\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021\\Ras021.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021 Upgrade Pilot\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021 Upgrade Pilot\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:32.282079+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021 Upgrade Pilot\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021\\2025-09-02\\18-10-31_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:32.282079+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:32.282079+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e1bd3585_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled - search", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled - search\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled - search", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled - search", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:33.105790+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled - search\\2025-09-02\\18-10-31_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:33.105790+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:33.105790+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_425a39f5_20250902_180000", + "name": "REP080_12_05_2025", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1.old", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1.old\\REP080_12_05_2025.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1.old", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1.old", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:33.450257+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1.old\\2025-09-02\\18-10-32_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:33.450257+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:33.450257+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d739c938_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\_NEW\\Ssae0469", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\_NEW\\Ssae0469\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\_NEW\\Ssae0469", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\_NEW\\Ssae0469", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:35.270064+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\_NEW\\Ssae0469\\2025-09-02\\18-10-32_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:35.270064+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:35.270064+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ea423f03_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2018\\SAE275 13_03_2018\\StarblendPlus\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2018\\SAE275 13_03_2018\\StarblendPlus\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2018\\SAE275 13_03_2018\\StarblendPlus\\SAE275\\Sae275", + "backup_path": "COMESSE\\4-Archiviati\\2018\\SAE275 13_03_2018\\StarblendPlus\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:32.911503+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2018\\SAE275 13_03_2018\\StarblendPlus\\SAE275\\Sae275\\2025-09-02\\18-10-32_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:32.911503+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:32.911503+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_c553d70e_20250902_180000", + "name": "Ssae0463", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_315", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_315\\Ssae0463.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_315", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_315", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:35.468896+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_315\\2025-09-02\\18-10-33_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:35.468896+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:35.468896+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b61a884e_20250902_180000", + "name": "Rve175", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\Rve175", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\Rve175\\Rve175.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\Rve175", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\Rve175", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:35.366314+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\Rve175\\2025-09-02\\18-10-33_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:35.366314+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:35.366314+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_27449f05_20250902_180000", + "name": "RVU008_2", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\_OLD\\Rvu008_20_03_2025\\RVU008_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\_OLD\\Rvu008_20_03_2025\\RVU008_5\\RVU008_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\_OLD\\Rvu008_20_03_2025\\RVU008_5", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\_OLD\\Rvu008_20_03_2025\\RVU008_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:37.944657+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\_OLD\\Rvu008_20_03_2025\\RVU008_5\\2025-09-02\\18-10-33_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:37.944657+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:37.944657+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ebe42278_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae04_4", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae04_4\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae04_4", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae04_4", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:35.837983+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\Varios\\Ssae04_4\\2025-09-02\\18-10-33_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:35.837983+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:35.837983+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_b34096b1_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae0469", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae0469\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae0469", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae0469", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:37.924042+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae0469\\2025-09-02\\18-10-35_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:37.924042+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:37.924042+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_5d807821_20250902_180000", + "name": "RVE045_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.005249 - Modifica O&U - SAE323\\04 - Software\\_NEW\\RVE045\\PLC\\RVE045_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.005249 - Modifica O&U - SAE323\\04 - Software\\_NEW\\RVE045\\PLC\\RVE045_2\\RVE045_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2022\\E5.005249 - Modifica O&U - SAE323\\04 - Software\\_NEW\\RVE045\\PLC\\RVE045_2", + "backup_path": "COMESSE\\4-Archiviati\\2022\\E5.005249 - Modifica O&U - SAE323\\04 - Software\\_NEW\\RVE045\\PLC\\RVE045_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:37.315119+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2022\\E5.005249 - Modifica O&U - SAE323\\04 - Software\\_NEW\\RVE045\\PLC\\RVE045_2\\2025-09-02\\18-10-35_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:37.315119+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:37.315119+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_14345984_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007644 - Modifica SAE452 - Maselli 4501847880 + 4501855263\\04 - Software\\_OLD\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.007644 - Modifica SAE452 - Maselli 4501847880 + 4501855263\\04 - Software\\_OLD\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.007644 - Modifica SAE452 - Maselli 4501847880 + 4501855263\\04 - Software\\_OLD\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "backup_path": "COMESSE\\2-Work in Progress\\E5.007644 - Modifica SAE452 - Maselli 4501847880 + 4501855263\\04 - Software\\_OLD\\Step 01\\PLC\\PLC_SAE452\\Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:38.080500+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.007644 - Modifica SAE452 - Maselli 4501847880 + 4501855263\\04 - Software\\_OLD\\Step 01\\PLC\\PLC_SAE452\\Sae452Up\\2025-09-02\\18-10-35_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:38.080500+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:38.080500+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_97183d60_20250902_180000", + "name": "REP080_12_05_2025", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1\\REP080_12_05_2025.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:37.385767+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\InLavoro\\PLC\\REP080_1\\2025-09-02\\18-10-36_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:37.385767+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:37.385767+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.075793+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f01a4e8b_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:36.907956+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\2025-09-02\\18-10-36_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:36.907956+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:36.907956+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d5293939_20250902_180000", + "name": "Ssae0469", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\02-Ssae0469", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\02-Ssae0469\\Ssae0469.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\02-Ssae0469", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\02-Ssae0469", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:39.604895+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\From SAP\\02-Ssae0469\\2025-09-02\\18-10-37_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:39.604895+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:39.604895+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_2ac84d66_20250902_180000", + "name": "RPS111_2", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2019\\E5.001998 - RPS111 - New Pilot\\Ritorno da cantiere RPS111\\PLC\\RPS111_4", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2019\\E5.001998 - RPS111 - New Pilot\\Ritorno da cantiere RPS111\\PLC\\RPS111_4\\RPS111_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2019\\E5.001998 - RPS111 - New Pilot\\Ritorno da cantiere RPS111\\PLC\\RPS111_4", + "backup_path": "COMESSE\\4-Archiviati\\2019\\E5.001998 - RPS111 - New Pilot\\Ritorno da cantiere RPS111\\PLC\\RPS111_4", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:39.578503+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2019\\E5.001998 - RPS111 - New Pilot\\Ritorno da cantiere RPS111\\PLC\\RPS111_4\\2025-09-02\\18-10-37_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:39.578503+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:39.578503+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_55bb0bf8_20250902_180000", + "name": "Rnf032", + "path": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032\\Rnf032.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032", + "backup_path": "04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:39.461582+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\04 - E5.007299 - Modifica O&U - RNF032\\InLavoro\\PLC\\RNF032_19032024_PLC_GOMEZ\\Rnf032\\Rnf032\\2025-09-02\\18-10-37_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:39.461582+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:39.461582+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0367fffb_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:40.079664+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_14\\2025-09-02\\18-10-38_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:40.079664+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:40.079664+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_e3c9fdea_20250902_180000", + "name": "Schiumat", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumat", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumat\\Schiumat.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumat", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumat", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:39.417860+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021_COP\\1-PLC\\Schiumat\\2025-09-02\\18-10-38_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:39.417860+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:39.417860+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_51951829_20250902_180000", + "name": "Srve0076", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\Srve0076.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:38.451429+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\Copiare Modifiche dall RVE076\\SRVE0076_Matrix_07_03_24\\Srve0_14\\2025-09-02\\18-10-38_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:38.451429+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:38.451429+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_f831c910_20250902_180000", + "name": "RVU008_2", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\RVU008_5", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\RVU008_5\\RVU008_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\RVU008_5", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\RVU008_5", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:43.050453+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\RVU008_5\\2025-09-02\\18-10-38_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:43.050453+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:43.050453+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_82f88e22_20250902_180000", + "name": "RVE063_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0\\RVE063_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:42.111479+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0\\2025-09-02\\18-10-39_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:42.111479+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:42.111479+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_864102df_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\15_Ssae04_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\15_Ssae04_2\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\15_Ssae04_2", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\15_Ssae04_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:42.550993+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\15_Ssae04_2\\2025-09-02\\18-10-39_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:42.550993+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:42.550993+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_46733dcc_20250902_180000", + "name": "315FTest", + "path": "C:\\Trabajo\\SIDEL\\00 - TEST Base Proyects\\InLavoro\\PLC\\315FTest", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\00 - TEST Base Proyects\\InLavoro\\PLC\\315FTest\\315FTest.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "00 - TEST Base Proyects\\InLavoro\\PLC\\315FTest", + "backup_path": "00 - TEST Base Proyects\\InLavoro\\PLC\\315FTest", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:40.947722+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\00 - TEST Base Proyects\\InLavoro\\PLC\\315FTest\\2025-09-02\\18-10-39_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:40.947722+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:40.947722+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_1071b56c_20250902_180000", + "name": "RVU008_S", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.005419 - Modifica O&U - RVU008\\04 - Software\\_NEW\\Old con COmmenti Db\\Rvu008_2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.005419 - Modifica O&U - RVU008\\04 - Software\\_NEW\\Old con COmmenti Db\\Rvu008_2\\RVU008_S.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.005419 - Modifica O&U - RVU008\\04 - Software\\_NEW\\Old con COmmenti Db\\Rvu008_2", + "backup_path": "COMESSE\\2-Work in Progress\\E5.005419 - Modifica O&U - RVU008\\04 - Software\\_NEW\\Old con COmmenti Db\\Rvu008_2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:44.464784+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.005419 - Modifica O&U - RVU008\\04 - Software\\_NEW\\Old con COmmenti Db\\Rvu008_2\\2025-09-02\\18-10-39_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:44.464784+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:44.464784+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8a1d3b53_20250902_180000", + "name": "RVE175_1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE\\RVE175_1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "backup_path": "COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:42.955156+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2024\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\PLC\\RVE175_CONTAPRESIONAIRE\\2025-09-02\\18-10-40_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:42.955156+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:42.955156+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_80726421_20250902_180000", + "name": "RVU008_T", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Test\\RVU008_T", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Test\\RVU008_T\\RVU008_T.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Test\\RVU008_T", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Test\\RVU008_T", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:46.239986+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Test\\RVU008_T\\2025-09-02\\18-10-41_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:46.239986+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:46.239986+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_30304414_20250902_180000", + "name": "prova1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\prova1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "backup_path": "COMESSE\\2-Work in Progress\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:42.708271+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\2025-09-02\\18-10-42_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:42.708271+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:42.708271+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d52d521c_20250902_180000", + "name": "Office_3", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3\\Office_3.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "backup_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:43.977414+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\1-24_10_2017 Twincat 2.11 UDP\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3\\2025-09-02\\18-10-42_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:43.977414+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:43.977414+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_fbb265fa_20250902_180000", + "name": "RVE063_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0\\RVE063_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "backup_path": "COMESSE\\2-Work in Progress\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:45.048989+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\E5.006960 - Modifica O&U - RVE063\\04 - Software\\_NEW\\PLC\\1.0\\Fine test 07-11-2024\\RVE063_0\\2025-09-02\\18-10-43_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:45.048989+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:45.048989+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_ab5de639_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\09_Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\09_Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\09_Sae452Up", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\09_Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:45.291921+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\09_Sae452Up\\2025-09-02\\18-10-43_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:45.291921+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:45.291921+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.076794+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_a29c3b2b_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:45.577376+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\2025-09-02\\18-10-43_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:45.577376+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:45.577376+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_977316ba_20250902_180000", + "name": "Upload", + "path": "C:\\Trabajo\\SIDEL\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\Upload", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\Upload\\Upload.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\Upload", + "backup_path": "01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\Upload", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:44.906913+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\01 - SAE463 - E5.006894-EXMU01UM - New Anton Paar\\InLavoro\\PLC\\Upload\\2025-09-02\\18-10-44_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:44.906913+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:44.906913+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_489d3c77_20250902_180000", + "name": "Rnf032", + "path": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Rnf032", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Rnf032\\Rnf032.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Rnf032", + "backup_path": "03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Rnf032", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:46.259603+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\03 - 5.007382-EXMU01UF - RVU008 - EQPT24731\\InLavoro\\PLC\\Varios\\Rnf032\\2025-09-02\\18-10-44_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:46.259603+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:46.259603+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0c243ef8_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\Ssae0452", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\Ssae0452\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\Ssae0452", + "backup_path": "COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\Ssae0452", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:47.014414+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\SAE452 San Giorgio in Bosco\\Step 01\\PLC\\Ssae0452\\2025-09-02\\18-10-45_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:47.014414+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:47.014414+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_9d75ff74_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Ssae0452", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\Ssae0452\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\Ssae0452", + "backup_path": "COMESSE\\2-Work in Progress\\Ssae0452", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:46.857655+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\Ssae0452\\2025-09-02\\18-10-45_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:46.857655+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:46.857655+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_467c07a1_20250902_180000", + "name": "SAE052_2", + "path": "C:\\Trabajo\\SIDEL\\12 - SAE052 - Syrup Update & GSD Update\\InLavoro\\PLC\\SAE052_17_03_2025", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\12 - SAE052 - Syrup Update & GSD Update\\InLavoro\\PLC\\SAE052_17_03_2025\\SAE052_2.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "12 - SAE052 - Syrup Update & GSD Update\\InLavoro\\PLC\\SAE052_17_03_2025", + "backup_path": "12 - SAE052 - Syrup Update & GSD Update\\InLavoro\\PLC\\SAE052_17_03_2025", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:48.072215+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\12 - SAE052 - Syrup Update & GSD Update\\InLavoro\\PLC\\SAE052_17_03_2025\\2025-09-02\\18-10-45_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:48.072215+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:48.072215+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0c4df4eb_20250902_180000", + "name": "Sae275", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\Respaldo\\StarblendPlus\\SAE275\\Sae275", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\Respaldo\\StarblendPlus\\SAE275\\Sae275\\Sae275.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\Respaldo\\StarblendPlus\\SAE275\\Sae275", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\Respaldo\\StarblendPlus\\SAE275\\Sae275", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:46.528896+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006378 - Modifica O&U - RVE075_SAE275\\DV\\05 - BACKUP\\01 - SAE275\\BLENDER\\Respaldo\\StarblendPlus\\SAE275\\Sae275\\2025-09-02\\18-10-45_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:46.528896+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:46.528896+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_07e5d0d1_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\13_SAE452_01062022", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\13_SAE452_01062022\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\13_SAE452_01062022", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\13_SAE452_01062022", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:48.239053+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\13_SAE452_01062022\\2025-09-02\\18-10-46_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:48.239053+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:48.239053+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_68152f87_20250902_180000", + "name": "Mpi", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\E5.003522 - Modifica O&U - RAS021\\04 - Software\\OLD\\RAS021\\Software\\HMI\\ZNRAS021\\CFG\\Mpi", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\E5.003522 - Modifica O&U - RAS021\\04 - Software\\OLD\\RAS021\\Software\\HMI\\ZNRAS021\\CFG\\Mpi\\Mpi.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\E5.003522 - Modifica O&U - RAS021\\04 - Software\\OLD\\RAS021\\Software\\HMI\\ZNRAS021\\CFG\\Mpi", + "backup_path": "COMESSE\\4-Archiviati\\2021\\E5.003522 - Modifica O&U - RAS021\\04 - Software\\OLD\\RAS021\\Software\\HMI\\ZNRAS021\\CFG\\Mpi", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:46.898822+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\E5.003522 - Modifica O&U - RAS021\\04 - Software\\OLD\\RAS021\\Software\\HMI\\ZNRAS021\\CFG\\Mpi\\2025-09-02\\18-10-46_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:46.898822+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:46.898822+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8e10ce1b_20250902_180000", + "name": "Office_3", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3\\Office_3.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "backup_path": "COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:47.789861+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2017\\SAE275 Upgrade ZN 7 TwinCat\\2-06_12_2017\\Configurazione CPU Fille Utilizzata per Prove Comunicazione\\Office_3\\2025-09-02\\18-10-46_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:47.789861+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:47.789861+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d37c123a_20250902_180000", + "name": "CMaster2_Tia", + "path": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\TIA Migration\\CMaster2", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\00 - MASTER\\InLavoro\\PLC\\TIA Migration\\CMaster2\\CMaster2_Tia.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "00 - MASTER\\InLavoro\\PLC\\TIA Migration\\CMaster2", + "backup_path": "00 - MASTER\\InLavoro\\PLC\\TIA Migration\\CMaster2", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:56.831940+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\00 - MASTER\\InLavoro\\PLC\\TIA Migration\\CMaster2\\2025-09-02\\18-10-47_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:56.831940+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:56.831940+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_15def206_20250902_180000", + "name": "SSME004_", + "path": "C:\\Trabajo\\SIDEL\\16 - E5.007821 SME004\\InLavoro\\PLC\\PLC_SME004\\L11_Mixer_18.8.22", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\16 - E5.007821 SME004\\InLavoro\\PLC\\PLC_SME004\\L11_Mixer_18.8.22\\SSME004_.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "16 - E5.007821 SME004\\InLavoro\\PLC\\PLC_SME004\\L11_Mixer_18.8.22", + "backup_path": "16 - E5.007821 SME004\\InLavoro\\PLC\\PLC_SME004\\L11_Mixer_18.8.22", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:49.667190+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\16 - E5.007821 SME004\\InLavoro\\PLC\\PLC_SME004\\L11_Mixer_18.8.22\\2025-09-02\\18-10-47_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:49.667190+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:49.667190+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_6504a214_20250902_180000", + "name": "Rsc098", + "path": "C:\\Trabajo\\SIDEL\\17 - E5.006880 - Modifica O&U - RSC098\\InLavoro\\PLC\\Rsc098_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\17 - E5.006880 - Modifica O&U - RSC098\\InLavoro\\PLC\\Rsc098_1\\Rsc098.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "17 - E5.006880 - Modifica O&U - RSC098\\InLavoro\\PLC\\Rsc098_1", + "backup_path": "17 - E5.006880 - Modifica O&U - RSC098\\InLavoro\\PLC\\Rsc098_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:48.614320+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\17 - E5.006880 - Modifica O&U - RSC098\\InLavoro\\PLC\\Rsc098_1\\2025-09-02\\18-10-47_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:48.614320+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:48.614320+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_d7fc1bbb_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_9", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_9\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_9", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_9", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:49.833954+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_9\\2025-09-02\\18-10-48_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:49.833954+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:49.833954+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_678c15d5_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_4", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_4\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_4", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_4", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:49.973943+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Versions\\Ssae04_4\\2025-09-02\\18-10-48_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:49.973943+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:49.973943+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_8a6fa7a2_20250902_180000", + "name": "REV049_R", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\REV049\\R1\\Riempitrice_Linea_1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\REV049\\R1\\Riempitrice_Linea_1\\REV049_R.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\REV049\\R1\\Riempitrice_Linea_1", + "backup_path": "COMESSE\\2-Work in Progress\\REV049\\R1\\Riempitrice_Linea_1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:53.505368+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\REV049\\R1\\Riempitrice_Linea_1\\2025-09-02\\18-10-48_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:53.505368+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:53.505368+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_a50577cd_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:50.743359+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005770 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\2025-09-02\\18-10-48_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:50.743359+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:50.743359+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_6baccf72_20250902_180000", + "name": "Mpi", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\RAS021\\Old_HMI_Zenon_5_50\\znras021-1\\CFG\\Mpi", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\2-Work in Progress\\RAS021\\Old_HMI_Zenon_5_50\\znras021-1\\CFG\\Mpi\\Mpi.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\2-Work in Progress\\RAS021\\Old_HMI_Zenon_5_50\\znras021-1\\CFG\\Mpi", + "backup_path": "COMESSE\\2-Work in Progress\\RAS021\\Old_HMI_Zenon_5_50\\znras021-1\\CFG\\Mpi", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:50.305662+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\2-Work in Progress\\RAS021\\Old_HMI_Zenon_5_50\\znras021-1\\CFG\\Mpi\\2025-09-02\\18-10-49_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:50.305662+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:50.305662+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_7949746d_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:50.202993+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0\\2025-09-02\\18-10-50_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:50.202993+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:50.202993+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.077802+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_a559fdf3_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "backup_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.276999+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\2025-09-02\\18-10-50_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.276999+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.278012+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_cdebb926_20250902_180000", + "name": "Ssae0027", + "path": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae027", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae027\\Ssae0027.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae027", + "backup_path": "07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae027", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.446083+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\07 - E5.007600 - SAE469\\InLavoro\\PLC\\Ssae027\\2025-09-02\\18-10-50_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.446083+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.446083+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0e8e7b2c_20250902_180000", + "name": "Sae452Up", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\10_Sae452Up", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\10_Sae452Up\\Sae452Up.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\10_Sae452Up", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\10_Sae452Up", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.498659+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_SAP\\10_Sae452Up\\2025-09-02\\18-10-50_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.498659+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.498659+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_0fdc28d8_20250902_180000", + "name": "Ras021", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2021\\RAS021\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021\\Ras021.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2021\\RAS021\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "backup_path": "COMESSE\\4-Archiviati\\2021\\RAS021\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.216114+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2021\\RAS021\\1-RAS021 (Versione Fine Test)\\Test fatti al SAC\\Test SAC Com CP\\Ras021\\2025-09-02\\18-10-51_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.216114+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.216114+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_833ad1e2_20250902_180000", + "name": "Ssae0452", + "path": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled\\Ssae0452.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled", + "backup_path": "09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:54.148488+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\09 - SAE452 - Diet as Regular - San Giorgio in Bosco\\InLavoro\\PLC\\_NEW\\Ssae04_11 - compiled\\2025-09-02\\18-10-52_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:54.148488+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:54.149957+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_7583e096_20250902_180000", + "name": "prova1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006668 - RVE043 - SAE217\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.006668 - RVE043 - SAE217\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\prova1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.006668 - RVE043 - SAE217\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "backup_path": "COMESSE\\5-In Avviamento\\E5.006668 - RVE043 - SAE217\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.728350+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.006668 - RVE043 - SAE217\\E5.006668 - Modifica O&U - RVE043_SAE217___XX_XX_XX_XXXX\\04 - Software\\NEW\\SAE217\\PLC utilizzato per il test del misuratore\\prova1\\2025-09-02\\18-10-52_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.728350+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.728350+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_5b98f3ef_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "backup_path": "COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:52.795767+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2023\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\RVL106_0\\RVL106_0\\2025-09-02\\18-10-52_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:52.795767+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:52.795767+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_bd99a2cf_20250902_180000", + "name": "Rve075", + "path": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\05 - RVE075\\Rve075", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\05 - RVE075\\Rve075\\Rve075.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\05 - RVE075\\Rve075", + "backup_path": "11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\05 - RVE075\\Rve075", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:54.058383+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\11 - E5.007191 - Modifica O&U - REP080\\Entregado por SIDEL\\05 - RVE075\\Rve075\\2025-09-02\\18-10-52_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:54.058383+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:54.058383+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_7b6bcb89_20250902_180000", + "name": "RVL106_0", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\RVL106_0.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "backup_path": "COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:54.668690+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_Versione Utilizzata per Test\\PLC\\RVL106_0_TEST_TEKNORS\\2025-09-02\\18-10-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:54.668690+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:54.668690+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_abdf890d_20250902_180000", + "name": "RVL106_04-09-2023", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_0", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_0\\RVL106_04-09-2023.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_0", + "backup_path": "COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_0", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:53.200423+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\5-In Avviamento\\E5.005598 - Modifica O&U - RVL106\\04 - Software\\_NEW\\PLC\\2.0\\2.3\\RVL106_22_10_2024\\RVL106_0\\2025-09-02\\18-10-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:53.200423+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:53.200423+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_1a3dcec1_20250902_180000", + "name": "RVE175_1", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE\\RVE175_1.s7p", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "backup_path": "COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:54.850501+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\3-Per Sidel\\E5.006600 - Modifica O&U - RVE175\\04 - Software\\_NEW\\RVE175_CONTAPRESIONAIRE\\2025-09-02\\18-10-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:54.850501+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:54.850501+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + }, + { + "id": "project_016430e8_20250902_180000", + "name": "REV052", + "path": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "type": "siemens_s7", + "s7p_file": "C:\\Trabajo\\SIDEL\\COMESSE\\4-Archiviati\\2022\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\REV052.S7P", + "observation_directory": "C:/Trabajo/SIDEL", + "relative_path": "COMESSE\\4-Archiviati\\2022\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "backup_path": "COMESSE\\4-Archiviati\\2022\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC", + "schedule_config": { + "schedule": "daily", + "schedule_time": "02:00", + "enabled": true, + "next_scheduled_backup": "", + "retry_delay_hours": 1, + "backup_timeout_minutes": 0, + "min_backup_interval_minutes": 10, + "min_free_space_mb": 100 + }, + "backup_history": { + "last_backup_date": "2025-09-02T16:10:55.617456+00:00", + "last_backup_file": "D:\\Backups\\AutoBackups\\COMESSE\\4-Archiviati\\2022\\E5.003545 - Modifica O&U - REV052\\04 - Software\\NEW\\PLC\\21_03_2022\\REV052_PLC\\2025-09-02\\18-10-53_projects.zip", + "backup_count": 1, + "last_successful_backup": "2025-09-02T16:10:55.617456+00:00" + }, + "hash_info": { + "last_s7p_hash": "", + "last_full_hash": "", + "last_s7p_timestamp": "", + "last_s7p_size": 0, + "last_scan_timestamp": "", + "file_count": 0, + "total_size_bytes": 0 + }, + "status": { + "current_status": "ready", + "last_error": null, + "retry_count": 0, + "next_retry": null, + "files_in_use": false, + "exclusivity_check_passed": true, + "last_status_update": "2025-09-02T16:10:55.617456+00:00" + }, + "discovery_info": { + "discovered_date": "2025-09-02T16:00:00.078809+00:00", + "discovery_method": "everything_api", + "auto_discovered": true + }, + "backup_options": { + "compression_level": 6, + "include_subdirectories": true, + "preserve_directory_structure": true, + "hash_algorithm": "md5", + "hash_includes": [ + "timestamp", + "size" + ], + "backup_type": "complete", + "process_priority": "low", + "sequential_execution": true, + "filename_format": "HH-MM-SS_projects.zip", + "date_format": "YYYY-MM-DD" + } + } + ], + "statistics": { + "total_backups_created": 0, + "total_backup_size_mb": 0.0, + "average_backup_time_seconds": 0.0, + "last_global_scan": "", + "projects_with_errors": 0, + "projects_pending_retry": 0 + } +} \ No newline at end of file diff --git a/src/models/project_model.py b/src/models/project_model.py index c6e8ded..809a398 100644 --- a/src/models/project_model.py +++ b/src/models/project_model.py @@ -74,6 +74,32 @@ class Project: self.discovery_method = discovery_info.get("discovery_method", "") self.auto_discovered = discovery_info.get("auto_discovered", True) + # Configuraciones de backup (heredadas de configuración global) + backup_options = project_data.get("backup_options", {}) + self.compression_level = backup_options.get("compression_level", 6) + self.include_subdirectories = backup_options.get("include_subdirectories", True) + self.preserve_directory_structure = backup_options.get( + "preserve_directory_structure", True + ) + self.hash_algorithm = backup_options.get("hash_algorithm", "md5") + self.hash_includes = backup_options.get("hash_includes", ["timestamp", "size"]) + self.backup_type = backup_options.get("backup_type", "complete") + self.process_priority = backup_options.get("process_priority", "low") + self.sequential_execution = backup_options.get("sequential_execution", True) + self.filename_format = backup_options.get( + "filename_format", "HH-MM-SS_projects.zip" + ) + self.date_format = backup_options.get("date_format", "YYYY-MM-DD") + + # Configuraciones adicionales del proyecto (heredadas de global_settings) + schedule_config = project_data.get("schedule_config", {}) + self.retry_delay_hours = schedule_config.get("retry_delay_hours", 1) + self.backup_timeout_minutes = schedule_config.get("backup_timeout_minutes", 0) + self.min_backup_interval_minutes = schedule_config.get( + "min_backup_interval_minutes", 10 + ) + self.min_free_space_mb = schedule_config.get("min_free_space_mb", 100) + def to_dict(self) -> Dict[str, Any]: """Convertir el proyecto a diccionario para serialización JSON""" return { @@ -90,6 +116,10 @@ class Project: "schedule_time": self.schedule_time, "enabled": self.enabled, "next_scheduled_backup": self.next_scheduled_backup, + "retry_delay_hours": self.retry_delay_hours, + "backup_timeout_minutes": self.backup_timeout_minutes, + "min_backup_interval_minutes": self.min_backup_interval_minutes, + "min_free_space_mb": self.min_free_space_mb, }, "backup_history": { "last_backup_date": self.last_backup_date, @@ -120,6 +150,18 @@ class Project: "discovery_method": self.discovery_method, "auto_discovered": self.auto_discovered, }, + "backup_options": { + "compression_level": self.compression_level, + "include_subdirectories": self.include_subdirectories, + "preserve_directory_structure": self.preserve_directory_structure, + "hash_algorithm": self.hash_algorithm, + "hash_includes": self.hash_includes, + "backup_type": self.backup_type, + "process_priority": self.process_priority, + "sequential_execution": self.sequential_execution, + "filename_format": self.filename_format, + "date_format": self.date_format, + }, } def update_status(self, status: ProjectStatus, error_message: str = None) -> None: diff --git a/src/services/project_discovery_service.py b/src/services/project_discovery_service.py index 325f88c..358a71d 100644 --- a/src/services/project_discovery_service.py +++ b/src/services/project_discovery_service.py @@ -262,6 +262,9 @@ class ProjectDiscoveryService: }, } + # Apply global configurations + project_data = self._apply_global_configurations(project_data) + return Project(project_data) except Exception as e: @@ -329,6 +332,9 @@ class ProjectDiscoveryService: }, } + # Apply global configurations + project_data = self._apply_global_configurations(project_data) + return Project(project_data) except Exception as e: @@ -337,6 +343,54 @@ class ProjectDiscoveryService: ) return None + def _apply_global_configurations( + self, project_data: Dict[str, Any] + ) -> Dict[str, Any]: + """Apply all global configurations to a new project""" + global_settings = self.config.global_settings + backup_options = self.config.backup_options + + # Apply global settings to schedule_config + if "schedule_config" not in project_data: + project_data["schedule_config"] = {} + + project_data["schedule_config"].update( + { + "schedule": global_settings.get("default_schedule", "daily"), + "schedule_time": global_settings.get("default_schedule_time", "02:00"), + "retry_delay_hours": global_settings.get("retry_delay_hours", 1), + "backup_timeout_minutes": global_settings.get( + "backup_timeout_minutes", 0 + ), + "min_backup_interval_minutes": global_settings.get( + "min_backup_interval_minutes", 10 + ), + "min_free_space_mb": global_settings.get("min_free_space_mb", 100), + } + ) + + # Apply backup options + project_data["backup_options"] = { + "compression_level": backup_options.get("compression_level", 6), + "include_subdirectories": backup_options.get( + "include_subdirectories", True + ), + "preserve_directory_structure": backup_options.get( + "preserve_directory_structure", True + ), + "hash_algorithm": backup_options.get("hash_algorithm", "md5"), + "hash_includes": backup_options.get("hash_includes", ["timestamp", "size"]), + "backup_type": backup_options.get("backup_type", "complete"), + "process_priority": backup_options.get("process_priority", "low"), + "sequential_execution": backup_options.get("sequential_execution", True), + "filename_format": backup_options.get( + "filename_format", "HH-MM-SS_projects.zip" + ), + "date_format": backup_options.get("date_format", "YYYY-MM-DD"), + } + + return project_data + def _generate_project_id(self, path: str) -> str: """Generar ID único para un proyecto basado en su ruta""" # Usar hash de la ruta + timestamp para garantizar unicidad diff --git a/test_new_project_config.py b/test_new_project_config.py new file mode 100644 index 0000000..50838e3 --- /dev/null +++ b/test_new_project_config.py @@ -0,0 +1,117 @@ +#!/usr/bin/env python3 +""" +Test script to verify that new projects get global configurations applied +""" + +import sys +import os +from pathlib import Path + +# Add src to path so we can import the modules +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src")) + +from models.config_model import Config +from services.project_discovery_service import ProjectDiscoveryService +from models.project_model import ProjectManager +import tempfile + + +def test_new_project_global_config(): + """Test that new projects get global configurations applied""" + + # Create a temporary config + config = Config() + + # Create project manager + project_manager = ProjectManager() + + # Create discovery service + discovery_service = ProjectDiscoveryService(config, project_manager) + + # Test manual project creation + print("Testing manual project creation...") + obs_dir = { + "path": "D:\\Test\\TestProject", + "type": "manual", + "description": "Test project", + } + + # Create the manual project + manual_project = discovery_service._create_manual_project(obs_dir) + + if manual_project: + print("✅ Manual project created successfully") + + # Check if global configurations were applied + schedule_config_keys = list(manual_project.to_dict()["schedule_config"].keys()) + has_backup_options = "backup_options" in manual_project.to_dict() + + print(f"Schedule config keys: {schedule_config_keys}") + print(f"Has backup_options: {has_backup_options}") + + # Verify specific global settings + project_dict = manual_project.to_dict() + schedule_config = project_dict["schedule_config"] + backup_options = project_dict.get("backup_options", {}) + + print( + f"Retry delay hours: {schedule_config.get('retry_delay_hours', 'MISSING')}" + ) + print( + f"Backup timeout: {schedule_config.get('backup_timeout_minutes', 'MISSING')}" + ) + print( + f"Min backup interval: {schedule_config.get('min_backup_interval_minutes', 'MISSING')}" + ) + print(f"Min free space: {schedule_config.get('min_free_space_mb', 'MISSING')}") + print( + f"Compression level: {backup_options.get('compression_level', 'MISSING')}" + ) + print( + f"Include subdirectories: {backup_options.get('include_subdirectories', 'MISSING')}" + ) + + # Check if all expected keys are present + expected_schedule_keys = [ + "schedule", + "schedule_time", + "enabled", + "next_scheduled_backup", + "retry_delay_hours", + "backup_timeout_minutes", + "min_backup_interval_minutes", + "min_free_space_mb", + ] + + expected_backup_keys = [ + "compression_level", + "include_subdirectories", + "preserve_directory_structure", + "hash_algorithm", + "hash_includes", + "backup_type", + "process_priority", + "sequential_execution", + "filename_format", + "date_format", + ] + + missing_schedule_keys = [ + key for key in expected_schedule_keys if key not in schedule_config + ] + missing_backup_keys = [ + key for key in expected_backup_keys if key not in backup_options + ] + + if not missing_schedule_keys and not missing_backup_keys: + print("✅ ALL global configurations successfully applied to new project!") + else: + print(f"❌ Missing schedule keys: {missing_schedule_keys}") + print(f"❌ Missing backup keys: {missing_backup_keys}") + + else: + print("❌ Failed to create manual project") + + +if __name__ == "__main__": + test_new_project_global_config() diff --git a/test_projects_config.py b/test_projects_config.py new file mode 100644 index 0000000..b84b664 --- /dev/null +++ b/test_projects_config.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python3 +""" +Test script to verify project configurations +""" + +import json +from pathlib import Path + + +def main(): + projects_file = Path("projects.json") + if projects_file.exists(): + with open(projects_file, "r", encoding="utf-8") as f: + data = json.load(f) + print(f'Proyectos existentes: {len(data.get("projects", []))}') + + if data.get("projects"): + project = data["projects"][0] + print(f'Primer proyecto: {project.get("name", "N/A")}') + print( + f'Configuraciones en schedule_config: {list(project.get("schedule_config", {}).keys())}' + ) + print(f'Tiene backup_options: {"backup_options" in project}') + + # Mostrar configuraciones actuales + schedule_config = project.get("schedule_config", {}) + print(f"Schedule config actual: {schedule_config}") + + backup_options = project.get("backup_options", {}) + print(f"Backup options actual: {backup_options}") + else: + print("No hay proyectos en el archivo") + else: + print("No hay archivo projects.json") + + +if __name__ == "__main__": + main() diff --git a/test_s7p_project_config.py b/test_s7p_project_config.py new file mode 100644 index 0000000..020fd5e --- /dev/null +++ b/test_s7p_project_config.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python3 +""" +Test script to verify that S7P projects also get global configurations applied +""" + +import sys +import os + +# Add src to path so we can import the modules +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src")) + +from models.config_model import Config +from services.project_discovery_service import ProjectDiscoveryService +from models.project_model import ProjectManager + + +def test_s7p_project_global_config(): + """Test that S7P projects get global configurations applied""" + + # Create a temporary config + config = Config() + + # Create project manager + project_manager = ProjectManager() + + # Create discovery service + discovery_service = ProjectDiscoveryService(config, project_manager) + + # Test S7P project creation + print("Testing S7P project creation...") + obs_dir = { + "path": "D:\\Test\\ObservationDir", + "type": "siemens_s7", + "description": "Test S7 observation directory", + } + + # Simulate an S7P file path + s7p_file_path = "D:\\Test\\ObservationDir\\TestProject\\TestProject.s7p" + + # Create the S7P project + s7p_project = discovery_service._create_project_from_s7p(s7p_file_path, obs_dir) + + if s7p_project: + print("✅ S7P project created successfully") + + # Check if global configurations were applied + project_dict = s7p_project.to_dict() + schedule_config_keys = list(project_dict["schedule_config"].keys()) + has_backup_options = "backup_options" in project_dict + + print(f"Schedule config keys: {schedule_config_keys}") + print(f"Has backup_options: {has_backup_options}") + + # Verify specific global settings + schedule_config = project_dict["schedule_config"] + backup_options = project_dict.get("backup_options", {}) + + print( + f"Retry delay hours: {schedule_config.get('retry_delay_hours', 'MISSING')}" + ) + print( + f"Backup timeout: {schedule_config.get('backup_timeout_minutes', 'MISSING')}" + ) + print( + f"Min backup interval: {schedule_config.get('min_backup_interval_minutes', 'MISSING')}" + ) + print(f"Min free space: {schedule_config.get('min_free_space_mb', 'MISSING')}") + print( + f"Compression level: {backup_options.get('compression_level', 'MISSING')}" + ) + print(f"Hash algorithm: {backup_options.get('hash_algorithm', 'MISSING')}") + + # Check if all expected keys are present + expected_schedule_keys = [ + "schedule", + "schedule_time", + "enabled", + "next_scheduled_backup", + "retry_delay_hours", + "backup_timeout_minutes", + "min_backup_interval_minutes", + "min_free_space_mb", + ] + + expected_backup_keys = [ + "compression_level", + "include_subdirectories", + "preserve_directory_structure", + "hash_algorithm", + "hash_includes", + "backup_type", + "process_priority", + "sequential_execution", + "filename_format", + "date_format", + ] + + missing_schedule_keys = [ + key for key in expected_schedule_keys if key not in schedule_config + ] + missing_backup_keys = [ + key for key in expected_backup_keys if key not in backup_options + ] + + if not missing_schedule_keys and not missing_backup_keys: + print("✅ ALL global configurations successfully applied to S7P project!") + else: + print(f"❌ Missing schedule keys: {missing_schedule_keys}") + print(f"❌ Missing backup keys: {missing_backup_keys}") + + else: + print("❌ Failed to create S7P project") + + +if __name__ == "__main__": + test_s7p_project_global_config() diff --git a/update_projects_config.py b/update_projects_config.py new file mode 100644 index 0000000..eef65a7 --- /dev/null +++ b/update_projects_config.py @@ -0,0 +1,143 @@ +#!/usr/bin/env python3 +""" +Script to update existing projects with global configurations +""" + +import json +from pathlib import Path +from datetime import datetime, timezone + + +def apply_global_configurations_to_project( + project_data, global_settings, backup_options +): + """Apply global configurations to a project data dictionary""" + + # Apply global settings to schedule_config + if "schedule_config" not in project_data: + project_data["schedule_config"] = {} + + schedule_config = project_data["schedule_config"] + + # Add missing global settings (preserving existing values) + schedule_config.setdefault( + "retry_delay_hours", global_settings.get("retry_delay_hours", 1) + ) + schedule_config.setdefault( + "backup_timeout_minutes", global_settings.get("backup_timeout_minutes", 0) + ) + schedule_config.setdefault( + "min_backup_interval_minutes", + global_settings.get("min_backup_interval_minutes", 10), + ) + schedule_config.setdefault( + "min_free_space_mb", global_settings.get("min_free_space_mb", 100) + ) + + # Apply backup options (only if not present) + if "backup_options" not in project_data: + project_data["backup_options"] = { + "compression_level": backup_options.get("compression_level", 6), + "include_subdirectories": backup_options.get( + "include_subdirectories", True + ), + "preserve_directory_structure": backup_options.get( + "preserve_directory_structure", True + ), + "hash_algorithm": backup_options.get("hash_algorithm", "md5"), + "hash_includes": backup_options.get("hash_includes", ["timestamp", "size"]), + "backup_type": backup_options.get("backup_type", "complete"), + "process_priority": backup_options.get("process_priority", "low"), + "sequential_execution": backup_options.get("sequential_execution", True), + "filename_format": backup_options.get( + "filename_format", "HH-MM-SS_projects.zip" + ), + "date_format": backup_options.get("date_format", "YYYY-MM-DD"), + } + + return project_data + + +def main(): + # Load current config + config_file = Path("config.json") + if not config_file.exists(): + print("Error: No se encontró config.json") + return + + with open(config_file, "r", encoding="utf-8") as f: + config_data = json.load(f) + + global_settings = config_data.get("global_settings", {}) + backup_options = config_data.get("backup_options", {}) + + print(f"Configuraciones globales cargadas:") + print(f" - Global settings: {list(global_settings.keys())}") + print(f" - Backup options: {list(backup_options.keys())}") + + # Load current projects + projects_file = Path("projects.json") + if not projects_file.exists(): + print("Error: No se encontró projects.json") + return + + with open(projects_file, "r", encoding="utf-8") as f: + projects_data = json.load(f) + + projects = projects_data.get("projects", []) + print(f"Procesando {len(projects)} proyectos...") + + # Update each project + updated_count = 0 + for project in projects: + original_schedule_keys = len(project.get("schedule_config", {})) + has_backup_options = "backup_options" in project + + # Apply global configurations + project = apply_global_configurations_to_project( + project, global_settings, backup_options + ) + + new_schedule_keys = len(project.get("schedule_config", {})) + now_has_backup_options = "backup_options" in project + + if new_schedule_keys > original_schedule_keys or ( + not has_backup_options and now_has_backup_options + ): + updated_count += 1 + + # Update metadata + projects_data["metadata"]["last_updated"] = datetime.now(timezone.utc).isoformat() + projects_data["metadata"]["auto_config_update"] = datetime.now( + timezone.utc + ).isoformat() + + # Save updated projects + backup_file = Path("projects.json.backup") + # Create backup + with open(backup_file, "w", encoding="utf-8") as f: + json.dump(projects_data, f, indent=2, ensure_ascii=False) + + # Save updated file + with open(projects_file, "w", encoding="utf-8") as f: + json.dump(projects_data, f, indent=2, ensure_ascii=False) + + print(f"✅ Actualización completada:") + print(f" - Proyectos actualizados: {updated_count}/{len(projects)}") + print(f" - Backup creado en: {backup_file}") + print(f" - Archivo actualizado: {projects_file}") + + # Verify first project + if projects: + first_project = projects[0] + print( + f"\\nVerificación del primer proyecto '{first_project.get('name', 'N/A')}':" + ) + print( + f" - Schedule config keys: {list(first_project.get('schedule_config', {}).keys())}" + ) + print(f" - Tiene backup_options: {'backup_options' in first_project}") + + +if __name__ == "__main__": + main()