dce-dev-wizard
Version:
Wizard for managing development apps at Harvard DCE.
52 lines (51 loc) • 1.4 kB
TypeScript
/**
* Row from a CSV report from Wiz, a cloud security platform
* @author Allison Zhang
*/
declare type WizCSVRow = {
ID: string;
WizURL: string;
Name: string;
CVSSSeverity: string;
HasExploit: string;
HasCisaKevExploit: string;
FindingStatus: string;
Score: string;
Severity: string;
VendorSeverity: string;
NvdSeverity: string;
FirstDetected: string;
LastDetected: string;
ResolvedAt: string;
ResolutionReason: string;
Remediation: string;
LocationPath: string;
DetailedName: string;
Version: string;
FixedVersion: string;
DetectionMethod: string;
Link: string;
Projects: string;
AssetID: string;
AssetName: string;
AssetRegion: string;
ProviderUniqueId: string;
CloudProviderURL: string;
CloudPlatform: string;
Status: string;
SubscriptionExternalId: string;
SubscriptionId: string;
SubscriptionName: string;
Tags: string;
ExecutionControllers: string;
ExecutionControllersSubscriptionExternalIds: string;
ExecutionControllersSubscriptionNames: string;
ExecutionControllersKubernetesClusterNames: string;
CriticalRelatedIssuesCount: string;
HighRelatedIssuesCount: string;
MediumRelatedIssuesCount: string;
LowRelatedIssuesCount: string;
InfoRelatedIssuesCount: string;
ImageId: string;
};
export default WizCSVRow;