Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CreateJobTriggerRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/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) ⇒ GooglePrivacyDlpV2beta2CreateJobTriggerRequest

Returns a new instance of GooglePrivacyDlpV2beta2CreateJobTriggerRequest



2352
2353
2354
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2352

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

Instance Attribute Details

#job_triggerGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2JobTrigger

Contains a configuration to make dlp api calls on a repeating basis. Corresponds to the JSON property jobTrigger



2342
2343
2344
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2342

def job_trigger
  @job_trigger
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)


2350
2351
2352
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2350

def trigger_id
  @trigger_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2357
2358
2359
2360
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2357

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