Class: Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
 
- 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
Overview
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>.
Instance Attribute Summary collapse
- 
  
    
      #dataset_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Dataset ID of the table. 
- 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Google Cloud Platform project ID of the project containing the table. 
- 
  
    
      #table_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of the table. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2BigQueryTable 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2BigQueryTable. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2BigQueryTable
Returns a new instance of GooglePrivacyDlpV2BigQueryTable
| 256 257 258 | # File 'generated/google/apis/dlp_v2/classes.rb', line 256 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#dataset_id ⇒ String
Dataset ID of the table.
Corresponds to the JSON property datasetId
| 243 244 245 | # File 'generated/google/apis/dlp_v2/classes.rb', line 243 def dataset_id @dataset_id end | 
#project_id ⇒ String
The Google Cloud Platform project ID of the project containing the table.
If omitted, project ID is inferred from the API call.
Corresponds to the JSON property projectId
| 249 250 251 | # File 'generated/google/apis/dlp_v2/classes.rb', line 249 def project_id @project_id end | 
#table_id ⇒ String
Name of the table.
Corresponds to the JSON property tableId
| 254 255 256 | # File 'generated/google/apis/dlp_v2/classes.rb', line 254 def table_id @table_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 261 262 263 264 265 | # File 'generated/google/apis/dlp_v2/classes.rb', line 261 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @project_id = args[:project_id] if args.key?(:project_id) @table_id = args[:table_id] if args.key?(:table_id) end |