Values_0.OptionSettingSourceOption settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.
type nonrec t = {name : String_.t option;The name of the option that has settings that you can set.
*)value : PotentiallySensitiveOptionSettingValue.t option;The current value of the option setting.
*)defaultValue : String_.t option;The default value of the option setting.
*)description : String_.t option;The description of the option setting.
*)applyType : String_.t option;The DB engine specific parameter type.
*)dataType : String_.t option;The data type of the option setting.
*)allowedValues : String_.t option;The allowed values of the option setting.
*)isModifiable : Boolean.t option;Indicates whether the option setting can be modified from the default.
*)isCollection : Boolean.t option;Indicates whether the option setting is part of a collection.
*)}