Class: Google::Apis::WebsecurityscannerV1alpha::ListCrawledUrlsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1alpha::ListCrawledUrlsResponse
- 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 ListCrawledUrls
method.
Instance Attribute Summary collapse
-
#crawled_urls ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::CrawledUrl>
The list of CrawledUrls returned.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCrawledUrlsResponse
constructor
A new instance of ListCrawledUrlsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCrawledUrlsResponse
Returns a new instance of ListCrawledUrlsResponse
362 363 364 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 362 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crawled_urls ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::CrawledUrl>
The list of CrawledUrls returned.
Corresponds to the JSON property crawledUrls
354 355 356 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 354 def crawled_urls @crawled_urls end |
#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
360 361 362 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 360 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
367 368 369 370 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 367 def update!(**args) @crawled_urls = args[:crawled_urls] if args.key?(:crawled_urls) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |