mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-04-16 17:47:47 +00:00
94 lines
1.6 KiB
TypeScript
94 lines
1.6 KiB
TypeScript
import { ProviderType } from "./providers";
|
|
|
|
export interface ScanProps {
|
|
type: "scans";
|
|
id: string;
|
|
attributes: {
|
|
name: string;
|
|
trigger: "scheduled" | "manual";
|
|
state:
|
|
| "available"
|
|
| "scheduled"
|
|
| "executing"
|
|
| "completed"
|
|
| "failed"
|
|
| "cancelled";
|
|
unique_resource_count: number;
|
|
progress: number;
|
|
scanner_args: {
|
|
only_logs?: boolean;
|
|
excluded_checks?: string[];
|
|
aws_retries_max_attempts?: number;
|
|
} | null;
|
|
duration: number;
|
|
started_at: string;
|
|
inserted_at: string;
|
|
completed_at: string;
|
|
scheduled_at: string;
|
|
next_scan_at: string;
|
|
};
|
|
relationships: {
|
|
provider: {
|
|
data: {
|
|
id: string;
|
|
type: "providers";
|
|
};
|
|
};
|
|
task: {
|
|
data: {
|
|
id: string;
|
|
type: "tasks";
|
|
};
|
|
};
|
|
};
|
|
providerInfo?: {
|
|
provider: ProviderType;
|
|
uid: string;
|
|
alias: string;
|
|
};
|
|
}
|
|
|
|
export interface ScanEntity {
|
|
id: string;
|
|
providerInfo: {
|
|
provider: ProviderType;
|
|
alias?: string;
|
|
uid?: string;
|
|
};
|
|
attributes: {
|
|
name?: string;
|
|
completed_at: string;
|
|
};
|
|
}
|
|
export interface ExpandedScanData extends ScanProps {
|
|
providerInfo: {
|
|
provider: ProviderType;
|
|
uid: string;
|
|
alias: string;
|
|
};
|
|
}
|
|
|
|
export interface ScansApiResponse {
|
|
links: {
|
|
first: string;
|
|
last: string;
|
|
next: string | null;
|
|
prev: string | null;
|
|
};
|
|
data: ScanProps[];
|
|
included?: Array<{
|
|
type: string;
|
|
id: string;
|
|
attributes: any;
|
|
relationships?: any;
|
|
}>;
|
|
meta: {
|
|
pagination: {
|
|
page: number;
|
|
pages: number;
|
|
count: number;
|
|
};
|
|
version: string;
|
|
};
|
|
}
|