OBJECT

OracleLiveMount

Description

Oracle live mount.

link GraphQL Schema definition

  • type OracleLiveMount {
  • # ID of the Oracle live mount.
  • cdmId: String!
  • # Date when live mount was created.
  • creationDate: DateTime
  • # Describes if the live mount is ready.
  • isReady: Boolean!
  • # Name of the mounted database.
  • mountedDatabaseName: String!
  • # The full path for the directory on the target host where the NFS share is
  • # mounted.
  • targetHostMount: String!
  • # Indicates if mount is files only.
  • isFilesOnlyMount: Boolean!
  • # Indicates whether this mount was created during an instant recovery or live
  • # mount.
  • isInstantRecovered: Boolean!
  • # Target Oracle RAC of the live mount. If the live mount target is an Oracle Host,
  • # this value will be null and the field targetOracleHost will be populated
  • # instead.
  • targetOracleRac: OracleRac
  • # Target Oracle host of the live mount. If the live mount target is an Oracle RAC,
  • # this value will be null and the field targetOracleRac will be populated instead.
  • targetOracleHost: OracleHost
  • # Fid of the Oracle live mount.
  • id: UUID!
  • # Cluster of the live mount.
  • cluster: Cluster!
  • # The creator of the live mount.
  • owner: User!
  • # Source snapshot of the Oracle live mount.
  • sourceSnapshot: CdmSnapshot!
  • # Source Oracle database of the live mount.
  • sourceDatabase: OracleDatabase
  • # Mounted database of the live mount.
  • mountedDatabase: OracleDatabase
  • # Status of the live mount.
  • status: OracleLiveMountStatus!
  • }