Struct google_dlp2_beta1::GooglePrivacyDlpV2beta1InspectConfig[][src]

pub struct GooglePrivacyDlpV2beta1InspectConfig {
    pub exclude_types: Option<bool>,
    pub min_likelihood: Option<String>,
    pub info_type_limits: Option<Vec<GooglePrivacyDlpV2beta1InfoTypeLimit>>,
    pub custom_info_types: Option<Vec<GooglePrivacyDlpV2beta1CustomInfoType>>,
    pub include_quote: Option<bool>,
    pub info_types: Option<Vec<GooglePrivacyDlpV2beta1InfoType>>,
    pub max_findings: Option<i32>,
}

Configuration description of the scanning process. When used with redactContent only info_types and min_likelihood are currently used.

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

Fields

When true, excludes type information of the findings.

Only returns findings equal or above this threshold.

Configuration of findings limit given for specified info types.

Custom info types provided by the user.

When true, a contextual quote from the data that triggered a finding is included in the response; see Finding.quote.

Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or found in documentation. Empty info_types runs all enabled detectors.

Limits the number of findings per content item or long running operation.

Trait Implementations

impl Default for GooglePrivacyDlpV2beta1InspectConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2beta1InspectConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2beta1InspectConfig
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2beta1InspectConfig
[src]

Auto Trait Implementations