Class: Google::Privacy::Dlp::V2::FixedSizeBucketingConfig
- Inherits:
-
Object
- Object
- Google::Privacy::Dlp::V2::FixedSizeBucketingConfig
- Defined in:
- lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb
Overview
Buckets values based on fixed size ranges. The Bucketing transformation can provide all of this functionality, but requires more configuration. This message is provided as a convenience to the user for simple bucketing strategies.
The transformed value will be a hyphenated string of
This can be used on data of type: double, long.
If the bound Value type differs from the type of data being transformed, we will first attempt converting the type of the data to be transformed to match the type of the bound before comparing.
Instance Attribute Summary collapse
-
#bucket_size ⇒ Float
Size of each bucket (except for minimum and maximum buckets).
-
#lower_bound ⇒ Google::Privacy::Dlp::V2::Value
Lower bound value of buckets.
-
#upper_bound ⇒ Google::Privacy::Dlp::V2::Value
Upper bound value of buckets.
Instance Attribute Details
#bucket_size ⇒ Float
Returns Size of each bucket (except for minimum and maximum buckets). So if +lower_bound+ = 10, +upper_bound+ = 89, and +bucket_size+ = 10, then the following buckets would be used: -10, 10-20, 20-30, 30-40, 40-50, 50-60, 60-70, 70-80, 80-89, 89+. Precision up to 2 decimals works. [Required].
1113 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1113 class FixedSizeBucketingConfig; end |
#lower_bound ⇒ Google::Privacy::Dlp::V2::Value
Returns Lower bound value of buckets. All values less than +lower_bound+ are grouped together into a single bucket; for example if +lower_bound+ = 10, then all values less than 10 are replaced with the value “-10”. [Required].
1113 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1113 class FixedSizeBucketingConfig; end |
#upper_bound ⇒ Google::Privacy::Dlp::V2::Value
Returns Upper bound value of buckets. All values greater than upper_bound are grouped together into a single bucket; for example if +upper_bound+ = 89, then all values greater than 89 are replaced with the value “89+”. [Required].
1113 |
# File 'lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb', line 1113 class FixedSizeBucketingConfig; end |