Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Request message for CreateJobTrigger.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2CreateJobTriggerRequest

Returns a new instance of GooglePrivacyDlpV2CreateJobTriggerRequest.



1207
1208
1209
# File 'generated/google/apis/dlp_v2/classes.rb', line 1207

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#job_triggerGoogle::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger

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



1191
1192
1193
# File 'generated/google/apis/dlp_v2/classes.rb', line 1191

def job_trigger
  @job_trigger
end

#location_idString

The geographic location to store the job trigger. Reserved for future extensions. Corresponds to the JSON property locationId

Returns:

  • (String)


1197
1198
1199
# File 'generated/google/apis/dlp_v2/classes.rb', line 1197

def location_id
  @location_id
end

#trigger_idString

The trigger id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one. Corresponds to the JSON property triggerId

Returns:

  • (String)


1205
1206
1207
# File 'generated/google/apis/dlp_v2/classes.rb', line 1205

def trigger_id
  @trigger_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1212
1213
1214
1215
1216
# File 'generated/google/apis/dlp_v2/classes.rb', line 1212

def update!(**args)
  @job_trigger = args[:job_trigger] if args.key?(:job_trigger)
  @location_id = args[:location_id] if args.key?(:location_id)
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
end