ActionLoadConfig
import type { ActionLoadConfig } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";
Simplified load configuration for actions
interface ActionLoadConfig {
append?: ActionSimpleLoadMode;
maximum?: ActionIncrementalLoadMode;
replace?: ActionSimpleLoadMode;
unique?: ActionIncrementalLoadMode;
}§Properties
§
append?: ActionSimpleLoadMode
[src]Append into destination table
§
maximum?: ActionIncrementalLoadMode
[src]Insert records where the value exceeds the previous maximum value for a column in the destination table
§
replace?: ActionSimpleLoadMode
[src]Replace destination table
§
unique?: ActionIncrementalLoadMode
[src]Insert records where the value of a column is not already present in the destination table