OBJECT

RecoveryAnalysisMetadata

Description

Metadata about the recovery analysis including time range and data source information.

link GraphQL Schema definition

  • type RecoveryAnalysisMetadata {
  • # The end time, in Unix epoch milliseconds, of the analysis period.
  • analysisEndTime: Long!
  • # The number of days covered by the analysis interval.
  • analysisIntervalDays: Long!
  • # The start time, in Unix epoch milliseconds, of the analysis period.
  • analysisStartTime: Long!
  • # The GCS blob path containing raw Exchange analysis data.
  • exchangeBlobPath: String!
  • # The O365 group ID used for filtering.
  • groupId: String!
  • # The GCS blob path containing raw OneDrive analysis data.
  • onedriveBlobPath: String!
  • # The O365 organization ID.
  • orgId: UUID!
  • # The GCS blob path containing raw SharePoint analysis data.
  • sharepointBlobPath: String!
  • # Whether to exclude archived mailboxes.
  • shouldExcludeArchivedMailbox: Boolean!
  • # Time of the recovery point snapshot.
  • snapshotTime: DateTime
  • # The ID of the recovery analysis taskchain.
  • taskchainId: UUID!
  • # The workloads types of the analysis.
  • workloads: [O365MvbWorkloadType!]!
  • }