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

pub struct Container {
    pub type: String,
    pub project_id: String,
    pub full_path: String,
    pub root_path: String,
    pub relative_path: String,
    pub update_time: Option<Timestamp>,
    pub version: String,
}

Represents a container that may contain DLP findings. Examples of a container include a file, table, or database record.

Fields

type: String

Container type, for example BigQuery or Google Cloud Storage.

project_id: String

Project where the finding was found. Can be different from the project that owns the finding.

full_path: String

A string representation of the full container name. Examples:

root_path: String

The root of the container. Examples:

relative_path: String

The rest of the path after the root. Examples:

update_time: Option<Timestamp>

Findings container modification timestamp, if applicable. For Google Cloud Storage contains last file modification timestamp. For BigQuery table contains last_modified_time property. For Datastore - not populated.

version: String

Findings container version, if available (“generation” for Google Cloud Storage).

Trait Implementations

impl Clone for Container[src]

impl Debug for Container[src]

impl Default for Container[src]

impl Message for Container[src]

impl PartialEq<Container> for Container[src]

impl StructuralPartialEq for Container[src]

Auto Trait Implementations

impl RefUnwindSafe for Container

impl Send for Container

impl Sync for Container

impl Unpin for Container

impl UnwindSafe for Container

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]