OBJECT

CdmMssqlDbReplica

Description

Replica SQL Server database of an availability group.

link GraphQL Schema definition

  • type CdmMssqlDbReplica {
  • # The state of the replica.
  • state: String!
  • # Specifies if the replica SQL Server database is in standby mode.
  • isStandBy: Boolean!
  • # Deprecated. Use `isDeleted` instead.
  • isArchived: Boolean!
  • # The recovery model of the replica.
  • recoveryModel: String!
  • # Specifies whether the Rubrik Backup Service has permissions to back up the
  • # replica SQL Server database. When this value is 'true', the Rubrik Backup
  • # Service has permission to back up the database.
  • hasPermissions: Boolean!
  • # ID of the root of this object.
  • instanceRootId: String!
  • # Specifies if a snapshot needs to be taken before a log backup can occur on the
  • # replica SQL Server database.
  • snapshotNeeded: Boolean!
  • # Cluster ID of the replica SQL Server database.
  • clusterUuid: String!
  • # Information about the availability group of the replica SQL Server database.
  • availabilityInfo: CdmMssqlDbReplicaAvailabilityInfo
  • # Instance of the replica SQL Server database.
  • instance: MssqlInstance
  • }