Struct gapi_grpc::google::privacy::dlp::v2::cloud_storage_options::FileSet[][src]

pub struct FileSet {
    pub url: String,
    pub regex_file_set: Option<CloudStorageRegexFileSet>,
}

Set of files to scan.

Fields

url: String

The Cloud Storage url of the file(s) to scan, in the format gs://<bucket>/<path>. Trailing wildcard in the path is allowed.

If the url ends in a trailing slash, the bucket or directory represented by the url will be scanned non-recursively (content in sub-directories will not be scanned). This means that gs://mybucket/ is equivalent to gs://mybucket/*, and gs://mybucket/directory/ is equivalent to gs://mybucket/directory/*.

Exactly one of url or regex_file_set must be set.

regex_file_set: Option<CloudStorageRegexFileSet>

The regex-filtered set of files to scan. Exactly one of url or regex_file_set must be set.

Trait Implementations

impl Clone for FileSet[src]

impl Debug for FileSet[src]

impl Default for FileSet[src]

impl Message for FileSet[src]

impl PartialEq<FileSet> for FileSet[src]

impl StructuralPartialEq for FileSet[src]

Auto Trait Implementations

impl RefUnwindSafe for FileSet

impl Send for FileSet

impl Sync for FileSet

impl Unpin for FileSet

impl UnwindSafe for FileSet

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]