Class GooglePrivacyDlpV2FileSet
Set of files to scan.
Implements
Inherited Members
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2FileSet : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
RegexFileSet
The regex-filtered set of files to scan. Exactly one of url
or regex_file_set
must be set.
Declaration
[JsonProperty("regexFileSet")]
public virtual GooglePrivacyDlpV2CloudStorageRegexFileSet RegexFileSet { get; set; }
Property Value
Type | Description |
---|---|
GooglePrivacyDlpV2CloudStorageRegexFileSet |
Url
The Cloud Storage url of the file(s) to scan, in the format gs:///
. 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.
Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type | Description |
---|---|
string |