Class: Google::Apis::DlpV2::GooglePrivacyDlpV2InspectDataSourceDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2InspectDataSourceDetails
 
- 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
The results of an inspect DataSource job.
Instance Attribute Summary collapse
- 
  
    
      #requested_options  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The configuration used for this job. 
- 
  
    
      #result  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Result 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A summary of the outcome of this inspect job. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2InspectDataSourceDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2InspectDataSourceDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2InspectDataSourceDetails
Returns a new instance of GooglePrivacyDlpV2InspectDataSourceDetails
| 2324 2325 2326 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2324 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#requested_options ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedOptions
The configuration used for this job.
Corresponds to the JSON property requestedOptions
| 2317 2318 2319 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2317 def @requested_options end | 
#result ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2Result
A summary of the outcome of this inspect job.
Corresponds to the JSON property result
| 2322 2323 2324 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2322 def result @result end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2329 2330 2331 2332 | # File 'generated/google/apis/dlp_v2/classes.rb', line 2329 def update!(**args) @requested_options = args[:requested_options] if args.key?(:requested_options) @result = args[:result] if args.key?(:result) end |