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