Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1OutputStorageConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb

Overview

Cloud repository for storing output.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2beta1OutputStorageConfig

Returns a new instance of GooglePrivacyDlpV2beta1OutputStorageConfig



2564
2565
2566
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2564

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#storage_pathGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CloudStoragePath

A location in Cloud Storage. Corresponds to the JSON property storagePath



2553
2554
2555
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2553

def storage_path
  @storage_path
end

#tableGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1BigQueryTable

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: <project_id>:<dataset_id>.<table_id> or <project_id>.<dataset_id>.<table_id>. Corresponds to the JSON property table



2562
2563
2564
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2562

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2569
2570
2571
2572
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2569

def update!(**args)
  @storage_path = args[:storage_path] if args.key?(:storage_path)
  @table = args[:table] if args.key?(:table)
end