Class: Google::Apis::DlpV2::GooglePrivacyDlpV2AuxiliaryTable
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2AuxiliaryTable
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #quasi_ids  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdField> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Quasi-identifier columns. 
- 
  
    
      #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)  ⇒ GooglePrivacyDlpV2AuxiliaryTable 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2AuxiliaryTable. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2AuxiliaryTable
Returns a new instance of GooglePrivacyDlpV2AuxiliaryTable
| 152 153 154 | # File 'generated/google/apis/dlp_v2/classes.rb', line 152 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#quasi_ids ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2QuasiIdField>
Quasi-identifier columns. [required]
Corresponds to the JSON property quasiIds
| 136 137 138 | # File 'generated/google/apis/dlp_v2/classes.rb', line 136 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
| 141 142 143 | # File 'generated/google/apis/dlp_v2/classes.rb', line 141 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:
<project_id>:<dataset_id>.<table_id> or
<project_id>.<dataset_id>.<table_id>.
Corresponds to the JSON property table
| 150 151 152 | # File 'generated/google/apis/dlp_v2/classes.rb', line 150 def table @table end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 157 158 159 160 161 | # File 'generated/google/apis/dlp_v2/classes.rb', line 157 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 |