Class JobTrigger (3.2.4)

JobTrigger(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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

Attributes

NameDescription
name str
Unique resource name for the triggeredJob, assigned by the service when the triggeredJob is created, for example projects/dlp-test-project/jobTriggers/53234423.
display_name str
Display name (max 100 chars)
description str
User provided description (max 256 chars)
inspect_job google.cloud.dlp_v2.types.InspectJobConfig
For inspect jobs, a snapshot of the configuration.
triggers Sequence[google.cloud.dlp_v2.types.JobTrigger.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.
errors Sequence[google.cloud.dlp_v2.types.Error]
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.
create_time google.protobuf.timestamp_pb2.Timestamp
Output only. The creation timestamp of a triggeredJob.
update_time google.protobuf.timestamp_pb2.Timestamp
Output only. The last update timestamp of a triggeredJob.
last_run_time google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp of the last time this trigger executed.
status google.cloud.dlp_v2.types.JobTrigger.Status
Required. A status for this trigger.

Classes

Status

Status(value)

Whether the trigger is currently active. If PAUSED or CANCELLED, no jobs will be created with this configuration. The service may automatically pause triggers experiencing frequent errors. To restart a job, set the status to HEALTHY after correcting user errors.

Trigger

Trigger(mapping=None, *, ignore_unknown_fields=False, **kwargs)

What event needs to occur for a new job to be started. .. attribute:: schedule

Create a job on a repeating basis based on the elapse of time.

:type: google.cloud.dlp_v2.types.Schedule