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

pub struct InspectTemplate {
    pub name: String,
    pub display_name: String,
    pub description: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub inspect_config: Option<InspectConfig>,
}

The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig. See https://cloud.google.com/dlp/docs/concepts-templates to learn more.

Fields

name: String

Output only. The template name.

The template will have one of the following formats: projects/PROJECT_ID/inspectTemplates/TEMPLATE_ID OR organizations/ORGANIZATION_ID/inspectTemplates/TEMPLATE_ID;

display_name: String

Display name (max 256 chars).

description: String

Short description (max 256 chars).

create_time: Option<Timestamp>

Output only. The creation timestamp of an inspectTemplate.

update_time: Option<Timestamp>

Output only. The last update timestamp of an inspectTemplate.

inspect_config: Option<InspectConfig>

The core content of the template. Configuration of the scanning process.

Trait Implementations

impl Clone for InspectTemplate[src]

impl Debug for InspectTemplate[src]

impl Default for InspectTemplate[src]

impl Message for InspectTemplate[src]

impl PartialEq<InspectTemplate> for InspectTemplate[src]

impl StructuralPartialEq for InspectTemplate[src]

Auto Trait Implementations

impl RefUnwindSafe for InspectTemplate

impl Send for InspectTemplate

impl Sync for InspectTemplate

impl Unpin for InspectTemplate

impl UnwindSafe for InspectTemplate

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]