Class: Google::Apis::DlpV2::GooglePrivacyDlpV2OutputStorageConfig
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2OutputStorageConfig
- 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
-
#output_schema ⇒ String
Schema used for writing the findings.
-
#table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2OutputStorageConfig
constructor
A new instance of GooglePrivacyDlpV2OutputStorageConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2OutputStorageConfig
Returns a new instance of GooglePrivacyDlpV2OutputStorageConfig
3490 3491 3492 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3490 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_schema ⇒ String
Schema used for writing the findings. Columns are derived from the
Finding object. If appending to an existing table, any columns from the
predefined schema that are missing will be added. No columns in the
existing table will be deleted.
If unspecified, then all available columns will be used for a new table,
and no changes will be made to an existing table.
Corresponds to the JSON property outputSchema
3479 3480 3481 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3479 def output_schema @output_schema end |
#table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
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
3488 3489 3490 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3488 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3495 3496 3497 3498 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3495 def update!(**args) @output_schema = args[:output_schema] if args.key?(:output_schema) @table = args[:table] if args.key?(:table) end |