Class: Google::Apis::WebsecurityscannerV1beta::ListCrawledUrlsResponse
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1beta::ListCrawledUrlsResponse
- 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 ListCrawledUrls
method.
Instance Attribute Summary collapse
-
#crawled_urls ⇒ Array<Google::Apis::WebsecurityscannerV1beta::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.
Constructor Details
#initialize(**args) ⇒ ListCrawledUrlsResponse
Returns a new instance of ListCrawledUrlsResponse.
421 422 423 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 421 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crawled_urls ⇒ Array<Google::Apis::WebsecurityscannerV1beta::CrawledUrl>
The list of CrawledUrls returned.
Corresponds to the JSON property crawledUrls
413 414 415 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 413 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
419 420 421 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 419 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
426 427 428 429 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 426 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 |