AllowedParameterValue¶
-
class
oci.database_management.models.
AllowedParameterValue
(**kwargs)¶ Bases:
object
A valid value for a database parameter.
Methods
__init__
(**kwargs)Initializes a new AllowedParameterValue object with values from keyword arguments. Attributes
is_default
Gets the is_default of this AllowedParameterValue. ordinal
Gets the ordinal of this AllowedParameterValue. value
Gets the value of this AllowedParameterValue. -
__init__
(**kwargs)¶ Initializes a new AllowedParameterValue object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - ordinal (float) – The value to assign to the ordinal property of this AllowedParameterValue.
- value (str) – The value to assign to the value property of this AllowedParameterValue.
- is_default (bool) – The value to assign to the is_default property of this AllowedParameterValue.
-
is_default
¶ Gets the is_default of this AllowedParameterValue. Indicates whether the given ordinal value is the default value for the parameter.
Returns: The is_default of this AllowedParameterValue. Return type: bool
-
ordinal
¶ Gets the ordinal of this AllowedParameterValue. The ordinal number in the list (1-based).
Returns: The ordinal of this AllowedParameterValue. Return type: float
-
value
¶ Gets the value of this AllowedParameterValue. The parameter value at ordinal.
Returns: The value of this AllowedParameterValue. Return type: str
-