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

SourceNumericFilter

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

Filter for fixed point number data types such as NUMERIC/NUMBER

interface SourceNumericFilter {
numericFilterOption?:
| "NUMERIC_FILTER_OPTION_UNSPECIFIED"
| "NUMERIC_FILTER_OPTION_ALL"
| "NUMERIC_FILTER_OPTION_LIMIT"
| "NUMERIC_FILTER_OPTION_LIMITLESS";
sourceMaxPrecisionFilter?: number;
sourceMaxScaleFilter?: number;
sourceMinPrecisionFilter?: number;
sourceMinScaleFilter?: number;
}

§Properties

§
numericFilterOption?: "NUMERIC_FILTER_OPTION_UNSPECIFIED" | "NUMERIC_FILTER_OPTION_ALL" | "NUMERIC_FILTER_OPTION_LIMIT" | "NUMERIC_FILTER_OPTION_LIMITLESS"
[src]

Required. Enum to set the option defining the datatypes numeric filter has to be applied to

§
sourceMaxPrecisionFilter?: number
[src]

Optional. The filter will match columns with precision smaller than or equal to this number.

§
sourceMaxScaleFilter?: number
[src]

Optional. The filter will match columns with scale smaller than or equal to this number.

§
sourceMinPrecisionFilter?: number
[src]

Optional. The filter will match columns with precision greater than or equal to this number.

§
sourceMinScaleFilter?: number
[src]

Optional. The filter will match columns with scale greater than or equal to this number.