Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ValueTransformation

import type { ValueTransformation } from "https://googleapis.deno.dev/v1/datamigration:v1.ts";

Description of data transformation during migration as part of the ConditionalColumnSetValue.

interface ValueTransformation {
applyHash?: ApplyHash;
assignMaxValue?: Empty;
assignMinValue?: Empty;
assignNull?: Empty;
assignSpecificValue?: AssignSpecificValue;
doubleComparison?: DoubleComparisonFilter;
intComparison?: IntComparisonFilter;
isNull?: Empty;
roundScale?: RoundToScale;
valueList?: ValueListFilter;
}

§Properties

§
applyHash?: ApplyHash
[src]

Optional. Applies a hash function on the data

§
assignMaxValue?: Empty
[src]

Optional. Set to max_value - if integer or numeric, will use int.maxvalue, etc

§
assignMinValue?: Empty
[src]

Optional. Set to min_value - if integer or numeric, will use int.minvalue, etc

§
assignNull?: Empty
[src]

Optional. Set to null

§
assignSpecificValue?: AssignSpecificValue
[src]

Optional. Set to a specific value (value is converted to fit the target data type)

§
doubleComparison?: DoubleComparisonFilter
[src]

Optional. Filter on relation between source value and compare value of type double.

§
intComparison?: IntComparisonFilter
[src]

Optional. Filter on relation between source value and compare value of type integer.

§
isNull?: Empty
[src]

Optional. Value is null

§
roundScale?: RoundToScale
[src]

Optional. Allows the data to change scale

§

Optional. Value is found in the specified list.