Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2NumericalStatsResult
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2NumericalStatsResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb
Overview
Result of the numerical stats computation.
Instance Attribute Summary collapse
-
#max_value ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value
Set of primitive values supported by the system.
-
#min_value ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value
Set of primitive values supported by the system.
-
#quantile_values ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value>
List of 99 values that partition the set of field values into 100 equal sized buckets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2NumericalStatsResult
constructor
A new instance of GooglePrivacyDlpV2beta2NumericalStatsResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2NumericalStatsResult
Returns a new instance of GooglePrivacyDlpV2beta2NumericalStatsResult
4568 4569 4570 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4568 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_value ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value
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
4550 4551 4552 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4550 def max_value @max_value end |
#min_value ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value
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
4560 4561 4562 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4560 def min_value @min_value end |
#quantile_values ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Value>
List of 99 values that partition the set of field values into 100 equal
sized buckets.
Corresponds to the JSON property quantileValues
4566 4567 4568 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4566 def quantile_values @quantile_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4573 4574 4575 4576 4577 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4573 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 |