Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions
 
 
- 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 post scan actions of DataQualityScan.
Instance Attribute Summary collapse
- 
  
    
      #bigquery_export  ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of BigQuery export post scan action.
 - 
  
    
      #notification_report  ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of notification report post scan action.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1DataQualitySpecPostScanActions 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1DataQualitySpecPostScanActions.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualitySpecPostScanActions
Returns a new instance of GoogleCloudDataplexV1DataQualitySpecPostScanActions.
      2814 2815 2816  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2814 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bigquery_export ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport
The configuration of BigQuery export post scan action.
Corresponds to the JSON property bigqueryExport
      2807 2808 2809  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2807 def bigquery_export @bigquery_export end  | 
  
#notification_report ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsNotificationReport
The configuration of notification report post scan action.
Corresponds to the JSON property notificationReport
      2812 2813 2814  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2812 def notification_report @notification_report end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2819 2820 2821 2822  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2819 def update!(**args) @bigquery_export = args[:bigquery_export] if args.key?(:bigquery_export) @notification_report = args[:notification_report] if args.key?(:notification_report) end  |