DatabaseUpgradeSourceBase

class oci.database.models.DatabaseUpgradeSourceBase(**kwargs)

Bases: object

Details for the database upgrade source.

Attributes

SOURCE_DB_HOME A constant which can be used with the source property of a DatabaseUpgradeSourceBase.
SOURCE_DB_SOFTWARE_IMAGE A constant which can be used with the source property of a DatabaseUpgradeSourceBase.
SOURCE_DB_VERSION A constant which can be used with the source property of a DatabaseUpgradeSourceBase.
options Gets the options of this DatabaseUpgradeSourceBase.
source Gets the source of this DatabaseUpgradeSourceBase.

Methods

__init__(**kwargs) Initializes a new DatabaseUpgradeSourceBase object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
SOURCE_DB_HOME = 'DB_HOME'

A constant which can be used with the source property of a DatabaseUpgradeSourceBase. This constant has a value of “DB_HOME”

SOURCE_DB_SOFTWARE_IMAGE = 'DB_SOFTWARE_IMAGE'

A constant which can be used with the source property of a DatabaseUpgradeSourceBase. This constant has a value of “DB_SOFTWARE_IMAGE”

SOURCE_DB_VERSION = 'DB_VERSION'

A constant which can be used with the source property of a DatabaseUpgradeSourceBase. This constant has a value of “DB_VERSION”

__init__(**kwargs)

Initializes a new DatabaseUpgradeSourceBase object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:

The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • source (str) – The value to assign to the source property of this DatabaseUpgradeSourceBase. Allowed values for this property are: “DB_HOME”, “DB_VERSION”, “DB_SOFTWARE_IMAGE”
  • options (str) – The value to assign to the options property of this DatabaseUpgradeSourceBase.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

options

Gets the options of this DatabaseUpgradeSourceBase. Additional upgrade options supported by DBUA(Database Upgrade Assistant). Example: “-upgradeTimezone false -keepEvents”

Returns:The options of this DatabaseUpgradeSourceBase.
Return type:str
source

Gets the source of this DatabaseUpgradeSourceBase. The source of the Oracle Database software to be used for the upgrade.

  • Use DB_HOME to specify an existing Database Home to upgrade the database. The database is moved to the target Database Home and makes use of the Oracle Database software version of the target Database Home.
  • Use DB_VERSION to specify a generally-available Oracle Database software version to upgrade the database.
  • Use DB_SOFTWARE_IMAGE to specify a database software image to upgrade the database.

Allowed values for this property are: “DB_HOME”, “DB_VERSION”, “DB_SOFTWARE_IMAGE”

Returns:The source of this DatabaseUpgradeSourceBase.
Return type:str