Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue
- 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
Top N non-null values in the scanned data.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Count of the corresponding value in the scanned data.
-
#ratio ⇒ Float
Ratio of the corresponding value in the field against the total number of rows in the scanned data.
-
#value ⇒ String
String value of a top N non-null value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue
constructor
A new instance of GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue
Returns a new instance of GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue.
2332 2333 2334 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Count of the corresponding value in the scanned data.
Corresponds to the JSON property count
2319 2320 2321 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2319 def count @count end |
#ratio ⇒ Float
Ratio of the corresponding value in the field against the total number of rows
in the scanned data.
Corresponds to the JSON property ratio
2325 2326 2327 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2325 def ratio @ratio end |
#value ⇒ String
String value of a top N non-null value.
Corresponds to the JSON property value
2330 2331 2332 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2330 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2337 2338 2339 2340 2341 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2337 def update!(**args) @count = args[:count] if args.key?(:count) @ratio = args[:ratio] if args.key?(:ratio) @value = args[:value] if args.key?(:value) end |