INTERFACE

GenericSnapshot

Description

A generic snapshot type.

link GraphQL Schema definition

  • interface GenericSnapshot {
  • # The ID of the snapshot.
  • id: UUID!
  • # The date of the snapshot.
  • date: DateTime!
  • # Specifies whether or not the snapshot is corrupted.
  • isCorrupted: Boolean!
  • # Specifies whether or not the snapshot is indexed.
  • isIndexed: Boolean!
  • # Specifies whether or not the snapshot is unindexable.
  • isUnindexable: Boolean!
  • # The number of indexing attempts for the snapshot.
  • indexingAttempts: Long!
  • # The expirationDate of the snapshot.
  • expirationDate: DateTime
  • # Specifies whether or not the snapshot is expired.
  • isExpired: Boolean!
  • # Specifies whether the snapshot is an on-demand snapshot.
  • isOnDemandSnapshot: Boolean!
  • # The workload ID of the snapshot.
  • snappableId: String!
  • # Specifies whether the snapshot is quarantined.
  • isQuarantined: Boolean!
  • }