DatabaseParametersCollection

class oci.database_management.models.DatabaseParametersCollection(**kwargs)

Bases: object

A collection of database parameters.

Attributes

DATABASE_SUB_TYPE_ACD A constant which can be used with the database_sub_type property of a DatabaseParametersCollection.
DATABASE_SUB_TYPE_ADB A constant which can be used with the database_sub_type property of a DatabaseParametersCollection.
DATABASE_SUB_TYPE_CDB A constant which can be used with the database_sub_type property of a DatabaseParametersCollection.
DATABASE_SUB_TYPE_NON_CDB A constant which can be used with the database_sub_type property of a DatabaseParametersCollection.
DATABASE_SUB_TYPE_PDB A constant which can be used with the database_sub_type property of a DatabaseParametersCollection.
DATABASE_TYPE_CLOUD_RAC A constant which can be used with the database_type property of a DatabaseParametersCollection.
DATABASE_TYPE_CLOUD_SIDB A constant which can be used with the database_type property of a DatabaseParametersCollection.
DATABASE_TYPE_DEDICATED A constant which can be used with the database_type property of a DatabaseParametersCollection.
DATABASE_TYPE_EXTERNAL_RAC A constant which can be used with the database_type property of a DatabaseParametersCollection.
DATABASE_TYPE_EXTERNAL_SIDB A constant which can be used with the database_type property of a DatabaseParametersCollection.
DATABASE_TYPE_SHARED A constant which can be used with the database_type property of a DatabaseParametersCollection.
database_name [Required] Gets the database_name of this DatabaseParametersCollection.
database_sub_type [Required] Gets the database_sub_type of this DatabaseParametersCollection.
database_type [Required] Gets the database_type of this DatabaseParametersCollection.
database_version [Required] Gets the database_version of this DatabaseParametersCollection.
items [Required] Gets the items of this DatabaseParametersCollection.

Methods

__init__(**kwargs) Initializes a new DatabaseParametersCollection object with values from keyword arguments.
DATABASE_SUB_TYPE_ACD = 'ACD'

A constant which can be used with the database_sub_type property of a DatabaseParametersCollection. This constant has a value of “ACD”

DATABASE_SUB_TYPE_ADB = 'ADB'

A constant which can be used with the database_sub_type property of a DatabaseParametersCollection. This constant has a value of “ADB”

DATABASE_SUB_TYPE_CDB = 'CDB'

A constant which can be used with the database_sub_type property of a DatabaseParametersCollection. This constant has a value of “CDB”

DATABASE_SUB_TYPE_NON_CDB = 'NON_CDB'

A constant which can be used with the database_sub_type property of a DatabaseParametersCollection. This constant has a value of “NON_CDB”

DATABASE_SUB_TYPE_PDB = 'PDB'

A constant which can be used with the database_sub_type property of a DatabaseParametersCollection. This constant has a value of “PDB”

DATABASE_TYPE_CLOUD_RAC = 'CLOUD_RAC'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “CLOUD_RAC”

DATABASE_TYPE_CLOUD_SIDB = 'CLOUD_SIDB'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “CLOUD_SIDB”

DATABASE_TYPE_DEDICATED = 'DEDICATED'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “DEDICATED”

DATABASE_TYPE_EXTERNAL_RAC = 'EXTERNAL_RAC'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “EXTERNAL_RAC”

DATABASE_TYPE_EXTERNAL_SIDB = 'EXTERNAL_SIDB'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “EXTERNAL_SIDB”

DATABASE_TYPE_SHARED = 'SHARED'

A constant which can be used with the database_type property of a DatabaseParametersCollection. This constant has a value of “SHARED”

__init__(**kwargs)

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

Parameters:
  • database_name (str) – The value to assign to the database_name property of this DatabaseParametersCollection.
  • database_type (str) – The value to assign to the database_type property of this DatabaseParametersCollection. Allowed values for this property are: “EXTERNAL_SIDB”, “EXTERNAL_RAC”, “CLOUD_SIDB”, “CLOUD_RAC”, “SHARED”, “DEDICATED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • database_sub_type (str) – The value to assign to the database_sub_type property of this DatabaseParametersCollection. Allowed values for this property are: “CDB”, “PDB”, “NON_CDB”, “ACD”, “ADB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • database_version (str) – The value to assign to the database_version property of this DatabaseParametersCollection.
  • items (list[oci.database_management.models.DatabaseParameterSummary]) – The value to assign to the items property of this DatabaseParametersCollection.
database_name

[Required] Gets the database_name of this DatabaseParametersCollection. The name of the Managed Database.

Returns:The database_name of this DatabaseParametersCollection.
Return type:str
database_sub_type

[Required] Gets the database_sub_type of this DatabaseParametersCollection. The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or a Non-container Database.

Allowed values for this property are: “CDB”, “PDB”, “NON_CDB”, “ACD”, “ADB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The database_sub_type of this DatabaseParametersCollection.
Return type:str
database_type

[Required] Gets the database_type of this DatabaseParametersCollection. The type of Oracle Database installation.

Allowed values for this property are: “EXTERNAL_SIDB”, “EXTERNAL_RAC”, “CLOUD_SIDB”, “CLOUD_RAC”, “SHARED”, “DEDICATED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The database_type of this DatabaseParametersCollection.
Return type:str
database_version

[Required] Gets the database_version of this DatabaseParametersCollection. The Oracle Database version.

Returns:The database_version of this DatabaseParametersCollection.
Return type:str
items

[Required] Gets the items of this DatabaseParametersCollection. An array of DatabaseParameterSummary objects.

Returns:The items of this DatabaseParametersCollection.
Return type:list[oci.database_management.models.DatabaseParameterSummary]