Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResult

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityResult

Returns a new instance of GoogleCloudDataplexV1DataQualityResult.



2555
2556
2557
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2555

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#catalog_publishing_statusGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus

The status of publishing the data scan result as Dataplex Universal Catalog metadata. Corresponds to the JSON property catalogPublishingStatus



2507
2508
2509
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2507

def catalog_publishing_status
  @catalog_publishing_status
end

#columnsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult>

Output only. A list of results at the column level.A column will have a corresponding DataQualityColumnResult if and only if there is at least one rule with the 'column' field set to it. Corresponds to the JSON property columns



2514
2515
2516
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2514

def columns
  @columns
end

#dimensionsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult>

Output only. A list of results at the dimension level.A dimension will have a corresponding DataQualityDimensionResult if and only if there is at least one rule with the 'dimension' field set to it. Corresponds to the JSON property dimensions



2521
2522
2523
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2521

def dimensions
  @dimensions
end

#passedBoolean Also known as: passed?

Output only. Overall data quality result -- true if all rules passed. Corresponds to the JSON property passed

Returns:

  • (Boolean)


2526
2527
2528
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2526

def passed
  @passed
end

#post_scan_actions_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult

The result of post scan actions of DataQualityScan job. Corresponds to the JSON property postScanActionsResult



2532
2533
2534
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2532

def post_scan_actions_result
  @post_scan_actions_result
end

#row_countFixnum

Output only. The count of rows processed. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


2537
2538
2539
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2537

def row_count
  @row_count
end

#rulesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult>

Output only. A list of all the rules in a job, and their results. Corresponds to the JSON property rules



2542
2543
2544
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2542

def rules
  @rules
end

#scanned_dataGoogle::Apis::DataplexV1::GoogleCloudDataplexV1ScannedData

The data scanned during processing (e.g. in incremental DataScan) Corresponds to the JSON property scannedData



2547
2548
2549
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2547

def scanned_data
  @scanned_data
end

#scoreFloat

Output only. The overall data quality score.The score ranges between 0, 100 ( up to two decimal points). Corresponds to the JSON property score

Returns:

  • (Float)


2553
2554
2555
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2553

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2560

def update!(**args)
  @catalog_publishing_status = args[:catalog_publishing_status] if args.key?(:catalog_publishing_status)
  @columns = args[:columns] if args.key?(:columns)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @passed = args[:passed] if args.key?(:passed)
  @post_scan_actions_result = args[:post_scan_actions_result] if args.key?(:post_scan_actions_result)
  @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)
  @score = args[:score] if args.key?(:score)
end