Class: Google::Apis::WebsecurityscannerV1::ListScanConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1::ListScanConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/websecurityscanner_v1/classes.rb,
generated/google/apis/websecurityscanner_v1/representations.rb,
generated/google/apis/websecurityscanner_v1/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::WebsecurityscannerV1::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.
Constructor Details
#initialize(**args) ⇒ ListScanConfigsResponse
Returns a new instance of ListScanConfigsResponse.
495 496 497 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 495 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
488 489 490 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 488 def next_page_token @next_page_token end |
#scan_configs ⇒ Array<Google::Apis::WebsecurityscannerV1::ScanConfig>
The list of ScanConfigs returned.
Corresponds to the JSON property scanConfigs
493 494 495 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 493 def scan_configs @scan_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
500 501 502 503 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 500 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 |