Struct google_dlp2_beta1::GooglePrivacyDlpV2beta1OutputStorageConfig[][src]

pub struct GooglePrivacyDlpV2beta1OutputStorageConfig {
    pub table: Option<GooglePrivacyDlpV2beta1BigQueryTable>,
    pub storage_path: Option<GooglePrivacyDlpV2beta1CloudStoragePath>,
}

Cloud repository for storing output.

This type is not used in any activity, and only used as part of another schema.

Fields

Store findings in a new table in the dataset.

The path to a Google Cloud Storage location to store output. The bucket must already exist and the Google APIs service account for DLP must have write permission to write to the given bucket. Results are split over multiple csv files with each file name matching the pattern "[operation_id]_[count].csv", for example 3094877188788974909_1.csv. The operation_id matches the identifier for the Operation, and the count is a counter used for tracking the number of files written.

The CSV file(s) contain the following columns regardless of storage type scanned:

  • id
  • info_type
  • likelihood
  • byte size of finding
  • quote
  • timestamp

For Cloud Storage the next columns are:

  • file_path
  • start_offset

For Cloud Datastore the next columns are:

  • project_id
  • namespace_id
  • path
  • column_name
  • offset

For BigQuery the next columns are:

  • row_number
  • project_id
  • dataset_id
  • table_id

Trait Implementations

impl Default for GooglePrivacyDlpV2beta1OutputStorageConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2beta1OutputStorageConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2beta1OutputStorageConfig
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2beta1OutputStorageConfig
[src]

Auto Trait Implementations