ExadataIormConfigUpdateDetails¶
- 
class oci.database.models.ExadataIormConfigUpdateDetails(**kwargs)¶
- Bases: - object- IORM Setting details for this Exadata System to be updated - Attributes - OBJECTIVE_AUTO- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. - OBJECTIVE_BALANCED- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. - OBJECTIVE_BASIC- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. - OBJECTIVE_HIGH_THROUGHPUT- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. - OBJECTIVE_LOW_LATENCY- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. - db_plans- Gets the db_plans of this ExadataIormConfigUpdateDetails. - objective- Gets the objective of this ExadataIormConfigUpdateDetails. - Methods - __init__(**kwargs)- Initializes a new ExadataIormConfigUpdateDetails object with values from keyword arguments. - 
OBJECTIVE_AUTO= 'AUTO'¶
- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. This constant has a value of “AUTO” 
 - 
OBJECTIVE_BALANCED= 'BALANCED'¶
- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. This constant has a value of “BALANCED” 
 - 
OBJECTIVE_BASIC= 'BASIC'¶
- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. This constant has a value of “BASIC” 
 - 
OBJECTIVE_HIGH_THROUGHPUT= 'HIGH_THROUGHPUT'¶
- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. This constant has a value of “HIGH_THROUGHPUT” 
 - 
OBJECTIVE_LOW_LATENCY= 'LOW_LATENCY'¶
- A constant which can be used with the objective property of a ExadataIormConfigUpdateDetails. This constant has a value of “LOW_LATENCY” 
 - 
__init__(**kwargs)¶
- Initializes a new ExadataIormConfigUpdateDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - objective (str) – The value to assign to the objective property of this ExadataIormConfigUpdateDetails. Allowed values for this property are: “LOW_LATENCY”, “HIGH_THROUGHPUT”, “BALANCED”, “AUTO”, “BASIC”
- db_plans (list[oci.database.models.DbIormConfigUpdateDetail]) – The value to assign to the db_plans property of this ExadataIormConfigUpdateDetails.
 
 - 
db_plans¶
- Gets the db_plans of this ExadataIormConfigUpdateDetails. Array of IORM Setting for all the database in this Exadata DB System - Returns: - The db_plans of this ExadataIormConfigUpdateDetails. - Return type: - list[oci.database.models.DbIormConfigUpdateDetail] 
 - 
objective¶
- Gets the objective of this ExadataIormConfigUpdateDetails. Value for the IORM objective Default is “Auto” - Allowed values for this property are: “LOW_LATENCY”, “HIGH_THROUGHPUT”, “BALANCED”, “AUTO”, “BASIC” - Returns: - The objective of this ExadataIormConfigUpdateDetails. - Return type: - str 
 
-