Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
The configuration of notification report post scan action.
Instance Attribute Summary collapse
-
#job_end_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger
This trigger is triggered whenever a scan job run ends, regardless of the result.
-
#job_failure_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger
This trigger is triggered when the scan job itself fails, regardless of the result.
-
#recipients ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients
The individuals or groups who are designated to receive notifications upon triggers.
-
#score_threshold_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger
This trigger is triggered when the DQ score in the job result is less than a specified input score.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
constructor
A new instance of GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
Returns a new instance of GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport.
3322 3323 3324 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_end_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobEndTrigger
This trigger is triggered whenever a scan job run ends, regardless of the
result.
Corresponds to the JSON property jobEndTrigger
3302 3303 3304 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3302 def job_end_trigger @job_end_trigger end |
#job_failure_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsJobFailureTrigger
This trigger is triggered when the scan job itself fails, regardless of the
result.
Corresponds to the JSON property jobFailureTrigger
3308 3309 3310 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3308 def job_failure_trigger @job_failure_trigger end |
#recipients ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsRecipients
The individuals or groups who are designated to receive notifications upon
triggers.
Corresponds to the JSON property recipients
3314 3315 3316 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3314 def recipients @recipients end |
#score_threshold_trigger ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsScoreThresholdTrigger
This trigger is triggered when the DQ score in the job result is less than a
specified input score.
Corresponds to the JSON property scoreThresholdTrigger
3320 3321 3322 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3320 def score_threshold_trigger @score_threshold_trigger end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3327 3328 3329 3330 3331 3332 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3327 def update!(**args) @job_end_trigger = args[:job_end_trigger] if args.key?(:job_end_trigger) @job_failure_trigger = args[:job_failure_trigger] if args.key?(:job_failure_trigger) @recipients = args[:recipients] if args.key?(:recipients) @score_threshold_trigger = args[:score_threshold_trigger] if args.key?(:score_threshold_trigger) end |