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

GooglePrivacyDlpV2BigQueryRegex

import type { GooglePrivacyDlpV2BigQueryRegex } from "https://googleapis.deno.dev/v1/dlp:v2.ts";

A pattern to match against one or more tables, datasets, or projects that contain BigQuery tables. At least one pattern must be specified. Regular expressions use RE2 syntax; a guide can be found under the google/re2 repository on GitHub.

interface GooglePrivacyDlpV2BigQueryRegex {
datasetIdRegex?: string;
projectIdRegex?: string;
tableIdRegex?: string;
}

§Properties

§
datasetIdRegex?: string
[src]

If unset, this property matches all datasets.

§
projectIdRegex?: string
[src]

For organizations, if unset, will match all projects. Has no effect for data profile configurations created within a project.

§
tableIdRegex?: string
[src]

If unset, this property matches all tables.