View Source GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2Container (google_api_dlp v0.46.0)

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

Attributes

  • fullPath (type: String.t, default: nil) - A string representation of the full container name. Examples: - BigQuery: 'Project:DataSetId.TableId' - Cloud Storage: 'gs://Bucket/folders/filename.txt'
  • projectId (type: String.t, default: nil) - Project where the finding was found. Can be different from the project that owns the finding.
  • relativePath (type: String.t, default: nil) - 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
  • rootPath (type: String.t, default: nil) - 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
  • type (type: String.t, default: nil) - Container type, for example BigQuery or Cloud Storage.
  • updateTime (type: DateTime.t, default: nil) - 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.
  • version (type: String.t, default: nil) - Findings container version, if available ("generation" for Cloud Storage).

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.DLP.V2.Model.GooglePrivacyDlpV2Container{
  fullPath: String.t() | nil,
  projectId: String.t() | nil,
  relativePath: String.t() | nil,
  rootPath: String.t() | nil,
  type: String.t() | nil,
  updateTime: DateTime.t() | nil,
  version: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.