[SQL Migration] Enable saving assessment/recommendation reports (#1613)

* Implement save assessment report

* Implement save recommendation report

* Remove unnecessary content files after updating NuGet version
This commit is contained in:
Raymond Truong
2022-08-15 11:01:43 -07:00
committed by GitHub
parent fc955ad6cf
commit 28a33bea9a
3 changed files with 44 additions and 3 deletions

View File

@@ -88,6 +88,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Migration.Contracts
/// SQL instance requirements, representing an aggregated view of the performance requirements of the source instance
/// </summary>
public SqlInstanceRequirements InstanceRequirements { get; set; }
/// <summary>
/// File paths where the recommendation reports were saved
/// </summary>
public List<string> SkuRecommendationReportPaths { get; set; }
}
public class GetSkuRecommendationsRequest

View File

@@ -36,6 +36,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Migration.Contracts
/// Contains the raw assessment response
/// </summary>
public ISqlMigrationAssessmentModel RawAssessmentResult { get; set; }
/// <summary>
/// File path where the assessment report was saved
/// </summary>
public string AssessmentReportPath { get; set; }
}
/// <summary>