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
| 402 403 404 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 402 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
| 395 396 397 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 395 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
| 400 401 402 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 400 def scan_configs @scan_configs end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 407 408 409 410 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 407 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 |