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

GooglePrivacyDlpV2JobTrigger

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

Contains a configuration to make api calls on a repeating basis. See https://cloud.google.com/sensitive-data-protection/docs/concepts-job-triggers to learn more.

interface GooglePrivacyDlpV2JobTrigger {
readonly createTime?: Date;
description?: string;
displayName?: string;
readonly errors?: GooglePrivacyDlpV2Error[];
readonly lastRunTime?: Date;
name?: string;
status?:
| "STATUS_UNSPECIFIED"
| "HEALTHY"
| "PAUSED"
| "CANCELLED";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The creation timestamp of a triggeredJob.

§
description?: string
[src]

User provided description (max 256 chars)

§
displayName?: string
[src]

Display name (max 100 chars)

§
readonly errors?: GooglePrivacyDlpV2Error[]
[src]

Output only. A stream of errors encountered when the trigger was activated. Repeated errors may result in the JobTrigger automatically being paused. Will return the last 100 errors. Whenever the JobTrigger is modified this list will be cleared.

§

For inspect jobs, a snapshot of the configuration.

§
readonly lastRunTime?: Date
[src]

Output only. The timestamp of the last time this trigger executed.

§
name?: string
[src]

Unique resource name for the triggeredJob, assigned by the service when the triggeredJob is created, for example projects/dlp-test-project/jobTriggers/53234423.

§
status?: "STATUS_UNSPECIFIED" | "HEALTHY" | "PAUSED" | "CANCELLED"
[src]

Required. A status for this trigger.

§

A list of triggers which will be OR'ed together. Only one in the list needs to trigger for a job to be started. The list may contain only a single Schedule trigger and must have at least one object.

§
readonly updateTime?: Date
[src]

Output only. The last update timestamp of a triggeredJob.