Class: Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityHistogramBucket
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityHistogramBucket
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
 generated/google/apis/dlp_v2/representations.rb,
 generated/google/apis/dlp_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #bucket_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Total number of equivalence classes in this bucket. 
- 
  
    
      #bucket_value_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Total number of distinct equivalence classes in this bucket. 
- 
  
    
      #bucket_values  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Sample of equivalence classes in this bucket. 
- 
  
    
      #sensitive_value_frequency_lower_bound  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Lower bound on the sensitive value frequencies of the equivalence classes in this bucket. 
- 
  
    
      #sensitive_value_frequency_upper_bound  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Upper bound on the sensitive value frequencies of the equivalence classes in this bucket. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2LDiversityHistogramBucket 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2LDiversityHistogramBucket. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2LDiversityHistogramBucket
Returns a new instance of GooglePrivacyDlpV2LDiversityHistogramBucket
| 2997 2998 2999 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2997 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bucket_size ⇒ Fixnum
Total number of equivalence classes in this bucket.
Corresponds to the JSON property bucketSize
| 2972 2973 2974 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2972 def bucket_size @bucket_size end | 
#bucket_value_count ⇒ Fixnum
Total number of distinct equivalence classes in this bucket.
Corresponds to the JSON property bucketValueCount
| 2977 2978 2979 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2977 def bucket_value_count @bucket_value_count end | 
#bucket_values ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityEquivalenceClass>
Sample of equivalence classes in this bucket. The total number of
classes returned per bucket is capped at 20.
Corresponds to the JSON property bucketValues
| 2983 2984 2985 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2983 def bucket_values @bucket_values end | 
#sensitive_value_frequency_lower_bound ⇒ Fixnum
Lower bound on the sensitive value frequencies of the equivalence
classes in this bucket.
Corresponds to the JSON property sensitiveValueFrequencyLowerBound
| 2989 2990 2991 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2989 def sensitive_value_frequency_lower_bound @sensitive_value_frequency_lower_bound end | 
#sensitive_value_frequency_upper_bound ⇒ Fixnum
Upper bound on the sensitive value frequencies of the equivalence
classes in this bucket.
Corresponds to the JSON property sensitiveValueFrequencyUpperBound
| 2995 2996 2997 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2995 def sensitive_value_frequency_upper_bound @sensitive_value_frequency_upper_bound end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3002 3003 3004 3005 3006 3007 3008 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3002 def update!(**args) @bucket_size = args[:bucket_size] if args.key?(:bucket_size) @bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count) @bucket_values = args[:bucket_values] if args.key?(:bucket_values) @sensitive_value_frequency_lower_bound = args[:sensitive_value_frequency_lower_bound] if args.key?(:sensitive_value_frequency_lower_bound) @sensitive_value_frequency_upper_bound = args[:sensitive_value_frequency_upper_bound] if args.key?(:sensitive_value_frequency_upper_bound) end |