DataQualityRuleResult(mapping=None, *, ignore_unknown_fields=False, **kwargs)DataQualityRuleResult provides a more detailed, per-rule view of the results.
| Attributes | |
|---|---|
| Name | Description | 
| rule | google.cloud.dataplex_v1.types.DataQualityRuleOutput only. The rule specified in the DataQualitySpec, as is. | 
| passed | boolOutput only. Whether the rule passed or failed. | 
| evaluated_count | intOutput only. The number of rows a rule was evaluated against. This field is only valid for row-level type rules. Evaluated count can be configured to either - include all rows (default) - with nullrows
     automatically failing rule evaluation, or
   - excludenullrows from theevaluated_count, by
     settingignore_nulls = true.
   
   This field is not set for rule SqlAssertion. | 
| passed_count | intOutput only. The number of rows which passed a rule evaluation. This field is only valid for row-level type rules. This field is not set for rule SqlAssertion. | 
| null_count | intOutput only. The number of rows with null values in the specified column. | 
| pass_ratio | floatOutput only. The ratio of **passed_count / evaluated_count**. This field is only valid for row-level type rules. | 
| failing_rows_query | strOutput only. The query to find rows that did not pass this rule. This field is only valid for row-level type rules. | 
| assertion_row_count | intOutput only. The number of rows returned by the SQL statement in a SQL assertion rule. This field is only valid for SQL assertion rules. |