OBJECT

MssqlDatabaseLiveMount

Description

Live mount of a SQL Server database.

link GraphQL Schema definition

  • type MssqlDatabaseLiveMount {
  • # Forever ID of the live mount.
  • fid: String!
  • # Internal ID of the live mount.
  • cdmId: String!
  • # Internal ID of the mounted database.
  • mountedDatabaseId: String!
  • # Name of the mounted database.
  • mountedDatabaseName: String!
  • # ID of the database mount request job.
  • mountRequestId: String!
  • # ID of the database unmount request job.
  • unmountRequestId: String!
  • # Timestamp when the mount was created.
  • creationDate: DateTime
  • # Status of the live mount.
  • isReady: Boolean!
  • # Recovery point of the live mount.
  • recoveryPoint: DateTime
  • # Owner ID of the live mount.
  • ownerId: String!
  • # Target instance of the live mount.
  • targetInstance: MssqlInstance
  • # Source database of the live mount.
  • sourceDatabase: MssqlDatabase
  • # Cluster of the live mount.
  • cluster: Cluster
  • }