class Google::Apis::DlpV2::GooglePrivacyDlpV2NumericalStatsResult
Result of the numerical stats computation.
Attributes
Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a ' Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data. Corresponds to the JSON property `maxValue` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a ' Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data. Corresponds to the JSON property `minValue` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Value]
List of 99 values that partition the set of field values into 100 equal sized buckets. Corresponds to the JSON property `quantileValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 4388 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 4393 def update!(**args) @max_value = args[:max_value] if args.key?(:max_value) @min_value = args[:min_value] if args.key?(:min_value) @quantile_values = args[:quantile_values] if args.key?(:quantile_values) end