Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs
 
- 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
Applied configs for data profile type data scan job.
Instance Attribute Summary collapse
- 
  
    
      #column_filter_applied  ⇒ Boolean 
    
    
      (also: #column_filter_applied?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Boolean indicating whether a column filter was applied in the DataScan job. 
- 
  
    
      #row_filter_applied  ⇒ Boolean 
    
    
      (also: #row_filter_applied?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Boolean indicating whether a row filter was applied in the DataScan job. 
- 
  
    
      #sampling_percent  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The percentage of the records selected from the dataset for DataScan. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs
Returns a new instance of GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs.
| 3627 3628 3629 | # File 'lib/google/apis/dataplex_v1/classes.rb', line 3627 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#column_filter_applied ⇒ Boolean Also known as: column_filter_applied?
Boolean indicating whether a column filter was applied in the DataScan job.
Corresponds to the JSON property columnFilterApplied
| 3611 3612 3613 | # File 'lib/google/apis/dataplex_v1/classes.rb', line 3611 def column_filter_applied @column_filter_applied end | 
#row_filter_applied ⇒ Boolean Also known as: row_filter_applied?
Boolean indicating whether a row filter was applied in the DataScan job.
Corresponds to the JSON property rowFilterApplied
| 3617 3618 3619 | # File 'lib/google/apis/dataplex_v1/classes.rb', line 3617 def row_filter_applied @row_filter_applied end | 
#sampling_percent ⇒ Float
The percentage of the records selected from the dataset for DataScan. Value
ranges between 0.0 and 100.0. Value 0.0 or 100.0 imply that sampling was not
applied.
Corresponds to the JSON property samplingPercent
| 3625 3626 3627 | # File 'lib/google/apis/dataplex_v1/classes.rb', line 3625 def sampling_percent @sampling_percent end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3632 3633 3634 3635 3636 | # File 'lib/google/apis/dataplex_v1/classes.rb', line 3632 def update!(**args) @column_filter_applied = args[:column_filter_applied] if args.key?(:column_filter_applied) @row_filter_applied = args[:row_filter_applied] if args.key?(:row_filter_applied) @sampling_percent = args[:sampling_percent] if args.key?(:sampling_percent) end |