Class: Google::Apis::WebsecurityscannerV1beta::ListScanRunsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1beta::ListScanRunsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/websecurityscanner_v1beta/classes.rb,
generated/google/apis/websecurityscanner_v1beta/representations.rb,
generated/google/apis/websecurityscanner_v1beta/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::WebsecurityscannerV1beta::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.
518 519 520 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 518 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
511 512 513 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 511 def next_page_token @next_page_token end |
#scan_runs ⇒ Array<Google::Apis::WebsecurityscannerV1beta::ScanRun>
The list of ScanRuns returned.
Corresponds to the JSON property scanRuns
516 517 518 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 516 def scan_runs @scan_runs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
523 524 525 526 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 523 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 |