OBJECT

DailyAnalysisDetails

Description

A daily summary of Ransomware Investigation results across all workloads.

link GraphQL Schema definition

  • type DailyAnalysisDetails {
  • # The count of suspicious files.
  • suspiciousFileCount: Long!
  • # The count of files created.
  • createdFileCount: Long!
  • # The count of files deleted.
  • deletedFileCount: Long!
  • # The count of files modified.
  • modifiedFileCount: Long!
  • # The number of suspicious bytes.
  • suspiciousDataBytes: Long!
  • # The number of created bytes.
  • createdDataBytes: Long!
  • # The number of deleted bytes.
  • deletedDataBytes: Long!
  • # The number of modified bytes.
  • modifiedDataBytes: Long!
  • # The number of anomaly events generated.
  • anomalyEventCount: Long!
  • # The day for which the Ransomware Investigation results were recorded.
  • # The value is formatted using the ISO 8601 standard and
  • # appears as YYYY-MM-DD.
  • day: String!
  • }