class Google::Apis::DlpV2::GooglePrivacyDlpV2StatisticalTable
An auxiliary table containing statistical information on the relative frequency of different quasi-identifiers values. It has one or several quasi- identifiers columns, and one column that indicates the relative frequency of each quasi-identifier tuple. If a tuple is present in the data but not in the auxiliary table, the corresponding relative frequency is assumed to be zero ( and thus, the tuple is highly reidentifiable).
Attributes
Required. Quasi-identifier columns. Corresponds to the JSON property `quasiIds` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdentifierField>]
General identifier of a data field in a storage service. Corresponds to the JSON property `relativeFrequency` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId]
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 5504 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 5509 def update!(**args) @quasi_ids = args[:quasi_ids] if args.key?(:quasi_ids) @relative_frequency = args[:relative_frequency] if args.key?(:relative_frequency) @table = args[:table] if args.key?(:table) end