Module Values_1.OverrideDatasetParameterOperationSource

A transform operation that overrides the dataset parameter values that are defined in another dataset.

Sourcetype nonrec t = {
  1. parameterName : DatasetParameterName.t;
    (*

    The name of the parameter to be overridden with different values.

    *)
  2. newParameterName : DatasetParameterName.t option;
    (*

    The new name for the parameter.

    *)
  3. newDefaultValues : NewDefaultValues.t option;
    (*

    The new default values for the parameter.

    *)
}
Sourceval context_ : string
Sourceval make : ?newParameterName:??? -> ?newDefaultValues:??? -> parameterName:DatasetParameterName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DatasetParameterName.t | `Structure of (string * [> `List of [> `Double of DecimalDatasetParameterDefaultValue.t | `Long of IntegerDatasetParameterDefaultValue.t | `String of StringDatasetParameterDefaultValue.t | `Timestamp of DateTimeDatasetParameterDefaultValue.t ] list ]) list ]) 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