Class: Google::Apis::WebsecurityscannerV1alpha::ListScanConfigsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::WebsecurityscannerV1alpha::ListScanConfigsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/websecurityscanner_v1alpha/classes.rb,
generated/google/apis/websecurityscanner_v1alpha/representations.rb,
generated/google/apis/websecurityscanner_v1alpha/representations.rb 
Overview
Response for the ListScanConfigs method.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no more results in the list.
 - 
  
    
      #scan_configs  ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::ScanConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of ScanConfigs returned.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListScanConfigsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListScanConfigsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListScanConfigsResponse
Returns a new instance of ListScanConfigsResponse
      433 434 435  | 
    
      # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 433 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no
more results in the list.
Corresponds to the JSON property nextPageToken
      426 427 428  | 
    
      # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 426 def next_page_token @next_page_token end  | 
  
#scan_configs ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::ScanConfig>
The list of ScanConfigs returned.
Corresponds to the JSON property scanConfigs
      431 432 433  | 
    
      # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 431 def scan_configs @scan_configs end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      438 439 440 441  | 
    
      # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 438 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @scan_configs = args[:scan_configs] if args.key?(:scan_configs) end  |