[][src]Struct google_dlp2::GooglePrivacyDlpV2FixedSizeBucketingConfig

pub struct GooglePrivacyDlpV2FixedSizeBucketingConfig {
    pub lower_bound: Option<GooglePrivacyDlpV2Value>,
    pub upper_bound: Option<GooglePrivacyDlpV2Value>,
    pub bucket_size: Option<f64>,
}

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 <lower_bound>-<upper_bound>, i.e if lower_bound = 10 and upper_bound = 20 all values that are within this bucket will be replaced with "10-20".

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.

See https://cloud.google.com/dlp/docs/concepts-bucketing to learn more.

This type is not used in any activity, and only used as part of another schema.

Fields

lower_bound: Option<GooglePrivacyDlpV2Value>

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].

upper_bound: Option<GooglePrivacyDlpV2Value>

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].

bucket_size: Option<f64>

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].

Trait Implementations

impl Part for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

impl Default for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

impl Clone for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

impl Serialize for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

impl<'de> Deserialize<'de> for GooglePrivacyDlpV2FixedSizeBucketingConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]