CreateDbHomeDetails

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

Bases: object

Details for creating a Database Home.

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

Methods

__init__(**kwargs) Initializes a new CreateDbHomeDetails object with values from keyword arguments.

Attributes

database [Required] Gets the database of this CreateDbHomeDetails.
database_software_image_id Gets the database_software_image_id of this CreateDbHomeDetails.
db_version [Required] Gets the db_version of this CreateDbHomeDetails.
defined_tags Gets the defined_tags of this CreateDbHomeDetails.
display_name Gets the display_name of this CreateDbHomeDetails.
freeform_tags Gets the freeform_tags of this CreateDbHomeDetails.
__init__(**kwargs)

Initializes a new CreateDbHomeDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this CreateDbHomeDetails.
  • db_version (str) – The value to assign to the db_version property of this CreateDbHomeDetails.
  • database_software_image_id (str) – The value to assign to the database_software_image_id property of this CreateDbHomeDetails.
  • database (oci.database.models.CreateDatabaseDetails) – The value to assign to the database property of this CreateDbHomeDetails.
  • freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreateDbHomeDetails.
  • defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreateDbHomeDetails.
database

[Required] Gets the database of this CreateDbHomeDetails.

Returns:The database of this CreateDbHomeDetails.
Return type:oci.database.models.CreateDatabaseDetails
database_software_image_id

Gets the database_software_image_id of this CreateDbHomeDetails. The database software image OCID.

Returns:The database_software_image_id of this CreateDbHomeDetails.
Return type:str
db_version

[Required] Gets the db_version of this CreateDbHomeDetails. 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 CreateDbHomeDetails.
Return type:str
defined_tags

Gets the defined_tags of this CreateDbHomeDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Returns:The defined_tags of this CreateDbHomeDetails.
Return type:dict(str, dict(str, object))
display_name

Gets the display_name of this CreateDbHomeDetails. The user-provided name of the Database Home.

Returns:The display_name of this CreateDbHomeDetails.
Return type:str
freeform_tags

Gets the freeform_tags of this CreateDbHomeDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.

Example: {“Department”: “Finance”}

Returns:The freeform_tags of this CreateDbHomeDetails.
Return type:dict(str, str)