Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
 
 
- 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
List of file store data profiles generated for a given organization or project.
Instance Attribute Summary collapse
- 
  
    
      #file_store_data_profiles  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of data profiles.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The next page token.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ListFileStoreDataProfilesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ListFileStoreDataProfilesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
Returns a new instance of GooglePrivacyDlpV2ListFileStoreDataProfilesResponse.
      6749 6750 6751  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6749 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#file_store_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile>
List of data profiles.
Corresponds to the JSON property fileStoreDataProfiles
      6742 6743 6744  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6742 def file_store_data_profiles @file_store_data_profiles end  | 
  
#next_page_token ⇒ String
The next page token.
Corresponds to the JSON property nextPageToken
      6747 6748 6749  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6747 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6754 6755 6756 6757  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6754 def update!(**args) @file_store_data_profiles = args[:file_store_data_profiles] if args.key?(:file_store_data_profiles) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |