ChangeSpaceBudgetDetails¶
-
class
oci.database_management.models.
ChangeSpaceBudgetDetails
(**kwargs)¶ Bases:
object
The details required to change the disk space limit for the SQL Management Base. It takes either credentials or databaseCredential. It’s recommended to provide databaseCredential
Methods
__init__
(**kwargs)Initializes a new ChangeSpaceBudgetDetails object with values from keyword arguments. Attributes
credentials
Gets the credentials of this ChangeSpaceBudgetDetails. database_credential
Gets the database_credential of this ChangeSpaceBudgetDetails. space_budget_percent
[Required] Gets the space_budget_percent of this ChangeSpaceBudgetDetails. -
__init__
(**kwargs)¶ Initializes a new ChangeSpaceBudgetDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - space_budget_percent (float) – The value to assign to the space_budget_percent property of this ChangeSpaceBudgetDetails.
- credentials (oci.database_management.models.ManagedDatabaseCredential) – The value to assign to the credentials property of this ChangeSpaceBudgetDetails.
- database_credential (oci.database_management.models.DatabaseCredentialDetails) – The value to assign to the database_credential property of this ChangeSpaceBudgetDetails.
-
credentials
¶ Gets the credentials of this ChangeSpaceBudgetDetails.
Returns: The credentials of this ChangeSpaceBudgetDetails. Return type: oci.database_management.models.ManagedDatabaseCredential
-
database_credential
¶ Gets the database_credential of this ChangeSpaceBudgetDetails.
Returns: The database_credential of this ChangeSpaceBudgetDetails. Return type: oci.database_management.models.DatabaseCredentialDetails
-
space_budget_percent
¶ [Required] Gets the space_budget_percent of this ChangeSpaceBudgetDetails. The maximum percent of SYSAUX space that the SQL Management Base can use.
Returns: The space_budget_percent of this ChangeSpaceBudgetDetails. Return type: float
-