OBJECT
DiffData
Description
Statistic result for certain file/folder.
link GraphQL Schema definition
- type DiffData {
- # Absolute path of the file or folder.
- String! :
- # Number of files deleted under this path.
- Long! :
- # Number of files modified under this path.
- Long! :
- # Number of files created under this path.
- Long! :
- # Number of suspicious files added under this path.
- Long! :
- # Mode of the inode of the file or folder at this path.
- Int! :
- # Boolean indicating whether this is a file or folder.
- Boolean! :
- # Number of bytes created under this path.
- Long! :
- # Number of bytes deleted under this path.
- Long! :
- # Number of bytes modified under this path.
- Long! :
- # Total size of the files under this path.
- Long! :
- # Modification time of the inode of the file or folder at this path.
- Long! :
- # Boolean indicating whether this file or folder was deleted in this snapshot.
- Boolean! :
- # Additional information corresponding to the anomaly detected.
- AnomalyInfo :
- }