class Google::Apis::CloudassetV1::SearchAllResourcesResponse
Search all resources response.
Attributes
next_page_token[RW]
If there are more results than those appearing in this response, then ` next_page_token
` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token`. Corresponds to the JSON property `nextPageToken` @return [String]
results[RW]
A list of Resources that match the search query. It contains the resource standard metadata information. Corresponds to the JSON property `results` @return [Array<Google::Apis::CloudassetV1::ResourceSearchResult>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudasset_v1/classes.rb, line 4192 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 4197 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) end