OBJECT
AnomalyResult
Description
Anomaly analysis report from lambda service.
link GraphQL Schema definition
- type AnomalyResult {
- # The database ID of the anomaly result.
- String! :
- # The internal fid of the object.
- UUID! :
- # The internal ID of the object.
- String! :
- # The name of the object.
- String :
- # The type of the object.
- ObjectTypeEnum :
- # The internal fid of the snapshot.
- UUID! :
- # The internal ID of the snapshot.
- String! :
- # The date of the snapshot.
- DateTime! :
- # Time when the anomaly was detected.
- DateTime! :
- # The ID of the previous snapshot.
- String! :
- # The date of the previous snapshot.
- DateTime! :
- # The probability of the snapshot being anomalous.
- Float! :
- # Indicates whether the snapshot is anomalous.
- Boolean! :
- # Count of new files created.
- Long :
- # Count of files modified.
- Long :
- # Count of files deleted.
- Long :
- # Total number of suspicious files.
- Long :
- # Total new bytes created.
- Long :
- # Total bytes modified.
- Long :
- # Total bytes deleted.
- Long :
- # Net change in the number of bytes. For example, if 5 bytes are added and 3 bytes
- # deleted, this field returns 2 as the number of bytes that changed.
- Long :
- # Internal managed ID of the object.
- String! :
- # Specifies whether the snapshot is encrypted.
- Boolean :
- # Severity of the anomaly.
- ActivitySeverityEnum! :
- # The Rubrik cluster of the object.
- Cluster! :
- # The location of the object.
- String! :
- # The analyzed snapshot.
- CdmSnapshot :
- # The ransomware analysis result, including encryption.
- RansomwareResult :
- }