Interface generateReportDownloadUrlParams

interface generateReportDownloadUrlParams {
    assetVersionId?: string;
    productId?: string;
    reportSubtype: ReportSubtype;
    reportType: ReportType;
    verbose: boolean;
}

Properties

assetVersionId?: string

Asset Version ID to download the report for. Either assetVersionId or productId are required.

productId?: string

Product ID to download the report for. Either assetVersionId or productId are required.

reportSubtype: ReportSubtype

The type of report to download. Based on available reports for the reportType specified Valid values for CSV are "ALL_FINDINGS", "ALL_COMPONENTS", "EXPLOIT_INTELLIGENCE". Valid values for PDF are "RISK_SUMMARY".

reportType: ReportType

The file type of the report to download. Valid values are "CSV" and "PDF".

verbose: boolean

If True, print additional information to the console. Defaults to False.