Show / Hide Table of Contents

Class GooglePrivacyDlpV2CloudStorageOptions

Options defining a file or a set of files within a Cloud Storage bucket.

Inheritance
object
GooglePrivacyDlpV2CloudStorageOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2CloudStorageOptions : IDirectResponseSchema

Properties

BytesLimitPerFile

Max number of bytes to scan from a file. If a scanned file's size is bigger than this value then the rest of the bytes are omitted. Only one of bytes_limit_per_file and bytes_limit_per_file_percent can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see Limits on bytes scanned per file.

Declaration
[JsonProperty("bytesLimitPerFile")]
public virtual long? BytesLimitPerFile { get; set; }
Property Value
Type Description
long?

BytesLimitPerFilePercent

Max percentage of bytes to scan from a file. The rest are omitted. The number of bytes scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one of bytes_limit_per_file and bytes_limit_per_file_percent can be specified. This field can't be set if de-identification is requested. For certain file types, setting this field has no effect. For more information, see Limits on bytes scanned per file.

Declaration
[JsonProperty("bytesLimitPerFilePercent")]
public virtual int? BytesLimitPerFilePercent { get; set; }
Property Value
Type Description
int?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

FileSet

The set of one or more files to scan.

Declaration
[JsonProperty("fileSet")]
public virtual GooglePrivacyDlpV2FileSet FileSet { get; set; }
Property Value
Type Description
GooglePrivacyDlpV2FileSet

FileTypes

List of file type groups to include in the scan. If empty, all files are scanned and available data format processors are applied. In addition, the binary content of the selected files is always scanned as well. Images are scanned only as binary if the specified region does not support image inspection and no file_types were specified. Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.

Declaration
[JsonProperty("fileTypes")]
public virtual IList<string> FileTypes { get; set; }
Property Value
Type Description
IList<string>

FilesLimitPercent

Limits the number of files to scan to this percentage of the input FileSet. Number of files scanned is rounded down. Must be between 0 and 100, inclusively. Both 0 and 100 means no limit. Defaults to 0.

Declaration
[JsonProperty("filesLimitPercent")]
public virtual int? FilesLimitPercent { get; set; }
Property Value
Type Description
int?

SampleMethod

How to sample the data.

Declaration
[JsonProperty("sampleMethod")]
public virtual string SampleMethod { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX