15 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace StellaOps.Concelier.Exporter.TrivyDb;
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using StellaOps.Concelier.Storage.Mongo.Exporting;
 | |
| 
 | |
| public sealed record TrivyDbExportPlan(
 | |
|     TrivyDbExportMode Mode,
 | |
|     string TreeDigest,
 | |
|     string? BaseExportId,
 | |
|     string? BaseManifestDigest,
 | |
|     bool ResetBaseline,
 | |
|     IReadOnlyList<ExportFileRecord> Manifest,
 | |
|     IReadOnlyList<ExportFileRecord> ChangedFiles,
 | |
|     IReadOnlyList<string> RemovedPaths);
 |