DbSystemOptions¶
-
class
oci.database.models.
DbSystemOptions
(**kwargs)¶ Bases:
object
The DB system options.
Attributes
STORAGE_MANAGEMENT_ASM
A constant which can be used with the storage_management property of a DbSystemOptions. STORAGE_MANAGEMENT_LVM
A constant which can be used with the storage_management property of a DbSystemOptions. storage_management
Gets the storage_management of this DbSystemOptions. Methods
__init__
(**kwargs)Initializes a new DbSystemOptions object with values from keyword arguments. -
STORAGE_MANAGEMENT_ASM
= 'ASM'¶ A constant which can be used with the storage_management property of a DbSystemOptions. This constant has a value of “ASM”
-
STORAGE_MANAGEMENT_LVM
= 'LVM'¶ A constant which can be used with the storage_management property of a DbSystemOptions. This constant has a value of “LVM”
-
__init__
(**kwargs)¶ Initializes a new DbSystemOptions object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: storage_management (str) – The value to assign to the storage_management property of this DbSystemOptions. Allowed values for this property are: “ASM”, “LVM”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
storage_management
¶ Gets the storage_management of this DbSystemOptions. The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
Allowed values for this property are: “ASM”, “LVM”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The storage_management of this DbSystemOptions. Return type: str
-