Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryStartingLocation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryStartingLocation
 
 
- 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
The location to begin a discovery scan. Denotes an organization ID or folder ID within an organization.
Instance Attribute Summary collapse
- 
  
    
      #folder_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the folder within an organization to be scanned.
 - 
  
    
      #organization_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of an organization to scan.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2DiscoveryStartingLocation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2DiscoveryStartingLocation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DiscoveryStartingLocation
Returns a new instance of GooglePrivacyDlpV2DiscoveryStartingLocation.
      3845 3846 3847  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3845 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#folder_id ⇒ Fixnum
The ID of the folder within an organization to be scanned.
Corresponds to the JSON property folderId
      3838 3839 3840  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3838 def folder_id @folder_id end  | 
  
#organization_id ⇒ Fixnum
The ID of an organization to scan.
Corresponds to the JSON property organizationId
      3843 3844 3845  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3843 def organization_id @organization_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3850 3851 3852 3853  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 3850 def update!(**args) @folder_id = args[:folder_id] if args.key?(:folder_id) @organization_id = args[:organization_id] if args.key?(:organization_id) end  |