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.



3602
3603
3604
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3602

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)


3582
3583
3584
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3582

def column
  @column
end

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

Output only. The dimension-level results for this column. Corresponds to the JSON property dimensions



3587
3588
3589
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3587

def dimensions
  @dimensions
end

#passedBoolean Also known as: passed?

Output only. Whether the column passed or failed. Corresponds to the JSON property passed

Returns:

  • (Boolean)


3592
3593
3594
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3592

def passed
  @passed
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)


3600
3601
3602
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3600

def score
  @score
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3607
3608
3609
3610
3611
3612
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3607

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