class Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest

Request message for UpdateJobTrigger.

Attributes

job_trigger[RW]

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. Corresponds to the JSON property `jobTrigger` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

update_mask[RW]

Mask to control which fields get updated. Corresponds to the JSON property `updateMask` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 6303
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 6308
def update!(**args)
  @job_trigger = args[:job_trigger] if args.key?(:job_trigger)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end