Class: Google::Apis::WebsecurityscannerV1beta::ListScanRunsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tokenString

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

Returns:

  • (String)


511
512
513
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 511

def next_page_token
  @next_page_token
end

#scan_runsArray<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