Class: Google::Apis::DlpV2::GooglePrivacyDlpV2beta1OutputStorageConfig

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



5802
5803
5804
# File 'generated/google/apis/dlp_v2/classes.rb', line 5802

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

Instance Attribute Details

#storage_pathGoogle::Apis::DlpV2::GooglePrivacyDlpV2beta1CloudStoragePath

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



5791
5792
5793
# File 'generated/google/apis/dlp_v2/classes.rb', line 5791

def storage_path
  @storage_path
end

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



5800
5801
5802
# File 'generated/google/apis/dlp_v2/classes.rb', line 5800

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5807
5808
5809
5810
# File 'generated/google/apis/dlp_v2/classes.rb', line 5807

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