Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResult
- 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
The output of a DataQualityScan.
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>
A list of results at the dimension-level.
-
#passed ⇒ Boolean
(also: #passed?)
Overall data quality result -- true if all rules passed.
-
#row_count ⇒ Fixnum
The count of rows processed.
-
#rules ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult>
A list of all the rules in a job, and their results.
-
#scanned_data ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData
The data scanned during processing (e.g. in incremental DataScan) Corresponds to the JSON property
scannedData.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityResult
constructor
A new instance of GoogleCloudDataplexV1DataQualityResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityResult
Returns a new instance of GoogleCloudDataplexV1DataQualityResult.
1276 1277 1278 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>
A list of results at the dimension-level.
Corresponds to the JSON property dimensions
1253 1254 1255 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1253 def dimensions @dimensions end |
#passed ⇒ Boolean Also known as: passed?
Overall data quality result -- true if all rules passed.
Corresponds to the JSON property passed
1258 1259 1260 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1258 def passed @passed end |
#row_count ⇒ Fixnum
The count of rows processed.
Corresponds to the JSON property rowCount
1264 1265 1266 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1264 def row_count @row_count end |
#rules ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult>
A list of all the rules in a job, and their results.
Corresponds to the JSON property rules
1269 1270 1271 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1269 def rules @rules end |
#scanned_data ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData
The data scanned during processing (e.g. in incremental DataScan)
Corresponds to the JSON property scannedData
1274 1275 1276 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1274 def scanned_data @scanned_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1281 1282 1283 1284 1285 1286 1287 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1281 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @passed = args[:passed] if args.key?(:passed) @row_count = args[:row_count] if args.key?(:row_count) @rules = args[:rules] if args.key?(:rules) @scanned_data = args[:scanned_data] if args.key?(:scanned_data) end |