Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo

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 profile information for a string type field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo

Returns a new instance of GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo.



3211
3212
3213
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3211

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

Instance Attribute Details

#average_lengthFloat

Output only. Average length of non-null values in the scanned data. Corresponds to the JSON property averageLength

Returns:

  • (Float)


3199
3200
3201
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3199

def average_length
  @average_length
end

#max_lengthFixnum

Output only. Maximum length of non-null values in the scanned data. Corresponds to the JSON property maxLength

Returns:

  • (Fixnum)


3204
3205
3206
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3204

def max_length
  @max_length
end

#min_lengthFixnum

Output only. Minimum length of non-null values in the scanned data. Corresponds to the JSON property minLength

Returns:

  • (Fixnum)


3209
3210
3211
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3209

def min_length
  @min_length
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3216
3217
3218
3219
3220
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3216

def update!(**args)
  @average_length = args[:average_length] if args.key?(:average_length)
  @max_length = args[:max_length] if args.key?(:max_length)
  @min_length = args[:min_length] if args.key?(:min_length)
end