File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ export default class CxIacResult {
66 similarityID : string ;
77 filepath : string ;
88 severity : CxRealtimeEngineStatus ;
9+ expectedValue : string ;
10+ actualValue : string ;
911 locations : { line : number , startIndex : number , endIndex : number } [ ] ;
1012
1113 static parseResult ( resultObject : any ) : CxIacResult [ ] {
@@ -18,6 +20,8 @@ export default class CxIacResult {
1820 iacResult . similarityID = member . SimilarityID ;
1921 iacResult . filepath = member . FilePath ;
2022 iacResult . severity = member . Severity as CxRealtimeEngineStatus ;
23+ iacResult . expectedValue = member . ExpectedValue ;
24+ iacResult . actualValue = member . ActualValue ;
2125 iacResult . locations = Array . isArray ( member . Locations )
2226 ? member . Locations . map ( ( l : any ) => ( {
2327 line : l . Line ,
You can’t perform that action at this time.
0 commit comments