Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1OutputStorageConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/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



1128
1129
1130
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1128

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

Instance Attribute Details

#storage_pathGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta1CloudStoragePath

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



1117
1118
1119
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1117

def storage_path
  @storage_path
end

#tableGoogle::Apis::DlpV2beta2::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



1126
1127
1128
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1126

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1133
1134
1135
1136
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1133

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