Interface DataScanEvent.DataQualityResultOrBuilder

    • Method Detail

      • getRowCount

        long getRowCount()
         The count of rows processed in the data scan job.
         
        int64 row_count = 1;
        Returns:
        The rowCount.
      • getPassed

        boolean getPassed()
         Whether the data quality result was `pass` or not.
         
        bool passed = 2;
        Returns:
        The passed.
      • getDimensionPassedCount

        int getDimensionPassedCount()
         The result of each dimension for data quality result.
         The key of the map is the name of the dimension.
         The value is the bool value depicting whether the dimension result was
         `pass` or not.
         
        map<string, bool> dimension_passed = 3;
      • containsDimensionPassed

        boolean containsDimensionPassed​(String key)
         The result of each dimension for data quality result.
         The key of the map is the name of the dimension.
         The value is the bool value depicting whether the dimension result was
         `pass` or not.
         
        map<string, bool> dimension_passed = 3;
      • getDimensionPassedMap

        Map<String,​Boolean> getDimensionPassedMap()
         The result of each dimension for data quality result.
         The key of the map is the name of the dimension.
         The value is the bool value depicting whether the dimension result was
         `pass` or not.
         
        map<string, bool> dimension_passed = 3;
      • getDimensionPassedOrDefault

        boolean getDimensionPassedOrDefault​(String key,
                                            boolean defaultValue)
         The result of each dimension for data quality result.
         The key of the map is the name of the dimension.
         The value is the bool value depicting whether the dimension result was
         `pass` or not.
         
        map<string, bool> dimension_passed = 3;
      • getDimensionPassedOrThrow

        boolean getDimensionPassedOrThrow​(String key)
         The result of each dimension for data quality result.
         The key of the map is the name of the dimension.
         The value is the bool value depicting whether the dimension result was
         `pass` or not.
         
        map<string, bool> dimension_passed = 3;