Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult

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

DataQualityColumnResult provides a more detailed, per-column view of the results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityColumnResult

Returns a new instance of GoogleCloudDataplexV1DataQualityColumnResult.



2040
2041
2042
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2040

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

Instance Attribute Details

#columnString

Output only. The column specified in the DataQualityRule. Corresponds to the JSON property column

Returns:

  • (String)


2031
2032
2033
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2031

def column
  @column
end

#scoreFloat

Output only. The column-level data quality score for this data scan job if and only if the 'column' field is set.The score ranges between between 0, 100 (up to two decimal points). Corresponds to the JSON property score

Returns:

  • (Float)


2038
2039
2040
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2038

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2045
2046
2047
2048
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2045

def update!(**args)
  @column = args[:column] if args.key?(:column)
  @score = args[:score] if args.key?(:score)
end