main
ts 23 lines 485 Bytes
Raw
1 export type ScoutSuiteReport = string
2
3 export enum ScoutSuiteReportType {
4 AWS = "aws",
5 Azure = "azure",
6 Gcp = "gcp"
7 }
8 export interface ScoutSuiteReportPayload {
9 report_type: ScoutSuiteReportType
10 report_name: string
11 }
12 export interface ScoutSuiteAwsReportPayload {
13 access_key_id: string
14 secret_access_key: string
15 }
16 export interface ScoutSuiteAzureReportPayload {
17 username: string
18 password: string
19 tenant_id: string
20 }
21 export interface ScoutSuiteGcpReportPayload {
22 file: File
23 }