Struct gapi_grpc::google::privacy::dlp::v2::HybridOptions[][src]

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

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

Fields

description: String

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

required_finding_label_keys: 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.

labels: 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:

table_options: Option<TableOptions>

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

Trait Implementations

impl Clone for HybridOptions[src]

impl Debug for HybridOptions[src]

impl Default for HybridOptions[src]

impl Message for HybridOptions[src]

impl PartialEq<HybridOptions> for HybridOptions[src]

impl StructuralPartialEq for HybridOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for HybridOptions

impl Send for HybridOptions

impl Sync for HybridOptions

impl Unpin for HybridOptions

impl UnwindSafe for HybridOptions

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]