Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest
- 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
-
#job_trigger ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
Contains a configuration to make dlp api calls on a repeating basis.
-
#trigger_id ⇒ String
The trigger id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\\d-]+
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateJobTriggerRequest
constructor
A new instance of GooglePrivacyDlpV2CreateJobTriggerRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateJobTriggerRequest
Returns a new instance of GooglePrivacyDlpV2CreateJobTriggerRequest
931 932 933 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 931 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_trigger ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
Contains a configuration to make dlp api calls on a repeating basis.
Corresponds to the JSON property jobTrigger
921 922 923 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 921 def job_trigger @job_trigger end |
#trigger_id ⇒ String
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
929 930 931 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 929 def trigger_id @trigger_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
936 937 938 939 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 936 def update!(**args) @job_trigger = args[:job_trigger] if args.key?(:job_trigger) @trigger_id = args[:trigger_id] if args.key?(:trigger_id) end |