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

GooglePrivacyDlpV2Container

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

Represents a container that may contain DLP findings. Examples of a container include a file, table, or database record.

interface GooglePrivacyDlpV2Container {
fullPath?: string;
projectId?: string;
relativePath?: string;
rootPath?: string;
type?: string;
updateTime?: Date;
version?: string;
}

§Properties

§
fullPath?: string
[src]

A string representation of the full container name. Examples: - BigQuery: 'Project:DataSetId.TableId' - Cloud Storage: 'gs://Bucket/folders/filename.txt'

§
projectId?: string
[src]

Project where the finding was found. Can be different from the project that owns the finding.

§
relativePath?: string
[src]

The rest of the path after the root. Examples: - For BigQuery table project_id:dataset_id.table_id, the relative path is table_id - For Cloud Storage file gs://bucket/folder/filename.txt, the relative path is folder/filename.txt

§
rootPath?: string
[src]

The root of the container. Examples: - For BigQuery table project_id:dataset_id.table_id, the root is dataset_id - For Cloud Storage file gs://bucket/folder/filename.txt, the root is gs://bucket

§
type?: string
[src]

Container type, for example BigQuery or Cloud Storage.

§
updateTime?: Date
[src]

Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn't populated.

§
version?: string
[src]

Findings container version, if available ("generation" for Cloud Storage).