Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityColumnResult
- 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
-
#column ⇒ String
Output only.
-
#score ⇒ Float
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityColumnResult
constructor
A new instance of GoogleCloudDataplexV1DataQualityColumnResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataQualityColumnResult
Returns a new instance of GoogleCloudDataplexV1DataQualityColumnResult.
2044 2045 2046 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2044 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column ⇒ String
Output only. The column specified in the DataQualityRule.
Corresponds to the JSON property column
2035 2036 2037 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2035 def column @column end |
#score ⇒ Float
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
2042 2043 2044 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2042 def score @score end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2049 2050 2051 2052 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2049 def update!(**args) @column = args[:column] if args.key?(:column) @score = args[:score] if args.key?(:score) end |