Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DataSourceType
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2DataSourceType
 
 
- 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
Message used to identify the type of resource being profiled.
Instance Attribute Summary collapse
- 
  
    
      #data_source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2DataSourceType 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2DataSourceType.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DataSourceType
Returns a new instance of GooglePrivacyDlpV2DataSourceType.
      2550 2551 2552  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 2550 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#data_source ⇒ String
Output only. An identifying string to the type of resource being profiled.
Current values: * google/bigquery/table * google/project * google/sql/table *
google/gcs/bucket
Corresponds to the JSON property dataSource
      2548 2549 2550  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 2548 def data_source @data_source end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2555 2556 2557  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 2555 def update!(**args) @data_source = args[:data_source] if args.key?(:data_source) end  |