OBJECT
OracleLiveMount
Description
Oracle live mount.
link GraphQL Schema definition
- type OracleLiveMount {
- #   ID of the Oracle live mount.
- : String! 
- #   Cluster of the live mount.
- : Cluster! 
- #   Date when live mount was created.
- : DateTime 
- #   Fid of the Oracle live mount.
- : UUID! 
- #   Indicates if mount is files only.
- : Boolean! 
- #   Indicates whether this mount was created during an instant recovery or live 
- #   mount.
- : Boolean! 
- #   Describes if the live mount is ready.
- : Boolean! 
- #   Mounted database of the live mount.
- : OracleDatabase 
- #   Name of the mounted database.
- : String! 
- #   The creator of the live mount.
- : User! 
- #   Source Oracle database of the live mount.
- : OracleDatabase 
- #   Name of the source database that has been mounted.
- : String! 
- #   Source snapshot of the Oracle live mount.
- : CdmSnapshot! 
- #   Status of the live mount.
- : OracleLiveMountStatus! 
- #   The full path for the directory on the target host where the NFS share is 
- #   mounted.
- : String! 
- #   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.
- : OracleHost 
- #   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.
- : OracleRac 
- }
link Require by
- OracleLiveMountConnectionPaginated list of OracleLiveMount objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- OracleLiveMountEdgeWrapper around the OracleLiveMount object. This wrapper is used for pagination.