Module Values_0.OptionSettingSource

Option 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.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the option that has settings that you can set.

    *)
  2. value : PotentiallySensitiveOptionSettingValue.t option;
    (*

    The current value of the option setting.

    *)
  3. defaultValue : String_.t option;
    (*

    The default value of the option setting.

    *)
  4. description : String_.t option;
    (*

    The description of the option setting.

    *)
  5. applyType : String_.t option;
    (*

    The DB engine specific parameter type.

    *)
  6. dataType : String_.t option;
    (*

    The data type of the option setting.

    *)
  7. allowedValues : String_.t option;
    (*

    The allowed values of the option setting.

    *)
  8. isModifiable : Boolean.t option;
    (*

    Indicates whether the option setting can be modified from the default.

    *)
  9. isCollection : Boolean.t option;
    (*

    Indicates whether the option setting is part of a collection.

    *)
}
Sourceval make : ?name:??? -> ?value:??? -> ?defaultValue:??? -> ?description:??? -> ?applyType:??? -> ?dataType:??? -> ?allowedValues:??? -> ?isModifiable:??? -> ?isCollection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t