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

GooglePrivacyDlpV2DatabaseResourceRegex

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

A pattern to match against one or more database resources. 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 GooglePrivacyDlpV2DatabaseResourceRegex {
databaseRegex?: string;
databaseResourceNameRegex?: string;
instanceRegex?: string;
projectIdRegex?: string;
}

§Properties

§
databaseRegex?: string
[src]

Regex to test the database name against. If empty, all databases match.

§
databaseResourceNameRegex?: string
[src]

Regex to test the database resource's name against. An example of a database resource name is a table's name. Other database resource names like view names could be included in the future. If empty, all database resources match.

§
instanceRegex?: string
[src]

Regex to test the instance name against. If empty, all instances match.

§
projectIdRegex?: string
[src]

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