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



2202
2203
2204
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2202

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



2191
2192
2193
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2191

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



2200
2201
2202
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2200

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2207
2208
2209
2210
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2207

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