Class GooglePrivacyDlpV2Container
Represents a container that may contain DLP findings. Examples of a container include a file, table, or database record.
Implements
Inherited Members
Namespace: Google.Apis.DLP.v2.Data
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class GooglePrivacyDlpV2Container : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FullPath
A string representation of the full container name. Examples: - BigQuery: 'Project:DataSetId.TableId' - Cloud Storage: 'gs://Bucket/folders/filename.txt'
Declaration
[JsonProperty("fullPath")]
public virtual string FullPath { get; set; }
Property Value
Type | Description |
---|---|
string |
ProjectId
Project where the finding was found. Can be different from the project that owns the finding.
Declaration
[JsonProperty("projectId")]
public virtual string ProjectId { get; set; }
Property Value
Type | Description |
---|---|
string |
RelativePath
The rest of the path after the root. Examples: - For BigQuery table project_id:dataset_id.table_id
, the
relative path is table_id
- For Cloud Storage file gs://bucket/folder/filename.txt
, the relative path is
folder/filename.txt
Declaration
[JsonProperty("relativePath")]
public virtual string RelativePath { get; set; }
Property Value
Type | Description |
---|---|
string |
RootPath
The root of the container. Examples: - For BigQuery table project_id:dataset_id.table_id
, the root is
dataset_id
- For Cloud Storage file gs://bucket/folder/filename.txt
, the root is gs://bucket
Declaration
[JsonProperty("rootPath")]
public virtual string RootPath { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Container type, for example BigQuery or Cloud Storage.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
UpdateTime
object representation of UpdateTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use UpdateTimeDateTimeOffset instead.")]
public virtual object UpdateTime { get; set; }
Property Value
Type | Description |
---|---|
object |
UpdateTimeDateTimeOffset
DateTimeOffset representation of UpdateTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? UpdateTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
UpdateTimeRaw
Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn't populated.
Declaration
[JsonProperty("updateTime")]
public virtual string UpdateTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
Version
Findings container version, if available ("generation" for Cloud Storage).
Declaration
[JsonProperty("version")]
public virtual string Version { get; set; }
Property Value
Type | Description |
---|---|
string |