Class: Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityHistogramBucket

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2KAnonymityHistogramBucket

Returns a new instance of GooglePrivacyDlpV2KAnonymityHistogramBucket



3231
3232
3233
# File 'generated/google/apis/dlp_v2/classes.rb', line 3231

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

Instance Attribute Details

#bucket_sizeFixnum

Total number of equivalence classes in this bucket. Corresponds to the JSON property bucketSize

Returns:

  • (Fixnum)


3208
3209
3210
# File 'generated/google/apis/dlp_v2/classes.rb', line 3208

def bucket_size
  @bucket_size
end

#bucket_value_countFixnum

Total number of distinct equivalence classes in this bucket. Corresponds to the JSON property bucketValueCount

Returns:

  • (Fixnum)


3213
3214
3215
# File 'generated/google/apis/dlp_v2/classes.rb', line 3213

def bucket_value_count
  @bucket_value_count
end

#bucket_valuesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityEquivalenceClass>

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



3219
3220
3221
# File 'generated/google/apis/dlp_v2/classes.rb', line 3219

def bucket_values
  @bucket_values
end

#equivalence_class_size_lower_boundFixnum

Lower bound on the size of the equivalence classes in this bucket. Corresponds to the JSON property equivalenceClassSizeLowerBound

Returns:

  • (Fixnum)


3224
3225
3226
# File 'generated/google/apis/dlp_v2/classes.rb', line 3224

def equivalence_class_size_lower_bound
  @equivalence_class_size_lower_bound
end

#equivalence_class_size_upper_boundFixnum

Upper bound on the size of the equivalence classes in this bucket. Corresponds to the JSON property equivalenceClassSizeUpperBound

Returns:

  • (Fixnum)


3229
3230
3231
# File 'generated/google/apis/dlp_v2/classes.rb', line 3229

def equivalence_class_size_upper_bound
  @equivalence_class_size_upper_bound
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3236
3237
3238
3239
3240
3241
3242
# File 'generated/google/apis/dlp_v2/classes.rb', line 3236

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)
  @equivalence_class_size_lower_bound = args[:equivalence_class_size_lower_bound] if args.key?(:equivalence_class_size_lower_bound)
  @equivalence_class_size_upper_bound = args[:equivalence_class_size_upper_bound] if args.key?(:equivalence_class_size_upper_bound)
end