Class: Google::Apis::WebsecurityscannerV1alpha::ListScanRunsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1alpha::ListScanRunsResponse
- 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 ListScanRuns
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_runs ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::ScanRun>
The list of ScanRuns returned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListScanRunsResponse
constructor
A new instance of ListScanRunsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListScanRunsResponse
Returns a new instance of ListScanRunsResponse.
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_runs ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::ScanRun>
The list of ScanRuns returned.
Corresponds to the JSON property scanRuns
431 432 433 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 431 def scan_runs @scan_runs 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_runs = args[:scan_runs] if args.key?(:scan_runs) end |