Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
- 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 the provided expression is true.The SQL expression needs to use BigQuery standard SQL syntax and should produce a scalar boolean result. Example: MIN(col1) >= 0
Instance Attribute Summary collapse
-
#sql_expression ⇒ String
The SQL expression.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
constructor
A new instance of GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
Returns a new instance of GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation.
1888 1889 1890 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1888 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sql_expression ⇒ String
The SQL expression.
Corresponds to the JSON property sqlExpression
1886 1887 1888 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1886 def sql_expression @sql_expression end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1893 1894 1895 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1893 def update!(**args) @sql_expression = args[:sql_expression] if args.key?(:sql_expression) end |