Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
 
 
- 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
Response message for ListInspectTemplates.
Instance Attribute Summary collapse
- 
  
    
      #inspect_templates  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of inspectTemplates, up to page_size in ListInspectTemplatesRequest.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the next page is available then the next page token to be used in the following ListInspectTemplates request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ListInspectTemplatesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ListInspectTemplatesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListInspectTemplatesResponse
Returns a new instance of GooglePrivacyDlpV2ListInspectTemplatesResponse.
      6794 6795 6796  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6794 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#inspect_templates ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate>
List of inspectTemplates, up to page_size in ListInspectTemplatesRequest.
Corresponds to the JSON property inspectTemplates
      6786 6787 6788  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6786 def inspect_templates @inspect_templates end  | 
  
#next_page_token ⇒ String
If the next page is available then the next page token to be used in the
following ListInspectTemplates request.
Corresponds to the JSON property nextPageToken
      6792 6793 6794  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6792 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6799 6800 6801 6802  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6799 def update!(**args) @inspect_templates = args[:inspect_templates] if args.key?(:inspect_templates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |