class Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryField
Message defining a field of a BigQuery table.
Attributes
field[RW]
General identifier of a data field in a storage service. Corresponds to the JSON property `field` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
table[RW]
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
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 236 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 241 def update!(**args) @field = args[:field] if args.key?(:field) @table = args[:table] if args.key?(:table) end