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

GooglePrivacyDlpV2DlpJob

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

Combines all of the information about a DLP job.

interface GooglePrivacyDlpV2DlpJob {
createTime?: Date;
endTime?: Date;
jobTriggerName?: string;
lastModified?: Date;
name?: string;
startTime?: Date;
state?:
| "JOB_STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "DONE"
| "CANCELED"
| "FAILED"
| "ACTIVE";
type?: "DLP_JOB_TYPE_UNSPECIFIED" | "INSPECT_JOB" | "RISK_ANALYSIS_JOB";
}

§Properties

§

Events that should occur after the job has completed.

§
createTime?: Date
[src]

Time when the job was created.

§
endTime?: Date
[src]

Time when the job finished.

§

A stream of errors encountered running the job.

§

Results from inspecting a data source.

§
jobTriggerName?: string
[src]

If created by a job trigger, the resource name of the trigger that instantiated the job.

§
lastModified?: Date
[src]

Time when the job was last modified by the system.

§
name?: string
[src]

The server-assigned name.

§

Results from analyzing risk of a data source.

§
startTime?: Date
[src]

Time when the job started.

§
state?: "JOB_STATE_UNSPECIFIED" | "PENDING" | "RUNNING" | "DONE" | "CANCELED" | "FAILED" | "ACTIVE"
[src]

State of a job.

§
type?: "DLP_JOB_TYPE_UNSPECIFIED" | "INSPECT_JOB" | "RISK_ANALYSIS_JOB"
[src]

The type of job.