DatabaseUpgradeWithDatabaseSoftwareImageDetails¶
-
class
oci.database.models.
DatabaseUpgradeWithDatabaseSoftwareImageDetails
(**kwargs)¶ Bases:
oci.database.models.database_upgrade_source_base.DatabaseUpgradeSourceBase
Details of the database software image to be used to upgrade a database.
Attributes
SOURCE_DB_HOME
str(object=’’) -> str SOURCE_DB_SOFTWARE_IMAGE
str(object=’’) -> str SOURCE_DB_VERSION
str(object=’’) -> str database_software_image_id
[Required] Gets the database_software_image_id of this DatabaseUpgradeWithDatabaseSoftwareImageDetails. options
Gets the options of this DatabaseUpgradeSourceBase. source
Gets the source of this DatabaseUpgradeSourceBase. Methods
__init__
(**kwargs)Initializes a new DatabaseUpgradeWithDatabaseSoftwareImageDetails 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'¶
-
SOURCE_DB_SOFTWARE_IMAGE
= 'DB_SOFTWARE_IMAGE'¶
-
SOURCE_DB_VERSION
= 'DB_VERSION'¶
-
__init__
(**kwargs)¶ Initializes a new DatabaseUpgradeWithDatabaseSoftwareImageDetails object with values from keyword arguments. The default value of the
source
attribute of this class isDB_SOFTWARE_IMAGE
and it should not be changed. 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 DatabaseUpgradeWithDatabaseSoftwareImageDetails. 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 DatabaseUpgradeWithDatabaseSoftwareImageDetails.
- database_software_image_id (str) – The value to assign to the database_software_image_id property of this DatabaseUpgradeWithDatabaseSoftwareImageDetails.
-
database_software_image_id
¶ [Required] Gets the database_software_image_id of this DatabaseUpgradeWithDatabaseSoftwareImageDetails. The database software image OCID of the image to be used to upgrade a database.
Returns: The database_software_image_id of this DatabaseUpgradeWithDatabaseSoftwareImageDetails. Return type: str
-
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
-