class Google::Apis::DlpV2::GooglePrivacyDlpV2OutputStorageConfig
Cloud repository for storing output.
Attributes
Schema used for writing the findings for Inspect jobs. This field is only used for Inspect and must be unspecified for Risk jobs. 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 or an (existing) table with no schema, and no changes will be made to an existing table that has a schema. Only for use with external storage. Corresponds to the JSON property `outputSchema` @return [String]
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: `:.` or `..`. Corresponds to the JSON property `table` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 4423 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 4428 def update!(**args) @output_schema = args[:output_schema] if args.key?(:output_schema) @table = args[:table] if args.key?(:table) end