Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1NumericalStatsResult
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1NumericalStatsResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
Result of the numerical stats computation.
Instance Attribute Summary collapse
-
#max_value ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value
Set of primitive values supported by the system.
-
#min_value ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value
Set of primitive values supported by the system.
-
#quantile_values ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value>
List of 99 values that partition the set of field values into 100 equal sized buckets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1NumericalStatsResult
constructor
A new instance of GooglePrivacyDlpV2beta1NumericalStatsResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1NumericalStatsResult
Returns a new instance of GooglePrivacyDlpV2beta1NumericalStatsResult
2153 2154 2155 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2153 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_value ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value
Set of primitive values supported by the system.
Corresponds to the JSON property maxValue
2140 2141 2142 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2140 def max_value @max_value end |
#min_value ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value
Set of primitive values supported by the system.
Corresponds to the JSON property minValue
2145 2146 2147 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2145 def min_value @min_value end |
#quantile_values ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1Value>
List of 99 values that partition the set of field values into 100 equal
sized buckets.
Corresponds to the JSON property quantileValues
2151 2152 2153 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2151 def quantile_values @quantile_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2158 2159 2160 2161 2162 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2158 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 |