Values.ParameterSourceDescribes an individual setting that controls some aspect of DAX behavior.
type nonrec t = {parameterName : String_.t option;The name of the parameter.
*)parameterType : ParameterType.t option;Determines whether the parameter can be applied to any nodes, or only nodes of a particular type.
*)parameterValue : String_.t option;The value for the parameter.
*)nodeTypeSpecificValues : NodeTypeSpecificValueList.t option;A list of node types, and specific parameter values for each node.
*)description : String_.t option;A description of the parameter
*)source : String_.t option;How the parameter is defined. For example, system denotes a system-defined parameter.
*)dataType : String_.t option;The data type of the parameter. For example, integer:
*)allowedValues : String_.t option;A range of values within which the parameter can be set.
*)isModifiable : IsModifiable.t option;Whether the customer is allowed to modify the parameter.
*)changeType : ChangeType.t option;The conditions under which changes to this parameter can be applied. For example, requires-reboot indicates that a new value for this parameter will only take effect if a node is rebooted.
*)}