CreateDatabaseBase

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

Bases: object

Details for creating a database.

Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Attributes

SOURCE_DB_BACKUP A constant which can be used with the source property of a CreateDatabaseBase.
SOURCE_NONE A constant which can be used with the source property of a CreateDatabaseBase.
db_home_id [Required] Gets the db_home_id of this CreateDatabaseBase.
db_version Gets the db_version of this CreateDatabaseBase.
kms_key_id Gets the kms_key_id of this CreateDatabaseBase.
kms_key_version_id Gets the kms_key_version_id of this CreateDatabaseBase.
source [Required] Gets the source of this CreateDatabaseBase.

Methods

__init__(**kwargs) Initializes a new CreateDatabaseBase 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_BACKUP = 'DB_BACKUP'

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

SOURCE_NONE = 'NONE'

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

__init__(**kwargs)

Initializes a new CreateDatabaseBase 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:
  • db_home_id (str) – The value to assign to the db_home_id property of this CreateDatabaseBase.
  • db_version (str) – The value to assign to the db_version property of this CreateDatabaseBase.
  • source (str) – The value to assign to the source property of this CreateDatabaseBase. Allowed values for this property are: “NONE”, “DB_BACKUP”
  • kms_key_id (str) – The value to assign to the kms_key_id property of this CreateDatabaseBase.
  • kms_key_version_id (str) – The value to assign to the kms_key_version_id property of this CreateDatabaseBase.
db_home_id

[Required] Gets the db_home_id of this CreateDatabaseBase. The OCID of the Database Home.

Returns:The db_home_id of this CreateDatabaseBase.
Return type:str
db_version

Gets the db_version of this CreateDatabaseBase. A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation.

This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, dbWorkload, privateEndpointLabel, nsgIds, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier.

Returns:The db_version of this CreateDatabaseBase.
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.

kms_key_id

Gets the kms_key_id of this CreateDatabaseBase. The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

Returns:The kms_key_id of this CreateDatabaseBase.
Return type:str
kms_key_version_id

Gets the kms_key_version_id of this CreateDatabaseBase. The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.

Returns:The kms_key_version_id of this CreateDatabaseBase.
Return type:str
source

[Required] Gets the source of this CreateDatabaseBase. The source of the database: Use NONE for creating a new database. Use DB_BACKUP for creating a new database by restoring from a backup. The default is NONE.

Allowed values for this property are: “NONE”, “DB_BACKUP”

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