OBJECT
MalwareScanInSnapshotResult
Description
Malware scan result for a snapshot.
link GraphQL Schema definition
- type MalwareScanInSnapshotResult {
- # ID of the most recent job run against this snapshot, if any.
- String :
- # List of malware matches found in this snapshot.
- MalwareMatch!]! : [
- # Stats collected during the scan. Note that the stats capture what was actually
- # scanned. It's possible a scan for a snapshot terminates early; it's also
- # possible a scan is retried after an error. This means the counts could be less
- # than or more than the actual count of entites (files, bytes, etc.) in the
- # snapshot.
- MalwareScanStats :
- # Date of the snapshot.
- DateTime :
- # ID of the snapshot.
- String! :
- # Status of the scan.
- MalwareScanInSnapshotStatus! :
- # Specifies whether the snapshot has expired.
- Boolean! :
- # The snapshot's quarantine details.
- QuarantineSpec :
- }