DefinedFileSystemConfiguration¶
- 
class oci.database.models.DefinedFileSystemConfiguration(**kwargs)¶
- Bases: - object- Details of the file system configuration of the Exadata infrastructure. - Methods - __init__(**kwargs)- Initializes a new DefinedFileSystemConfiguration object with values from keyword arguments. - Attributes - is_backup_partition- Gets the is_backup_partition of this DefinedFileSystemConfiguration. - is_resizable- Gets the is_resizable of this DefinedFileSystemConfiguration. - min_size_gb- Gets the min_size_gb of this DefinedFileSystemConfiguration. - mount_point- Gets the mount_point of this DefinedFileSystemConfiguration. - 
__init__(**kwargs)¶
- Initializes a new DefinedFileSystemConfiguration object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - mount_point (str) – The value to assign to the mount_point property of this DefinedFileSystemConfiguration.
- min_size_gb (int) – The value to assign to the min_size_gb property of this DefinedFileSystemConfiguration.
- is_resizable (bool) – The value to assign to the is_resizable property of this DefinedFileSystemConfiguration.
- is_backup_partition (bool) – The value to assign to the is_backup_partition property of this DefinedFileSystemConfiguration.
 
 - 
is_backup_partition¶
- Gets the is_backup_partition of this DefinedFileSystemConfiguration. If true, the file system is used to create a backup prior to Exadata VM OS update. - Returns: - The is_backup_partition of this DefinedFileSystemConfiguration. - Return type: - bool 
 - 
is_resizable¶
- Gets the is_resizable of this DefinedFileSystemConfiguration. If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed. - Returns: - The is_resizable of this DefinedFileSystemConfiguration. - Return type: - bool 
 - 
min_size_gb¶
- Gets the min_size_gb of this DefinedFileSystemConfiguration. The minimum size of file system. - Returns: - The min_size_gb of this DefinedFileSystemConfiguration. - Return type: - int 
 - 
mount_point¶
- Gets the mount_point of this DefinedFileSystemConfiguration. The mount point of file system. - Returns: - The mount_point of this DefinedFileSystemConfiguration. - Return type: - str 
 
-