Class: Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey
 
 
- 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
Row key for identifying a record in BigQuery table.
Instance Attribute Summary collapse
- 
  
    
      #row_number  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Row number inferred at the time the table was scanned.
 - 
  
    
      #table_reference  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Message defining the location of a BigQuery table.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2BigQueryKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2BigQueryKey.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2BigQueryKey
Returns a new instance of GooglePrivacyDlpV2BigQueryKey.
      417 418 419  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 417 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#row_number ⇒ Fixnum
Row number inferred at the time the table was scanned. This value is
nondeterministic, cannot be queried, and may be null for inspection jobs. To
locate findings within a table, specify inspect_job.storage_config.
big_query_options.identifying_fields in CreateDlpJobRequest.
Corresponds to the JSON property rowNumber
      408 409 410  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 408 def row_number @row_number end  | 
  
#table_reference ⇒ 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 tableReference
      415 416 417  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 415 def table_reference @table_reference end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      422 423 424 425  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 422 def update!(**args) @row_number = args[:row_number] if args.key?(:row_number) @table_reference = args[:table_reference] if args.key?(:table_reference) end  |