Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanEventDataQualityResult
- 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
Data quality result for data scan job.
Instance Attribute Summary collapse
-
#column_score ⇒ Hash<String,Float>
The score of each column scanned in the data scan job.
-
#dimension_passed ⇒ Hash<String,Boolean>
The result of each dimension for data quality result.
-
#dimension_score ⇒ Hash<String,Float>
The score of each dimension for data quality result.
-
#passed ⇒ Boolean
(also: #passed?)
Whether the data quality result was pass or not.
-
#row_count ⇒ Fixnum
The count of rows processed in the data scan job.
-
#score ⇒ Float
The table-level data quality score for the data scan job.The data quality score ranges between 0, 100 (up to two decimal points).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanEventDataQualityResult
constructor
A new instance of GoogleCloudDataplexV1DataScanEventDataQualityResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataScanEventDataQualityResult
Returns a new instance of GoogleCloudDataplexV1DataScanEventDataQualityResult.
3284 3285 3286 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3284 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_score ⇒ Hash<String,Float>
The score of each column scanned in the data scan job. The key of the map is
the name of the column. The value is the data quality score for the column.The
score ranges between 0, 100 (up to two decimal points).
Corresponds to the JSON property columnScore
3251 3252 3253 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3251 def column_score @column_score end |
#dimension_passed ⇒ Hash<String,Boolean>
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.
Corresponds to the JSON property dimensionPassed
3258 3259 3260 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3258 def dimension_passed @dimension_passed end |
#dimension_score ⇒ Hash<String,Float>
The score of each dimension for data quality result. The key of the map is the
name of the dimension. The value is the data quality score for the dimension.
The score ranges between 0, 100 (up to two decimal points).
Corresponds to the JSON property dimensionScore
3265 3266 3267 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3265 def dimension_score @dimension_score end |
#passed ⇒ Boolean Also known as: passed?
Whether the data quality result was pass or not.
Corresponds to the JSON property passed
3270 3271 3272 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3270 def passed @passed end |
#row_count ⇒ Fixnum
The count of rows processed in the data scan job.
Corresponds to the JSON property rowCount
3276 3277 3278 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3276 def row_count @row_count end |
#score ⇒ Float
The table-level data quality score for the data scan job.The data quality
score ranges between 0, 100 (up to two decimal points).
Corresponds to the JSON property score
3282 3283 3284 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3282 def score @score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3289 3290 3291 3292 3293 3294 3295 3296 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3289 def update!(**args) @column_score = args[:column_score] if args.key?(:column_score) @dimension_passed = args[:dimension_passed] if args.key?(:dimension_passed) @dimension_score = args[:dimension_score] if args.key?(:dimension_score) @passed = args[:passed] if args.key?(:passed) @row_count = args[:row_count] if args.key?(:row_count) @score = args[:score] if args.key?(:score) end |