[][src]Struct google_dlp2::GooglePrivacyDlpV2HybridOptions

pub struct GooglePrivacyDlpV2HybridOptions {
    pub table_options: Option<GooglePrivacyDlpV2TableOptions>,
    pub labels: Option<HashMap<String, String>>,
    pub required_finding_label_keys: Option<Vec<String>>,
    pub description: Option<String>,
}

Configuration to control jobs where the content being inspected is outside of Google Cloud Platform.

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

Fields

table_options: Option<GooglePrivacyDlpV2TableOptions>

If the container is a table, additional information to make findings meaningful such as the columns that are primary keys.

labels: Option<HashMap<String, String>>

To organize findings, these labels will be added to each finding.

Label keys must be between 1 and 63 characters long and must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?.

Label values must be between 0 and 63 characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?.

No more than 10 labels can be associated with a given finding.

Examples:

  • "environment" : "production"
  • "pipeline" : "etl"
required_finding_label_keys: Option<Vec<String>>

These are labels that each inspection request must include within their 'finding_labels' map. Request may contain others, but any missing one of these will be rejected.

Label keys must be between 1 and 63 characters long and must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?.

No more than 10 keys can be required.

description: Option<String>

A short description of where the data is coming from. Will be stored once in the job. 256 max length.

Trait Implementations

impl Clone for GooglePrivacyDlpV2HybridOptions[src]

impl Debug for GooglePrivacyDlpV2HybridOptions[src]

impl Default for GooglePrivacyDlpV2HybridOptions[src]

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

impl Part for GooglePrivacyDlpV2HybridOptions[src]

impl Serialize for GooglePrivacyDlpV2HybridOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any