You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/interfaces/AlertInterfaces.ts
+49-1Lines changed: 49 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ export interface Alert {
79
79
*/
80
80
truncatedSecret?: string;
81
81
/**
82
-
* ValidationFingerprints for the secret liveness check. Only return on demanded
82
+
* ValidationFingerprints for the secret liveness check. Only returned on demand in Get API with Expand parameter set to be ValidationFingerprint (not returned in List API)
83
83
*/
84
84
validationFingerprints?: ValidationFingerprint[];
85
85
}
@@ -287,6 +287,9 @@ export enum ComponentType {
287
287
* Indicates the component is a loose file. Not a package as understood by different package managers.
288
288
*/
289
289
File=9,
290
+
/**
291
+
* Indicates the component is a Go package.
292
+
*/
290
293
Go=10,
291
294
/**
292
295
* Indicates the component is a Docker Image
@@ -578,6 +581,35 @@ export interface Rule {
578
581
tags?: string[];
579
582
}
580
583
584
+
exportenumSarifJobStatus{
585
+
/**
586
+
* The job type when it is new
587
+
*/
588
+
New=0,
589
+
/**
590
+
* The job type when it is queued
591
+
*/
592
+
Queued=1,
593
+
/**
594
+
* The job type when it is completed
595
+
*/
596
+
Completed=2,
597
+
/**
598
+
* The job type when it fails
599
+
*/
600
+
Failed=3,
601
+
}
602
+
603
+
exportinterfaceSarifUploadStatus{
604
+
errors?: SarifValidationError[];
605
+
processingStatus?: SarifJobStatus;
606
+
}
607
+
608
+
exportinterfaceSarifValidationError{
609
+
nodePointer?: string;
610
+
validationError?: string;
611
+
}
612
+
581
613
exportinterfaceSearchCriteria{
582
614
/**
583
615
* If provided, only return alerts of this type. Otherwise, return alerts of all types.
0 commit comments