OBJECT
MalwareScanStats
Description
Supported in v6.0+
link GraphQL Schema definition
- type MalwareScanStats {
- # Required. Supported in v6.0+
- # The number of files encountered during the scan. This may be less than the
- # total number of files in the snapshot if the scan terminates early.
- Long! :
- # Required. Supported in v6.0+
- # The number of files scanned.
- Long! :
- # Required. Supported in v6.0+
- # The total file size of the files scanned. This may differ from the actual
- # number of bytes read as part of the scan. For example a YARA rule might only
- # need to read a part of a file at a specific offset, whereas other rules might
- # need to read the entire file to compute a hash.
- Long! :
- # Supported in v8.1+
- # v8.1: The total time in seconds spent in yara analysis.
- # v9.0+: The total time, in seconds, spent on YARA analysis.
- Long :
- }