Class: Google::Apis::DlpV2::GooglePrivacyDlpV2StatisticalTable
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2StatisticalTable
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb 
Overview
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).
Instance Attribute Summary collapse
- 
  
    
      #quasi_ids  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdentifierField> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #relative_frequency  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
General identifier of a data field in a storage service.
 - 
  
    
      #table  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Message defining the location of a BigQuery table.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2StatisticalTable 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2StatisticalTable.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2StatisticalTable
Returns a new instance of GooglePrivacyDlpV2StatisticalTable.
      8676 8677 8678  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8676 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#quasi_ids ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdentifierField>
Required. Quasi-identifier columns.
Corresponds to the JSON property quasiIds
      8662 8663 8664  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8662 def quasi_ids @quasi_ids end  | 
  
#relative_frequency ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property relativeFrequency
      8667 8668 8669  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8667 def relative_frequency @relative_frequency 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: :. or ...
Corresponds to the JSON property table
      8674 8675 8676  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8674 def table @table end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8681 8682 8683 8684 8685  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 8681 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  |