Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation
 
 
- 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
Evaluates whether each row passes the specified condition.The SQL expression needs to use BigQuery standard SQL syntax and should produce a boolean value per row as the result.Example: col1 >= 0 AND col2 < 10
Instance Attribute Summary collapse
- 
  
    
      #sql_expression  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation
Returns a new instance of GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation.
      2520 2521 2522  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2520 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#sql_expression ⇒ String
Optional. The SQL expression.
Corresponds to the JSON property sqlExpression
      2518 2519 2520  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2518 def sql_expression @sql_expression end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2525 2526 2527  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 2525 def update!(**args) @sql_expression = args[:sql_expression] if args.key?(:sql_expression) end  |