OBJECT

OraclePdb

Description

An Oracle Pluggable Database.

link GraphQL Schema definition

  • type OraclePdb {
  • # The Container ID for the Oracle Pluggable Database.
  • id: Long!
  • # Name of the Pluggable Database.
  • name: String!
  • # The DBID of the Oracle database.
  • dbId: Long!
  • # The open mode of the Pluggable Database.
  • openMode: OraclePdbOpenMode!
  • # Indicates whether the Pluggable Database is the application root.
  • isApplicationRoot: Boolean!
  • # Indicates whether the Pluggable Database belongs to an application container.
  • isApplicationPdb: Boolean!
  • # The ID of the application container to which the Pluggable Database belongs.
  • applicationRootContainerId: Long!
  • }